HTTP request using asynchronous pluggable protocol in Java

570 Views Asked by At

I need to make an HTTP request to a resource that looks like "xy:index.html" in Java.

The HTTP implementation does not have to be sophisticated. I just need to be able to do this to avoid same-origin violations when running in development mode for a GWT app by forwarding HTTP requests on the server-side to the "xy" protocol.

Any clues about how I may be able to do this would be extremely appreciated. I feel like I'm a bit out of my league on this one ;)

1

There are 1 best solutions below

1
On

I'm not sure if I understand the question properly but perhaps you can register a URL handler. This link has some info about how to do that. Perhaps you can register a custom handler for the xy: protocol and re-use the HTTP URL handlder for the real work.