I’m using ServiceStack to develop an SOAP service, and i want to customize my soap service operations soapAction (e.g.: soapAction=”http://mydomain.org/operationName”), how can i achieve this ?
I’ve already read the documentation @ service stack’s github wiki.
ServiceStack support of SOAP basically comes down to embedding the services Response DTO inside a standard SOAP message. This allows existing services to be accessible via SOAP without any consideration for SOAP itself.
Any additional support of SOAP features need to be opt-in and can be added via pull-request. The SoapHandler.cs class is the class that prepares the SOAP response message.