What's up with everyone moving the server-config.wsdd file all over the place?
The test code was changed, but having the file in the classes directory should be 
fine.  The only reason I copied it to the work directory was for reference and to call 
attention to the fact that this test has its own custom deploy file.  When I was 
debugging the test, I didn't notice this at first (because I was looking at the work 
directory, not the src).

Is it because everyone has their classpath set differently?

--
Tom Jordahl
Macromedia Server Development



-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Friday, September 20, 2002 10:13 AM
To: [EMAIL PROTECTED]
Subject: cvs commit: xml-axis/java/test/wsdl/extensibility build.xml


seibert     2002/09/20 07:13:00

  Modified:    java/test/wsdl/extensibility build.xml
  Log:
  Fixes the extensibility problem
  
  Use build.dest instead of build.dir/classes
  
  Revision  Changes    Path
  1.10      +1 -2      xml-axis/java/test/wsdl/extensibility/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/extensibility/build.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- build.xml 20 Sep 2002 13:07:13 -0000      1.9
  +++ build.xml 20 Sep 2002 14:13:00 -0000      1.10
  @@ -74,11 +74,10 @@
         <fileset dir="${axis.home}/test/wsdl/extensibility">
           <include name="*TestCase.java"/>
           <include name="*Impl.java"/>
  -        <include name="server-deploy.wsdd"/>
         </fileset>
       </copy>
   
  -    <copy todir="${build.dir}/classes/test/wsdl/extensibility" overwrite="yes">
  +    <copy todir="${build.dest}/test/wsdl/extensibility" overwrite="yes">
         <fileset dir="${axis.home}/test/wsdl/extensibility">
           <include name="server-deploy.wsdd"/>
         </fileset>
  
  
  

Reply via email to