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 JAX-WS to open a service port.

When the DNS exposes two IPs for the DNS entry (of the WSDL), the Service tries to use only the first - resulting in a "Failed to access the WSDL at: http://some.url.com/someDocument?wsdl. It failed with: Connection refused: connect" exception.

I've found an issue filed against JAX-WS, but with no resolution.
this is the comment that describes my problem best.

The code is just a one-liner:

Service service = Service.create("http://some.url.com/someDocument?wsdl", engineQName);

the smarts is in exposing those two A records on http://some.url.com/ at the DNS.

Can anyone help?
10x,

share|improve this question

1 Answer

From the comments in the bug you filed, seems rather more like a bug in HttpUrlConnection than in JAX-WS. However, I don't really know how you can change that, maybe by giving a custom HttpUrlConnection to JAX-WS, but I don't know how to do that.

share|improve this answer
hi- couldn't find a report on a relevant HttpUrlConnection bug.. – Asaf Jan 11 '11 at 9:58
last comment in the bug report linked in your question – Valentin Rocher Jan 11 '11 at 10:15
yeh, the assignee asks repeatedly for a SSCCE. but the no bug has been filed for HttpURLConnection, afaik. – Asaf Jan 11 '11 at 11:19

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.