Donnie, When you instantiate the webservice ie: <cfset nsws = CreateObject("webservice", "https://webservices.netsuite.com/wsdl/v2010_1_0/netsuite.wsdl")>
you should be able to access the methods via <cfset nsws.functionName()> the first thing I would do is dump the variable that you used to instantiate, that will show you what's available to you: <cfset nsws = CreateObject("webservice", "https://webservices.netsuite.com/wsdl/v2010_1_0/netsuite.wsdl")> <cfdump var="#nsws#"> On Fri, Oct 15, 2010 at 11:53 AM, Donnie Carvajal <donnie.carva...@transformyx.com> wrote: > > I've successfully created an object using CreateObject("webservice", > "https://webservices.netsuite.com/wsdl/v2010_1_0/netsuite.wsdl") for > NetSuite. There are a ton of classes that were created in the Stubs folder. > The NetSuite documentation indicates that I need some of these classes to > create objects that will be used in the NetSuite object I created from the > WebService. > > The question I have is what is the correct way to create these objects. It > seems I should be using a CreateObject("java", "some path to class"), but all > of the paths that I have tried return a "class can not be found" error. Is > there a special setting I need to add to CF Administrator for these classes? > Do I need to move these classes somewhere? > > I'm not well versed in Java, so any help is appreciated. > > Thanks, > > Donnie > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338235 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm