Hello, Does CXF have any mechanism to support pagination in the SOAP request / response, mostly for the client side?
For example, I have a method to return me all Entities from my datastore - getEntities(startIndex, numberOfEntities) and if I want to return only 100 entities starting from item 50, it would getEntities(50, 100). I wonder if CXF has anything to support this in any way or something close to it. The alternative would be to cache the sorted results and just return subsets of the entire data. Arik.
