signing message element by id / no namespace
From: Stewart Bourke (stewartbourke_nospam_at_eircom_dotnet)
Date: 07/09/04
- Next message: David Michael: "Checking WSE managed assemly exists at startup"
- Previous message: William Stacey [MVP]: "Re: Throwing exceptions and empty methods."
- Next in thread: Stewart Bourke: "Re: signing message element by id / no namespace"
- Reply: Stewart Bourke: "Re: signing message element by id / no namespace"
- Maybe reply: Stewart Bourke: "Re: signing message element by id / no namespace"
- Messages sorted by: [ date ] [ thread ]
Date: Fri, 9 Jul 2004 10:27:04 +0100
wse 1.01, vs.net 2003 c#
IS it possible to sign an element of a soap message using an Id attribute
without prefixing the Id attribute with a namespace. wse seems to call for
a namespace referring to ws-utility, but I need to be able to sign the Id
without the namespace - as the webservice I am consuming will not accept the
Id with a NS prefix:
Currently I have:
<soap:Header>
<Operation d3p1:Id="MsgOperation"
xmlns:d3p1="http://schemas.xmlsoap.org/ws/2002/07/utility"
xmlns="http://www.ros.ie/schemas/service/">Inbox/List</Operation>
</soap:Header>
<soap:Body wsu:Id="MsgBody"
xmlns:wsu="http://schemas.xmlsoap.org/ws/2002/07/utility">
<DocumentSearch xmlns="http://www.ros.ie/schemas/inbox/" />
</soap:Body>
but I need:
<soap:Header>
<Operation Id="MsgOperation"
xmlns="http://www.ros.ie/schemas/service/">Inbox/List</Operation>"
</soap:Header>
<soap:Body Id="MsgBody" >
<DocumentSearch xmlns="http://www.ros.ie/schemas/inbox/" />
</soap:Body>
Thanks,
Stewart Bourke
- Next message: David Michael: "Checking WSE managed assemly exists at startup"
- Previous message: William Stacey [MVP]: "Re: Throwing exceptions and empty methods."
- Next in thread: Stewart Bourke: "Re: signing message element by id / no namespace"
- Reply: Stewart Bourke: "Re: signing message element by id / no namespace"
- Maybe reply: Stewart Bourke: "Re: signing message element by id / no namespace"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|