Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7632593
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T06:39:56+00:00 2026-05-31T06:39:56+00:00

Getting this error on chrome while trying to make cross-domain requests with GWT application.

  • 0

Getting this error on chrome while trying to make cross-domain requests with GWT application.

Origin http://127.0.0.1:8888 is not allowed by Access-Control-Allow-Origin.

I have tried the following code for sending GET request.

import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.http.client.Request;
import com.google.gwt.http.client.RequestBuilder;
import com.google.gwt.http.client.RequestCallback;
import com.google.gwt.http.client.RequestException;
import com.google.gwt.http.client.Response;

import com.google.gwt.user.client.ui.Label;
import com.google.gwt.user.client.ui.RootPanel;


public class Detracker implements EntryPoint {
    public void onModuleLoad() {
        doGet("http://www.google.com");
    }

    public static void doGet(String url) {
        RequestBuilder builder = new RequestBuilder(RequestBuilder.GET, url);

        try {
            builder.sendRequest(null, new RequestCallback() {
                public void onError(Request request, Throwable exception) {
                    // Code omitted for clarity
                }

                @Override
                public void onResponseReceived(Request request,
                        Response response) {
                    final Label msgLabel = new Label();
                    msgLabel.setText(response.getText());
                    RootPanel.get("resultContainer").add(msgLabel);
                }
            });

        } catch (RequestException e) {
            // Code omitted for clarity
        }
    }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T06:39:57+00:00Added an answer on May 31, 2026 at 6:39 am

    I worked around and came out with this working solution. 🙂

    String message = "";
    
    
    try {
        URL url = new URL("working-url");
        URLConnection urlConn = url.openConnection();
        urlConn.setReadTimeout(100000);
        BufferedReader reader = new BufferedReader(new InputStreamReader(urlConn.getInputStream()));
        String line;
    
        while ((line = reader.readLine()) != null) {
            message = message.concat(line);
        }
        reader.close();
    
    } catch (MalformedURLException e) {
    message = e.getMessage();
    } catch (IOException e) {
    message = e.getMessage();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am getting this error in chrome XMLHttpRequest cannot load ttp://www.officeyoganyc.com/lists/?p=subscribe. Cross origin requests
I´m getting this error while trying to commit to a svn repository: svn: MKACTIVITY
I am getting this error in Chrome when trying to send an ajax request:
I'm getting this JavaScript error XMLHttpRequest cannot load http://foo.bar.no/API/map_tools/clean_addresses/check . Origin http://foo.bar.no:9294 is not
Keep getting this error after inserting a subdatasheet into a query and trying to
I am getting this error when trying to run internet information services on a
With jquery.mobile-1.0rc1 ; getting error while working in simple dialog- error-message in Chrome- Uncaught
I'm trying to use a custom ::selection effect in Chrome but getting this bad
but trying to operate jquery validate plugin 1.6 but im getting this error in
I'm getting this error on Chrome & IE Cannot read property 'tagName' of null

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.