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.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
Stay in the Know
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
Please note that on Friday, March 20, 2026, at 8:00 PM Pacific time, our Case Management System will undergo a scheduled maintenance for approximately 4 hours. During this time, case creation via SuiteAnswers will be unavailable and inbound calls will be routed to Customer Service.
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