Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a REST web service exposed by application deployed in vert.x and I'm trying to access it from a GWT application. Some response is obtained, but with an empty body.

It gives the expected response when I access the service using http4e.

Is there any required configuration other than normal web service access code in GWT? Below given is the code for web service access:

final RequestBuilder requestBuilder = new RequestBuilder(
                RequestBuilder.POST, "https://localhost:80/login");
requestBuilder.setHeader("Content-Type", "text/plain");
requestBuilder.sendRequest("{\"userId\":\"" + username
                    + "\",\"password\":\""
                    + password + "\"}",
                    new RequestCallback() {

                        @Override
                        public void onResponseReceived(Request request,
                                    Response response) {
                                System.out.println("response:"
                                        + response.getText());
                            }

                            @Override
                            public void onError(Request request,
                                    Throwable exception) {
                                System.out.println("ex:"
                                        + exception.getMessage());
                            }
                        });

EDIT: I think there is some issue in the client side request. When the sendRequest function is called, onResponseReceived in the RequestCallback implementation gets invoked, with empty response. The POST request status is reported as Aborted when I analyzed using Firebug.

share|improve this question
could you correct the typo at http4e ? – SSR Feb 7 at 18:10

1 Answer

up vote 1 down vote accepted

Despite the fact that you turn to localhost, this is CORS (Cross-Origin Resource Sharing). According to the specification different ports mean different origins. Modern browsers forbid cross-domain XMLHTTPRequest by default. You should add Access-Control-Allow-Origin header to server's respones. Read the Syntax section of the CORS specification for further information.

share|improve this answer
I think there is some issue in the client side request. When the sendRequest function is called, onResponseReceived in the RequestCallback implementation gets invoked, with empty response. Pls see the edit. – Naveed S Feb 8 at 9:36
Yes, it looks like the way CORS works. You can see this by disabling CORS security in your user agent. If you use google chorme run it with option '--disable-web-security'. – sinicyn Feb 8 at 9:51
Is there any issue in using RequestBuilder for https POSTing? – Naveed S Feb 11 at 8:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.