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

I'm using Apache HttpClient 3.x for contacting a Big IP that will then redirect my request to one of 1-N machines. We have the need to know which of the N machines actually picked up the request though, and I'm not sure how to get this information. I looked through the Response headers with no luck, so I'm wondering if this information is actually provided anywhere? Is there a helper/utility class I can use to get any additional metadata?

Thanks.

share|improve this question
Are you in control of the 1-N servers that is processing your request? – Rich Kroll Aug 24 '09 at 15:33
Not our group personally, but it's all internal so we could request them to add something to the response. I guess I was looking if there was some way to avoid that if possible. – Greg Noe Aug 24 '09 at 15:38
I think response headers are going to be your only option AFAIK. – Rich Kroll Aug 24 '09 at 16:14

2 Answers

up vote 1 down vote accepted

If the request is redirected and you need the new location, you need to setFollowRedirects(false) on the method and handle the redirect yourself.

After sending the request, check getStatusCode() for 302 and getResponseHeader("Location") for the new address. Than change the address by setURI() and send again.

share|improve this answer
Wow, that would probably work. Not sure if I want to inherit that redirecting responsibility but unless someone else can come up with something better, I'll mark this as an answer in a day or two. – Greg Noe Aug 25 '09 at 20:34

Or you could just use mod_headers and insert a unique Header ID on each one of your Apache httpd servers ;-)

share|improve this answer

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.