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);
}
|