prefix in soap header
- From: "Kevin Eldridge" <kev_Eldridge@xxxxxxxx>
- Date: 20 Sep 2006 03:40:28 -0700
Hi,
I'm trying to call a java web service and i need some help in creating
a custom SOAP header in c#.
I need to access to a Web service that implements authorization policy,
by using a session token to be passed in the SOAP header.
The header should be as the following:
<env:Header>
<cc:sessionContext
xmlns:cc="http://myServer/XMLSchemas/security2.0/">
<ticket>14419812551330193201239823092</ticket>
</cc:sessionContext>
</env:Header>
I tried to create a custom AuthorizationSOAPHeader class to represent
the header, but I was not able to define the right tagprefix "cc" for
the XML root element (sessionContext) and its namespace attribute
(cc="http://myServer/XMLSchemas/security2.0/"). I also tried to
manually add the namespace attribute, by overriding the WriteXml method
provided by the IXmlSerializable interface in the
AuthorizationSOAPHeader class, but it was not possible to correctly set
the tag name to "cc:sessionContext", as the ":" character was encoded.
I had to define a custom header class because it isn't defined in the
wsdl because the soap call is intercepted by a proxy service which
inspects the header of the request in order to see if the caller can be
authenticated; then, if the user is authenticated, the request is
routed to the demanded web service. If the sessionContext node doesn't
have the cc prefix as described above, the request is rejected.
Is there a way to set the tag prefix for the XMLRootElement of the
header class( by overriding the WriteXml provided by the
IXmlSerializable interface ) avoiding the encoding of the colon mark?
Or the only possible solution is to implement a SOAP extension?
Thank you for any answer.
.
- Follow-Ups:
- Re: prefix in soap header
- From: John Saunders
- Re: prefix in soap header
- Prev by Date: Re: Strange error
- Next by Date: RE: passing custom object to webservice
- Previous by thread: Internal Webservice - UDDI Needed?
- Next by thread: Re: prefix in soap header
- Index(es):
Relevant Pages
|