gdaniels    02/03/28 16:05:42

  Modified:    java/src/org/apache/axis/deployment/wsdd WSDDService.java
  Log:
  Remove experimental Class.forName() call in WSDDService constructor -
  need to figure out how to get an initialized ServiceDesc for real at the
  appropriate time.
  
  Revision  Changes    Path
  1.48      +5 -2      
xml-axis/java/src/org/apache/axis/deployment/wsdd/WSDDService.java
  
  Index: WSDDService.java
  ===================================================================
  RCS file: 
/home/cvs/xml-axis/java/src/org/apache/axis/deployment/wsdd/WSDDService.java,v
  retrieving revision 1.47
  retrieving revision 1.48
  diff -u -r1.47 -r1.48
  --- WSDDService.java  29 Mar 2002 00:01:26 -0000      1.47
  +++ WSDDService.java  29 Mar 2002 00:05:42 -0000      1.48
  @@ -179,8 +179,11 @@
           String className = this.getParameter("className");
           if (className != null) {
               try {
  -                Class cls = Class.forName(className);
  -                desc.setImplClass(cls);
  +// This is likely no good - need to figure out which classloader to use
  +// and load the class when needed (for instance when the ServiceDesc is
  +// requested....  --Glen
  +//                Class cls = Class.forName(className);
  +//                desc.setImplClass(cls);
                   initTMR();
                   String encStyle = Constants.URI_SOAP_ENC;
                   desc.setTypeMapping((TypeMapping)tmr.getTypeMapping(encStyle));
  
  
  


Reply via email to