gwt - How to use a proxy with Google Web Toolkit -
I am writing an application using GWT on Windows which needs to make some network calls.
I know that if this is not a machine on which I am developing, then I need to set up a proxy, right?
I was wondering if someone would look like my GWT code?
What proxies should I use on Windows?
Thank you!
If you do just request data from a different domain to a lush service If you are, you can use JSONP ().
If you are trying to post the data, then you have to make a network call on the server side (there are some vicious methods to submit through hidden IFRAME but they are non-standard Are). This means that you only call a method on your server that makes a network call (see).
Comments
Post a Comment