I need to create a service that will be “returned” by a third party. As a result, I need to match their WSDL.
Their WSDL has all the operations defined using soapAction="" , so my service should do the same. Sorry, I get an error message:
Operations A and B have the same action (). Each operation must have a unique action value.
There was a mode in ASMX web services where soapAction would not be used, but the name of the request element would be used instead. Is there a way to use WCF not only to send to a request element, but also to retrieve WSDL without soapAction?
c # wsdl wcf
John saunders
source share