How to update list and multi list in SOAP UI-Agile PLM
I am able to successfully create an object (Part) via a SOAP call from my web application, however, I’ve only been successful in passing in 3 values:
<classIdentifier>
<number>
<description>
Anytime I attempt to pass in any other values it fails.
Here is my SOAP string being passed into my AJAX call:
var str =
‘<?xml version=”1.0″ encoding=”utf-8″?>’ +
‘<soapenv:Envelope ‘ +
‘xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” ‘ +
‘xmlns:xsd=”http://www.w3.org/2001/XMLSchema” ‘ +
‘xmlns:soapenv=”http://schemas.xmlsoap.org/soap/envelope/” ‘ +
‘xmlns:v1=”http://xmlns.oracle.com/AgileObjects/Core/Business/V1″> ‘ +
‘<soapenv:Body>’ +
‘<v1:createObject>’ +
‘<request>’ +
‘<requests>’ +
‘<classIdentifier>GameTheme</classIdentifier>’ +