Hello, anyone know what the status of this bug is?
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=24845 -
The SOAP response from Axis for an RPC style service that returns
complexTypes in the response places a namespace prefix on the
complexType elements. .NET clients cannot hanlde this prefix.
I've been experiencing this problem ever since I moved from 1.1b2. I'm
now on 1.2b and this occurs with all calls from .Net clients to my
services.
I am also running into this with WSS4J in my client calls to a .Net
service implementing WS-Security. In this case, the entire signature is
ignored in the following.
Is this something others are running into when working with .Net or is
it just me? I'm at a loss here.
<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Header>
<wsse:Security soapenv:mustUnderstand="1"
xmlns:wsse="http://www.docs.oasis-open.org/wss/2004/01/oasis-200401-wss-
wssecurity-secext-1.0.xsd">
<wsse:BinarySecurityToken
EncodingType="http://www.docs.oasis-open.org/wss/2004/01/oasis-200401-ws
s-wssecurity-secext-1.0.xsd#Base64Binary"
ValueType="http://www.docs.oasis-open.org/wss/2003/12/oasis-200401-wss-x
509-token-profile-1.0#X509v3" wsu:Id="id--134780"
xmlns:wsu="http://www.docs.oasis-open.org/wss/2004/01/oasis-200401-wss-w
ssecurity-utility-1.0.xsd">
...
</wsse:BinarySecurityToken>
<ds:Signature xmlns:ds="http://www.w3.org/2000/09/xmldsig#">
<ds:SignedInfo>
<ds:CanonicalizationMethod
Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/>
<ds:SignatureMethod
Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha1"/>
<ds:Reference URI="#id-4799946">
<ds:Transforms>
<ds:Transform
Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/>
</ds:Transforms>
<ds:DigestMethod
Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/>
<ds:DigestValue>6fQnXhyQ0W403Yuu0wGKGlyxsxg=</ds:DigestValue>
</ds:Reference>
</ds:SignedInfo>
<ds:SignatureValue>
Fh3OiA89Nwo3HIgC07wbGCE8nZx1652OvEvb4i409+k4Oah4lXITao+jsMUVOFoDFpt7pi0l
LRrR
l116KegU4aQjLzn6TRn9bajP8P7w8B2Aob/UH8HoX71zzC6bQ6vS5y6kzwifmyp/1IeEeMvd
NRdd
Z/o77Q8L/u/l4wNdsmo=
</ds:SignatureValue>
<ds:KeyInfo Id="id-22746539">
<wsse:SecurityTokenReference>
<wsse:Reference URI="#id--134780"/>
</wsse:SecurityTokenReference>
</ds:KeyInfo>
</ds:Signature>
<wsu:Timestamp
xmlns:wsu="http://www.docs.oasis-open.org/wss/2004/01/oasis-200401-wss-w
ssecurity-utility-1.0.xsd">
<wsu:Created>
2004-04-02T22:55:36Z
</wsu:Created>
</wsu:Timestamp>
</wsse:Security>
</soapenv:Header>
<soapenv:Body wsu:Id="id-4799946"
xmlns:wsu="http://www.docs.oasis-open.org/wss/2004/01/oasis-200401-wss-w
ssecurity-utility-1.0.xsd">
</soapenv:Body>
</soapenv:Envelope>
Ryan
|