[jboss-svn-commits] JBL Code SVN: r18172 - in labs/jbosstm/workspace/adinn/XTSGF/demo: dd and 1 other directory.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Mon Jan 28 05:35:27 EST 2008


Author: adinn
Date: 2008-01-28 05:35:27 -0500 (Mon, 28 Jan 2008)
New Revision: 18172

Removed:
   labs/jbosstm/workspace/adinn/XTSGF/demo/dd/weblogic/
   labs/jbosstm/workspace/adinn/XTSGF/demo/dd/webmethods/
   labs/jbosstm/workspace/adinn/XTSGF/demo/weblogic.properties
   labs/jbosstm/workspace/adinn/XTSGF/demo/webmethods.properties
Modified:
   labs/jbosstm/workspace/adinn/XTSGF/demo/build.bat
   labs/jbosstm/workspace/adinn/XTSGF/demo/build.sh
   labs/jbosstm/workspace/adinn/XTSGF/demo/build.xml
   labs/jbosstm/workspace/adinn/XTSGF/demo/jboss.properties
Log:
removed webmethods and weblogic demo versions

Modified: labs/jbosstm/workspace/adinn/XTSGF/demo/build.bat
===================================================================
--- labs/jbosstm/workspace/adinn/XTSGF/demo/build.bat	2008-01-28 10:15:33 UTC (rev 18171)
+++ labs/jbosstm/workspace/adinn/XTSGF/demo/build.bat	2008-01-28 10:35:27 UTC (rev 18172)
@@ -35,7 +35,7 @@
 if exist "%PROPERTYFILE%" goto RUN
 
 :USAGE
-echo Usage: %PROGRAM% [weblogic|jboss|webmethods] <target>
+echo Usage: %PROGRAM% [jboss] <target>
 goto END
 
 :RUN

Modified: labs/jbosstm/workspace/adinn/XTSGF/demo/build.sh
===================================================================
--- labs/jbosstm/workspace/adinn/XTSGF/demo/build.sh	2008-01-28 10:15:33 UTC (rev 18171)
+++ labs/jbosstm/workspace/adinn/XTSGF/demo/build.sh	2008-01-28 10:35:27 UTC (rev 18172)
@@ -34,5 +34,5 @@
   fi
 fi
 
-echo "Usage: `basename $0` [weblogic|jboss|webmethods] <target>"
+echo "Usage: `basename $0` [jboss] <target>"
 exit 1

Modified: labs/jbosstm/workspace/adinn/XTSGF/demo/build.xml
===================================================================
--- labs/jbosstm/workspace/adinn/XTSGF/demo/build.xml	2008-01-28 10:15:33 UTC (rev 18171)
+++ labs/jbosstm/workspace/adinn/XTSGF/demo/build.xml	2008-01-28 10:35:27 UTC (rev 18172)
@@ -32,18 +32,10 @@
 <project name="xts-demo" default="build" basedir=".">
 
     <!-- ================================================================== -->
-
-    <!-- Specify weblogic.home if you want a WebLogic build,                -->
-    <!-- webmethods.home for a webMethods build otherwise a JBoss build     -->
-    <!-- will be generated.                                                 -->
-
     <!-- The properties to override are the following:                      -->
     <!--    hostname (defaults to localhost)                                -->
-    <!--    port (defaults to 8080 for jboss, 7001 for WebLogic and         -->
-    <!--          8004 for webMethods)                                      -->
-    <!--    urlstub (defaults to xtsdemowebservices for JBoss and WebLogic  -->
-    <!--          and xts-demo for webMethods)                              -->
-
+    <!--    port (defaults to 8080 for jboss)                               -->
+    <!--    urlstub (defaults to xtsdemowebservices for JBoss)              -->
     <!--    deploy.dir The deployment directory for the ear                 -->
     <!-- ================================================================== -->
 
@@ -67,15 +59,11 @@
     <property name="web.dir" location="web"/>
     <property name="dd.dir" location="dd"/>
     <property name="jboss.dd.dir" location="${dd.dir}/jboss"/>
-    <property name="webmethods.dd.dir" location="${dd.dir}/webmethods"/>
-    <property name="weblogic.dd.dir" location="${dd.dir}/weblogic"/>
     <property name="build.config" location="${build.dir}/config"/>
     <property name="build.soapconfig" location="${build.dir}/soapconfig"/>
     <property name="appinf.dir" location="${build.dir}/APP-INF"/>
     <property name="appinflib.dir" location="${appinf.dir}/lib"/>
 
-    <property name="webmethods.build.dir" location="${build.dir}/xts-demo"/>
-
     <property name="docs.dir" location="docs"/>
     <property name="xsl.dir"  location="xsl"/>
     <property name="html.dir" location="html"/>
@@ -115,42 +103,8 @@
         </delete>
     </target>
 
-    <target name="init-build">
-        <condition property="jboss.build">
-            <not>
-                <or>
-                    <isset property="weblogic.home"/>
-                    <isset property="webmethods.home"/>
-                </or>
-            </not>
-        </condition>
-    </target>
-
-    <target name="init-properties-weblogic" depends="init-build" if="weblogic.home">
+    <target name="init-properties">
         <property name="hostname" value="localhost"/>
-        <property name="port" value="7001"/>
-        <property name="urlstub" value="xtsdemowebservices"/>
-        <path id="compile.path">
-            <path refid="lib.path"/>
-            <path refid="ext.path"/>
-            <fileset dir="${weblogic.home}/server/lib" includes="webservices.jar"/>
-        </path>
-    </target>
-
-    <target name="init-properties-webmethods" depends="init-build" if="webmethods.home">
-        <property name="hostname" value="localhost"/>
-        <property name="port" value="8004"/>
-        <property name="urlstub" value="xts-demo"/>
-        <path id="compile.path">
-            <path refid="lib.path"/>
-            <path refid="ext.path"/>
-            <pathelement location="${webmethods.home}/lib/glue.jar"/>
-        </path>
-        <property name="webmethods.deploy.dir" location="${deploy.dir}/xts-demo"/>
-    </target>
-
-    <target name="init-properties" depends="init-build" if="jboss.build">
-        <property name="hostname" value="localhost"/>
         <property name="port" value="8080"/>
         <property name="urlstub" value="xtsdemowebservices"/>
         <path id="compile.path">
@@ -159,7 +113,7 @@
         </path>
     </target>
 
-    <target name="init" depends="init-properties-weblogic,init-properties-webmethods,init-properties">
+    <target name="init" depends="init-properties">
         <mkdir dir="${build.dir}"/>
         <mkdir dir="${build.dir}/classes"/>
         <mkdir dir="${build.config}"/>
@@ -177,9 +131,7 @@
             </classpath>
             <src path="${src.dir}"/>
             <patternset>
-                <include name="com/arjuna/xts/nightout/clients/jboss/**" if="jboss.build"/>
-                <include name="com/arjuna/xts/nightout/clients/weblogic/**" if="weblogic.home"/>
-                <include name="com/arjuna/xts/nightout/clients/webmethods/**" if="webmethods.home"/>
+                <include name="com/arjuna/xts/nightout/clients/jboss/**"/>
                 <include name="com/arjuna/xts/nightout/services/**"/>
             </patternset>
         </javac>
@@ -195,21 +147,7 @@
         <jar destfile="${build.dir}/config.jar" basedir="${build.config}"/>
     </target>
 
-    <target name="weblogic-webservices" depends="compile" if="weblogic.home">
-        <copy file="${weblogic.dd.dir}/web-services.xml" tofile="${build.dir}/web-services.xml"/>
-        <war destfile="${build.dir}/xts-demo-webservices.war" webxml="${weblogic.dd.dir}/web.xml">
-            <webinf dir="${build.dir}"
-                includes="web-services.xml"/>
-            <classes dir="${build.dir}/classes">
-                <include name="com/arjuna/xts/nightout/services/**/*"/>
-            </classes>
-            <manifest>
-                <attribute name="Class-Path" value="${lib.libs} ${ext.libs}"/>
-            </manifest>
-        </war>
-    </target>
-
-    <target name="jboss-webservices" depends="compile" if="jboss.build">
+    <target name="jboss-webservices" depends="compile"                 >
         <war destfile="${build.dir}/xts-demo-webservices.war" webxml="${jboss.dd.dir}/service-web-app.xml">
             <webinf dir="${jboss.dd.dir}" excludes="service-web-app.xml client-web-app.xml"/>
             <fileset dir="${build.dir}/classes">
@@ -222,28 +160,7 @@
     </target>
 
     <!-- the client side elements -->
-    <target name="weblogic-webapp" depends="compile" if="weblogic.home">
-        <copy tofile="${build.dir}/client-web-app.xml" file="${weblogic.dd.dir}/web-app.xml">
-            <filterset refid="webxml.filter"/>
-        </copy>
-
-        <!-- move resources into the classes directory -->
-        <copy todir="${build.dir}/classes/">
-            <fileset dir="${src.dir}" includes="com/arjuna/xts/nightout/clients/weblogic/**/*.xml"/>
-        </copy>
-
-        <war warfile="${build.dir}/xts-demo.war" webxml="${build.dir}/client-web-app.xml">
-            <classes dir="${build.dir}/classes">
-                <exclude name="com/arjuna/xts/nightout/services/**/*"/>
-            </classes>
-            <fileset dir="${web.dir}"/>
-            <manifest>
-                <attribute name="Class-Path" value="wstx.jar"/>
-            </manifest>
-        </war>
-    </target>
-
-    <target name="jboss-webapp" depends="compile" if="jboss.build">
+    <target name="jboss-webapp" depends="compile"                 >
         <copy tofile="${build.dir}/client-web-app.xml" file="${jboss.dd.dir}/client-web-app.xml">
             <filterset refid="webxml.filter"/>
         </copy>
@@ -260,20 +177,7 @@
         </war>
     </target>
 
-    <target name="weblogic-ear" depends="weblogic-webservices, weblogic-webapp, config" if="weblogic.home">
-        <copy todir="${appinflib.dir}">
-	        <fileset dir="${xtsinstalled.home}/lib" includes="*.jar"/>
-	        <fileset dir="${xtsinstalled.home}/lib/ext" includes="${ext.package}"/>
-            <fileset dir="${build.dir}" includes="config.jar"/>
-        </copy>
-        <ear earfile="${build.dir}/xts-demo.ear" appxml="${weblogic.dd.dir}/application.xml">
-            <fileset dir="${xtsinstalled.home}/webapps" includes="*.war"/>
-            <fileset dir="${build.dir}" includes="xts-demo-webservices.war xts-demo.war"/>
-            <fileset dir="${build.dir}" includes="APP-INF/**"/>
-        </ear>
-    </target>
-
-    <target name="jboss-ear" depends="jboss-webapp, config" if="jboss.build">
+    <target name="jboss-ear" depends="jboss-webapp, config">
         <ear earfile="${build.dir}/xts-demo.ear"
             appxml="${jboss.dd.dir}/application.xml">
             <fileset dir="${build.dir}" includes="xts-demo-webservices.war xts-demo.war config.jar"/>
@@ -283,59 +187,8 @@
         </ear>
     </target>
 
-    <target name="webmethods-app" depends="config" if="webmethods.home">
-        <mkdir dir="${webmethods.build.dir}"/>
-        <property name="webmethods.webinf.dir" location="${webmethods.build.dir}/WEB-INF"/>
-        <property name="webmethods.classes.dir" location="${webmethods.webinf.dir}/classes"/>
-        <property name="webmethods.lib.dir" location="${webmethods.webinf.dir}/lib"/>
-        <property name="webmethods.services.dir" location="${webmethods.webinf.dir}/services"/>
+    <target name="build" depends="jboss-ear"/>
 
-        <mkdir dir="${webmethods.webinf.dir}"/>
-        <mkdir dir="${webmethods.classes.dir}"/>
-        <mkdir dir="${webmethods.lib.dir}"/>
-        <mkdir dir="${webmethods.services.dir}"/>
-        <mkdir dir="${build.soapconfig}/services"/>
-
-        <copy todir="${webmethods.build.dir}">
-            <fileset dir="${web.dir}"/>
-        </copy>
-        <copy todir="${webmethods.webinf.dir}" file="${webmethods.dd.dir}/glue-config.xml">
-          <filterset>
-            <filter token="hostname" value="${hostname}"/>
-            <filter token="port" value="${port}"/>
-          </filterset>
-        </copy>
-        <copy tofile="${webmethods.webinf.dir}/web.xml" file="${webmethods.dd.dir}/web-app.xml">
-          <filterset refid="webxml.filter"/>
-        </copy>
-
-        <copy todir="${webmethods.classes.dir}">
-          <fileset dir="${build.dir}/classes"/>
-        </copy>
-
-        <copy todir="${build.soapconfig}/services">
-            <fileset dir="${webmethods.dd.dir}" includes="javax.*"/>
-        </copy>
-        <jar file="${build.dir}/soapconfig.jar">
-             <metainf dir="${build.soapconfig}"/>
-        </jar>
-
-	      <copy todir="${webmethods.lib.dir}">
-            <fileset dir="${xtsinstalled.home}/lib" includes="*.jar"/>
-            <fileset dir="${xtsinstalled.home}/lib/ext" includes="${ext.package}"/>
-            <fileset dir="${build.dir}" includes="config.jar soapconfig.jar"/>
-	      </copy>
-
-        <copy todir="${webmethods.services.dir}">
-            <fileset dir="${webmethods.dd.dir}">
-                <include name="*AT.xml"/>
-                <include name="*BA.xml"/>
-            </fileset>
-        </copy>
-    </target>
-
-    <target name="build" depends="jboss-ear, weblogic-ear, webmethods-app"/>
-
     <target name="docs" depends="init">
         <copy todir="${html.dir}">
             <fileset dir="${docs.dir}">
@@ -385,26 +238,11 @@
         <copy file="xts-build.xml" tofile="${selected-distrib-dir}/build.xml"/>
     </target>
 
-    <target name="deploy" depends="deploy-ears, deploy-exploded"/>
-
-    <target name="deploy-ears" depends="build, undeploy" unless="webmethods.home">
+    <target name="deploy" depends="build, undeploy">
         <copy file="${build.dir}/xts-demo.ear" tofile="${deploy.dir}/xts-demo.ear"/>
     </target>
 
-    <target name="deploy-exploded" depends="build, undeploy" if="webmethods.home">
-        <mkdir dir="${webmethods.deploy.dir}"/>
-        <copy todir="${webmethods.deploy.dir}">
-             <fileset dir="${webmethods.build.dir}"/>
-        </copy>
-    </target>
-
-    <target name="undeploy" depends="undeploy-ears, undeploy-exploded"/>
-
-    <target name="undeploy-ears" unless="webmethods.home">
+    <target name="undeploy">
         <delete file="${deploy.dir}/xts-demo.ear"/>
     </target>
-
-    <target name="undeploy-exploded" if="webmethods.home">
-        <delete dir="${webmethods.deploy.dir}"/>
-    </target>
 </project>

Modified: labs/jbosstm/workspace/adinn/XTSGF/demo/jboss.properties
===================================================================
--- labs/jbosstm/workspace/adinn/XTSGF/demo/jboss.properties	2008-01-28 10:15:33 UTC (rev 18171)
+++ labs/jbosstm/workspace/adinn/XTSGF/demo/jboss.properties	2008-01-28 10:35:27 UTC (rev 18172)
@@ -37,24 +37,6 @@
     <dir>JBOSS_DEPLOY_DIR</dir>
   </deploy>
 
-  <!-- webMethods services
-  <restaurantATURL>http://WEBMETHODS_HOSTNAME:WEBMETHODS_PORT/WEBMETHODS_URLSTUB/services/RestaurantServiceATService</restaurantATURL>
-  <restaurantBAURL>http://WEBMETHODS_HOSTNAME:WEBMETHODS_PORT/WEBMETHODS_URLSTUB/services/RestaurantServiceBAService</restaurantBAURL>
-  <taxiATURL>http://WEBMETHODS_HOSTNAME:WEBMETHODS_PORT/WEBMETHODS_URLSTUB/services/TaxiServiceATService</taxiATURL>
-  <taxiBAURL>http://WEBMETHODS_HOSTNAME:WEBMETHODS_PORT/WEBMETHODS_URLSTUB/services/TaxiServiceBAService</taxiBAURL>
-  <theatreATURL>http://WEBMETHODS_HOSTNAME:WEBMETHODS_PORT/WEBMETHODS_URLSTUB/services/TheatreServiceATService</theatreATURL>
-  <theatreBAURL>http://WEBMETHODS_HOSTNAME:WEBMETHODS_PORT/WEBMETHODS_URLSTUB/services/TheatreServiceBAService</theatreBAURL>
-  -->
-
-  <!-- WebLogic services
-  <restaurantATURL>http://WEBLOGIC_HOSTNAME:WEBLOGIC_PORT/WEBLOGIC_URLSTUB/RestaurantServiceATService</restaurantATURL>
-  <restaurantBAURL>http://WEBLOGIC_HOSTNAME:WEBLOGIC_PORT/WEBLOGIC_URLSTUB/RestaurantServiceBAService</restaurantBAURL>
-  <taxiATURL>http://WEBLOGIC_HOSTNAME:WEBLOGIC_PORT/WEBLOGIC_URLSTUB/TaxiServiceATService</taxiATURL>
-  <taxiBAURL>http://WEBLOGIC_HOSTNAME:WEBLOGIC_PORT/WEBLOGIC_URLSTUB/TaxiServiceBAService</taxiBAURL>
-  <theatreATURL>http://WEBLOGIC_HOSTNAME:WEBLOGIC_PORT/WEBLOGIC_URLSTUB/TheatreServiceATService</theatreATURL>
-  <theatreBAURL>http://WEBLOGIC_HOSTNAME:WEBLOGIC_PORT/WEBLOGIC_URLSTUB/TheatreServiceBAService</theatreBAURL>
-  -->
-
   <!-- JBoss services -->
   <restaurantATURL>http://localhost:8080/xtsdemowebservices/RestaurantServiceATService</restaurantATURL>
   <restaurantBAURL>http://localhost:8080/xtsdemowebservices/RestaurantServiceBAService</restaurantBAURL>

Deleted: labs/jbosstm/workspace/adinn/XTSGF/demo/weblogic.properties
===================================================================
--- labs/jbosstm/workspace/adinn/XTSGF/demo/weblogic.properties	2008-01-28 10:15:33 UTC (rev 18171)
+++ labs/jbosstm/workspace/adinn/XTSGF/demo/weblogic.properties	2008-01-28 10:35:27 UTC (rev 18172)
@@ -1,69 +0,0 @@
-<!--
-  JBoss, Home of Professional Open Source
-  Copyright 2006, Red Hat Middleware LLC, and individual contributors
-  as indicated by the @author tags. 
-  See the copyright.txt in the distribution for a full listing 
-  of individual contributors.
-  This copyrighted material is made available to anyone wishing to use,
-  modify, copy, or redistribute it subject to the terms and conditions
-  of the GNU General Public License, v. 2.0.
-  This program is distributed in the hope that it will be useful, but WITHOUT A 
-  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A 
-  PARTICULAR PURPOSE.  See the GNU General Public License for more details.
-  You should have received a copy of the GNU General Public License,
-  v. 2.0 along with this distribution; if not, write to the Free Software
-  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
-  MA  02110-1301, USA.
-  
-  (C) 2005-2006,
-  @author JBoss Inc.
--->
-<!-- WebLogic property file
-  The following variables should be replaced for WebLogic deployment
-  
-  WEBLOGIC_HOSTNAME - the hostname of the WebLogic installation (localhost)
-  WEBLOGIC_PORT - the port of the WebLogic web server (7001)
-  WEBLOGIC_URLSTUB - the url stub for the demo webservices (xtsdemowebservices)
-  WEBLOGIC_DEPLOY_DIR - the deploy directory of the WebLogic instance
-  WEBLOGIC_HOME - The home directory of the WebLogic installation (/usr/local/bea/weblogic81)
-  
-  You can choose any combination of the URL entries provided that there is an entry for each service.
-  The default services are the ones running within WebLogic.
--->
-<arjuna>
-  <hostname>WEBLOGIC_HOSTNAME</hostname>
-  <port>WEBLOGIC_PORT</port>
-  <urlstub>WEBLOGIC_URLSTUB</urlstub>
-  <deploy>
-    <dir>WEBLOGIC_DEPLOY_DIR</dir>
-  </deploy>
-  <weblogic>
-    <home>WEBLOGIC_HOME</home>
-  </weblogic>
-
-  <!-- webMethods services
-  <restaurantATURL>http://WEBMETHODS_HOSTNAME:WEBMETHODS_PORT/WEBMETHODS_URLSTUB/services/RestaurantServiceAT.wsdl</restaurantATURL>
-  <restaurantBAURL>http://WEBMETHODS_HOSTNAME:WEBMETHODS_PORT/WEBMETHODS_URLSTUB/services/RestaurantServiceBA.wsdl</restaurantBAURL>
-  <taxiATURL>http://WEBMETHODS_HOSTNAME:WEBMETHODS_PORT/WEBMETHODS_URLSTUB/services/TaxiServiceAT.wsdl</taxiATURL>
-  <taxiBAURL>http://WEBMETHODS_HOSTNAME:WEBMETHODS_PORT/WEBMETHODS_URLSTUB/services/TaxiServiceBA.wsdl</taxiBAURL>
-  <theatreATURL>http://WEBMETHODS_HOSTNAME:WEBMETHODS_PORT/WEBMETHODS_URLSTUB/services/TheatreServiceAT.wsdl</theatreATURL>
-  <theatreBAURL>http://WEBMETHODS_HOSTNAME:WEBMETHODS_PORT/WEBMETHODS_URLSTUB/services/TheatreServiceBA.wsdl</theatreBAURL>
-  -->
-
-  <!-- WebLogic services -->
-  <restaurantATURL>http://WEBLOGIC_HOSTNAME:WEBLOGIC_PORT/WEBLOGIC_URLSTUB/RestaurantServiceAT?WSDL</restaurantATURL>
-  <restaurantBAURL>http://WEBLOGIC_HOSTNAME:WEBLOGIC_PORT/WEBLOGIC_URLSTUB/RestaurantServiceBA?WSDL</restaurantBAURL>
-  <taxiATURL>http://WEBLOGIC_HOSTNAME:WEBLOGIC_PORT/WEBLOGIC_URLSTUB/TaxiServiceAT?WSDL</taxiATURL>
-  <taxiBAURL>http://WEBLOGIC_HOSTNAME:WEBLOGIC_PORT/WEBLOGIC_URLSTUB/TaxiServiceBA?WSDL</taxiBAURL>
-  <theatreATURL>http://WEBLOGIC_HOSTNAME:WEBLOGIC_PORT/WEBLOGIC_URLSTUB/TheatreServiceAT?WSDL</theatreATURL>
-  <theatreBAURL>http://WEBLOGIC_HOSTNAME:WEBLOGIC_PORT/WEBLOGIC_URLSTUB/TheatreServiceBA?WSDL</theatreBAURL>
-
-  <!-- JBoss services
-  <restaurantATURL>http://JBOSS_HOSTNAME:JBOSS_PORT/JBOSS_URLSTUB/RestaurantServiceAT?wsdl</restaurantATURL>
-  <restaurantBAURL>http://JBOSS_HOSTNAME:JBOSS_PORT/JBOSS_URLSTUB/RestaurantServiceBA?wsdl</restaurantBAURL>
-  <taxiATURL>http://JBOSS_HOSTNAME:JBOSS_PORT/JBOSS_URLSTUB/TaxiServiceAT?wsdl</taxiATURL>
-  <taxiBAURL>http://JBOSS_HOSTNAME:JBOSS_PORT/JBOSS_URLSTUB/TaxiServiceBA?wsdl</taxiBAURL>
-  <theatreATURL>http://JBOSS_HOSTNAME:JBOSS_PORT/JBOSS_URLSTUB/TheatreServiceAT?wsdl</theatreATURL>
-  <theatreBAURL>http://JBOSS_HOSTNAME:JBOSS_PORT/JBOSS_URLSTUB/TheatreServiceBA?wsdl</theatreBAURL>
-  -->
-</arjuna>

Deleted: labs/jbosstm/workspace/adinn/XTSGF/demo/webmethods.properties
===================================================================
--- labs/jbosstm/workspace/adinn/XTSGF/demo/webmethods.properties	2008-01-28 10:15:33 UTC (rev 18171)
+++ labs/jbosstm/workspace/adinn/XTSGF/demo/webmethods.properties	2008-01-28 10:35:27 UTC (rev 18172)
@@ -1,69 +0,0 @@
-<!--
-  JBoss, Home of Professional Open Source
-  Copyright 2006, Red Hat Middleware LLC, and individual contributors
-  as indicated by the @author tags. 
-  See the copyright.txt in the distribution for a full listing 
-  of individual contributors.
-  This copyrighted material is made available to anyone wishing to use,
-  modify, copy, or redistribute it subject to the terms and conditions
-  of the GNU General Public License, v. 2.0.
-  This program is distributed in the hope that it will be useful, but WITHOUT A 
-  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A 
-  PARTICULAR PURPOSE.  See the GNU General Public License for more details.
-  You should have received a copy of the GNU General Public License,
-  v. 2.0 along with this distribution; if not, write to the Free Software
-  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
-  MA  02110-1301, USA.
-  
-  (C) 2005-2006,
-  @author JBoss Inc.
--->
-<!-- Webmethod property file
-  The following variables should be replaced for webMethods deployment
-  
-  WEBMETHODS_HOSTNAME - the hostname of the webMethods installation (localhost)
-  WEBMETHODS_PORT - the port of the webMethods web server (8004)
-  WEBMETHODS_URLSTUB - the url stub for the demo webservices (xts-demo)
-  WEBMETHODS_DEPLOY_DIR - the deploy directory of the webMethods instance
-  WEBMETHODS_HOME - The home directory of the webMethods installation (/usr/local/glue)
-  
-  You can choose any combination of the URL entries provided that there is an entry for each service.
-  The default services are the ones running within webMethods.
--->
-<arjuna>
-  <hostname>WEBMETHODS_HOSTNAME</hostname>
-  <port>WEBMETHODS_PORT</port>
-  <urlstub>WEBMETHODS_URLSTUB</urlstub>
-  <deploy>
-    <dir>WEBMETHODS_DEPLOY_DIR</dir>
-  </deploy>
-  <webmethods>
-    <home>WEBMETHODS_HOME</home>
-  </webmethods>
-
-  <!-- webmethods services -->
-  <restaurantATURL>http://WEBMETHODS_HOSTNAME:WEBMETHODS_PORT/WEBMETHODS_URLSTUB/services/RestaurantServiceAT.wsdl</restaurantATURL>
-  <restaurantBAURL>http://WEBMETHODS_HOSTNAME:WEBMETHODS_PORT/WEBMETHODS_URLSTUB/services/RestaurantServiceBA.wsdl</restaurantBAURL>
-  <taxiATURL>http://WEBMETHODS_HOSTNAME:WEBMETHODS_PORT/WEBMETHODS_URLSTUB/services/TaxiServiceAT.wsdl</taxiATURL>
-  <taxiBAURL>http://WEBMETHODS_HOSTNAME:WEBMETHODS_PORT/WEBMETHODS_URLSTUB/services/TaxiServiceBA.wsdl</taxiBAURL>
-  <theatreATURL>http://WEBMETHODS_HOSTNAME:WEBMETHODS_PORT/WEBMETHODS_URLSTUB/services/TheatreServiceAT.wsdl</theatreATURL>
-  <theatreBAURL>http://WEBMETHODS_HOSTNAME:WEBMETHODS_PORT/WEBMETHODS_URLSTUB/services/TheatreServiceBA.wsdl</theatreBAURL>
-
-  <!-- WebLogic services
-  <restaurantATURL>http://WEBLOGIC_HOSTNAME:WEBLOGIC_PORT/WEBLOGIC_URLSTUB/RestaurantServiceAT?WSDL</restaurantATURL>
-  <restaurantBAURL>http://WEBLOGIC_HOSTNAME:WEBLOGIC_PORT/WEBLOGIC_URLSTUB/RestaurantServiceBA?WSDL</restaurantBAURL>
-  <taxiATURL>http://WEBLOGIC_HOSTNAME:WEBLOGIC_PORT/WEBLOGIC_URLSTUB/TaxiServiceAT?WSDL</taxiATURL>
-  <taxiBAURL>http://WEBLOGIC_HOSTNAME:WEBLOGIC_PORT/WEBLOGIC_URLSTUB/TaxiServiceBA?WSDL</taxiBAURL>
-  <theatreATURL>http://WEBLOGIC_HOSTNAME:WEBLOGIC_PORT/WEBLOGIC_URLSTUB/TheatreServiceAT?WSDL</theatreATURL>
-  <theatreBAURL>http://WEBLOGIC_HOSTNAME:WEBLOGIC_PORT/WEBLOGIC_URLSTUB/TheatreServiceBA?WSDL</theatreBAURL>
-  -->
-
-  <!-- JBoss services
-  <restaurantATURL>http://JBOSS_HOSTNAME:JBOSS_PORT/JBOSS_URLSTUB/RestaurantServiceAT?wsdl</restaurantATURL>
-  <restaurantBAURL>http://JBOSS_HOSTNAME:JBOSS_PORT/JBOSS_URLSTUB/RestaurantServiceBA?wsdl</restaurantBAURL>
-  <taxiATURL>http://JBOSS_HOSTNAME:JBOSS_PORT/JBOSS_URLSTUB/TaxiServiceAT?wsdl</taxiATURL>
-  <taxiBAURL>http://JBOSS_HOSTNAME:JBOSS_PORT/JBOSS_URLSTUB/TaxiServiceBA?wsdl</taxiBAURL>
-  <theatreATURL>http://JBOSS_HOSTNAME:JBOSS_PORT/JBOSS_URLSTUB/TheatreServiceAT?wsdl</theatreATURL>
-  <theatreBAURL>http://JBOSS_HOSTNAME:JBOSS_PORT/JBOSS_URLSTUB/TheatreServiceBA?wsdl</theatreBAURL>
-  -->
-</arjuna>




More information about the jboss-svn-commits mailing list