View Single Post
Old 05-11-2007, 06:57 AM   #3
cyberpine
Thumbs Must Hurt
 
cyberpine's Avatar
 
Join Date: May 2006
Model: 8700g
Carrier: T-mobile
Posts: 65
Default

I used the sun wireless toolkit (latest version) and its
Soap stub generator for class that handles the web service. This code works in the toolkits' emulator, but produces the error on the BB when I select this menu item.

public void commandAction(Command c, Displayable s) {
if (c == exitCommand) {
destroyApp(false);
notifyDestroyed();
}
if (c == buyCommand) {
ServiceSoap_Stub service =new ServiceSoap_Stub();
service._setProperty(ServiceSoap_Stub.SESSION_MAIN TAIN_PROPERTY, new Boolean(true));
x = service.mymethod("buying");
fillbox(x);
}
Offline