> I think I figured out setting up the objects correctly.  The next issue that 
> I'm running into sending the Login request through the
> webservice which returns 
> com.netsuite.webservices.platform.messages_2010_1.SessionResponse.  
> Obviously, an object will not
> be passed back.  The return values is something like
> com.netsuite.webservices.platform.messages_2010_1.sessionrespo...@123456.  Am 
> I supposed to create an object of type
> com.netsuite.webservices.platform.messages_2010_1.SessionResponse and run the 
> Init("123456")?

When you say "obviously, an object will not be passed back", well,
that's really what web services are all about - remote invocation of
objects. So, yes, you should get an object back, if that's what the
remote method invocation is supposed to return.

And, it looks like it's returning exactly that. This:

com.netsuite.webservices.platform.messages_2010_1.sessionrespo...@123456

is a Java object reference in memory. Use CFDUMP on the return
variable, and I suspect you'll see a bunch of methods you could call.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or ons

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
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:338246
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

Reply via email to