Hello, I have a webservice that I can run in SoapUI without any issues. When I try to call the same webservice in PAD I get a 415 status. I am new to this and I am sure it has something to do with the configuration. Any insight anyone might have is very appreciated. The webservice I am calling is in XML format and looks like this:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tem="http://tempuri.org/" xmlns:arr="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<soapenv:Header/>
<soapenv:Body>
<tem:xxxxx_API>
<!--Optional:-->
<tem:LoginCredentials>
<!--Zero or more repetitions:-->
<arr:KeyValueOfstringstring>
<arr:Key>Username</arr:Key>
<arr:Value>xxxxx</arr:Value>
</arr:KeyValueOfstringstring>
<arr:KeyValueOfstringstring>
<arr:Key>Password</arr:Key>
<arr:Value>xxxxx</arr:Value>
</arr:KeyValueOfstringstring>
<arr:KeyValueOfstringstring>
<arr:Key>Database</arr:Key>
<arr:Value>xxxxx</arr:Value>
</arr:KeyValueOfstringstring>
<arr:KeyValueOfstringstring>
<arr:Key>Contract</arr:Key>
<arr:Value>xxxxx</arr:Value>
</arr:KeyValueOfstringstring>
</tem:LoginCredentials>
<!--Optional:-->
<tem:sPartNo>xxxxx</tem:sPartNo>
<!--Optional:-->
<tem:sFromLocation>xxxxx</tem:sFromLocation>
<!--Optional:-->
<tem:sToLocation>xxxxx</tem:sToLocation>
<!--Optional:-->
<tem:Quantity>1</tem:Quantity>
</tem:xxxxx_API>
</soapenv:Body>
</soapenv:Envelope>
I am using variables to fill in the "XXXXX" values.
My configuration looks like this:

The text of the body is this:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tem="http://tempuri.org/" xmlns:arr="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<soapenv:Header/>
<soapenv:Body>
<tem:nnnnn_API>
<!--Optional:-->
<tem:LoginCredentials>
<!--Zero or more repetitions:-->
<arr:KeyValueOfstringstring>
<arr:Key>Username</arr:Key>
<arr:Value>%Username%</arr:Value>
</arr:KeyValueOfstringstring>
<arr:KeyValueOfstringstring>
<arr:Key>Password</arr:Key>
<arr:Value>%Password%</arr:Value>
</arr:KeyValueOfstringstring>
<arr:KeyValueOfstringstring>
<arr:Key>Database</arr:Key>
<arr:Value>%Database%</arr:Value>
</arr:KeyValueOfstringstring>
<arr:KeyValueOfstringstring>
<arr:Key>Contract</arr:Key>
<arr:Value>%Contract%</arr:Value>
</arr:KeyValueOfstringstring>
</tem:LoginCredentials>
<!--Optional:-->
<tem:sPartNo>%PartNo%</tem:sPartNo>
<!--Optional:-->
<tem:sFromLocation>%FromLocation%</tem:sFromLocation>
<!--Optional:-->
<tem:sToLocation>%ToLocation%</tem:sToLocation>
<!--Optional:-->
<tem:Quantity>%Quantity%</tem:Quantity>
</tem:nnnn_API>
</soapenv:Body>
</soapenv:Envelope>