tomj        2002/12/06 13:44:06

  Modified:    java/src/org/apache/axis/configuration
                        EngineConfigurationFactoryServlet.java
               java/src/org/apache/axis/i18n resource.properties
  Log:
  Patch for bug 12509 from Jaime Meritt [[EMAIL PROTECTED]]:
  
  The attached patch changes the error message generated in the log when
  the server-config.wsdd file is not found in the
  EngineConfigurationFactoryServlet.  This has been a source of confusion
  when installing Axis in a servlet engine.  I have followed the best
  practices for internationalization suggested by Russell (i.e. I didn't
  erase the original message, I just added a new one).
  
  Revision  Changes    Path
  1.19      +1 -1      
xml-axis/java/src/org/apache/axis/configuration/EngineConfigurationFactoryServlet.java
  
  Index: EngineConfigurationFactoryServlet.java
  ===================================================================
  RCS file: 
/home/cvs/xml-axis/java/src/org/apache/axis/configuration/EngineConfigurationFactoryServlet.java,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- EngineConfigurationFactoryServlet.java    29 Sep 2002 04:28:14 -0000      1.18
  +++ EngineConfigurationFactoryServlet.java    6 Dec 2002 21:44:06 -0000       1.19
  @@ -186,7 +186,7 @@
               }
   
               if (config == null) {
  -                log.error(Messages.getMessage("servletEngineWebInfError01",
  +                log.error(Messages.getMessage("servletEngineWebInfError03",
                                                  name));
               }
           }
  
  
  
  1.36      +1 -0      xml-axis/java/src/org/apache/axis/i18n/resource.properties
  
  Index: resource.properties
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/i18n/resource.properties,v
  retrieving revision 1.35
  retrieving revision 1.36
  diff -u -r1.35 -r1.36
  --- resource.properties       4 Dec 2002 20:12:04 -0000       1.35
  +++ resource.properties       6 Dec 2002 21:44:06 -0000       1.36
  @@ -1080,3 +1080,4 @@
   
   wsdlFileMissing=Unable to find WSDL file or resource {0}
   nullEngine=Null engine passed to SOAPService.setEngine()!
  +servletEngineWebInfError03=Unable to find config file.  Creating new servlet engine 
config file: {0}
  
  
  


Reply via email to