You are viewing a plain text version of this content. The canonical link for it is here.
Posted to wsrf-dev@ws.apache.org by sc...@apache.org on 2004/12/17 20:24:18 UTC

svn commit: r122666 - /incubator/apollo/trunk/src/site/content/tutorial/build.xml

Author: scamp
Date: Fri Dec 17 11:24:14 2004
New Revision: 122666

URL: http://svn.apache.org/viewcvs?view=rev&rev=122666
Log:

Modified:
   incubator/apollo/trunk/src/site/content/tutorial/build.xml

Modified: incubator/apollo/trunk/src/site/content/tutorial/build.xml
Url: http://svn.apache.org/viewcvs/incubator/apollo/trunk/src/site/content/tutorial/build.xml?view=diff&rev=122666&p1=incubator/apollo/trunk/src/site/content/tutorial/build.xml&r1=122665&p2=incubator/apollo/trunk/src/site/content/tutorial/build.xml&r2=122666
==============================================================================
--- incubator/apollo/trunk/src/site/content/tutorial/build.xml	(original)
+++ incubator/apollo/trunk/src/site/content/tutorial/build.xml	Fri Dec 17 11:24:14 2004
@@ -15,6 +15,7 @@
    <property name="classes.dir"           location="build/classes"/>
    <property name="src.dir"               location="src" />
    <property name="filesystem.wsdl"       location="FileSystem.wsdl" />
+   <property name="sysprop.wsdl"       	  location="SysProps.wsdl" />
    <property name="url"                   value="${base.url}/filesystem" />
    <property name="xml.basedir"           location="${basedir}" />
 
@@ -58,6 +59,15 @@
                 proxyHost="${http.proxyHost}"
                 proxyPort="${http.proxyPort}"
                 nonProxyHosts="${http.nonProxyHosts}" /> 
+     <copy file="${sysprop.wsdl}" todir="${tmp.dir}" overwrite="true" />     
+     <wsdl2Java wsdl="${tmp.dir}/SysProps.wsdl"
+	     srcOutputDir="${generated.src.dir}"
+	     classesOutputDir="${classes.dir}"  
+	     classpath="${apollo.classpath}"
+	     debug="off"
+	     proxyHost="${http.proxyHost}"
+	     proxyPort="${http.proxyPort}"
+	nonProxyHosts="${http.nonProxyHosts}" /> 
      <delete dir="${tmp.dir}" />
                
    </target>
@@ -83,7 +93,8 @@
            description="deploys the filesystem service to the wsrf webapp">
           
        <copy file="${filesystem.wsdl}" todir="${wsrf.webapp.dir}/WEB-INF/classes/wsdl" overwrite="true" verbose="true" />
-       <echo>Deploying filesystem service classes to ${wsrf.webapp.dir}/WEB-INF/classes/...</echo>
+       <copy file="${sysprop.wsdl}" todir="${wsrf.webapp.dir}/WEB-INF/classes/wsdl" overwrite="true" verbose="true" />
+       <echo>Deploying filesystem and sysprop service classes to ${wsrf.webapp.dir}/WEB-INF/classes/...</echo>
        <copy todir="${wsrf.webapp.dir}/WEB-INF/classes">
          <fileset dir="${classes.dir}" />        
        </copy>
@@ -109,7 +120,14 @@
      </ant>
    
    </target>
-   
+   <target name="sendSysRequest"
+              description="sends a request to the filesystem service">      
+           
+   <ant antfile="soapclient.xml">
+    <property name="url" value="${base.url}/sysprops" />
+   </ant>
+      
+   </target>
    <target name="clean" description="delete the generated source and class files">
        <delete dir="generated" />
    </target>

---------------------------------------------------------------------
To unsubscribe, e-mail: apollo-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: apollo-dev-help@ws.apache.org