I am trying to use RequestBuilder to access an xml document that is
available on the same server as my GWT 2.1 application but in a
different servlet container. Thus my GWT application is accessed via
http://localhost:8084/sdv and the xml document is accessed via
localhost:8086:/geoserver/rest/...
The code I am using is shown below.
RequestBuilder builder = new RequestBuilder( RequestBuilder.GET,
getRestUrl(layer));
try
{
Request request = builder.sendRequest(null, new
RequestCallback()
{
public void onError(Request request, Throwable exception)
{
}
public void onResponseReceived(Request request, Response
response)
{
}
});
}
catch (RequestException e)
{
}
Is it that the domain is bboth the server and port, not just the
server.
John
--
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.