You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by ch...@apache.org on 2005/09/19 09:16:18 UTC

svn commit: r290077 - in /webservices/axis2/trunk/java/xdocs: Axis2ArchitectureGuide.html userguide.html

Author: chamikara
Date: Mon Sep 19 00:15:34 2005
New Revision: 290077

URL: http://svn.apache.org/viewcvs?rev=290077&view=rev
Log:
More changes to documentation :)

Modified:
    webservices/axis2/trunk/java/xdocs/Axis2ArchitectureGuide.html
    webservices/axis2/trunk/java/xdocs/userguide.html

Modified: webservices/axis2/trunk/java/xdocs/Axis2ArchitectureGuide.html
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/Axis2ArchitectureGuide.html?rev=290077&r1=290076&r2=290077&view=diff
==============================================================================
--- webservices/axis2/trunk/java/xdocs/Axis2ArchitectureGuide.html (original)
+++ webservices/axis2/trunk/java/xdocs/Axis2ArchitectureGuide.html Mon Sep 19 00:15:34 2005
@@ -6,7 +6,7 @@
 	<META NAME="GENERATOR" CONTENT="OpenOffice.org 1.1.4  (Win32)">
 	<META NAME="CREATED" CONTENT="20050916;22455288">
 	<META NAME="CHANGEDBY" CONTENT="Chamikara Jayalath">
-	<META NAME="CHANGED" CONTENT="20050918;22325179">
+	<META NAME="CHANGED" CONTENT="20050918;22493797">
 </HEAD>
 <BODY LANG="en-US" DIR="LTR">
 <H1>Axis2 Architecture Guide</H1>
@@ -557,7 +557,7 @@
 incorporated as a pluggable extension to the code generation engine.
 Version 0.91 did not does not support SOAP encoding. It only supports
 RPC literal or document literal massages.</P>
-<P><IMG SRC="images/codegen.gif" NAME="Graphic7" ALIGN=BOTTOM WIDTH=75 HEIGHT=38 BORDER=0></P>
+<P><IMG SRC="images/codegen.gif" NAME="Graphic7" ALIGN=BOTTOM WIDTH=406 HEIGHT=467 BORDER=0></P>
 <H3>Serialization and Dezerialization</H3>
 <P>Xml-beans supports StAX API and AXIOM is based on a StAX API. Data
 binding in Axis2 is achieved through interfacing the AXIOM with the

Modified: webservices/axis2/trunk/java/xdocs/userguide.html
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/userguide.html?rev=290077&r1=290076&r2=290077&view=diff
==============================================================================
--- webservices/axis2/trunk/java/xdocs/userguide.html (original)
+++ webservices/axis2/trunk/java/xdocs/userguide.html Mon Sep 19 00:15:34 2005
@@ -6,7 +6,7 @@
 	<META NAME="GENERATOR" CONTENT="OpenOffice.org 1.1.4  (Win32)">
 	<META NAME="CREATED" CONTENT="20050918;20224042">
 	<META NAME="CHANGEDBY" CONTENT="Chamikara Jayalath">
-	<META NAME="CHANGED" CONTENT="20050918;22300666">
+	<META NAME="CHANGED" CONTENT="20050919;1140420">
 </HEAD>
 <BODY LANG="en-US" DIR="LTR">
 <H1 ALIGN=CENTER><A NAME="_Toc96697849"></A>Axis 2.0 User's Guide 
@@ -311,9 +311,24 @@
 &quot;echo&quot; operation we have used a <STRONG>RawXMLINOutMessageReceiver</STRONG>
 since it is an IN-OUT operation. For IN-ONLY operation, &quot;ping&quot;
 we have used <STRONG>RawXMLINOnlyMessageReceiver</STRONG> as the
-message receiver. 
-</P>
-<H4>Step3 :Create the Web Service Archive</H4>
+message receiver.</P>
+<P>You can write a services.xml file to include a group of services
+instead of a single service. This makes management and deployment of
+a set of related services very easy. At runtime you can share
+information between these services withing a single interaction,
+using the ServiceGroupContext. If you hope to use this functionality
+the services.xml file should have following format.</P>
+<PRE>&lt;serviceGroup&gt;
+  &lt;service name=&quot;Service1&quot;&gt;
+    &lt;!-- details for Service1 --&gt;
+  &lt;/service&gt;
+  &lt;service name=&quot;Service2&quot;&gt;
+    &lt;!-- details for Service2 --&gt;
+  &lt;/service&gt;
+  &lt;module ref=&quot;ModuleName&quot; /&gt;
+  &lt;parameter name=&quot;serviceGroupParam1&quot; locked=&quot;xsd:false&quot;&gt;value 1&lt;/parameter&gt;
+&lt;/serviceGroup&gt;</PRE><H4>
+Step3 :Create the Web Service Archive</H4>
 <P>Axis2 use &quot;.aar&quot; (Axis Archive) file as the deployment
 package for Web Services. So, for MyService we will use
 &quot;MyService.aar&quot; with the &quot;services.xml&quot; packaged