wash_out icon indicating copy to clipboard operation
wash_out copied to clipboard

Allow strings as response without a wrapping tag.

Open jesusabarca opened this issue 7 years ago • 0 comments

While constructing a SOAP service we were required to include a simple string in the response without wrapping it in another tag, like:

<MethodNameResponse>Response string</MethodNameResponse>

But by default, wash_out will wrap the string in a "Value" tag, like:

<MethodNameResponse>
  <Value>Response string</Value>
</MethodNameResponse>

I'll submit a PR with the solution I came up with.

jesusabarca avatar Aug 30 '17 17:08 jesusabarca