Hi Andrei :)
Since nobody answered, I hope the following pointers helps you in
debugging.
A similar thread with a reply from Thomas is here
https://groups.google.com/group/google-web-toolkit/browse_thread/thread/4f4132bc90f6375a
In GWT source, have a look at
* ./user/src/com/google/gwt/http/client/Response.java
* ./user/src/com/google/gwt/http/client/Request.java
String allHeaders = xmlHttp.getAllResponseHeaders();
[line 88] String[] unparsedHeaders = allHeaders.split("\n");
* ./user/src/com/google/gwt/xhr/client/XMLHttpRequest.java
public final native String getAllResponseHeaders() /*-{
return this.getAllResponseHeaders();
}-*/;
See also
http://www.w3.org/TR/XMLHttpRequest/#the-getallresponseheaders-method
What does getReadyState() return? (don't know how exactly would this
be called from a Request class). Looks like it works only
if(this.readyState == 2)
M