Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Keep an eye out for upcoming NetSuite events, including meetups, workshops, and webinars. These sessions are a great way to connect with peers, learn from experts, and stay current on the latest NetSuite updates and best practices. Registration links are provided in each event.
SuiteTalk and soapUI problems
Hi all,
I'm new to soap and could use some help. I'm using the SuiteTalk WSDL with soapUI. I can login using my NetSuite details, and that works fine. But when I try to use 'get','update' or 'search', I get errors. For example a simple 'get' operation:
This is the request(I changed the fields in passport):
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:messages_2013_1.platform.webservices.netsuite.com" xmlns:urn1="urn:core_2013_1.platform.webservices.netsuite.com"> <soapenv:Header> <urn:passport> <urn1:email>USERNAME</urn1:email> <urn1:password>PASSWORD</urn1:password> <urn1:account>ACCOUNTNO</urn1:account> </urn:passport> </soapenv:Header> <soapenv:Body> <urn:get> <urn:baseRef internalId="111" type="customer" xsi:type="platformCore:RecordRef"> <urn:name/> </urn:baseRef> </urn:get> </soapenv:Body> </soapenv:Envelope>
0