vote up 0 vote down star

Hi, Is it possible to send a Http header via a URL connection in java? I had this working using sockets, but ran into issues with a firewall which don't seem to be a problem with URLConnection. From looking at the API I get the impression that the output methods in URLConnection are just for filling in forms etc, or can they be used to send my own HTTP headers?

flag

2 Answers

vote up 4 vote down check

Yes, the method you want is setRequestProperty.

link|flag
vote up 7 vote down

I would recommend to use Apaches HttpClient. With this library you have total control over the request you want to send.

http://hc.apache.org/httpclient-3.x/tutorial.html

link|flag
Yes, httpclient is de-facto standard for accessig HTTP from Java. – stepancheg May 4 at 9:51
Thanks, thats probably the best way to do it, but I should have mentioned I need to stick to the standard java libraries – Simonw May 4 at 12:17
HttpClient is all well in good, but it's not always necessary, and he asked about URLConnection. And you didn't even mention the relevant method, which is HttpMessage.setHeader (hc.apache.org/httpcomponents-core/httpcore/…)). – Matthew Flaschen May 4 at 13:14
Your right I could have mentioned the right Method. But as the Questionnaire was asking playing around with Sockets and UrlConnection its no Problem to point out another alternative which is flexible enough to be prepared for upcoming demands – HaBaLeS May 4 at 13:24

Your Answer

Get an OpenID
or

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