Hello, cloclo schrieb:
> Hello, > > I'm trying to do more or less the same stuff. The problem is how to > make the GWT able to translate a simple call like this: > > ----------> > import org.apache.axis.client.*; > > Service service = new Service(); > Call call = (Call) service.createCall(); > etc... > <--------- Simple answer: You can't. Why do you want to call a WebService from the browser directly. Call a RemoteServiceServlet that does that for you. That way you get around the restriction that the GWT-application in general can only connect to the server it was loaded from. Regards, Lothar --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/Google-Web-Toolkit?hl=en -~----------~----~----~----~------~----~------~--~---
