You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by ri...@apache.org on 2002/01/30 19:48:15 UTC

cvs commit: xml-axis/java/src/org/apache/axis/deployment/wsdd WSDDException.java

rineholt    02/01/30 10:48:15

  Modified:    java/samples/attachments attachdeploy.wsdd
               java/src/org/apache/axis/deployment/wsdd WSDDException.java
  Log:
  Fix deployment to what classes have been changed to.
  WSDLException: By keeping the orginal exception you get the class name of the
  orginal exception and not java.lang.Exception which is not as helpful.
  
  Revision  Changes    Path
  1.4       +2 -2      xml-axis/java/samples/attachments/attachdeploy.wsdd
  
  Index: attachdeploy.wsdd
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/samples/attachments/attachdeploy.wsdd,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- attachdeploy.wsdd	15 Jan 2002 17:57:02 -0000	1.3
  +++ attachdeploy.wsdd	30 Jan 2002 18:48:15 -0000	1.4
  @@ -8,9 +8,9 @@
       <requestFlow type="checks"/>
     </service>
   
  - <typeMapping deserializer="org.apache.axis.encoding.JAFDataHandlerDeserializer$Factory"
  + <typeMapping deserializer="org.apache.axis.encoding.ser.JAFDataHandlerDeserializerFactory"
      languageSpecificType="java:javax.activation.DataHandler" qname="ns1:DataHandler"
  -    serializer="org.apache.axis.encoding.JAFDataHandlerSerializer" 
  +    serializer="org.apache.axis.encoding.ser.JAFDataHandlerSerializerFactory" 
        xmlns:ns1="urn:EchoAttachmentsService"/>
   
   </deployment>
  
  
  
  1.8       +1 -1      xml-axis/java/src/org/apache/axis/deployment/wsdd/WSDDException.java
  
  Index: WSDDException.java
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/deployment/wsdd/WSDDException.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- WSDDException.java	28 Jan 2002 18:23:00 -0000	1.7
  +++ WSDDException.java	30 Jan 2002 18:48:15 -0000	1.8
  @@ -78,6 +78,6 @@
        */
       public WSDDException(Exception e)
       {
  -        super(e.getMessage());
  +        super(e);
       }
   }