Re: Returning and object from a Web Service

2007-10-26 Thread Dean Lawrence
Lawrence [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 24, 2007 4:30 PM To: CF-Talk Subject: Returning and object from a Web Service When calling a web service that I created (which is being used as a gateway), if I try to return an object I get an error that states

Re: Returning and object from a Web Service

2007-10-26 Thread d c
When calling a web service that I created (which is being used as a gateway), if I try to return an object I get an error that states org.xml.sax.SAXException: No deserializer for and then my object name. If I get the object and then return individual values from that object, it works fine. But if

Re: Returning and object from a Web Service

2007-10-26 Thread Dean Lawrence
What type of CFC object are you trying to return... More the case is it in the same directory as the webservice? Or does it use a mapping? If a mapping, try using a CFC that is in the same directory as the web service. It is a simple User object that I created (usrname, password, etc.).

Re: Returning and object from a Web Service

2007-10-26 Thread Qasim Rasheed
Dean, A shot in the dark, but do you have cfproperty .. defined for the attributes of your User object that you are trying to return? Thanks Qasim On 10/26/07, Dean Lawrence [EMAIL PROTECTED] wrote: What type of CFC object are you trying to return... More the case is it in the same

Re: Returning and object from a Web Service

2007-10-26 Thread Dean Lawrence
Hi Qasim, My object does have the cfproperties set for each of its elements. I've been doing some additional testing, stripping away anything extra that is not needed and I was actually able to return the object by itself. I am using a base object to manage my results and for some reason is

Returning and object from a Web Service

2007-10-24 Thread Dean Lawrence
When calling a web service that I created (which is being used as a gateway), if I try to return an object I get an error that states org.xml.sax.SAXException: No deserializer for and then my object name. If I get the object and then return individual values from that object, it works fine. But if

RE: Returning and object from a Web Service

2007-10-24 Thread Brad Wood
and object from a Web Service When calling a web service that I created (which is being used as a gateway), if I try to return an object I get an error that states org.xml.sax.SAXException: No deserializer for and then my object name. If I get the object and then return individual values from that object

Re: Returning and object from a Web Service

2007-10-24 Thread Dean Lawrence
if can. ~Brad -Original Message- From: Dean Lawrence [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 24, 2007 4:30 PM To: CF-Talk Subject: Returning and object from a Web Service When calling a web service that I created (which is being used as a gateway), if I try to return