I tried a couple of things and for some reason I just can't seem to get this right. I will paste the information from the web service below and I have tried altering the response in web services to conform to the wsdl but I just can't seem to get it right.
The response comes back null every time even though the web service is returning a result, if possible could somebody please look at the wsdl requests and response to see if there is an issue or alternatively if there is somehow a way for me to see where the serialization fails in the proxy class?
The client is in c# and the service is in Java which I do not have access to but I can change the response in fiddler to test and then request them to make the changes.
The request in question is the salesOrderCreate request.
I took some things out of the wsdl to make it smaller to fit into the body.
WSDL
<?xml version="1.0" encoding="utf-8"?>
<wsdl:definitions xmlns:tns3="urn:fakeName.za.co.fakeName2.fakeName.distribution2.sales" xmlns:intf="http://someaddress:16899/axis/services/DistributionWS" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns4="urn:fakeName.za.co.fakeName2.fakeName.distribution2.purchasing" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns1="urn:fakeName.za.co.fakeName2.fakeName.distribution2" xmlns:tns2="http://distribution2.fakeName.fakeName2.co.za.fakeName" xmlns:impl="http://someaddress:16899/axis/services/DistributionWS" targetNamespace="http://someaddress:16899/axis/services/DistributionWS" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
<wsdl:types>
<xsd:schema xmlns="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" targetNamespace="urn:fakeName.za.co.fakeName2.fakeName.distribution2">
<xsd:import namespace="urn:fakeName.za.co.fakeName2.fakeName.distribution2.sales" />
<xsd:import namespace="urn:fakeName.za.co.fakeName2.fakeName.distribution2.purchasing" />
<xsd:import namespace="http://someaddress:16899/axis/services/DistributionWS" />
</xsd:schema>
<xsd:schema xmlns="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" targetNamespace="http://distribution2.fakeName.fakeName2.co.za.fakeName">
<xsd:import namespace="urn:fakeName.za.co.fakeName2.fakeName.distribution2.sales" />
<xsd:import namespace="urn:fakeName.za.co.fakeName2.fakeName.distribution2.purchasing" />
<xsd:import namespace="urn:fakeName.za.co.fakeName2.fakeName.distribution2" />
<xsd:import namespace="http://someaddress:16899/axis/services/DistributionWS" />
<xsd:element name="itemCreateRequest" type="tns1:ItemCreateRequest" />
<xsd:element name="itemChangeRequest" type="tns1:ItemChangeRequest" />
<xsd:element name="itemExistsRequest" type="tns1:ItemExistsRequest" />
<xsd:element name="salesOrderCreateRequest" type="tns3:SalesOrderCreateRequest" />
<xsd:element name="salesOrderUpdateRequest" type="tns3:SalesOrderUpdateRequest" />
<xsd:element name="salesOrderCancelRequest" type="tns3:SalesOrderCancelRequest" />
<xsd:element name="vendorExistsRequest" type="tns4:VendorExistsRequest" />
</xsd:schema>
<xsd:schema xmlns="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" targetNamespace="http://someaddress:16899/axis/services/DistributionWS">
<xsd:import namespace="urn:fakeName.za.co.fakeName2.fakeName.distribution2.sales" />
<xsd:import namespace="urn:fakeName.za.co.fakeName2.fakeName.distribution2.purchasing" />
<xsd:import namespace="urn:fakeName.za.co.fakeName2.fakeName.distribution2" />
<xsd:element name="itemCreateReturn" type="tns1:ItemCreateResponse" />
<xsd:element name="itemChangeReturn" type="tns1:ItemChangeResponse" />
<xsd:element name="itemExistsReturn" type="xsd:boolean" />
<xsd:complexType name="ArrayOf_tns3_SalesOrderLineTextCreateRequest">
<xsd:sequence>
<xsd:element minOccurs="0" maxOccurs="unbounded" name="item" type="tns3:SalesOrderLineTextCreateRequest" />
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="ArrayOf_tns3_SalesOrderLineCreateRequest">
<xsd:sequence>
<xsd:element minOccurs="0" maxOccurs="unbounded" name="item" type="tns3:SalesOrderLineCreateRequest" />
</xsd:sequence>
</xsd:complexType>
<xsd:element name="salesOrderCreateReturn" type="tns3:SalesOrderCreateResponse" />
<xsd:complexType name="ArrayOf_tns3_SalesOrderLineTextUpdateRequest">
<xsd:sequence>
<xsd:element minOccurs="0" maxOccurs="unbounded" name="item" type="tns3:SalesOrderLineTextUpdateRequest" />
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="ArrayOf_tns3_SalesOrderLineUpdateRequest">
<xsd:sequence>
<xsd:element minOccurs="0" maxOccurs="unbounded" name="item" type="tns3:SalesOrderLineUpdateRequest" />
</xsd:sequence>
</xsd:complexType>
<xsd:element name="salesOrderUpdateReturn" type="tns3:SalesOrderUpdateResponse" />
<xsd:complexType name="ArrayOf_tns3_SalesOrderLineCancelRequest">
<xsd:sequence>
<xsd:element minOccurs="0" maxOccurs="unbounded" name="item" type="tns3:SalesOrderLineCancelRequest" />
</xsd:sequence>
</xsd:complexType>
<xsd:element name="salesOrderCancelReturn" type="tns3:SalesOrderCancelResponse" />
<xsd:element name="vendorExistsReturn" type="xsd:boolean" />
</xsd:schema>
<xsd:schema xmlns="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" targetNamespace="urn:fakeName.za.co.fakeName2.fakeName.distribution2.sales">
<xsd:import namespace="urn:fakeName.za.co.fakeName2.fakeName.distribution2.purchasing" />
<xsd:import namespace="urn:fakeName.za.co.fakeName2.fakeName.distribution2" />
<xsd:import namespace="http://someaddress:16899/axis/services/DistributionWS" />
<xsd:complexType name="SalesOrderBillingCreateRequest">
<xsd:sequence>
<xsd:element name="billingAddress1" nillable="true" type="xsd:string" />
<xsd:element name="billingAddress2" nillable="true" type="xsd:string" />
<xsd:element name="billingAddress3" nillable="true" type="xsd:string" />
<xsd:element name="billingAddress4" nillable="true" type="xsd:string" />
<xsd:element name="billingAddress5" nillable="true" type="xsd:string" />
<xsd:element name="billingAddress6" nillable="true" type="xsd:string" />
<xsd:element name="billingCustomerName" nillable="true" type="xsd:string" />
<xsd:element name="billingFaxNumber" nillable="true" type="xsd:string" />
<xsd:element name="billingPhoneNumber" nillable="true" type="xsd:string" />
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="SalesOrderLineTextCreateRequest">
<xsd:sequence>
<xsd:element name="orderTextLineNumber" nillable="true" type="xsd:decimal" />
<xsd:element name="text" nillable="true" type="xsd:string" />
<xsd:element name="textType" nillable="true" type="xsd:string" />
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="SalesOrderLineCreateRequest">
<xsd:sequence>
<xsd:element name="despatchDate" nillable="true" type="xsd:dateTime" />
<xsd:element name="itemBarcode" nillable="true" type="xsd:string" />
<xsd:element name="itemCode" nillable="true" type="xsd:string" />
<xsd:element name="itemDescription" nillable="true" type="xsd:string" />
<xsd:element name="orderLineNumber" nillable="true" type="xsd:decimal" />
<xsd:element name="orderQuantity" nillable="true" type="xsd:decimal" />
<xsd:element name="salesOrderLineTextCreateRequests" nillable="true" type="impl:ArrayOf_tns3_SalesOrderLineTextCreateRequest" />
<xsd:element name="unitPrice" nillable="true" type="xsd:decimal" />
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="SalesOrderCreateRequest">
<xsd:sequence>
<xsd:element name="accountNumber" nillable="true" type="xsd:string" />
<xsd:element name="accountPassword" nillable="true" type="xsd:string" />
<xsd:element name="carrierCode" nillable="true" type="xsd:string" />
<xsd:element name="contactId" nillable="true" type="xsd:string" />
<xsd:element name="customerContactId" nillable="true" type="xsd:string" />
<xsd:element name="customerReference" nillable="true" type="xsd:string" />
<xsd:element name="customerReferenceDate" nillable="true" type="xsd:dateTime" />
<xsd:element name="deliveryAddress1" nillable="true" type="xsd:string" />
<xsd:element name="deliveryAddress2" nillable="true" type="xsd:string" />
<xsd:element name="deliveryAddress3" nillable="true" type="xsd:string" />
<xsd:element name="deliveryAddress4" nillable="true" type="xsd:string" />
<xsd:element name="deliveryAddress5" nillable="true" type="xsd:string" />
<xsd:element name="deliveryAddress6" nillable="true" type="xsd:string" />
<xsd:element name="deliveryName" nillable="true" type="xsd:string" />
<xsd:element name="emailAddress" nillable="true" type="xsd:string" />
<xsd:element name="entity" nillable="true" type="xsd:string" />
<xsd:element name="orderPriority" nillable="true" type="xsd:decimal" />
<xsd:element name="partialDelivery" nillable="true" type="xsd:string" />
<xsd:element name="salesOrderBillingCreateRequest" nillable="true" type="tns3:SalesOrderBillingCreateRequest" />
<xsd:element name="salesOrderLineCreateRequests" nillable="true" type="impl:ArrayOf_tns3_SalesOrderLineCreateRequest" />
<xsd:element name="sourceOfOrder" nillable="true" type="xsd:string" />
<xsd:element name="specialInstructions1" nillable="true" type="xsd:string" />
<xsd:element name="specialInstructions2" nillable="true" type="xsd:string" />
<xsd:element name="standardAccountNumber" nillable="true" type="xsd:string" />
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="SalesOrderCreateResponse">
<xsd:sequence>
<xsd:element name="messageDescription" nillable="true" type="xsd:string" />
<xsd:element name="messageId" nillable="true" type="xsd:string" />
</xsd:sequence>
</xsd:complexType>
</xsd:schema>
</wsdl:types>
<wsdl:message name="itemCreateResponse">
<wsdl:part name="itemCreateReturn" element="impl:itemCreateReturn" />
</wsdl:message>
<wsdl:message name="itemExistsRequest">
<wsdl:part name="itemExistsRequest" element="tns2:itemExistsRequest" />
</wsdl:message>
<wsdl:message name="vendorExistsRequest">
<wsdl:part name="vendorExistsRequest" element="tns2:vendorExistsRequest" />
</wsdl:message>
<wsdl:message name="salesOrderCreateRequest">
<wsdl:part name="salesOrderCreateRequest" element="tns2:salesOrderCreateRequest" />
</wsdl:message>
<wsdl:message name="itemCreateRequest">
<wsdl:part name="itemCreateRequest" element="tns2:itemCreateRequest" />
</wsdl:message>
<wsdl:message name="salesOrderCreateResponse">
<wsdl:part name="salesOrderCreateReturn" element="impl:salesOrderCreateReturn" />
</wsdl:message>
<wsdl:portType name="DistributionWS">
<wsdl:operation name="itemCreate" parameterOrder="itemCreateRequest">
<wsdl:input name="itemCreateRequest" message="impl:itemCreateRequest" />
<wsdl:output name="itemCreateResponse" message="impl:itemCreateResponse" />
</wsdl:operation>
<wsdl:operation name="itemChange" parameterOrder="itemChangeRequest">
<wsdl:input name="itemChangeRequest" message="impl:itemChangeRequest" />
<wsdl:output name="itemChangeResponse" message="impl:itemChangeResponse" />
</wsdl:operation>
<wsdl:operation name="itemExists" parameterOrder="itemExistsRequest">
<wsdl:input name="itemExistsRequest" message="impl:itemExistsRequest" />
<wsdl:output name="itemExistsResponse" message="impl:itemExistsResponse" />
</wsdl:operation>
<wsdl:operation name="salesOrderCreate" parameterOrder="salesOrderCreateRequest">
<wsdl:input name="salesOrderCreateRequest" message="impl:salesOrderCreateRequest" />
<wsdl:output name="salesOrderCreateResponse" message="impl:salesOrderCreateResponse" />
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="DistributionWSSoapBinding" type="impl:DistributionWS">
<wsdlsoap:binding transport="http://schemas.xmlsoap.org/soap/http" />
<wsdl:operation name="itemCreate">
<wsdlsoap:operation soapAction="" />
<wsdl:input name="itemCreateRequest">
<wsdlsoap:body use="literal" />
</wsdl:input>
<wsdl:output name="itemCreateResponse">
<wsdlsoap:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="itemChange">
<wsdlsoap:operation soapAction="" />
<wsdl:input name="itemChangeRequest">
<wsdlsoap:body use="literal" />
</wsdl:input>
<wsdl:output name="itemChangeResponse">
<wsdlsoap:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="itemExists">
<wsdlsoap:operation soapAction="" />
<wsdl:input name="itemExistsRequest">
<wsdlsoap:body use="literal" />
</wsdl:input>
<wsdl:output name="itemExistsResponse">
<wsdlsoap:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="salesOrderCreate">
<wsdlsoap:operation soapAction="" />
<wsdl:input name="salesOrderCreateRequest">
<wsdlsoap:body use="literal" />
</wsdl:input>
<wsdl:output name="salesOrderCreateResponse">
<wsdlsoap:body use="literal" />
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="DistributionWSService">
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
DistributionWS
</wsdl:documentation>
<wsdl:port name="DistributionWS" binding="impl:DistributionWSSoapBinding">
<wsdlsoap:address location="http://SomeAddress" />
</wsdl:port>
</wsdl:service>
</wsdl:definitions>
Request
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<salesOrderCreateRequest xmlns="http://distribution2.fakeName.fakeName2.co.za.fakeName">
<accountNumber xmlns="urn:fakeName.za.co.fakeName2.fakeName.distribution2.sales">Blah</accountNumber>
<accountPassword xmlns="urn:fakeName.za.co.fakeName2.fakeName.distribution2.sales">Blah</accountPassword>
<carrierCode xsi:nil="true" xmlns="urn:fakeName.za.co.fakeName2.fakeName.distribution2.sales"/>
<contactId xmlns="urn:fakeName.za.co.fakeName2.fakeName.distribution2.sales"/>
<customerContactId xmlns="urn:fakeName.za.co.fakeName2.fakeName.distribution2.sales">110044545</customerContactId>
<customerReference xmlns="urn:fakeName.za.co.fakeName2.fakeName.distribution2.sales">15376</customerReference>
<customerReferenceDate xmlns="urn:fakeName.za.co.fakeName2.fakeName.distribution2.sales">2012-08-30T09:46:52.4050924+02:00</customerReferenceDate>
<deliveryAddress1 xmlns="urn:fakeName.za.co.fakeName2.fakeName.distribution2.sales">Test</deliveryAddress1>
<deliveryAddress2 xmlns="urn:fakeName.za.co.fakeName2.fakeName.distribution2.sales">Test</deliveryAddress2>
<deliveryAddress3 xmlns="urn:fakeName.za.co.fakeName2.fakeName.distribution2.sales">Test</deliveryAddress3>
<deliveryAddress4 xmlns="urn:fakeName.za.co.fakeName2.fakeName.distribution2.sales">Test</deliveryAddress4>
<deliveryAddress5 xmlns="urn:fakeName.za.co.fakeName2.fakeName.distribution2.sales">Test</deliveryAddress5>
<deliveryAddress6 xmlns="urn:fakeName.za.co.fakeName2.fakeName.distribution2.sales">Test</deliveryAddress6>
<deliveryName xmlns="urn:fakeName.za.co.fakeName2.fakeName.distribution2.sales">Test</deliveryName>
<emailAddress xsi:nil="true" xmlns="urn:fakeName.za.co.fakeName2.fakeName.distribution2.sales"/>
<entity xmlns="urn:fakeName.za.co.fakeName2.fakeName.distribution2.sales">CBT</entity>
<orderPriority xsi:nil="true" xmlns="urn:fakeName.za.co.fakeName2.fakeName.distribution2.sales"/>
<partialDelivery xmlns="urn:fakeName.za.co.fakeName2.fakeName.distribution2.sales">Y</partialDelivery>
<salesOrderBillingCreateRequest xsi:nil="true" xmlns="urn:fakeName.za.co.fakeName2.fakeName.distribution2.sales"/>
<salesOrderLineCreateRequests xmlns="urn:fakeName.za.co.fakeName2.fakeName.distribution2.sales">
<item xmlns="http://credo-integrator.axiom.co.za:16899/axis/services/DistributionWS">
<despatchDate xmlns="urn:fakeName.za.co.fakeName2.fakeName.distribution2.sales">2012-08-30T09:46:52.4080928+02:00</despatchDate>
<itemBarcode xmlns="urn:fakeName.za.co.fakeName2.fakeName.distribution2.sales">1659.0</itemBarcode>
<itemCode xmlns="urn:fakeName.za.co.fakeName2.fakeName.distribution2.sales">1659.0</itemCode>
<itemDescription xmlns="urn:fakeName.za.co.fakeName2.fakeName.distribution2.sales">APLS673: Additional Reader: Applied Learning Support</itemDescription>
<orderLineNumber xmlns="urn:fakeName.za.co.fakeName2.fakeName.distribution2.sales">1</orderLineNumber>
<orderQuantity xmlns="urn:fakeName.za.co.fakeName2.fakeName.distribution2.sales">1</orderQuantity>
<salesOrderLineTextCreateRequests xsi:nil="true" xmlns="urn:fakeName.za.co.fakeName2.fakeName.distribution2.sales"/>
<unitPrice xsi:nil="true" xmlns="urn:fakeName.za.co.fakeName2.fakeName.distribution2.sales"/>
</item>
</salesOrderLineCreateRequests>
<sourceOfOrder xsi:nil="true" xmlns="urn:fakeName.za.co.fakeName2.fakeName.distribution2.sales"/>
<specialInstructions1 xmlns="urn:fakeName.za.co.fakeName2.fakeName.distribution2.sales">None</specialInstructions1>
<specialInstructions2 xsi:nil="true" xmlns="urn:fakeName.za.co.fakeName2.fakeName.distribution2.sales"/>
<standardAccountNumber xsi:nil="true" xmlns="urn:fakeName.za.co.fakeName2.fakeName.distribution2.sales"/>
</salesOrderCreateRequest>
</s:Body>
</s:Envelope>
Incorrect Response
<?xml version="1.0" encoding="UTF-8"?><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:Body>
<salesOrderCreateRequestReturn xmlns="http://distribution2.fakeName.fakeName2.co.za.fakeName">
<messageDescription>Ok</messageDescription>
<messageId>SI0</messageId>
</salesOrderCreateRequestReturn>
</soapenv:Body>
</soapenv:Envelope>
Correct Response
<?xml version="1.0" encoding="UTF-8"?><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">
<s:Header xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" />
<soapenv:Body>
<salesOrderCreateReturn xmlns="http://SomeUrl:16899/axis/services/DistributionWS">
<messageDescription xmlns="urn:fakeName.za.co.fakeName2.fakeName.distribution2.sales">Ok</messageDescription>
<messageId xmlns="urn:fakeName.za.co.fakeName2.fakeName.distribution2.sales">SI0</messageId>
</salesOrderCreateReturn>
</soapenv:Body>
</soapenv:Envelope>
c# Client code
Bookmaster_Integration.DistributionWSClient client = new Bookmaster_Integration.DistributionWSClient();
var so = new Bookmaster_Test.Bookmaster_Integration.salesOrderCreateRequest1();
var soCreateRequest = new SalesOrderCreateRequest()
{
accountNumber = "blah",
accountPassword = "blah",
contactId = "",
customerReference = "15376",
customerReferenceDate = DateTime.Now,
deliveryName = "Test",
deliveryAddress1 = "Test",
deliveryAddress2 = "Test",
deliveryAddress3 = "Test",
deliveryAddress4 = "Test",
deliveryAddress5 = "Test",
deliveryAddress6 = "Test",
entity = "CBT",
partialDelivery = "Y",
specialInstructions1 = "None",
customerContactId = "110044545"
};
dynamic d = client.salesOrderCreate(soCreateRequest);
d then comes back as null
Bookmaster_Integration.DistributionWSClientand see the methodnames(upper/lower cases etc.) and xml namespaces. – L.B Aug 30 '12 at 9:30