Sure you got a 200 in IE? IE should also give some error if you try to make a request to a different domain/port. Also shouldn't your code snippet use factory-dev109.example.com if server 2 is the server you want to request?
Well but in general you have three options to make cross domain requests: 1.) You have to use a reverse proxy so you can make requests to external servers without leaving the domain which serves the GWT application. 2.) Make a GWT request to server 1 (works because there is no SOP) and then let your server side code on server 1 do a request to server 2 using plain java. 3.) Use JsonpRequestBuilder. But this would require some rewrite of your "server 2" code as you now need to provide your data as JSON and also wrap this JSON data in a javascript callback function whose name is send by GWT to your server 2 via a GET parameter. -- J. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/XjWs7LvJVy8J. 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.
