tomj        02/02/14 12:56:46

  Modified:    java/src/org/apache/axis/wsdl/fromJava Emitter.java
  Log:
  If we hack the URL of the service and get an empty string,
  use the class name as the service name.
  
  Revision  Changes    Path
  1.16      +1 -1      xml-axis/java/src/org/apache/axis/wsdl/fromJava/Emitter.java
  
  Index: Emitter.java
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/wsdl/fromJava/Emitter.java,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- Emitter.java      13 Feb 2002 21:05:04 -0000      1.15
  +++ Emitter.java      14 Feb 2002 20:56:46 -0000      1.16
  @@ -377,7 +377,7 @@
                                                 (name.length() - ".jws".length()));
                       }
                   }
  -                if (name == null) {
  +                if (name == null || name.equals("")) {
                       name = clsName;
                   }
                   setServiceName(name);
  
  
  


Reply via email to