action2013 / hessdroid

Automatically exported from code.google.com/p/hessdroid
0 stars 0 forks source link

GAE Problem! #8

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. GAE Hessian 4.07
2. On android side
HessianProxyFactory proxyFactory = new HessianProxyFactory();
a) working
        proxyFactory.setDebug(true); //!!!!
        proxyFactory.setHessian2Reply(false); //!!!
b) not working
        proxyFactory.setDebug(false); //!!!! or
        proxyFactory.setHessian2Reply(true); //!!!

3. What is not working?
ICar api = (ICar) proxyFactory.create(ICar.class, webServiceUrl, 
getClassLoader());
dan = api.dan(); //works in first attempt (also with setDebug(false)
dan = api.dan(); //second try no response (server is sending response)
dan = api.dan(); ....

What version of the product are you using? On what operating system?
Last from svn!

Original issue reported on code.google.com by matej.cr...@gmail.com on 13 Aug 2010 at 6:47