RE: No deserializer defined for array type

2004-01-22 Thread Wagh, Shrikant
Hi, If you use the array of user defined complex types in your web service then you will have to specify the type mapping for the complex type as well as for array of the complex type. The sample type mapping for using array of user defined types can be as shoen below. http://schemas.xmlsoap.o

Re: No deserializer defined for array type ?

2003-01-10 Thread Nnaemeka Egwuekwe
All, I posted the following on axis-dev and am reposting it here in case it might be helpful to someone. Meka Egwuekwe Original Message Subject: Misleading error message(s) (for example: "no deserializer defined for array type") Dat

RE: No deserializer defined for array type ?

2003-01-10 Thread Tom Jordahl
serializer defined for array type ? no I do not have... Actually, what I am trying to is implementing a file copy service...I am sending a FileInputStream object to the webservice that expects an object, and then I am casting it FileInputStream object inside the method, then I got this previous

RE: No deserializer defined for array type ?

2003-01-09 Thread McCaslin Orion
t: Thursday, January 09, 2003 10:59 AM To: '[EMAIL PROTECTED]' Subject: RE: No deserializer defined for array type ? Do you have a Deserializer registered for the XML type {http://object.myObject}MyObject? -- Tom Jordahl Macromedia -Original Message- From: McCaslin Orion [

RE: No deserializer defined for array type ?

2003-01-09 Thread Fatih Mustacoglu
no I do not have... Actually, what I am trying to is implementing a file copy service...I am sending a FileInputStream object to the webservice that expects an object, and then I am casting it FileInputStream object inside the method, then I got this previous exception. So, should I  have a Deseria

RE: No deserializer defined for array type ?

2003-01-09 Thread Tom Jordahl
Do you have a Deserializer registered for the XML type {http://object.myObject}MyObject? -- Tom Jordahl Macromedia -Original Message- From: McCaslin Orion [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 08, 2003 7:51 PM To: [EMAIL PROTECTED] Subject: No deserializer defined for arr

RE: No deserializer defined for array type ?

2003-01-09 Thread Mike Burati
the array (possibly BeanSerializer)... -Original Message- From: Mark Mueller [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 08, 2003 9:24 PM To: [EMAIL PROTECTED] Subject: Re: No deserializer defined for array type ? I've been trying to answer the same

RE: No deserializer defined for array type ?

2003-01-09 Thread McCaslin Orion
Yes. I have already found Gene Chuang's posting to be very helpful. -Orion -Original Message- From: Jason Weinstein [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 08, 2003 10:40 PM To: [EMAIL PROTECTED] Subject: RE: No deserializer defined for array type ? This may not a

RE: No deserializer defined for array type ?

2003-01-08 Thread Jason Weinstein
ther, as I suspected it > wouldn't. So now I've progressed > somewhat from my original problem, but > i'm still stuck. I cannot believe > that it

Re: No deserializer defined for array type ?

2003-01-08 Thread Mark Mueller
I've been trying to answer the same question myself. Are we supposed to use: call.registerTypeMapping() to do this? Does anyone have an example of a client that deserializes an array of objects? Mark --- McCaslin Orion <[EMAIL PROTECTED]> wrote: > Hi, > > I am not having success get