Donne when you call a webservice, Apache Axis creates all the stub files to allow you to interact with with the webservice methods via CF, you do not instantiate those classes, the methods already exists in your nsws.
Try downloading SoapUI and using this to create some sample requests to the web services, it may help you better grasp what is going on. Russ On Fri, Oct 15, 2010 at 5:25 PM, Donnie Carvajal < [email protected]> wrote: > > Thanks Scott. I did dump the variable and the functions parameters are > looking for things like > com.netsuite.webservices.platform.core_2010_1.Passport. When I > createObject("java", > "com.netsuite.webservices.platform.core_2010_1.Passport"), that's when I get > the "class can not be found error". > > >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#"> > > > > > >> > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| 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:338242 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

