Error in applying filter on coherence data
997006Mar 14 2013 — edited Mar 18 2013I am trying to apply filter on coherene cache data in *.Net*.
I put some data on cache. I am able to retrieve all data using AlwaysFilter. But when I try to apply any custom filter ( like on line 3 below) I am getting error Unknon user type 1002. I have POF config file with proper user type 1002.
INamedCache Cache = CacheFactory.GetCache("DSOM-Part-Cds-watsportal");
var AllList1 = Cache.GetValues(new AlwaysFilter()); ///This code works properly. It give me all the objects I put in cache.
var entries = Cache.GetEntries(new EqualsFilter("getOrderNo", "testOrder")); //Getting below error on this line
Am I missing anything here?
ERROR :
(Wrapped: Failed request execution for DSOM-PartitionedCacheService service on Member(Id=1, Timestamp=2013-02-15 15:20:50.318, Address=###.13.50.139:80##, MachineId=141, Location=site:,machine:####,process:15158,member:DSOMPartioned-node1, Role=CoherenceServer) (Wrapped) unknown user type: 1002) unknown user type: 1002
Edited by: 994003 on Mar 14, 2013 12:40 PM