http RequestBuilder problem on iPad/android

2013-04-24 Thread 129pierre
Hi all, I used a http requestbuilder for getting data generated by a app from the same server. This works on windows/linux for any browser. But on iPad/android, response.getStatusCode() is 0 and response.getText() is empty. What can be the difference on these mobile devices ? Thanks in

Requestbuilder problem?

2013-02-25 Thread Thomas Lefort
I initially posted this question http://stackoverflow.com/questions/15033742/requestbuilder-with-file-dataon SO, thinking that it was more something on HTTP headers, but I played with http headers without success and I am now thinking it could be a requestbuilder issue. Essentially, I am

Re: Requestbuilder problem?

2013-02-25 Thread Thomas Broyer
The only suggestion I could make is to not use RequestBuilder for binary data. Go down to the XMLHttpRequest level instead, with JSNI to send the Blob/File/ArrayBuffer/whatever (either JSNI, or use the elemental.xml.XMLHttpRequest instead of the com.google.gwt.xhr.client.XMLHttpRequest) On

Re: RequestBuilder problem retrieve response

2010-01-19 Thread ale
Thanks! I will study your links, and try. Thanks again. On Jan 18, 11:21 pm, Thomas Broyer t.bro...@gmail.com wrote: On 18 jan, 21:16, ale aleee...@gmail.com wrote: no one has a similar problem? (and solved it?) Everyone once faced the Same-Origin

Re: RequestBuilder problem retrieve response

2010-01-18 Thread Thomas Broyer
On 18 jan, 21:16, ale aleee...@gmail.com wrote: no one has a similar problem? (and solved it?) Everyone once faced the Same-Origin Policy. http://code.google.com/webtoolkit/doc/latest/FAQ_Server.html#What_is_the_Same_Origin_Policy,_and_how_does_it_affect_GWT? In GWT 2.0 you can now use a

RequestBuilder problem retrieve response

2010-01-17 Thread ale
hi everybody, I have a problem using RequestBuilder. I would like to use the yahoo GeoPlanet service http://developer.yahoo.com/geo/geoplanet/guide/concepts.html With this service you can retreive the WOEID of a town from the name... If I type the url on a browser i receive a file xml, but if I

Re: RequestBuilder problem

2009-12-29 Thread FKereki
That's the Same Origin Policy in action -- IE8 is more lax than FireFox, and will allow calls to a different port in the same website. With Firefox, if you load the program from http://www.yoursite.com:8080, then you cannot do any RequestBuilder calls to any other URL; IE8 allows changing the

RequestBuilder problem

2009-12-28 Thread brom38
I am trying to use RequestBuilder to communicate with server using AJAX (GWT 2.0). Code is simple as possible: public class Main implements EntryPoint { public void onModuleLoad() { RootPanel root = RootPanel.get(); Button button = new Button();

RequestBuilder problem

2008-10-09 Thread mack
Hello, I am a new member in gwt. These days I want to develop a problem and send the HttpRequest by RequestBuilder . The response state is 200,but can not receive anything. the link is :