Re: GWT and Acegi

2010-03-19 Thread kriswpl
Hello, If you don;t know anything about Acegi... 1. Acegi was migrated to Spring Security (http:// static.springsource.org/spring-security/site/) 2. It can secure in two ways: a) web tier by url or b) methods in classes I use spring security and I like it, but it took some time to know what it

Re: RPC and MapString, Object serialization problem

2010-03-16 Thread kriswpl
supported generics. You don't need it now (I'm not sure if you still can use it) and it wouldn't help here anyway because generics let you specify the same information. Paul kriswpl wrote: Thank you Paul for your reply. FYI - I use Map not to use DTO - I put all properties (Long, Date

Re: RPC and MapString, Object serialization problem

2010-03-12 Thread kriswpl
- is it possible to add to the remote interface information about all serializaed types which can be in Map? - to solve this problem Thanks, Krisw On 11 Mar, 17:55, Paul Robinson ukcue...@gmail.com wrote: kriswpl wrote: Interface method is: public MapString, Object test(); and in implementation I put

RPC and MapString, Object serialization problem

2010-03-11 Thread kriswpl
Hi, I tried to invoke a method in interface thru RPC. Interface method is: public MapString, Object test(); and in implementation I put into returned map, object java.util.Long (which is serializable:) ): map.put(long, new Long(1)); and I get an error - see below: BUT, when I add another method