Skip to content

Commit 9ca468a

Browse files
author
Thomas Weise
committed
Minor improvements to docus
1 parent c382eea commit 9ca468a

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

javaServerPages/examples/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,5 +150,6 @@ The following steps are for Linux, but under Windows it will be pretty much the
150150
4. Click `Applications` in the menu pane on the right.
151151
5. It should list `myJSPs`. If you click this menu point, you get a list of the installed servlets.
152152
6. You can access the JavaServer Pages as follows
153+
153154
a. [http://localhost:8080/myJSPs/index.jsp](http://localhost:8080/myJSPs/index.jsp)
154155
b. [http://localhost:8080/myJSPs/greetings.jsp](http://localhost:8080/myJSPs/greetings.jsp)

javaServlets/examples/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ The following steps are for Linux, but under Windows it will be pretty much the
9797
4. Click `Applications` in the menu pane on the right.
9898
5. It should list `myServlets`. If you click this menu point, you get a list of the installed servlets.
9999
6. You can access the servlets as follows
100+
100101
a. [http://localhost:8080/myServlets/HelloWorld](http://localhost:8080/myServlets/HelloWorld)
101102
b. [http://localhost:8080/myServlets/RequestData](http://localhost:8080/myServlets/RequestData)
102103
c. [http://localhost:8080/myServlets/SessionData](http://localhost:8080/myServlets/SessionData)

webServices/README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ Under Linux, we can solve this in a rather crude way, by editing the server star
175175
2. Scroll to the second line, right after `#!/bin/sh`.
176176
3. Insert `export JAVA_HOME=$(dirname $(dirname $(readlink -f $(which javac))))`
177177
4. Save and close the file.
178-
5. Try again `./axis2-server.sh`, now it should work.
178+
5. Try again to execute `./axis2-server.sh`, now it should work.
179179

180180
We basically now create the environment variable on the fly when starting the server.
181181

@@ -187,15 +187,16 @@ Under Windows, we can solve this in a similar crude way, by editing the server s
187187
2. Scroll to the end of the fist line (the one with `@echo off`) and press enter.
188188
3. Insert `SET JAVA_HOME=C:\Program Files\Java\jdk1.8.0_66`, where `C:\Program Files\Java\jdk1.8.0_66` is to be replaced with the installation folder of your JDK. You can find this folder by going into `C:\Program Files\Java` with the Explorer and searching for something looking like a JDK.
189189
4. Save and close the file.
190-
5. Try again `./axis2-server.bat`, now it should work.
190+
5. Try again to execute `axis2-server.bat`, now it should work.
191191

192192
We basically now create the environment variable on the fly when starting the server.
193193

194194
##### 2.5.3. Deploy `aar` to Axis2
195195

196196
1. Find the `aar` archive of your Web Service server component. This will usually be in the folder `target` of the example projects.
197-
2. Copy it into the folder `F/axis2-1.7.1/repositories/services`.
197+
2. Copy it into the folder `F/axis2-1.7.1/repositories/services` (where, again, `1.7.1` is to be replaced by your actual Axis2 version).
198198
3. In your web browser, visit [`http://localhost:8080`](http://localhost:8080).
199199
4. The service should now be listed on the web page. If you click it, you can get the automatically-generated WSDL, e.g.,
200+
200201
a. [http://localhost:8080/axis2/services/Calculator?wsdl](http://localhost:8080/axis2/services/Calculator?wsdl)
201202
b. [http://localhost:8080/axis2/services/WarehouseService?wsdl](http://localhost:8080/axis2/services/WarehouseService?wsdl)

0 commit comments

Comments
 (0)