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 8021605
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T22:02:11+00:00 2026-06-04T22:02:11+00:00

In Java, there is ThreadLocal, which can be used to carry some data from

  • 0

In Java, there is ThreadLocal, which can be used to carry some data from one object to another without explicit passing as method argument.

I need to intercept GWT request and extract custom HTTP header from it, then I need to store the header value somehow to be processed later.

The problem is that the place to extract the header belongs to RequestBuilder, and there is no way (?) to pass the variable from within RequestBuilder to the custom code actually handling the request/response from server. And it is not possible to pass some variable from client code to that request builder.

ThreadLocal could be the solution, however it is not available in GWT. Is there something I can use?

  • 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-06-04T22:02:12+00:00Added an answer on June 4, 2026 at 10:02 pm

    You can use RequestBuilder.setHeader to set header values for your HTTP request.
    On the backend you can use HttpServletRequest of your servlet to retrieve the header values from your HTTP request.

    Update:

    Some class with a static instance variable:

    public class SomeClass {
        public static String myVar;
    }
    

    And in the RequestBuilder code you can do following:

    RequestBuilder request = new RequestBuilder(url);
    request.setCallback(new RequestCallback() {
        @Override
        public void onResponseReceived(Request request, Response response) {
            SomeClass.myVar = response.getHeader("someheader");
        }
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Im porting some calculation routines from .Net to Java but there seem to be
Is there Java class or some sample code that can convert a java Date
I want city name from IP address using Java is there any idea to
Do Java ThreadLocal variables produce thread-local values if they are used as instance variables
I've got a data structure which consists of linked nodes. You can think of
I know that in java there's two method of packaging one application. One way
In Java there's the method Runtime.getRuntime().availableProcessors() which has the following Javadoc: Returns the number
Can anyone tell me how to use Xstream in Blackberry . In java there
In Java there are methods to go about scanning the classpath/all classes/within a package
When designing an distributed application in Java there seem to be a few technologies

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.