Java NetSuite Web Service
Is there any documentation or reference or sample code for using Java’s NetSuite Web Service?
Setup the language to English.
Alternativly SuiteAnswers has an equivalent article: Building an Application with Java using Apache Axis
Do you happen to try to followup the steps in there?
Documentation link is pretty old, for example the code given uses the login operation which is no longer supported.
That said the example project is a fair starting point. It avoids a lot of the mess involved with trying to use an old version of axis on a complex wsdl. Its not too hard getting requests going to NetSuite using the code from the project.
The general approach is what NetSuite documents: Generate a client using a tool like Apache Axis (I would at least use the more modern Apache Axis 2). Use the client to send requests to NetSuite. The SuiteTalk SOAP web service is not an ideal starting point for learning how to do SOAP, its not a simple service.
Did you find any documentation or reference or sample code for using Java’s NetSuite Web Service? How you did it?