Return-Path: Delivered-To: apmail-axis-java-user-archive@www.apache.org Received: (qmail 30292 invoked from network); 4 Nov 2010 17:02:27 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 4 Nov 2010 17:02:27 -0000 Received: (qmail 21791 invoked by uid 500); 4 Nov 2010 17:02:57 -0000 Delivered-To: apmail-axis-java-user-archive@axis.apache.org Received: (qmail 21602 invoked by uid 500); 4 Nov 2010 17:02:56 -0000 Mailing-List: contact java-user-help@axis.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: java-user@axis.apache.org Delivered-To: mailing list java-user@axis.apache.org Received: (qmail 21594 invoked by uid 99); 4 Nov 2010 17:02:56 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Nov 2010 17:02:56 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of andreas.veithen@gmail.com designates 209.85.212.45 as permitted sender) Received: from [209.85.212.45] (HELO mail-vw0-f45.google.com) (209.85.212.45) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Nov 2010 17:02:52 +0000 Received: by vws4 with SMTP id 4so1351048vws.32 for ; Thu, 04 Nov 2010 10:02:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:mime-version:received:in-reply-to :references:from:date:message-id:subject:to:content-type :content-transfer-encoding; bh=Z1hSuSR/mFDclLocks0L46b0V6Xk9Ki+wuqwsdiQ2/U=; b=KkgXPbXjCCPlSwE4BMl73qt+EhSEU6GdgV4UEpRAkuR7dLyG/VShijzvNkgZZQIGvN dVDXDO6Q9S1OkNFEya7yb3665Yg8j1TH7JRjkk8npNEL5zF1GsAC84rk7MB5I3C3lu2+ Rsdo6L3fX8ifClbMArTa89HeBOF9qfRjJP9uc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type:content-transfer-encoding; b=jkG4gc9FjrgZBIzAFhaTKHT1pws/a9z8UGMRcpAL92hUwDlA8qnPTisENfwi3Gd5+W Zj71GCr2IsiUhG4ViRDTvh7S0jgGDIJ6t1WYTKaVQFk5b5IYK5pjmBaDwSK/eXuyWKOu 4dj949q/M9qRAU4ahCUy32TUl015aJEC4gKxE= Received: by 10.229.84.139 with SMTP id j11mr923978qcl.98.1288890141950; Thu, 04 Nov 2010 10:02:21 -0700 (PDT) MIME-Version: 1.0 Received: by 10.229.45.138 with HTTP; Thu, 4 Nov 2010 10:02:01 -0700 (PDT) In-Reply-To: References: <30130750.post@talk.nabble.com> From: Andreas Veithen Date: Thu, 4 Nov 2010 18:02:01 +0100 Message-ID: Subject: Re: Custom serialization of JDK5 Enum in Axis 1.2 on client-side To: java-user@axis.apache.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable For Axis(2) C/C++, there is c-user and axis1-c-user. You can get a list of all mailing lists for every TLP by looking at http://.apache.org/mail/. Andreas On Thu, Nov 4, 2010 at 17:18, Nadir Amra wrote: > Andreas, > > So where do AXIS C++ users go? =A0Is there an Axis > > And is there a list of WS mailing lists, because right now I am > confused..... :-) > > > > Nadir Amra > Integrated Web Services for IBM i Operating System > Internet: amra@us.ibm.com > > Andreas Veithen wrote on 11/04/2010 06:38:29 = AM: > >> From: Andreas Veithen >> To: java-user@axis.apache.org >> Date: 11/04/2010 06:39 AM >> Subject: Re: Custom serialization of JDK5 Enum in Axis 1.2 on client-sid= e >> >> As part of the promotion of the Axis project to a top level project, >> we have decided to create separate mailing lists for Axis 1 and Axis2. >> For all Axis 1 related questions please subscribe and post to >> axis1-java-user@axis.apache.org. Thanks! >> >> Andreas >> >> On Thu, Nov 4, 2010 at 11:41, RaphaelJ wrote= : >> > >> > >> > Hi Folks, >> > >> > I am migrating a SOAP web service to JDK1.5. I have took advantageof >> > native >> > java enums in the new code. For some reasons, I'm stuck with Axis 1.2 >> > and it >> > does not natively support JDK5 "enums". >> > >> > I have found a tutorial on how to implement custom a serialization / >> > deserialization for java enums: >> > > http://www.developpez.net/forums/d236564/java/developpement-web- >> java/web-services/utiliser-type-enum-jdk5-axis/ >> > http://www.developpez.net/forums/d236564/java/developpement-web- >> java/web-services/utiliser-type-enum-jdk5-axis/ >> > (in French). >> > >> > I have been able to successfully register those custom serialization >> > handlers on the server side via the use of "typeMapping" elements in t= he >> > ".wsdd" file. >> > >> > However, I can't figure out how to register the same classes on the >> > client >> > side, as I don' think I can use a ".wssd" file here. >> > >> > The >> > http://ws.apache.org/axis/java/user- >> guide.html#WhenBeansAreNotEnoughCustomSerialization >> > corresponding part in the user-guide =A0does not help either, since it >> > only >> > explains the "wsdd" file configuration on server side. Nothing on the >> > client >> > side. >> > >> > Any help would be appreciated. >> > >> > Many thanks in advance, >> > Raphael >> > >> > -- >> > View this message in context: http://old.nabble.com/Custom- >> >> serialization-of-JDK5-Enum-in-Axis-1.2-on-client-side-tp30130750p3013075= 0.html >> > Sent from the Axis - User mailing list archive at Nabble.com. >> > >> > >> > --------------------------------------------------------------------- >> > To unsubscribe, e-mail: java-user-unsubscribe@axis.apache.org >> > For additional commands, e-mail: java-user-help@axis.apache.org >> > >> > >> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: java-user-unsubscribe@axis.apache.org >> For additional commands, e-mail: java-user-help@axis.apache.org >> > --------------------------------------------------------------------- To unsubscribe, e-mail: java-user-unsubscribe@axis.apache.org For additional commands, e-mail: java-user-help@axis.apache.org