Hi Guys, I'm using a SOAP web service wherein there are optional par

Hi Guys,
I'm using a SOAP web service wherein there are optional parameters. These parameters as set as optional. However, the parameter tag needs to be removed from the request as it will not accept an empty value. Is this possible when using Call Web Service Smart Service?

For example:
<soapenv:Body>
<ema:SendEmail>
<!--1 or more repetitions:-->
<To>test@test.com</To>
<!--Optional:-->
<ReplyToAddress>no-reply@test</ReplyToAddress>
<!--Zero or more repetitions:-->
<Cc/>
<Subject>Handshake Test</Subject>
<Content>Test Successful</Content>
</ema:SendEmail>

WIll result in a validation error but:


<soapenv:Body>
<ema:SendEmail>
<!--1 or more repetitions:-->
<To>test@test.com</To>
<!--Optional:-->
<ReplyToAddress>no-reply@test</ReplyToAddress>
<Subject>Handshake Test</Subject>
<Content>Test Successful</...

OriginalPostID-160394

OriginalPostID-160394

  Discussion posts and replies are publicly visible