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 di...@apache.org on 2005/07/20 19:00:01 UTC

cvs commit: ws-axis/java/src/org/apache/axis/wsdl/symbolTable SymbolTable.java

dims        2005/07/20 10:00:01

  Modified:    java/src/org/apache/axis/i18n resource.properties
               java/src/org/apache/axis/wsdl/symbolTable SymbolTable.java
  Log:
  Added warning for AXIS-2130 - Axis does not generate wrapped wsdl properly
  
  Revision  Changes    Path
  1.122     +2 -0      ws-axis/java/src/org/apache/axis/i18n/resource.properties
  
  Index: resource.properties
  ===================================================================
  RCS file: /home/cvs/ws-axis/java/src/org/apache/axis/i18n/resource.properties,v
  retrieving revision 1.121
  retrieving revision 1.122
  diff -u -r1.121 -r1.122
  --- resource.properties	6 Jul 2005 06:10:07 -0000	1.121
  +++ resource.properties	20 Jul 2005 17:00:00 -0000	1.122
  @@ -1076,6 +1076,8 @@
   missingContentType=A HTTP POST request mandates a contentType HTTP header.
   warnDocLitInteropMultipleInputParts=Request Message type information has multiple parts than one single wrapped complexType. Use WRAPPED/LITERAL if interoping with some other soap stack becomes a problem
   
  +cannotDoWrappedMode00=Warning: Element {0} has no type declaration, hence it is not a wrapper element. Switching off wrapped mode.
  +
   #                                                                    #
   # In-use keys                                                        #
   ######################################################################
  
  
  
  1.125     +3 -0      ws-axis/java/src/org/apache/axis/wsdl/symbolTable/SymbolTable.java
  
  Index: SymbolTable.java
  ===================================================================
  RCS file: /home/cvs/ws-axis/java/src/org/apache/axis/wsdl/symbolTable/SymbolTable.java,v
  retrieving revision 1.124
  retrieving revision 1.125
  diff -u -r1.124 -r1.125
  --- SymbolTable.java	7 Jul 2005 13:15:28 -0000	1.124
  +++ SymbolTable.java	20 Jul 2005 17:00:00 -0000	1.125
  @@ -2178,6 +2178,9 @@
                 // If node is null, that means the element in question has no type declaration, 
                 // therefore is not a wrapper element.
                 wrapped = false;
  +                if (verbose) {
  +                    System.out.println(Messages.getMessage("cannotDoWrappedMode00", elementName.toString()));
  +                }
               } else {
   
                   // check for attributes