tomj        2002/09/19 13:17:35

  Modified:    java/src/org/apache/axis/utils axisNLS.properties
               java/src/org/apache/axis/encoding/ser
                        SimpleDeserializer.java
  Log:
  Change the "SimplerDeser can't handle structured data!" error message
  to something that might actually describe what happened.
  
  Revision  Changes    Path
  1.66      +1 -1      xml-axis/java/src/org/apache/axis/utils/axisNLS.properties
  
  Index: axisNLS.properties
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/utils/axisNLS.properties,v
  retrieving revision 1.65
  retrieving revision 1.66
  diff -u -r1.65 -r1.66
  --- axisNLS.properties        18 Sep 2002 18:53:10 -0000      1.65
  +++ axisNLS.properties        19 Sep 2002 20:17:35 -0000      1.66
  @@ -107,7 +107,7 @@
   # NOTE:  in cantDoURL00, do not translate "getURL", "URL"
   cantDoURL00=getURL failed to correctly process URL; protocol not supported
   
  -cantHandle00={0} cannot handle structured data!
  +cantHandle00={0} encountered a child element, which is NOT expected, in something 
it was trying to deserialize.
   
   # NOTE:  in cantInvoke00, do not translate "Call" or "URI"
   cantInvoke00=Cannot invoke Call with null namespace URI for method {0}
  
  
  
  1.27      +1 -1      
xml-axis/java/src/org/apache/axis/encoding/ser/SimpleDeserializer.java
  
  Index: SimpleDeserializer.java
  ===================================================================
  RCS file: 
/home/cvs/xml-axis/java/src/org/apache/axis/encoding/ser/SimpleDeserializer.java,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -r1.26 -r1.27
  --- SimpleDeserializer.java   19 Sep 2002 13:48:32 -0000      1.26
  +++ SimpleDeserializer.java   19 Sep 2002 20:17:35 -0000      1.27
  @@ -186,7 +186,7 @@
           throws SAXException
       {
           throw new SAXException(
  -                Messages.getMessage("cantHandle00", "SimpleDeser"));
  +                Messages.getMessage("cantHandle00", "SimpleDeserializer"));
       }
       
       /**
  
  
  


Reply via email to