Discussions
Join the NetSuite community to innovate, connect, and discover what’s next.
SuiteWorld brings thousands of innovators, builders, and leaders together to learn, connect, and shape what’s next. This October, explore how to build a stronger foundation for growth through inspiring keynotes, major product reveals, hands-on sessions, and unforgettable moments—all in one place for our biggest event of the year. Register now
ColdFusion Anyone?
I am Trying to find someone to get me started on the right path in consuming my products via ColdFusion.
I have some sample code that I have been experimenting with here:
I can do this...
<cfscript>
stUser = structNew();
stUser.email = "xxx";
stUser.password = "xxx";
stUser.account = "xxx";
stUser.role = 31;
ws = createObject("webservice", "https://webservices.netsuite.com/wsdl/v2_5_0/netsuite.wsdl");
</cfscript>
And if I dump the ws variable I get something like this....
Methods:
add (returns com.netsuite.webservices.platform.messages_2_5.WriteResponse)
get (returns com.netsuite.webservices.platform.messages_2_5.ReadResponse)
..
..
login (returns com.netsuite.webservices.platform.messages_2_5.SessionResponse)