+1 (Latest HEAD into 1_0)
+1 (Latest HEAD into rc2)

Thanks,
dims

--- Sam Ruby <[EMAIL PROTECTED]> wrote:
> Index: java/README
> ===================================================================
> RCS file: /home/cvs/xml-axis/java/README,v
> retrieving revision 1.12.4.1
> retrieving revision 1.13
> diff -u -r1.12.4.1 -r1.13
> Index: java/axis.properties
> ===================================================================
> RCS file: /home/cvs/xml-axis/java/axis.properties,v
> retrieving revision 1.9
> retrieving revision 1.10
> diff -u -r1.9 -r1.10
> --- java/axis.properties        30 Aug 2002 19:34:26 -0000      1.9
> +++ java/axis.properties        25 Sep 2002 19:01:45 -0000      1.10
> @@ -1,4 +1,4 @@
> -axis.version=beta 4
> +axis.version=1.0rc2
> 
>   name=axis
>   Name=Axis
> Index: java/build.xml
> ===================================================================
> RCS file: /home/cvs/xml-axis/java/build.xml,v
> retrieving revision 1.196
> retrieving revision 1.197
> diff -u -r1.196 -r1.197
> --- java/build.xml      24 Sep 2002 23:47:01 -0000      1.196
> +++ java/build.xml      25 Sep 2002 16:20:46 -0000      1.197
> @@ -281,7 +281,7 @@
> 
>     </target>
> 
> -  <target name="componentTest" depends="compile, buildTest">
> +  <target name="runComponentTests" depends="compile, buildTest">
>        <ant inheritAll="${ant.inheritAll}" 
> inheritRefs="${ant.inheritRefs}" dir="${axis.home}" 
> antfile="buildTest.xml" target="componentTest"/>
>     </target>
> 
> Index: java/src/org/apache/axis/deployment/wsdd/WSDDDeployment.java
> ===================================================================
> RCS file: 
> /home/cvs/xml-axis/java/src/org/apache/axis/deployment/wsdd/WSDDDeployment.java,v
> retrieving revision 1.49
> retrieving revision 1.50
> diff -u -r1.49 -r1.50
> --- java/src/org/apache/axis/deployment/wsdd/WSDDDeployment.java 
> 25 Sep 2002 00:55:08 -0000      1.49
> +++ java/src/org/apache/axis/deployment/wsdd/WSDDDeployment.java 
> 25 Sep 2002 15:10:18 -0000      1.50
> @@ -567,10 +567,7 @@
>                   serviceDescs.add(service.getServiceDesc());
>               } catch (WSDDNonFatalException ex) {
>                   // If it's non-fatal, just keep on going
> -                ex.printStackTrace();
> -            } catch (WSDDException ex) {
> -                // otherwise throw it upwards
> -                throw ex;
> +                log.debug("Ingoring non-fatal exception: ", ex);
>               }
>           }
>           return serviceDescs.iterator();
> Index: java/src/org/apache/axis/description/ServiceDesc.java
> ===================================================================
> RCS file: 
> /home/cvs/xml-axis/java/src/org/apache/axis/description/ServiceDesc.java,v
> retrieving revision 1.60
> retrieving revision 1.61
> diff -u -r1.60 -r1.61
> --- java/src/org/apache/axis/description/ServiceDesc.java       24 Sep 
> 2002 21:02:23 -0000      1.60
> +++ java/src/org/apache/axis/description/ServiceDesc.java       25 Sep 
> 2002 16:54:24 -0000      1.61
> @@ -431,7 +431,9 @@
> 
>           if (overloads == null) {
>               // Nothing specifically matching this QName.
> -            if ((style == Style.RPC) && (name2OperationsMap != null)) {
> +            if (((style == Style.RPC) || ((style==Style.MESSAGE) &&
> +                                          (getDefaultNamespace() == 
> null))) &&
> +                    (name2OperationsMap != null)) {
>                   // Try ignoring the namespace....?
>                   overloads = 
> (ArrayList)name2OperationsMap.get(qname.getLocalPart());
>               }
> Index: java/src/org/apache/axis/encoding/DefaultSOAP12TypeMappingImpl.java
> ===================================================================
> RCS file: 
> 
>/home/cvs/xml-axis/java/src/org/apache/axis/encoding/DefaultSOAP12TypeMappingImpl.java,v
> retrieving revision 1.4
> retrieving revision 1.5
> diff -u -r1.4 -r1.5
> --- java/src/org/apache/axis/encoding/DefaultSOAP12TypeMappingImpl.java 
> 22 May 2002 18:59:15 -0000      1.4
> +++ java/src/org/apache/axis/encoding/DefaultSOAP12TypeMappingImpl.java 
> 25 Sep 2002 16:29:47 -0000      1.5
> @@ -98,26 +98,19 @@
> 
>           // SOAP Encoded strings are treated as primitives.
>           // Everything else is not.
> -        myRegister(Constants.SOAP_STRING,     java.lang.String.class,
> -                   null, null, true);
> -        myRegister(Constants.SOAP_BOOLEAN,    java.lang.Boolean.class,
> -                   null, null, false);
> -        myRegister(Constants.SOAP_DOUBLE,     java.lang.Double.class,
> -                   null, null, false);
> -        myRegister(Constants.SOAP_FLOAT,      java.lang.Float.class,
> -                   null, null, false);
> -        myRegister(Constants.SOAP_INT,        java.lang.Integer.class,
> -                   null, null, false);
> -        myRegister(Constants.SOAP_INTEGER,    java.math.BigInteger.class,
> -                   null, null, false);
> -        myRegister(Constants.SOAP_DECIMAL,    java.math.BigDecimal.class,
> -                   null, null, false);
> -        myRegister(Constants.SOAP_LONG,       java.lang.Long.class,
> -                   null, null, false);
> -        myRegister(Constants.SOAP_SHORT,      java.lang.Short.class,
> -                   null, null, false);
> -        myRegister(Constants.SOAP_BYTE,       java.lang.Byte.class,
> -                   null, null, false);
> +        myRegisterSimple(Constants.SOAP_STRING, java.lang.String.class, 
> true);
> +        myRegisterSimple(Constants.SOAP_BOOLEAN,
> +                         java.lang.Boolean.class, false);
> +        myRegisterSimple(Constants.SOAP_DOUBLE, java.lang.Double.class, 
> false);
> +        myRegisterSimple(Constants.SOAP_FLOAT, java.lang.Float.class, 
> false);
> +        myRegisterSimple(Constants.SOAP_INT, java.lang.Integer.class, 
> false);
> +        myRegisterSimple(Constants.SOAP_INTEGER,
> +                         java.math.BigInteger.class, false);
> +        myRegisterSimple(Constants.SOAP_DECIMAL, 
> java.math.BigDecimal.class,
> +                         false);
> +        myRegisterSimple(Constants.SOAP_LONG, java.lang.Long.class, false);
> +        myRegisterSimple(Constants.SOAP_SHORT, java.lang.Short.class, 
> false);
> +        myRegisterSimple(Constants.SOAP_BYTE, java.lang.Byte.class, false);
> 
>           // SOAP 1.2
>           // byte[] -ser-> SOAP_BASE64
> @@ -127,7 +120,7 @@
>                      new Base64SerializerFactory(byte[].class,
>                                                  Constants.SOAP_BASE64 ),
>                      new Base64DeserializerFactory(byte[].class,
> -                                                 Constants.SOAP_BASE64),
> -                   true);
> +                                                 Constants.SOAP_BASE64)
> +        );
>       }
>   }
> Index: java/src/org/apache/axis/encoding/DefaultTypeMappingImpl.java
> ===================================================================
> RCS file: 
> /home/cvs/xml-axis/java/src/org/apache/axis/encoding/DefaultTypeMappingImpl.java,v
> retrieving revision 1.55
> retrieving revision 1.57
> diff -u -r1.55 -r1.57
> --- java/src/org/apache/axis/encoding/DefaultTypeMappingImpl.java 
> 18 Sep 2002 16:10:37 -0000      1.55
> +++ java/src/org/apache/axis/encoding/DefaultTypeMappingImpl.java 
> 25 Sep 2002 18:27:03 -0000      1.57
> @@ -149,45 +149,36 @@
>                               Constants.MIME_PLAINTEXT),
>                       new JAFDataHandlerDeserializerFactory(
>                               java.lang.String.class,
> -                            Constants.MIME_PLAINTEXT), false);
> +                            Constants.MIME_PLAINTEXT));
>           }
> 
>           // SOAP Encoded strings are treated as primitives.
>           // Everything else is not.
> -        // Note that only deserializing is supported since we are flowing
> -        // SOAP 1.1 over the wire.
> -        myRegister(Constants.SOAP_STRING,     java.lang.String.class,
> -                   null, null, true);
> -        myRegister(Constants.SOAP_BOOLEAN,    java.lang.Boolean.class,
> -                   null, null, false);
> -        myRegister(Constants.SOAP_DOUBLE,     java.lang.Double.class,
> -                   null, null, false);
> -        myRegister(Constants.SOAP_FLOAT,      java.lang.Float.class,
> -                   null, null, false);
> -        myRegister(Constants.SOAP_INT,        java.lang.Integer.class,
> -                   null, null, false);
> -        myRegister(Constants.SOAP_INTEGER,    java.math.BigInteger.class,
> -                   null, null, false);
> -        myRegister(Constants.SOAP_DECIMAL,    java.math.BigDecimal.class,
> -                   null, null, false);
> -        myRegister(Constants.SOAP_LONG,       java.lang.Long.class,
> -                   null, null, false);
> -        myRegister(Constants.SOAP_SHORT,      java.lang.Short.class,
> -                   null, null, false);
> -        myRegister(Constants.SOAP_BYTE,       java.lang.Byte.class,
> -                   null, null, false);
> +        myRegisterSimple(Constants.SOAP_STRING, java.lang.String.class, 
> true);
> +        myRegisterSimple(Constants.SOAP_BOOLEAN,
> +                         java.lang.Boolean.class, false);
> +        myRegisterSimple(Constants.SOAP_DOUBLE, java.lang.Double.class, 
> 
=== message truncated ===


=====
Davanum Srinivas - http://xml.apache.org/~dims/

__________________________________________________
Do you Yahoo!?
New DSL Internet Access from SBC & Yahoo!
http://sbc.yahoo.com

Reply via email to