Discussions
Join us for complimentary one-day events around the world and step into a future fueled by AI and limitless potential. Explore new breakthroughs, sharpen your skills, and connect with experts who are shaping what’s next. Experience bold keynotes, interactive learning, and connections that span the global NetSuite community. Discover what's next at SuiteConnect Tour 2026.
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)