org.xml.sax.SAXException: No deserializer, problem

2002-09-30 Thread Jian Zhang
I have a soap service that has a method of signature like: public Folder[] logon (String configDir, String appName, String serverName, String loginName, String passwd) Where Folder is a Java bean representing a file directory. This same interface works with SoapImplementation, but when

RE: org.xml.sax.SAXException: No deserializer, problem

2002-09-30 Thread Jian Zhang
Folder[]? I really appreciate your help. Thanks alot for your quick reply. Jian -Original Message- From: Jian Zhang [mailto:[EMAIL PROTECTED]] Sent: Monday, September 30, 2002 10:21 AM To: '[EMAIL PROTECTED]' Subject: org.xml.sax.SAXException: No deserializer, problem I have a soap

Re: org.xml.sax.SAXException: No deserializer, problem

2002-09-30 Thread James Black
Jian Zhang wrote: It seems to me that the Axis picks up the definition of type Folder, but not Folder[]. How should I tell Axis about Folder[]? I would suggest that to simplify your life, during the evaluation, use java2wsdl and wsdl2java to create the files, as it can handle arrays of

RE: org.xml.sax.SAXException: No deserializer, problem

2002-09-30 Thread Jian Zhang
be very basic, right? Can anybody on the list helps us out? Jian -Original Message- From: James Black [mailto:[EMAIL PROTECTED]] Sent: Monday, September 30, 2002 12:37 PM To: [EMAIL PROTECTED] Subject: Re: org.xml.sax.SAXException: No deserializer, problem Jian Zhang wrote: It seems

RE: org.xml.sax.SAXException: No deserializer, problem

2002-09-30 Thread Zhifeng (George) An
Title: RE: org.xml.sax.SAXException: No deserializer, problem Hi, Jian How about a work around, define a class which holds your array, and make the new class a bean. Something like this class Folders { Folder[] folders; getter/setter functions } In deployment file, also define