You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cxf.apache.org by "Jervis Liu (JIRA)" <ji...@apache.org> on 2007/03/22 10:58:32 UTC

[jira] Created: (CXF-485) Multiple Endpoints should be able to be published on the same port

Multiple Endpoints should be able to be published on the same port
------------------------------------------------------------------

                 Key: CXF-485
                 URL: https://issues.apache.org/jira/browse/CXF-485
             Project: CXF
          Issue Type: Bug
          Components: Transports
            Reporter: Jervis Liu


I have a code snippet like below:

        Object implementor = new GreeterImplMixedStyle();
        String address = "http://localhost:9027/SoapContext/SoapPort";
        Endpoint.publish(address, implementor);
        
        Object implementor1 = new GreeterImplMixedStyle();
        String address1 = "http://localhost:9027/SoapContext1/SoapPort";
        Endpoint.publish(address1, implementor1);

However this does not work as I got an "Address already in use: bind" exception. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (CXF-485) Multiple Endpoints should be able to be published on the same port

Posted by "Jervis Liu (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CXF-485?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jervis Liu resolved CXF-485.
----------------------------

    Resolution: Invalid

sorry, false alarm

> Multiple Endpoints should be able to be published on the same port
> ------------------------------------------------------------------
>
>                 Key: CXF-485
>                 URL: https://issues.apache.org/jira/browse/CXF-485
>             Project: CXF
>          Issue Type: Bug
>          Components: Transports
>            Reporter: Jervis Liu
>
> I have a code snippet like below:
>         Object implementor = new GreeterImplMixedStyle();
>         String address = "http://localhost:9027/SoapContext/SoapPort";
>         Endpoint.publish(address, implementor);
>         
>         Object implementor1 = new GreeterImplMixedStyle();
>         String address1 = "http://localhost:9027/SoapContext1/SoapPort";
>         Endpoint.publish(address1, implementor1);
> However this does not work as I got an "Address already in use: bind" exception. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Closed: (CXF-485) Multiple Endpoints should be able to be published on the same port

Posted by "Jervis Liu (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CXF-485?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jervis Liu closed CXF-485.
--------------------------


> Multiple Endpoints should be able to be published on the same port
> ------------------------------------------------------------------
>
>                 Key: CXF-485
>                 URL: https://issues.apache.org/jira/browse/CXF-485
>             Project: CXF
>          Issue Type: Bug
>          Components: Transports
>            Reporter: Jervis Liu
>
> I have a code snippet like below:
>         Object implementor = new GreeterImplMixedStyle();
>         String address = "http://localhost:9027/SoapContext/SoapPort";
>         Endpoint.publish(address, implementor);
>         
>         Object implementor1 = new GreeterImplMixedStyle();
>         String address1 = "http://localhost:9027/SoapContext1/SoapPort";
>         Endpoint.publish(address1, implementor1);
> However this does not work as I got an "Address already in use: bind" exception. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.