You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by gd...@apache.org on 2002/08/29 21:13:51 UTC

cvs commit: xml-axis/java/test/wsdl/addrNoImplSEI build.xml

gdaniels    2002/08/29 12:13:51

  Modified:    java/test/wsdl/addrNoImplSEI build.xml
  Log:
  Compile the right files (?) when rebuilding this test.  Was failing for
  me before this, works now.
  
  Can someone explain this test, please?  A readme would be really helpful.
  
  The original WSDL specifies an "address" type (lowercase 'a').  Then
  when we Java2WSDL, since the class is called "Address" and there's
  no metadata to tell us any different, the new WSDL gets a type
  "Address" (uppercase 'A').  So when we test, we're not seeing
  wire representations of the original WSDL's messages.  I think this
  was the problem before, since it looked like the types weren't
  matching, but I'm not exactly sure how the various mixed files
  (wsdd + stub) which touch this stuff were being used.
  
  Revision  Changes    Path
  1.4       +4 -4      xml-axis/java/test/wsdl/addrNoImplSEI/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/addrNoImplSEI/build.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- build.xml	26 Aug 2002 20:56:53 -0000	1.3
  +++ build.xml	29 Aug 2002 19:13:51 -0000	1.4
  @@ -76,7 +76,7 @@
   
       <!-- Compile the Web Service -->
       <javac srcdir="${build.dir}/work" destdir="${build.dest}" debug="${debug}">
  -      <classpath refid="classpath" />
  +        <classpath refid="classpath" />
         <include name="test/wsdl/addrNoImplSEI/**.java" />
         <exclude name="test/wsdl/addrNoImplSEI/*TestCase.java" />
         <exclude name="test/wsdl/addrNoImplSEI/Main.java" />
  @@ -110,10 +110,10 @@
           <include name="*.java"/>
         </fileset>
       </copy>
  -
  -    <javac srcdir="${axis.home}" destdir="${build.dest}"
  +    <javac srcdir="${build.dir}/work" destdir="${build.dest}"
              debug="${debug}">
  -      <include name="test/wsdl/addrNoImplSEI/*.java" />
  +        <classpath refid="classpath" />
  +      <include name="test/wsdl/addrNoImplSEI/**.java" />
       </javac>
   
   </target>