You are viewing a plain text version of this content. The canonical link for it is here.
Posted to wsrp4j-dev@portals.apache.org by dl...@apache.org on 2006/12/10 21:58:49 UTC

svn commit: r485257 - in /portals/wsrp4j/trunk: ./ sandbox/wsrp4j/ tools/

Author: dlouzan
Date: Sun Dec 10 12:58:46 2006
New Revision: 485257

URL: http://svn.apache.org/viewvc?view=rev&rev=485257
Log:
- Moved the contents from sandbox/wsrp4j/tools to tools/
- Moved the dependency on axis.jar for using the http tunnel using maven
- Added support for configuring the environment using build.properties

Added:
    portals/wsrp4j/trunk/build.properties
    portals/wsrp4j/trunk/tools/
    portals/wsrp4j/trunk/tools/tunnel-9001.sh   (with props)
    portals/wsrp4j/trunk/tools/tunnel-9002-netunity.sh   (with props)
    portals/wsrp4j/trunk/tools/tunnel-9003-bea.sh   (with props)
    portals/wsrp4j/trunk/tools/tunnel-9004-ibm.sh   (with props)
    portals/wsrp4j/trunk/tools/tunnel-9005-vignette.sh   (with props)
    portals/wsrp4j/trunk/tools/tunnel-9006-oracle.sh   (with props)
    portals/wsrp4j/trunk/tools/tunnel.bat   (with props)
Removed:
    portals/wsrp4j/trunk/sandbox/wsrp4j/
Modified:
    portals/wsrp4j/trunk/build.properties.sample
    portals/wsrp4j/trunk/pom.xml

Added: portals/wsrp4j/trunk/build.properties
URL: http://svn.apache.org/viewvc/portals/wsrp4j/trunk/build.properties?view=auto&rev=485257
==============================================================================
--- portals/wsrp4j/trunk/build.properties (added)
+++ portals/wsrp4j/trunk/build.properties Sun Dec 10 12:58:46 2006
@@ -0,0 +1,24 @@
+# Copyright 2003-2006 The Apache Software Foundation.
+# 
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+# 
+#      http://www.apache.org/licenses/LICENSE-2.0
+# 
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+# -------------------------------------------------------------------
+# B U I L D  P R O P E R T I E S - S A M P L E
+# -------------------------------------------------------------------
+#
+# Rename this file to build.properties and change the values:
+
+# location of the Tomcat install where you want to deploy wsrp4j
+# do not use backslashes in this path
+
+maven.tomcat.home=/home/diego/local/apache-tomcat-5.5.16-cons

Modified: portals/wsrp4j/trunk/build.properties.sample
URL: http://svn.apache.org/viewvc/portals/wsrp4j/trunk/build.properties.sample?view=diff&rev=485257&r1=485256&r2=485257
==============================================================================
--- portals/wsrp4j/trunk/build.properties.sample (original)
+++ portals/wsrp4j/trunk/build.properties.sample Sun Dec 10 12:58:46 2006
@@ -1,4 +1,4 @@
-# Copyright 2003-2005 The Apache Software Foundation.
+# Copyright 2003-2006 The Apache Software Foundation.
 # 
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
@@ -22,4 +22,3 @@
 # do not use backslashes in this path
 
 maven.tomcat.home=/tomcat
-maven.tomcat.version.major=5

Modified: portals/wsrp4j/trunk/pom.xml
URL: http://svn.apache.org/viewvc/portals/wsrp4j/trunk/pom.xml?view=diff&rev=485257&r1=485256&r2=485257
==============================================================================
--- portals/wsrp4j/trunk/pom.xml (original)
+++ portals/wsrp4j/trunk/pom.xml Sun Dec 10 12:58:46 2006
@@ -213,6 +213,13 @@
     <module>testportlet</module>
   </modules>
   <build>
+    <filters>
+        <!-- Environment properties file -->
+        <!-- For now, set the properties conf using a relative path
+             for using with the submodules. Try to find a system property
+             for the parent base dir, like ${basedir} but for the parent -->
+        <filter>../build.properties</filter>
+    </filters>
     <plugins>
         <plugin>
             <groupId>org.apache.maven.plugins</groupId>

Added: portals/wsrp4j/trunk/tools/tunnel-9001.sh
URL: http://svn.apache.org/viewvc/portals/wsrp4j/trunk/tools/tunnel-9001.sh?view=auto&rev=485257
==============================================================================
--- portals/wsrp4j/trunk/tools/tunnel-9001.sh (added)
+++ portals/wsrp4j/trunk/tools/tunnel-9001.sh Sun Dec 10 12:58:46 2006
@@ -0,0 +1,18 @@
+#!/bin/sh
+
+# Copyright 2003-2006 The Apache Software Foundation.
+# 
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+# 
+#      http://www.apache.org/licenses/LICENSE-2.0
+# 
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+CLASSPATH=~/.m2/repository/axis/axis/1.4/axis-1.4.jar
+java -cp $CLASSPATH org.apache.axis.utils.tcpmon 9001 localhost 8080

Propchange: portals/wsrp4j/trunk/tools/tunnel-9001.sh
------------------------------------------------------------------------------
    svn:executable = *

Added: portals/wsrp4j/trunk/tools/tunnel-9002-netunity.sh
URL: http://svn.apache.org/viewvc/portals/wsrp4j/trunk/tools/tunnel-9002-netunity.sh?view=auto&rev=485257
==============================================================================
--- portals/wsrp4j/trunk/tools/tunnel-9002-netunity.sh (added)
+++ portals/wsrp4j/trunk/tools/tunnel-9002-netunity.sh Sun Dec 10 12:58:46 2006
@@ -0,0 +1,18 @@
+#!/bin/sh
+
+# Copyright 2003-2006 The Apache Software Foundation.
+# 
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+# 
+#      http://www.apache.org/licenses/LICENSE-2.0
+# 
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+CLASSPATH=~/.m2/repository/axis/axis/1.4/axis-1.4.jar
+java -cp $CLASSPATH org.apache.axis.utils.tcpmon 9002 wsrp.netunitysoftware.com 80

Propchange: portals/wsrp4j/trunk/tools/tunnel-9002-netunity.sh
------------------------------------------------------------------------------
    svn:executable = *

Added: portals/wsrp4j/trunk/tools/tunnel-9003-bea.sh
URL: http://svn.apache.org/viewvc/portals/wsrp4j/trunk/tools/tunnel-9003-bea.sh?view=auto&rev=485257
==============================================================================
--- portals/wsrp4j/trunk/tools/tunnel-9003-bea.sh (added)
+++ portals/wsrp4j/trunk/tools/tunnel-9003-bea.sh Sun Dec 10 12:58:46 2006
@@ -0,0 +1,18 @@
+#!/bin/sh
+
+# Copyright 2003-2006 The Apache Software Foundation.
+# 
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+# 
+#      http://www.apache.org/licenses/LICENSE-2.0
+# 
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+CLASSPATH=~/.m2/repository/axis/axis/1.4/axis-1.4.jar
+java -cp $CLASSPATH org.apache.axis.utils.tcpmon 9003 wsrp.bea.com 80

Propchange: portals/wsrp4j/trunk/tools/tunnel-9003-bea.sh
------------------------------------------------------------------------------
    svn:executable = *

Added: portals/wsrp4j/trunk/tools/tunnel-9004-ibm.sh
URL: http://svn.apache.org/viewvc/portals/wsrp4j/trunk/tools/tunnel-9004-ibm.sh?view=auto&rev=485257
==============================================================================
--- portals/wsrp4j/trunk/tools/tunnel-9004-ibm.sh (added)
+++ portals/wsrp4j/trunk/tools/tunnel-9004-ibm.sh Sun Dec 10 12:58:46 2006
@@ -0,0 +1,18 @@
+#!/bin/sh
+
+# Copyright 2003-2006 The Apache Software Foundation.
+# 
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+# 
+#      http://www.apache.org/licenses/LICENSE-2.0
+# 
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+CLASSPATH=~/.m2/repository/axis/axis/1.4/axis-1.4.jar
+java -cp $CLASSPATH org.apache.axis.utils.tcpmon 9004 wsrp.dyndns.org 9081

Propchange: portals/wsrp4j/trunk/tools/tunnel-9004-ibm.sh
------------------------------------------------------------------------------
    svn:executable = *

Added: portals/wsrp4j/trunk/tools/tunnel-9005-vignette.sh
URL: http://svn.apache.org/viewvc/portals/wsrp4j/trunk/tools/tunnel-9005-vignette.sh?view=auto&rev=485257
==============================================================================
--- portals/wsrp4j/trunk/tools/tunnel-9005-vignette.sh (added)
+++ portals/wsrp4j/trunk/tools/tunnel-9005-vignette.sh Sun Dec 10 12:58:46 2006
@@ -0,0 +1,18 @@
+#!/bin/sh
+
+# Copyright 2003-2006 The Apache Software Foundation.
+# 
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+# 
+#      http://www.apache.org/licenses/LICENSE-2.0
+# 
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+CLASSPATH=~/.m2/repository/axis/axis/1.4/axis-1.4.jar
+java -cp $CLASSPATH org.apache.axis.utils.tcpmon 9005 wsrpdemo.vignette.com 8080

Propchange: portals/wsrp4j/trunk/tools/tunnel-9005-vignette.sh
------------------------------------------------------------------------------
    svn:executable = *

Added: portals/wsrp4j/trunk/tools/tunnel-9006-oracle.sh
URL: http://svn.apache.org/viewvc/portals/wsrp4j/trunk/tools/tunnel-9006-oracle.sh?view=auto&rev=485257
==============================================================================
--- portals/wsrp4j/trunk/tools/tunnel-9006-oracle.sh (added)
+++ portals/wsrp4j/trunk/tools/tunnel-9006-oracle.sh Sun Dec 10 12:58:46 2006
@@ -0,0 +1,18 @@
+#!/bin/sh
+
+# Copyright 2003-2006 The Apache Software Foundation.
+# 
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+# 
+#      http://www.apache.org/licenses/LICENSE-2.0
+# 
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+CLASSPATH=~/.m2/repository/axis/axis/1.4/axis-1.4.jar
+java -cp $CLASSPATH org.apache.axis.utils.tcpmon 9006 portalstandards.oracle.com 80

Propchange: portals/wsrp4j/trunk/tools/tunnel-9006-oracle.sh
------------------------------------------------------------------------------
    svn:executable = *

Added: portals/wsrp4j/trunk/tools/tunnel.bat
URL: http://svn.apache.org/viewvc/portals/wsrp4j/trunk/tools/tunnel.bat?view=auto&rev=485257
==============================================================================
--- portals/wsrp4j/trunk/tools/tunnel.bat (added)
+++ portals/wsrp4j/trunk/tools/tunnel.bat Sun Dec 10 12:58:46 2006
@@ -0,0 +1,16 @@
+@echo off
+rem  Copyright 2003-2005 The Apache Software Foundation.
+rem 
+rem  Licensed under the Apache License, Version 2.0 (the "License");
+rem  you may not use this file except in compliance with the License.
+rem  You may obtain a copy of the License at
+rem
+rem      http://www.apache.org/licenses/LICENSE-2.0
+rem
+rem  Unless required by applicable law or agreed to in writing, software
+rem  distributed under the License is distributed on an "AS IS" BASIS,
+rem  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+rem  See the License for the specific language governing permissions and
+rem  limitations under the License.
+
+java -cp lib/axis-1.3.jar org.apache.axis.utils.tcpmon 9001 localhost 8080

Propchange: portals/wsrp4j/trunk/tools/tunnel.bat
------------------------------------------------------------------------------
    svn:executable = *