[jbossws-issues] [JBoss JIRA] (JBWS-3721) UDP endpoint failure in pure IPv6 environment

Petr Sakař (JIRA) jira-events at lists.jboss.org
Thu Oct 17 10:53:02 EDT 2013


     [ https://issues.jboss.org/browse/JBWS-3721?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Petr Sakař updated JBWS-3721:
-----------------------------

    Description: 
UDPEndpointAPITestCase.testClientSide fails with connection timeout.

if the following lines are changed from

{code}
Endpoint ep = Endpoint.publish("soap.udp://:9436", implementor);
...
service.addPort(udpPortName, "http://schemas.xmlsoap.org/soap/", "soap.udp://:9436");
{code}

to

{code}
Endpoint ep = Endpoint.publish("soap.udp://[::1]:9436", implementor);
...
service.addPort(udpPortName, "http://schemas.xmlsoap.org/soap/", "soap.udp://[::1]:9436");
{code}

test passes.

I did not inspect if both addresses has to be changed or only one suffice

  was:
UDPEndpointAPITestCase.testClientSide fails with connection timeout.

{code}
if the following lines are changed from

Endpoint ep = Endpoint.publish("soap.udp://:9436", implementor);
...
service.addPort(udpPortName, "http://schemas.xmlsoap.org/soap/", "soap.udp://:9436");
{code}
to

{code}
Endpoint ep = Endpoint.publish("soap.udp://[::1]:9436", implementor);
...
service.addPort(udpPortName, "http://schemas.xmlsoap.org/soap/", "soap.udp://[::1]:9436");
{code}

test passes.

I did not inspect if both addresses has to be changed or only one suffice


    
> UDP endpoint failure in pure IPv6 environment
> ---------------------------------------------
>
>                 Key: JBWS-3721
>                 URL: https://issues.jboss.org/browse/JBWS-3721
>             Project: JBoss Web Services
>          Issue Type: Bug
>    Affects Versions: jbossws-cxf-4.2.1
>         Environment: pure IPv6 network with IPv4 disabled
>            Reporter: Petr Sakař
>            Priority: Minor
>
> UDPEndpointAPITestCase.testClientSide fails with connection timeout.
> if the following lines are changed from
> {code}
> Endpoint ep = Endpoint.publish("soap.udp://:9436", implementor);
> ...
> service.addPort(udpPortName, "http://schemas.xmlsoap.org/soap/", "soap.udp://:9436");
> {code}
> to
> {code}
> Endpoint ep = Endpoint.publish("soap.udp://[::1]:9436", implementor);
> ...
> service.addPort(udpPortName, "http://schemas.xmlsoap.org/soap/", "soap.udp://[::1]:9436");
> {code}
> test passes.
> I did not inspect if both addresses has to be changed or only one suffice

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira



More information about the jbossws-issues mailing list