JWS-112 Updated the versions the tool versions that are shown in the ServiceStatus...
[jabaws.git] / how_to_add_new_webservice.txt
index ae868fc..ebdd382 100644 (file)
@@ -39,6 +39,9 @@ How To add a new executable.
 \r
 9) Test the parser\r
 \r
+\r
+###################################################################################################\r
+\r
 10) Decide which web services interface your executable is going to match. \r
     For example if the executable output can be represented as \r
     SequenceAnnotation then SequenceAnnotation interface might be appropriate. \r
@@ -48,7 +51,7 @@ How To add a new executable.
     implement a web service which confirms to it within a webservices source \r
     folder. \r
 \r
-12) Register web service in WEB-INF/ web.xml and sun-jaxws.xml\r
+12) Register web service in WEB-INF/web.xml and WEB-INF/sun-jaxws.xml\r
 \r
 13) Add generated wsdl to wsbuild.xml ant script to generate the stubs\r
 \r
@@ -59,8 +62,7 @@ How To add a new executable.
     - you do not have interfaces to serialize. JAXB cannot serialize them.\r
     - you have a default no args constructor (can be private if you do not need it)\r
     - JAXB cannot serialize a Map, use custom data structure instead!\r
-    - Enum cannot be serialized as its abstract class (do not confuse with enum \r
-      which is fine)\r
+    - Enum cannot be serialized as its abstract class (do not confuse with enum which is fine)\r
     - Fields serialization leave a little more space for manoeuvre, so use it. If \r
       you do then you can accept and return interfaces, e.g. List, Map; abstract \r
       classes etc, from your methods. \r