View Single Post
Old 03-30-2009, 03:08 AM   #3
aitec-nico
New Member
 
Join Date: Mar 2009
Model: 8310
PIN: N/A
Carrier: sfr
Posts: 2
Default

Thanks for your reply.

I've created a new Java ME Webservice client from a wsdl.
Here is how I handle the response :

easywork_ws_Stub _wStub = new easywork_ws_Stub();
site[] tSite = null;
try { tSite = _wStub.getSites(new Integer(0)); }
catch (RemoteException ex) { ex.printStackTrace(); }
And it always results with tSite = null;

The site Class is implemeted as Serializable.

Sorry, I'm very new to blackberry developement and I 'm not familiar with debugging this kind of application. the response Dump you'd like to see is produced when using kSOAP, but I don't use it. I don't really know how to get a trace of the response I get from the server. I'm currently just debugging with breakpoints, blackberry simulator and MDS simulator.
Offline   Reply With Quote