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 2003/05/04 03:37:47 UTC

cvs commit: xml-axis/java/src/org/apache/axis/wsdl/fromJava Types.java

dims        2003/05/03 18:37:47

  Modified:    java/src/org/apache/axis/wsdl/fromJava Types.java
  Log:
  Fix for Bug 19518 - No WSDL for bean missing default constructor
  
  Revision  Changes    Path
  1.75      +3 -1      xml-axis/java/src/org/apache/axis/wsdl/fromJava/Types.java
  
  Index: Types.java
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/wsdl/fromJava/Types.java,v
  retrieving revision 1.74
  retrieving revision 1.75
  diff -u -r1.74 -r1.75
  --- Types.java	22 Apr 2003 17:40:05 -0000	1.74
  +++ Types.java	4 May 2003 01:37:46 -0000	1.75
  @@ -323,7 +323,9 @@
               }
           }
   
  -        makeTypeElement(type, qname, null);
  +        if(!makeTypeElement(type, qname, null)) {
  +            qname = Constants.XSD_ANYTYPE;
  +        }
   
           return qname;
       }