On 08/03/2009 08:18 AM, Dominic Holt wrote: > > Greetings all, > > I am currently building a GWT application that functions entirely > offline (as in, never connects to the internet to update, sync, what > have you). In a normal web application, you can typically run your > application offline just as well as long as you use an application > server that you have deployed your app in and assuming you have local > network access to the application server. > > The problem inherent with GWT is that you must use GWT-RPC in order to > call the server from the client side in order to do interesting > things. Normally this would not be a problem, it would just be a > server call and would make use of the local application server, but > GWT insists on having a connection to the internet to make an RPC call > (and I'm having a hard time understanding why this is a good idea).
So you're saying that a Java app that listens on 127.0.0.1:80 won't handle a GWT RPC call? I've never tried it, so I'm just asking... GWT uses the browser's XMLHTTPRequest object. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
