Hi,
I am trying to access java based webservice which has an attachment and I have to access it using C# .NET client
I tried using WSE 3.0 to generate client proxy but failed.
I have been given an WSDL
In the message section of WSDL
One of the message has attachment type as hexbinary in request / response
here is the syntax in WSDL
and in the binding section of wsdl i have
type as mime:MultipartR elated
Please help to generate the client proxy and able to access the attachement and document from the webservice.
Appreciate your help
Thanks
WSNET
I am trying to access java based webservice which has an attachment and I have to access it using C# .NET client
I tried using WSE 3.0 to generate client proxy but failed.
I have been given an WSDL
In the message section of WSDL
One of the message has attachment type as hexbinary in request / response
here is the syntax in WSDL
Code:
<wsdl:part name="attachment" type="xs:hexBinary"/>
type as mime:MultipartR elated
Code:
<wsdl:output>
<mime:multipartRelated>
<mime:part>
<soap:body parts="response" use="literal"/>
</mime:part>
<mime:part>
<mime:content part="attachment" type="*/*"/>
</mime:part>
</mime:multipartRelated>
</wsdl:output>
Appreciate your help
Thanks
WSNET