Skip to Content.
Sympa Menu

perfsonar-dev - r1868 - in trunk/perfsonar: ant/rrdma conf/axis-1.4/WEB-INF

Subject: perfsonar development work

List archive

r1868 - in trunk/perfsonar: ant/rrdma conf/axis-1.4/WEB-INF


Chronological Thread 
  • From:
  • To:
  • Subject: r1868 - in trunk/perfsonar: ant/rrdma conf/axis-1.4/WEB-INF
  • Date: Fri, 22 Dec 2006 04:37:38 -0500

Author: roman
Date: 2006-12-22 04:37:37 -0500 (Fri, 22 Dec 2006)
New Revision: 1868

Modified:
trunk/perfsonar/ant/rrdma/rrdma-axis-deploy-targets.xml
trunk/perfsonar/conf/axis-1.4/WEB-INF/web.xml
Log:
Unfortunately, xslt does not work in Ant script for everyone so for now calls
of targets that use xslt to add/remove
a listener class to/from web.xml have been commented. Listener class has been
added to web.xml in conf/axis-1.4/WEB-INF/.
This file is moved to service installation directory during deploy action.

Modified: trunk/perfsonar/ant/rrdma/rrdma-axis-deploy-targets.xml
===================================================================
--- trunk/perfsonar/ant/rrdma/rrdma-axis-deploy-targets.xml 2006-12-21
15:45:13 UTC (rev 1867)
+++ trunk/perfsonar/ant/rrdma/rrdma-axis-deploy-targets.xml 2006-12-22
09:37:37 UTC (rev 1868)
@@ -166,7 +166,10 @@

<!-- the main targets -->

+ <!--

+ xslt does not work for everyone (don't know why) so use of it is
commented
+
<target name="deploy" depends="copy-rrdma-jar, add-context-listener"
description="Deploys RRD MA service">

@@ -179,8 +182,22 @@
<antcall target="deploy-adminclient" />

</target>
+ -->

+ <target name="deploy" depends="copy-rrdma-jar"
+ description="Deploys RRD MA service">

+ <echo>Deploying the service...</echo>
+
+ <antcall target="tomcat-start-for-rrdma" />
+
+ <antcall target="xmldb-adduser-rrdma" />
+
+ <antcall target="deploy-adminclient" />
+
+ </target>
+
+
<target name="undeploy"
description="Undeploys RRD MA service">

@@ -188,7 +205,9 @@

<antcall target="undeploy-adminclient" />

- <antcall target="rem-context-listener" />
+ <!-- xslt does not work for everyone (don't know why) so use of it
is commented -->
+ <!-- <antcall target="rem-context-listener" /> -->
+
<antcall target="delete-jars-for-rrdma"/>

<delete
file="${service.home}/${deploy.root}/WEB-INF/lib/perfSONAR-generic.jar"/>

Modified: trunk/perfsonar/conf/axis-1.4/WEB-INF/web.xml
===================================================================
--- trunk/perfsonar/conf/axis-1.4/WEB-INF/web.xml 2006-12-21 15:45:13
UTC (rev 1867)
+++ trunk/perfsonar/conf/axis-1.4/WEB-INF/web.xml 2006-12-22 09:37:37
UTC (rev 1868)
@@ -5,11 +5,15 @@

<web-app>
<display-name>Apache-Axis</display-name>
-
- <listener>
-
<listener-class>org.apache.axis.transport.http.AxisHTTPSessionListener</listener-class>
- </listener>
-
+
+ <listener>
+
<listener-class>org.apache.axis.transport.http.AxisHTTPSessionListener</listener-class>
+ </listener>
+
+ <listener>
+
<listener-class>org.perfsonar.commons.container.listeners.StartupInitializer</listener-class>
+ </listener>
+
<servlet>
<servlet-name>AxisServlet</servlet-name>
<display-name>Apache-Axis Servlet</display-name>



  • r1868 - in trunk/perfsonar: ant/rrdma conf/axis-1.4/WEB-INF, svnlog, 12/22/2006

Archive powered by MHonArc 2.6.16.

Top of Page