[android-developers] Re: Unserializing objects via the Hessian web protocol leads to ClassNotFoundException

2010-09-04 Thread Kevin Read
On Aug 26, 6:10 pm, Kostya Vasilyev kmans...@gmail.com wrote:   26.08.2010 14:24, Kevin Read ?: I'll try to shoehorn the PHP class names into the fully qualified Java class name. The issue here is that the web service is also used by the iPhone client, where the deserialization is

[android-developers] Re: Unserializing objects via the Hessian web protocol leads to ClassNotFoundException

2010-08-26 Thread Kevin Read
On Aug 25, 6:19 pm, DanH danhi...@ieee.org wrote: You can never load a class without its package name. The message is saying that a class in the null package named NewsSetCategory cannot be found.  Since classes in the null package are characteristic of toy applications, NewsSetCategory is

Re: [android-developers] Re: Unserializing objects via the Hessian web protocol leads to ClassNotFoundException

2010-08-26 Thread Kostya Vasilyev
26.08.2010 14:24, Kevin Read ?: I'll try to shoehorn the PHP class names into the fully qualified Java class name. The issue here is that the web service is also used by the iPhone client, where the deserialization is completely custom-built, so I'll have to tread lightly*sighs* I think

[android-developers] Re: Unserializing objects via the Hessian web protocol leads to ClassNotFoundException

2010-08-25 Thread DanH
You can never load a class without its package name. The message is saying that a class in the null package named NewsSetCategory cannot be found. Since classes in the null package are characteristic of toy applications, NewsSetCategory is probably a toy application on the source platform and is

[android-developers] Re: Unserializing objects via the Hessian web protocol leads to ClassNotFoundException

2010-08-24 Thread kr...@boerse-go.de
No, it is in a related project, as in Eclipse required projects on the build path. On Aug 24, 10:51 pm, Kostya Vasilyev kmans...@gmail.com wrote: Do you have this class defined in the Android application? -- Kostya Vasilyev --http://kmansoft.wordpress.com 25.08.2010 0:39 пользователь

Re: [android-developers] Re: Unserializing objects via the Hessian web protocol leads to ClassNotFoundException

2010-08-24 Thread Kostya Vasilyev
Um, what I really meant to say is, is this class available at runtime in the application? Sounds like it's not, and that's causing the error. You need to make sure this class is available for instantiation when the server response is deserialized, under the same name as in the response. --