I am converting a legacy web service to a WCF service. This service currently is being used by front end application. But as of now the front end is not going to consume the new WCF service so instead we plan on rerouting the request to our new service. The catch here is that the new WCF service should be able handle the old input request and should be able to send back the response in the exact same format.
When I generate a wsdl and add it in the soapUI project. The Body is getting wrapped inside a tag with the method name ("UserVerification" is the Operation contract name), is there any way to handle this with out using message contracts(I am using legacy types for input parameters so cant change them)
Right now it is coming like this:
<soapenv:Body>
<wes:UserVerification>
<!--Optional:-->
<wes:userVerificationRequest wes:Direction="Request" >
</wes:userVerificationRequest>
</wes:UserVerificatio>
</soapenv:Body>
I want it to be like this
<soapenv:Body>
<wes:UserVerificationRequest wes:Direction="Request" >
</wes:UserVerificationRequest>
</soapenv:Body>