You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pubscribe-commits@ws.apache.org by ip...@apache.org on 2005/07/11 21:54:45 UTC

svn commit: r210196 - in /webservices/pubscribe/trunk/src/template: build.properties soapclient.xml

Author: ips
Date: Mon Jul 11 12:54:45 2005
New Revision: 210196

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

Modified:
    webservices/pubscribe/trunk/src/template/build.properties
    webservices/pubscribe/trunk/src/template/soapclient.xml

Modified: webservices/pubscribe/trunk/src/template/build.properties
URL: http://svn.apache.org/viewcvs/webservices/pubscribe/trunk/src/template/build.properties?rev=210196&r1=210195&r2=210196&view=diff
==============================================================================
--- webservices/pubscribe/trunk/src/template/build.properties (original)
+++ webservices/pubscribe/trunk/src/template/build.properties Mon Jul 11 12:54:45 2005
@@ -1,12 +1,12 @@
-base.url=http://localhost:8080/pubscribe/services
+base.url = http://localhost:8080/pubscribe/services
 
 # Uncomment and modify the below entry to point to the deployed
 # pubscribe webapp directory (e.g. ${env.CATALINA_HOME}/webapps/pubscribe).
 
-#pubscribe.webapp.dir=${env.CATALINA_HOME}/webapps/pubscribe
+#pubscribe.webapp.dir = ${env.CATALINA_HOME}/webapps/pubscribe
 
 # Uncomment and modify the below lines if you require a proxy to connect to external web sites
 
-#http.proxyHost=proxy.xyz.com
-#http.proxyPort=8088
-#http.nonProxyHosts=localhost 
+#http.proxyHost = proxy.xyz.com
+#http.proxyPort = 8088
+#http.nonProxyHosts = localhost 

Modified: webservices/pubscribe/trunk/src/template/soapclient.xml
URL: http://svn.apache.org/viewcvs/webservices/pubscribe/trunk/src/template/soapclient.xml?rev=210196&r1=210195&r2=210196&view=diff
==============================================================================
--- webservices/pubscribe/trunk/src/template/soapclient.xml (original)
+++ webservices/pubscribe/trunk/src/template/soapclient.xml Mon Jul 11 12:54:45 2005
@@ -12,20 +12,20 @@
 
    <target name="init">
           
-     <available file="../../webapps/wsrf" type="dir" property="dist.wsrf.webapp.dir" value="../../webapps/wsrf" />         
-     <condition property="wsrf.webapp.dir" value="${dist.wsrf.webapp.dir}">
-        <isset property="dist.wsrf.webapp.dir"/>
+     <available file="../../webapps/pubscribe" type="dir" property="dist.pubscribe.webapp.dir" value="../../webapps/pubscribe" />         
+     <condition property="pubscribe.webapp.dir" value="${dist.pubscribe.webapp.dir}">
+        <isset property="dist.pubscribe.webapp.dir"/>
      </condition>          
-     <fail unless="wsrf.webapp.dir" message="webapp dir ../../webapps/wsrf does not exist." />    
-     <echo>Using webapp dir: ${wsrf.webapp.dir}</echo>         
+     <fail unless="pubscribe.webapp.dir" message="webapp dir ../../webapps/pubscribe does not exist." />    
+     <echo>Using webapp dir: ${pubscribe.webapp.dir}</echo>         
      
-     <path id="wsrf.classpath.id">
-       <pathelement location="${wsrf.webapp.dir}/WEB-INF/classes" />
-       <fileset dir="${wsrf.webapp.dir}/WEB-INF/lib" includes="*.jar" />
+     <path id="pubscribe.classpath.id">
+       <pathelement location="${pubscribe.webapp.dir}/WEB-INF/classes" />
+       <fileset dir="${pubscribe.webapp.dir}/WEB-INF/lib" includes="*.jar" />
        <pathelement location="${activation.jar}" />
        <pathelement location="${mail.jar}" />
      </path>
-     <property name="wsrf.classpath" refid="wsrf.classpath.id" />
+     <property name="pubscribe.classpath" refid="pubscribe.classpath.id" />
    
    </target>
 
@@ -47,7 +47,7 @@
      <concat><path><pathelement location="${xml}" /></path></concat>
      <echo />
      <echo>========================== RESPONSE ============================</echo>
-     <taskdef name="soapClient" classname="org.apache.ws.util.soap.SoapClientTask" classpath="${wsrf.classpath}" />              
+     <taskdef name="soapClient" classname="org.apache.ws.util.soap.SoapClientTask" classpath="${pubscribe.classpath}" />              
      <soapClient serviceURL="${url}" requestFile="${xml}" soapAction="${action}" /> 
                
    </target>