I have a web service installed on JBoss 4.2.3.
My client send a SOAP message including some xml signature.
Then I have a handler on the server side to verify the signature.
But when the message arrive in the handler, namespace declarations have been modified and
the signature fails !!!!
An example of what appends :
my original document :
<aa:node1 xmlns:aa="http:myns">
<aa:node2>
<aa:node3>value</aa:node3>
</aa:node2>
</aa:node1>
the altered document
<aa:node1 xmlns:aa="http:myns">
<aa:node2>
<aa:node3 xmlns:aa="http:myns">value</aa:node3>
</aa:node2>
</aa:node1>
How can I correct this problem ?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4191290#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...