Quantcast
Channel: Visual C# forum
Viewing all articles
Browse latest Browse all 31927

WSDL auto generated with a complex node does not match service request

$
0
0

I have this WSDL,

<s:elementname="IncidentCreated"><s:complexType><s:sequence><s:elementminOccurs="1"maxOccurs="1"name="IncidentCreatedStc"type="tns:IncidentCreatedStc"/></s:sequence></s:complexType></s:element><s:complexTypename="IncidentCreatedStc"><s:sequence><s:elementminOccurs="1"maxOccurs="1"name="CreationDate"type="s:dateTime"/><s:elementminOccurs="1"maxOccurs="1"name="DangerFlag"nillable="true"type="s:int"/><s:elementminOccurs="1"maxOccurs="1"name="DeadDeviceAlias"nillable="true"type="s:string"/></s:sequence></s:complexType>

And I auto generate the service reference (WSDL) in c# and it look like this:

<wsdl:definitionstargetNamespace="ENMAC/TCS"xmlns:s="http://www.w3.org/2001/XMLSchema"xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"xmlns:tns="ENMAC/TCS"xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/"xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"><wsdl:types><s:schemaelementFormDefault="qualified"targetNamespace="ENMAC/TCS"><s:elementname="IncidentCreated"><s:complexType><s:sequence><s:elementminOccurs="0"maxOccurs="1"name="CreationDate"type="s:string"/><s:elementminOccurs="1"maxOccurs="1"name="DangerFlag"nillable="true"type="s:int"/><s:elementminOccurs="0"maxOccurs="1"name="DeadDeviceAlias"type="s:string"/></s:sequence></s:complexType></s:element>

The node IncidentCreatedStc never got created, what I actually wouldn't think it would anyway, the problem is that when I receive the XML from the service it look like

<IncidentCreated><IncidentCreatedStr><CreationDate></CreationDate><DangerFlag></DangerFlag><DeadDeviceAlias></DeadDeviceAlias></IncidentCreatedStr></IncidentCreated>

My question is how do I make my soap service conform to this last format?


Viewing all articles
Browse latest Browse all 31927

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>