The Source for Java Technology Collaboration
User: Password:
Register | Login help    

Search

Online Books:
java.net on MarkMail:


Addressing Version Mismatch

Posted by kumarjayanti on October 22, 2007 at 3:41 AM PDT

A question on which i often have to search for the answer since the number of different addressing related URL's floating around are just too many...

>The WSE SOAP message contains xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing" and <wsa:Action.../>
>whereas the WSIT implementation searches for a {http://www.w3.org/2005/08/addressing}Action header

This should be easy to fix.  In your NetBeans Project, You can open your  wsit-*.xml (inside build/web/WEB-INF) of your WSIT service and then look for the assertion :

<wsaws:UsingAddressing xmlns:wsaws="http://www.w3.org/2006/05/addressing/wsdl"/>

and change it to look as follows :

<wsaws:UsingAddressing xmlns:wsaws="http://schemas.xmlsoap.org/ws/2004/08/addressing/policy"/>

build  and deploy. 
Related Topics >> Java Web Services and XML      
Comments
Comments are listed in date ascending order (oldest first)