seges / acris

AcrIS is a modern framework serving as a base for applications, web sites and portals. It provides various tools and libraries to ease daily development. Build on top of Google web toolkit and provides sophisticated solution for security, beans binding, JSON protocol and usefull project skelets integrated with maven, hibernate, spring and gilead. You will get a prepared solution in box ready to use in your own project.
4 stars 1 forks source link

potential deprecated rpc proxy generation in the session enabled proxy #90

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
SessionRemoteServiceProxyGenerator extends from ServiceInterfaceProxyGenerator 
but original GWT implementation uses now (in GWT 2.3 at least) 
RpcServiceGenerator. Furthermore the SessionProxyCreator extends ProxyCreator 
but RpcServiceGenerator uses proxy creator that extends RpcProxyCreator. By 
simple switch to these, there will be an exception, because 3-parameter 
constructor is generated but 4-parameter is expected.

All is located in acris-security-core module.

Original issue reported on code.google.com by ladislav...@gmail.com on 11 Feb 2013 at 9:24