I have a working service and client. The service and client code are generated from a wsdl contract using WCSF Blue tool. While generating code for service and client I ensured that the Format SOAP Action in the tool is used. This will add ReplyAction value in Service and Client.
The system will also work if I omit the ReplyAction (= “*”) in both service and client.
I have following scenario
I need ReplyAction URI set both in service and client
I do not have control over the client. The client is developed by somebody else using the wsdl.
In this scenario, what will be the corresponding ReplyAction to be used by the client? I cannot use ICalculationService/getMultipliedResponse. It should be using namespaces from wsdl. What will be the correct value?
Operation:
[System.ServiceModel.OperationContractAttribute(Action="urn:lijo:demos:multiplyservice:calculation:v1/ICalculationService/getMultiplied", ReplyAction="urn:lijo:demos:multiplyservice:calculation:v1/ICalculationService/getMultipliedRe" + "sponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] getMultipliedResponse getMultiplied(getMultipliedRequest request);
WSDL
<definitions xmlns:import0="urn:lijo:demos:multiplyservice:messages:v1" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:import1="urn:lijo:demos:multiplyservice:data:v1" xmlns:tns="urn:lijo:demos:multiplyservice:calculation:v1" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" name="CalculationService" targetNamespace="urn:lijo:demos:multiplyservice:calculation:v1" xmlns="http://schemas.xmlsoap.org/wsdl/">
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" />
<types>
<xsd:schema>
<xsd:import schemaLocation="C:\toolbox\LijosServiceApp\NewService\RestaurantMessages.xsd" namespace="urn:lijo:demos:multiplyservice:messages:v1" />
<xsd:import schemaLocation="C:\toolbox\LijosServiceApp\NewService\RestaurantData.xsd" namespace="urn:lijo:demos:multiplyservice:data:v1" />
</xsd:schema>
</types>
<message name="getMultiplied">
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" />
<part name="parameters" element="import0:getMultiplied" />
</message>
<message name="getMultipliedResponse">
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" />
<part name="parameters" element="import0:getMultipliedResponse" />
</message>
<portType name="CalculationServiceInterface">
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" />
<operation name="getMultiplied">
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" />
<input message="tns:getMultiplied" />
<output message="tns:getMultipliedResponse" />
</operation>
</portType>
<binding name="BasicHttpBinding_CalculationServiceInterface" type="tns:CalculationServiceInterface">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
<operation name="getMultiplied">
<soap:operation soapAction="urn:lijo:demos:multiplyservice:calculation:v1:getMultiplied" style="document" />
<input>
<soap:body use="literal" />
</input>
<output>
<soap:body use="literal" />
</output>
</operation>
</binding>
<service name="CalculationServicePort">
<port name="CalculationServicePort" binding="tns:BasicHttpBinding_CalculationServiceInterface">
<soap:address location="http://localhost/CalculationService" />
</port>
</service>
</definitions>
RestaurantData.XSD
<?xml version="1.0" encoding="utf-8" ?>
<xs:schema id="RestaurantData" targetNamespace="urn:lijo:demos:multiplyservice:data:v1"
elementFormDefault="qualified" xmlns="urn:lijo:demos:multiplyservice:data:v1"
xmlns:mstns="urn:lijo:demos:multiplyservice:data:v1" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:complexType name="multipliedResult">
<xs:sequence>
<xs:element name="resultNumber" type="xs:int" />
</xs:sequence>
</xs:complexType>
</xs:schema>
RestaurantMessages.xsd
<?xml version="1.0" encoding="utf-8" ?>
<xs:schema id="RestaurantMessages" targetNamespace="urn:lijo:demos:multiplyservice:messages:v1"
elementFormDefault="qualified" xmlns="urn:lijo:demos:multiplyservice:messages:v1"
xmlns:mstns="urn:lijo:demos:multiplyservice:messages:v1"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:import="urn:lijo:demos:multiplyservice:data:v1">
<xs:import id="RestaurantData" schemaLocation="RestaurantData.xsd"
namespace="urn:lijo:demos:multiplyservice:data:v1">
</xs:import>
<xs:element name="getMultiplied">
<xs:complexType>
<xs:sequence>
<xs:element name="inputNumber" type="xs:int" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="getMultipliedResponse">
<xs:complexType>
<xs:sequence>
<xs:element name="restaurants" type="import:multipliedResult" />
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
