Ok, cool

--
Tom Jordahl
Macromedia Server Development



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






Tom,

The server-config.wsdd wasn't getting copied into the build/class path in
the component structure, and in an effort to fix that, dims submitted the
change last night, which copied the files in build.dir/classes/.  However,
since build.dest=build.dir/classes, I opted to use this value instead in my
change, and commited it this morning.

The file is now being copied into the right place, and these two changes
are to make things a little clearer....

Matt Seibert                                           [EMAIL PROTECTED]
IBM        External:    (512) 838-3656      Internal:   678-3656


                                                                                       
                                       
                      Tom Jordahl                                                      
                                       
                      <tomj@macromedia.        To:       "'[EMAIL PROTECTED]'" 
<[EMAIL PROTECTED]>                
                      com>                     cc:                                     
                                       
                                               Subject:  RE: cvs commit: 
xml-axis/java/test/wsdl/extensibility build.xml      
                      09/20/2002 09:18                                                 
                                       
                      Please respond to                                                
                                       
                      axis-dev                                                         
                                       
                                                                                       
                                       




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