You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cxf.apache.org by "Christian Vest Hansen (JIRA)" <ji...@apache.org> on 2007/12/10 16:10:42 UTC

[jira] Updated: (CXF-1279) configurability of published soap:address location on jaxws endpoints

     [ https://issues.apache.org/jira/browse/CXF-1279?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Christian Vest Hansen updated CXF-1279:
---------------------------------------

    Attachment: publishedEndpointUrl.1.diff

This is a preliminary patch that is meant for review purpose.

The patch has a number of issues that I'm currently stuck on:
+ the SpringBeansTest.testPublishedEndpointUrl runs fine in Eclipse but breaks in mvn test (this also breaks the build).
+ the changes to jaxws.xsd dosn't seem to have any effect outside the confines of JUnit (this breaks war-file deployment).
+  I've had to add the publishedEndpointUrl property to not only EndpointImpl, but also AbstractEndpointFactory, and I wonder if it needs to be added elsewhere.

> configurability of published soap:address location on jaxws endpoints
> ---------------------------------------------------------------------
>
>                 Key: CXF-1279
>                 URL: https://issues.apache.org/jira/browse/CXF-1279
>             Project: CXF
>          Issue Type: New Feature
>          Components: Configuration
>            Reporter: Christian Vest Hansen
>            Priority: Minor
>         Attachments: publishedEndpointUrl.1.diff
>
>
> Add an publishedEndpointUrl attribute to the jaxws:endpoint spring configuration element that sets the soap:address location attribute in the WSDL that is published for the given web service.
> Basically make this: 
> (beans.xml....) 
>   <jaxws:endpoint id="publishedEndpointUrl" 
>     implementor="#greeter" 
>     address="http://localhost:8080/publishedEndpointUrl" 
>     publishedEndpointUrl="http://cxf.apache.org/GreeterEndpoint"/> 
> (....) 
> Do this: 
> (http://localhost:8080/publishedEndpointUrl?wsdl....) 
>   <wsdl:service name="GreeterService"> 
>     <wsdl:port binding="tns:GreeterServiceSoapBinding" name="GreeterPort"> 
>       <soap:address location="http://cxf.apache.org/GreeterEndpoint"/> 
>     </wsdl:port> 
>   </wsdl:service> 
> (....)
> Mailing list conversation: http://www.nabble.com/configurability-of-published-soap-3Aaddress-location-on-jaxws-endpoints-to14127128.html

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