[ 
https://issues.apache.org/jira/browse/CXF-793?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12515207
 ] 

Matthias Germann commented on CXF-793:
--------------------------------------

I tried it again with another service and it worked fine. But it still does not 
work for the first service, i developed. I habe to look deeper into that...

I noticed that the address rewriting does not work correctly if the same WSDL 
is used for multiple endpoints. The following example shows a spring 
configuration wich uses the same WSDL for three endpoints. If i deploy this 
configuration, and access the WSDLs with a "?wsdl" Request, all three WSDLs 
have the address of the second endpoint inside.

<beans xmlns="http://www.springframework.org/schema/beans";
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
        xmlns:jaxws="http://cxf.apache.org/jaxws";
        xsi:schemaLocation="
http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd";>

        <import resource="classpath:META-INF/cxf/cxf.xml" />
        <import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" />
        <import resource="classpath:META-INF/cxf/cxf-servlet.xml" />

        <jaxws:endpoint id="srv1"
                
implementor="ch.dvbern.stvbe.sts.test.cxf.service.HelloWorldServiceSamlStandaloneImpl"
                address="/HelloWorldServiceXX"
                wsdlLocation="META-INF/cxf/HelloWorldService.wsdl">
        </jaxws:endpoint>

        <jaxws:endpoint id="srv2"
                
implementor="ch.dvbern.stvbe.sts.test.cxf.service.HelloWorldServiceSamlJaasImpl"
                address="/HelloWorldServiceSamlOptional"
                wsdlLocation="META-INF/cxf/HelloWorldService.wsdl">
        </jaxws:endpoint>

        <jaxws:endpoint id="srv3"
                
implementor="ch.dvbern.stvbe.sts.test.cxf.service.HelloWorldServiceWss4jImpl"
                address="/HelloWorldServiceWss4j"
                wsdlLocation="META-INF/cxf/HelloWorldService.wsdl">
        </jaxws:endpoint>
</beans>

> endpoint address rewriting for user supplied wsdl
> -------------------------------------------------
>
>                 Key: CXF-793
>                 URL: https://issues.apache.org/jira/browse/CXF-793
>             Project: CXF
>          Issue Type: Improvement
>          Components: JAX-WS Runtime
>    Affects Versions: 2.0
>            Reporter: Matthias Germann
>
> If a user supplied WSDL is specified with the wsdlLocationAttribute, the SOAP 
> endpoint address should be rewritten if the WSDL is queried with a 
> "?wsdl"-request. The location attribute should be rewritten to the value of 
> the current HTTP Request (the "?wsdl" request).
> Here is my spring configuration file:
> <beans xmlns="http://www.springframework.org/schema/beans";
>       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
>       xmlns:jaxws="http://cxf.apache.org/jaxws";
>       xsi:schemaLocation="
> http://www.springframework.org/schema/beans 
> http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
> http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd";>
>       
>       <import resource="classpath:META-INF/cxf/cxf.xml"/>
>       <import resource="classpath:META-INF/cxf/cxf-extension-soap.xml"/>
>       <import resource="classpath:META-INF/cxf/cxf-servlet.xml"/>
>               <jaxws:endpoint id="myservice"
>               implementor="test.MyServiceImpl"
>               address="/MyService"
>               wsdlLocation="META-INF/cxf/MyService.wsdl"/>
>       
> </beans>

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

Reply via email to