Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 67179 invoked from network); 8 Apr 2004 13:28:13 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 8 Apr 2004 13:28:13 -0000 Received: (qmail 29285 invoked by uid 500); 8 Apr 2004 13:28:01 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 29197 invoked by uid 500); 8 Apr 2004 13:28:00 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 29088 invoked from network); 8 Apr 2004 13:27:59 -0000 Received: from unknown (HELO mail-out4.apple.com) (17.254.13.23) by daedalus.apache.org with SMTP; 8 Apr 2004 13:27:59 -0000 Received: from mailgate2.apple.com (a17-128-100-204.apple.com [17.128.100.204]) by mail-out4.apple.com (8.12.11/8.12.11) with ESMTP id i38DVanm000872; Thu, 8 Apr 2004 06:31:36 -0700 (PDT) Received: from relay2.apple.com (relay2.apple.com) by mailgate2.apple.com (Content Technologies SMTPRS 4.3.6) with ESMTP id ; Thu, 8 Apr 2004 06:28:00 -0700 Received: from [17.104.4.28] (amsterdam.corp.apple.com [17.104.4.28]) by relay2.apple.com (8.12.11/8.12.11) with ESMTP id i38DRwHB013994; Thu, 8 Apr 2004 13:27:59 GMT User-Agent: Microsoft-Entourage/10.1.1.2418 Date: Thu, 08 Apr 2004 08:27:58 -0500 Subject: Re: cvs commit: ws-axis/java/test/wsdl/opStylesDoc VerifyTestCase.java build.xml opStylesDoc.wsdl From: Adhamh Findlay To: , Message-ID: In-Reply-To: <20040408123656.26395.qmail@minotaur.apache.org> Mime-version: 1.0 Content-type: text/plain; charset="US-ASCII" Content-transfer-encoding: 7bit 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 Is it possible to get removed from this mailing list? I unsubcribed from the dev list, but I am still getting these emails. I would really like to make the stop. I don't see a way to unsubscribe from this list at http://ws.apache.org/axis/mail.html. Thanks, Adhamh On 4/8/04 7:36 AM, "dims@apache.org" wrote: > dims 2004/04/08 05:36:56 > > Modified: java/src/org/apache/axis/message RPCHandler.java > Added: java/test/wsdl/opStylesDoc VerifyTestCase.java build.xml > opStylesDoc.wsdl > Log: > Fix for AXIS-1291 - could not find deserialzer for type > {http://xml.apache.org/axis/}Void > from Jarek Gawor > > Revision Changes Path > 1.74 +7 -1 ws-axis/java/src/org/apache/axis/message/RPCHandler.java > > Index: RPCHandler.java > =================================================================== > RCS file: /home/cvs/ws-axis/java/src/org/apache/axis/message/RPCHandler.java,v > retrieving revision 1.73 > retrieving revision 1.74 > diff -u -r1.73 -r1.74 > --- RPCHandler.java 25 Feb 2004 14:02:42 -0000 1.73 > +++ RPCHandler.java 8 Apr 2004 12:36:56 -0000 1.74 > @@ -30,6 +30,7 @@ > import org.apache.axis.encoding.Deserializer; > import org.apache.axis.encoding.DeserializerImpl; > import org.apache.axis.encoding.MethodTarget; > +import org.apache.axis.encoding.XMLType; > import org.apache.axis.utils.JavaUtils; > import org.apache.axis.utils.Messages; > import org.apache.axis.soap.SOAPConstants; > @@ -225,7 +226,12 @@ > type = paramDesc.getTypeQName(); > } > } > - > + > + if (type.equals(XMLType.AXIS_VOID)) { > + Deserializer nilDSer = new DeserializerImpl(); > + return (SOAPHandler) nilDSer; > + } > + > // If the nil attribute is set, just > // return the base DeserializerImpl. > // Register the value target to set the value > > > > 1.1 ws-axis/java/test/wsdl/opStylesDoc/VerifyTestCase.java > > Index: VerifyTestCase.java > =================================================================== > package test.wsdl.opStylesDoc; > > import junit.framework.AssertionFailedError; > import junit.framework.TestCase; > > import javax.xml.rpc.ServiceException; > import javax.xml.rpc.Stub; > import java.rmi.RemoteException; > > public class VerifyTestCase extends junit.framework.TestCase { > public VerifyTestCase(String name) { > super(name); > } > > public void testOpStyles() throws Exception { > OpStyles binding; > try { > binding = new OpStyleDocServiceLocator().getOpStylesDoc(); > } > catch (ServiceException jre) { > throw new AssertionFailedError("JAX-RPC ServiceException caught: " > + jre); > } > > binding.requestResponse(); > binding.requestResponse2(); > binding.requestResponse3(null); > > } // testOpStyles > } // class VerifyTestCase > > > > 1.1 ws-axis/java/test/wsdl/opStylesDoc/build.xml > > Index: build.xml > =================================================================== > > > > > "file:../../../xmls/taskdefs_post_compile.xml"> > > ]> > > > > > > > > &properties; > &paths; > &taskdefs; > &taskdefs_post_compile; > &targets; > > > > > > > > > > > > > > output="${axis.home}/build/work" > serverSide="yes" > skeletonDeploy="yes" > testcase="yes"> > > > > > > > > > > nowarn="${nowarn}" fork="${javac.fork}" > debug="${debug}"> > > > > > > > > > > > > > > > 1.1 ws-axis/java/test/wsdl/opStylesDoc/opStylesDoc.wsdl > > Index: opStylesDoc.wsdl > =================================================================== > > > name="operation styles test" > targetNamespace="urn:opStylesDoc.wsdl.test" > xmlns:tns="urn:opStylesDoc.wsdl.test" > xmlns:xsd="http://www.w3.org/2001/XMLSchema" > xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" > xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" > xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" > xmlns="http://schemas.xmlsoap.org/wsdl/"> > > > > xmlns:xsd="http://www.w3.org/1999/XMLSchema"> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > style="document" > transport="http://schemas.xmlsoap.org/soap/http"/> > > > > > use="literal" > namespace="" > encodingStyle=""/> > > > use="literal" > namespace="" > encodingStyle=""/> > > > > > > > use="literal" > namespace="" > encodingStyle=""/> > > > use="literal" > namespace="" > encodingStyle=""/> > > > > > > > use="literal" > namespace="" > encodingStyle=""/> > > > use="literal" > namespace="" > encodingStyle=""/> > > > > > > > use="literal" > namespace="" > encodingStyle=""/> > > > > > > > > location="http://localhost:8080/axis/services/OpStylesDoc"/> > > > > > > > >