Skip to content

Commit 8a10eee

Browse files
author
Thomas Weise
committed
Move from Axis 1.7.2 to 1.7.3
1 parent 4e43c0b commit 8a10eee

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ For running some of the [Java Servlets](http://github.com/thomasWeise/distribute
138138

139139
### 3.5. Apache Axis2/Java
140140

141-
For running the [Web Service](http://github.com/thomasWeise/distributedComputingExamples/tree/master/webServices/) examples, you will need to download [Apache Axis2/Java](http://axis.apache.org/axis2/java/core/) from the corresponding [download page](http://axis.apache.org/axis2/java/core/download.html). I recommend using at least Axis2 1.7.2.
141+
For running the [Web Service](http://github.com/thomasWeise/distributedComputingExamples/tree/master/webServices/) examples, you will need to download [Apache Axis2/Java](http://axis.apache.org/axis2/java/core/) from the corresponding [download page](http://axis.apache.org/axis2/java/core/download.html). I recommend using at least Axis2 1.7.3.
142142

143143
### 3.6. GCC
144144

webServices/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -170,11 +170,11 @@ The following steps are for Linux, but under Windows it will be pretty much the
170170

171171
1. Go to the [http://axis.apache.org/axis2/java/core/](http://axis.apache.org/axis2/java/core/) .
172172
2. Select [Downloads](http://axis.apache.org/axis2/java/core/download.html).
173-
3. Click to download the `Binary Distribution`, at the time of this writing, this is [Axis2-1.7.2](http://www.apache.org/dyn/closer.lua/axis/axis2/java/core/1.7.2/axis2-1.7.2-bin.zip)
174-
4 The click leads you to a page to select the mirror. Choose the one closest to you and click the corresponding link. Here let's use [this link](http://www-eu.apache.org/dist/axis/axis2/java/core/1.7.2/axis2-1.7.2-bin.zip).
173+
3. Click to download the `Binary Distribution`, at the time of this writing, this is [Axis2-1.7.3](http://www.apache.org/dyn/closer.lua/axis/axis2/java/core/1.7.3/axis2-1.7.3-bin.zip)
174+
4 The click leads you to a page to select the mirror. Choose the one closest to you and click the corresponding link. Here let's use [this link](http://www-eu.apache.org/dist/axis/axis2/java/core/1.7.3/axis2-1.7.3-bin.zip).
175175
4. Unpack the downloaded archive into a folder of your liking (let's call this folder `F`).
176176
5. Open a terminal console and go (`cd`) into folder `F`.
177-
6. In the folder `F` (where you unpackaged the archive), go to sub-folder `axis2-1.7.2/bin/`, i.e., to `F/axis2-1.7.2/bin/`, where the `1.7.2` is to be replaced by the version number of your actual download.
177+
6. In the folder `F` (where you unpackaged the archive), go to sub-folder `axis2-1.7.3/bin/`, i.e., to `F/axis2-1.7.3/bin/`, where the `1.7.3` is to be replaced by the version number of your actual download.
178178
7. Type `./axis2-server.sh` under Linux or `axis2server.bat` under Windows. The server will now start or it may say something like `You must set the JAVA_HOME variable before running Axis2 Script.`. In the latter case, we need to set `JAVA_HOME` properly. We discuss later how to do that. For now let us assume success.
179179
8. Under Windows, a window may pop up asking you for allowing the program internet access permission, which you should OK.
180180
9. Open your web browser and visit its configuration page at [`http://localhost:8080`](http://localhost:8080).
@@ -210,7 +210,7 @@ We basically now create the environment variable on the fly when starting the se
210210
##### 2.5.3. Deploy `aar` to Axis2
211211

212212
1. Find the `aar` archive of your Web Service server component. This will usually be in the folder `target` of the example projects.
213-
2. Copy it into the folder `F/axis2-1.7.2/repositories/services` (where, again, `1.7.2` is to be replaced by your actual Axis2 version).
213+
2. Copy it into the folder `F/axis2-1.7.3/repositories/services` (where, again, `1.7.3` is to be replaced by your actual Axis2 version).
214214
3. In your web browser, visit [`http://localhost:8080`](http://localhost:8080).
215215
4. The service should now be listed on the web page. If you click it, you can get the automatically-generated WSDL, e.g.,
216216

webServices/make_linux.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ set -o errexit # set -e : exit the script if any statement returns a non-true
99
currentDir=`pwd`
1010
echo "We now build all the Web Service examples in directory '$currentDir'."
1111

12-
axisVersion="1.7.2"
12+
axisVersion="1.7.3"
1313
echo "For this purpose, we need to download, install, and run axis2 $axisVersion in a temporary directory."
1414
tempDir=$(mktemp -d)
1515
echo "Created temporary folder '$tempDir'."

0 commit comments

Comments
 (0)