Author: ffang
Date: Sun Sep 17 18:31:15 2006
New Revision: 447179
URL: http://svn.apache.org/viewvc?view=rev&rev=447179
Log:
minor change for samples docs
Modified:
incubator/cxf/trunk/distribution/src/main/release/samples/README.txt
incubator/cxf/trunk/distribution/src/main/release/samples/callback/README.txt
incubator/cxf/trunk/distribution/src/main/release/samples/common_build.xml
incubator/cxf/trunk/distribution/src/main/release/samples/hello_world/README.txt
incubator/cxf/trunk/distribution/src/main/release/samples/hello_world_async/README.txt
Modified: incubator/cxf/trunk/distribution/src/main/release/samples/README.txt
URL:
http://svn.apache.org/viewvc/incubator/cxf/trunk/distribution/src/main/release/samples/README.txt?view=diff&rev=447179&r1=447178&r2=447179
==============================================================================
--- incubator/cxf/trunk/distribution/src/main/release/samples/README.txt
(original)
+++ incubator/cxf/trunk/distribution/src/main/release/samples/README.txt Sun
Sep 17 18:31:15 2006
@@ -16,7 +16,7 @@
distribution using either ant or wsdl2java, javac and java,
you need to set the environment so that the file cxf.jar
is on the CLASSPATH and to insure that the JDK, ant and
-Celtix bin directories are on the PATH.
+celtixfire bin directories are on the PATH.
To build and run the demos provided in the celtixfire source distribution
using ant you will need to edit the common_build.xml file.
@@ -38,7 +38,7 @@
ANT_HOME=/<ant_installation_directory>/apache-ant-1.6.5
export PATH=$JAVA_HOME/bin:$ANT_HOME/bin:$CXF_HOME/bin:$PATH
- export CLASSPATH=.:$CELTIX_HOME/lib/cxf.jar:./build/classes
+ export CLASSPATH=.:$CXF_HOME/lib/cxf.jar:./build/classes
For Windows:
set CXF_HOME=C:\<installation_directory>\celtixfire
@@ -55,7 +55,7 @@
Basic Setup for Building and Running the Demos in a Servlet Container
=====================================================================
-Since Celtix requires JDK/JRE 5.0, you must use a servlet container
+Since celtixfire requires JDK/JRE 5.0, you must use a servlet container
that is compatible with this JDK/JRE. A suitable servlet container is
Tomcat 5.5 or above.
Modified:
incubator/cxf/trunk/distribution/src/main/release/samples/callback/README.txt
URL:
http://svn.apache.org/viewvc/incubator/cxf/trunk/distribution/src/main/release/samples/callback/README.txt?view=diff&rev=447179&r1=447178&r2=447179
==============================================================================
---
incubator/cxf/trunk/distribution/src/main/release/samples/callback/README.txt
(original)
+++
incubator/cxf/trunk/distribution/src/main/release/samples/callback/README.txt
Sun Sep 17 18:31:15 2006
@@ -14,7 +14,7 @@
Prerequisite
------------
-If your environment already includes celtix.jar on the
+If your environment already includes cxf.jar on the
CLASSPATH, and the JDK and ant bin directories on the PATH
it is not necessary to run the environment script described in
the samples directory README. If your environment is not
@@ -66,12 +66,12 @@
For UNIX:
- export CLASSPATH=$CLASSPATH:$CELTIX_HOME/lib/celtix.jar:./build/classes
+ export CLASSPATH=$CLASSPATH:$CXF_HOME/lib/cxf.jar:./build/classes
javac -d build/classes src/demo/callback/client/*.java
javac -d build/classes src/demo/callback/server/*.java
For Windows:
- set classpath=%classpath%;%CELTIX_HOME%\lib\celtix.jar:.\build\classes
+ set classpath=%classpath%;%CXF_HOME%\lib\cxf.jar:.\build\classes
javac -d build\classes src\demo\callback\client\*.java
javac -d build\classes src\demo\callback\server\*.java
@@ -84,10 +84,10 @@
single command line:
For UNIX (must use forward slashes):
- java -Djava.util.logging.config.file=$CELTIX_HOME/etc/logging.properties
+ java -Djava.util.logging.config.file=$CXF_HOME/etc/logging.properties
demo.callback.server.Server &
- java -Djava.util.logging.config.file=$CELTIX_HOME/etc/logging.properties
+ java -Djava.util.logging.config.file=$CXF_HOME/etc/logging.properties
demo.callback.client.Client ./wsdl/basic_callback.wsdl
The server process starts in the background. After running the client,
@@ -95,10 +95,10 @@
For Windows (may use either forward or back slashes):
start
- java -Djava.util.logging.config.file=%CELTIX_HOME%\etc\logging.properties
+ java -Djava.util.logging.config.file=%CXF_HOME%\etc\logging.properties
demo.callback.server.Server
- java -Djava.util.logging.config.file=%CELTIX_HOME%\etc\logging.properties
+ java -Djava.util.logging.config.file=%CXF_HOME%\etc\logging.properties
demo.callback.client.Client .\wsdl\basic_callback.wsdl
A new command windows opens for the server process. After running the
Modified:
incubator/cxf/trunk/distribution/src/main/release/samples/common_build.xml
URL:
http://svn.apache.org/viewvc/incubator/cxf/trunk/distribution/src/main/release/samples/common_build.xml?view=diff&rev=447179&r1=447178&r2=447179
==============================================================================
--- incubator/cxf/trunk/distribution/src/main/release/samples/common_build.xml
(original)
+++ incubator/cxf/trunk/distribution/src/main/release/samples/common_build.xml
Sun Sep 17 18:31:15 2006
@@ -16,7 +16,7 @@
specific language governing permissions and limitations
under the License.
-->
-<project name="Celtix common build file" default="build">
+<project name="celtixfire build file" default="build">
<property environment="env"/>
@@ -56,16 +56,16 @@
<equals arg1="${ant.java.version}" arg2="1.5"/>
</condition>
- <fail message="Celtix requires Java version 1.5 or higher. You are
currently using Java version ${ant.java.version}."
+ <fail message="celtixfire requires Java version 1.5 or higher. You are
currently using Java version ${ant.java.version}."
unless="is.java.version.15"/>
- <!-- Determine cxf.home, either from the environment variable CELTIX_HOME
+ <!-- Determine cxf.home, either from the environment variable CXF_HOME
- or using ../..
-->
- <condition property="cxf.home" value="${env.CELTIX_HOME}">
- <isset property="env.CELTIX_HOME"/>
+ <condition property="cxf.home" value="${env.CXF_HOME}">
+ <isset property="env.CXF_HOME"/>
</condition>
<property name="cxf.home" location="../.."/>
<property name="activemq.home" location="${cxf.home}/lib/activemq/3.2"/>
Modified:
incubator/cxf/trunk/distribution/src/main/release/samples/hello_world/README.txt
URL:
http://svn.apache.org/viewvc/incubator/cxf/trunk/distribution/src/main/release/samples/hello_world/README.txt?view=diff&rev=447179&r1=447178&r2=447179
==============================================================================
---
incubator/cxf/trunk/distribution/src/main/release/samples/hello_world/README.txt
(original)
+++
incubator/cxf/trunk/distribution/src/main/release/samples/hello_world/README.txt
Sun Sep 17 18:31:15 2006
@@ -64,12 +64,12 @@
For UNIX:
- export CLASSPATH=$CLASSPATH:$CELTIX_HOME/lib/cxf.jar:./build/classes
+ export CLASSPATH=$CLASSPATH:$CXF_HOME/lib/cxf.jar:./build/classes
javac -d build/classes src/demo/hw/client/*.java
javac -d build/classes src/demo/hw/server/*.java
For Windows:
- set classpath=%classpath%;%CELTIX_HOME%\lib\cxf.jar;.\build\classes
+ set classpath=%classpath%;%CXF_HOME%\lib\cxf.jar;.\build\classes
javac -d build\classes src\demo\hw\client\*.java
javac -d build\classes src\demo\hw\server\*.java
@@ -82,10 +82,10 @@
single command line:
For UNIX (must use forward slashes):
- java -Djava.util.logging.config.file=$CELTIX_HOME/etc/logging.properties
+ java -Djava.util.logging.config.file=$CXF_HOME/etc/logging.properties
demo.hw.server.Server &
- java -Djava.util.logging.config.file=$CELTIX_HOME/etc/logging.properties
+ java -Djava.util.logging.config.file=$CXF_HOME/etc/logging.properties
demo.hw.client.Client ./wsdl/hello_world.wsdl
The server process starts in the background. After running the client,
@@ -93,10 +93,10 @@
For Windows (may use either forward or back slashes):
start
- java -Djava.util.logging.config.file=%CELTIX_HOME%\etc\logging.properties
+ java -Djava.util.logging.config.file=%CXF_HOME%\etc\logging.properties
demo.hw.server.Server
- java -Djava.util.logging.config.file=%CELTIX_HOME%\etc\logging.properties
+ java -Djava.util.logging.config.file=%CXF_HOME%\etc\logging.properties
demo.hw.client.Client .\wsdl\hello_world.wsdl
A new command windows opens for the server process. After running the
@@ -139,12 +139,12 @@
For UNIX:
- java -Djava.util.logging.config.file=$CELTIX_HOME/etc/logging.properties
+ java -Djava.util.logging.config.file=$CXF_HOME/etc/logging.properties
demo.hw.client.Client http://localhost:#/helloworld/cxf/hello_world
For Windows:
- java -Djava.util.logging.config.file=%CELTIX_HOME%\etc\logging.properties
+ java -Djava.util.logging.config.file=%CXF_HOME%\etc\logging.properties
demo.hw.client.Client http://localhost:#/helloworld/cxf/hello_world
Where # is the TCP/IP port used by the servlet container,
Modified:
incubator/cxf/trunk/distribution/src/main/release/samples/hello_world_async/README.txt
URL:
http://svn.apache.org/viewvc/incubator/cxf/trunk/distribution/src/main/release/samples/hello_world_async/README.txt?view=diff&rev=447179&r1=447178&r2=447179
==============================================================================
---
incubator/cxf/trunk/distribution/src/main/release/samples/hello_world_async/README.txt
(original)
+++
incubator/cxf/trunk/distribution/src/main/release/samples/hello_world_async/README.txt
Sun Sep 17 18:31:15 2006
@@ -41,7 +41,7 @@
Prerequisite
------------
-If your environment already includes celtix.jar on the
+If your environment already includes cxf.jar on the
CLASSPATH, and the JDK and ant bin directories on the PATH
it is not necessary to run the environment script described in
the samples directory README. If your environment is not
@@ -96,12 +96,12 @@
For UNIX:
- export CLASSPATH=$CLASSPATH:$CELTIX_HOME/lib/celtix.jar:./build/classes
+ export CLASSPATH=$CLASSPATH:$CXF_HOME/lib/cxf.jar:./build/classes
javac -d build/classes src/demo/hw/client/*.java
javac -d build/classes src/demo/hw/server/*.java
For Windows:
- set classpath=%classpath%;%CELTIX_HOME%\lib\celtix.jar;.\build\classes
+ set classpath=%classpath%;%CXF_HOME%\lib\cxf.jar;.\build\classes
javac -d build\classes src\demo\hw\client\*.java
javac -d build\classes src\demo\hw\server\*.java
@@ -114,10 +114,10 @@
single command line:
For UNIX (must use forward slashes):
- java -Djava.util.logging.config.file=$CELTIX_HOME/etc/logging.properties
+ java -Djava.util.logging.config.file=$CXF_HOME/etc/logging.properties
demo.hw.server.Server &
- java -Djava.util.logging.config.file=$CELTIX_HOME/etc/logging.properties
+ java -Djava.util.logging.config.file=$CXF_HOME/etc/logging.properties
demo.hw.client.Client ./wsdl/hello_world_async.wsdl
The server process starts in the background. After running the client,
@@ -125,10 +125,10 @@
For Windows (may use either forward or back slashes):
start
- java -Djava.util.logging.config.file=%CELTIX_HOME%\etc\logging.properties
+ java -Djava.util.logging.config.file=%CXF_HOME%\etc\logging.properties
demo.hw.server.Server
- java -Djava.util.logging.config.file=%CELTIX_HOME%\etc\logging.properties
+ java -Djava.util.logging.config.file=%CXF_HOME%\etc\logging.properties
demo.hw.client.Client .\wsdl\hello_world_async.wsdl
A new command windows opens for the server process. After running the