Return-Path: Delivered-To: apmail-ws-axis-user-archive@www.apache.org Received: (qmail 72877 invoked from network); 30 Mar 2004 19:24:53 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 30 Mar 2004 19:24:53 -0000 Received: (qmail 34965 invoked by uid 500); 30 Mar 2004 19:24:29 -0000 Delivered-To: apmail-ws-axis-user-archive@ws.apache.org Received: (qmail 34944 invoked by uid 500); 30 Mar 2004 19:24:29 -0000 Mailing-List: contact axis-user-help@ws.apache.org; run by ezmlm Precedence: bulk Reply-To: axis-user@ws.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list axis-user@ws.apache.org Received: (qmail 34918 invoked from network); 30 Mar 2004 19:24:29 -0000 Received: from unknown (HELO smtp017.mail.yahoo.com) (216.136.174.114) by daedalus.apache.org with SMTP; 30 Mar 2004 19:24:29 -0000 Received: from unknown (HELO HOME) (fabriciobt@200.217.224.180 with login) by smtp017.mail.yahoo.com with SMTP; 30 Mar 2004 19:24:33 -0000 From: "Fabricio B. Teixeira" To: Subject: RES: Array bean deserialization problem Date: Tue, 30 Mar 2004 16:28:51 -0300 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-2" Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Importance: Normal In-Reply-To: X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Thanks, but I�ve already done all these steps. I really don�t know what to do... Fabricio -----Mensagem original----- De: Hoda Nadeem [mailto:hoda_nadeem@bah.com] Enviada em: ter�a-feira, 30 de mar�o de 2004 10:06 Para: fabriciobt@yahoo.com.br Assunto: RE: Array bean deserialization problem It seems like you are doing everything correctly (using wsdl2java to generate the wsdd file normally gets rid of these problems). I can give common advise: - Start with a very simple program that passes a class you defined - once that works, add an array of that object - if you get that to work, you are half way there. - Then try erasing your entire java files/structure and starting from scratch (create a new directory, start as if you are starting a new project). Sometimes a subtle thing, like a wrong name somewhere, is causing the problem. You might not see the problem unless you start the Axis project from scratch. Hope this helps. Nadeem -----Original Message----- From: Fabricio B. Teixeira [mailto:fabriciobt@yahoo.com.br] Sent: Tuesday, March 30, 2004 7:47 AM To: axis-user@ws.apache.org Subject: Array bean deserialization problem Hi, Could someone help me? I am get crazy. I'm developing a web service witch receives a array bean like the one belllow : public void InsertFastaSequenceDB(QuerySequenceDWS[] QuerySeq) { } The QuerySequenceDWS java class follows: public class QuerySequenceDWS { private String fQuery_Def; private String fQuery_Seq; /* HERE COMES THE GETTER AND SETTER METHODS. */ } I've used java2wsdl and wsdl2java to generate the java classes and the wsdd file. the wsdd file follows: Everything looks like normal, I mean, the web service is deployed without errors. The problem occurs when I try to call this web service. The following error message appears: "No deserializer defined for array type QuerySequenceDWS". I don't no what to do since I�ve tryed so many things. Please, could someone help me with this problem? Regards, Fabricio