I have an ancient web service client that needs to talk to my WCF 4.0 service. The client is a large old system in a another company that is not going to change. We have new clients that needs WCF functionality, so we have it, but now some more work is needed to support the old client.
I have decorated several parts of the WCF service with Attributes, and a lot of the emitted WSDL looks like the web service that the ancient client used to call. I have a few more parts that don't look like the legacy stuff. Where can I look to make the new server look like the old?
The old (Web Service) system has:
<wsdl:portType name="QueueServiceSoap">
<wsdl:operation name="SubmitRequest">
<wsdl:input message="tns:SubmitRequestSoapIn"/>
<wsdl:output message="tns:SubmitRequestSoapOut"/>
</wsdl:operation>
</wsdl:portType>
The new (WCF Service) system has:
<wsdl:portType name="QueueServiceSoap">
<wsdl:operation name="SubmitRequest">
<wsdl:input wsaw:Action="https://test.com/SubmitRequest" message="tns:QueueServiceSoap_SubmitRequest_InputMessage"/>
<wsdl:output wsaw:Action="https://test.com/QueueServiceSoap/SubmitRequestResponse" message="tns:QueueServiceSoap_SubmitRequest_OutputMessage"/>
</wsdl:operation>
</wsdl:portType>
I need to change the WCF service to look like the WS one... Help?
Thanks!