[jboss-svn-commits] JBossWS SVN: r838 - in tags/jbossws-1.0.3.GA/docs/user-guide/project/en: . modules/wsbpel

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Sun Aug 27 08:00:35 EDT 2006


Author: alex.guizar at jboss.com
Date: 2006-08-27 08:00:34 -0400 (Sun, 27 Aug 2006)
New Revision: 838

Modified:
   tags/jbossws-1.0.3.GA/docs/user-guide/project/en/master.template
   tags/jbossws-1.0.3.GA/docs/user-guide/project/en/modules/wsbpel/wsbpel.xml
Log:
JBWS-867

Modified: tags/jbossws-1.0.3.GA/docs/user-guide/project/en/master.template
===================================================================
--- tags/jbossws-1.0.3.GA/docs/user-guide/project/en/master.template	2006-08-26 01:43:25 UTC (rev 837)
+++ tags/jbossws-1.0.3.GA/docs/user-guide/project/en/master.template	2006-08-27 12:00:34 UTC (rev 838)
@@ -44,8 +44,8 @@
 <!ENTITY ch-wssecurity             SYSTEM "modules/wssecurity/wssecurity.xml">
 <!ENTITY ch-wsaddressing           SYSTEM "modules/wsaddressing/wsaddressing.xml">
 <!ENTITY ch-wseventing             SYSTEM "modules/wseventing/wseventing.xml">
+<!ENTITY ch-wsbpel                 SYSTEM "modules/wsbpel/wsbpel.xml">
 <!ENTITY ch-wstransaction          SYSTEM "modules/wstransaction/wstransaction.xml">
-<!ENTITY ch-wsbpel                 SYSTEM "modules/wsbpel/wsbpel.xml">
 <!ENTITY ch-xmlregistry            SYSTEM "modules/xmlregistry/xmlregistry.xml">
 <!ENTITY appendix-a                SYSTEM "modules/appendix-a.xml">
 ]>
@@ -98,8 +98,8 @@
   &ch-wssecurity;
   &ch-wsaddressing;
   &ch-wseventing;
+  &ch-wsbpel;  
   &ch-wstransaction;
-  &ch-wsbpel;  
   &ch-xmlregistry;
   &appendix-a; 
   

Modified: tags/jbossws-1.0.3.GA/docs/user-guide/project/en/modules/wsbpel/wsbpel.xml
===================================================================
--- tags/jbossws-1.0.3.GA/docs/user-guide/project/en/modules/wsbpel/wsbpel.xml	2006-08-26 01:43:25 UTC (rev 837)
+++ tags/jbossws-1.0.3.GA/docs/user-guide/project/en/modules/wsbpel/wsbpel.xml	2006-08-27 12:00:34 UTC (rev 838)
@@ -14,8 +14,8 @@
   
     <title>Specification</title>
     
-    <para>Originally authored by a small charter of vendors in the software industry, WS-BPEL is 
-      under standardization at OASIS. The latest approved document as of August 22, 2006 is:</para>
+    <para>Originally authored by a reduced vendor charter, WS-BPEL is currently under
+      standardization at OASIS. The latest approved document as of August 22, 2006 is:</para>
       
     <para><ulink url="http://tinyurl.com/nw54b">Web Services Business Process Execution Language 
       2.0 Committee Draft</ulink></para>
@@ -94,7 +94,7 @@
         stateful. The state includes received and sent messages as well as intermediate data used
         in business logic.</para></listitem>
         
-      <listitem><para>The rest of the document describes the normal behavior for handling a 
+      <listitem><para>The rest of the document describes the normal activities for handling a 
         greeting request. BPEL also provides the means to perform activities in response to faults.
         Our trivial endpoint does not require them, tough.</para></listitem>
         
@@ -159,8 +159,7 @@
   ...
   xmlns:plt=&quot;http://schemas.xmlsoap.org/ws/2003/05/partner-link/&quot;&gt;
 
-  &lt;!-- <emphasis role="bold">characterizes the relationship between the greeting process 
-       and its caller</emphasis> --&gt;
+  &lt;!-- <emphasis role="bold">characterizes the relationship between the greeting process and its caller</emphasis> --&gt;
   &lt;plt:partnerLinkType name=&quot;helloPLT&quot;&gt;
     &lt;plt:role name=&quot;service&quot;&gt;
       &lt;plt:portType name=&quot;tns:helloPT&quot;/&gt;
@@ -173,6 +172,34 @@
   <section id="wsbpel.deploy">
   
     <title>Deploying a business process</title>
+    
+    <section id="wsbpel.deploy.definition">
+    
+      <title>Storing the process definition</title>
+    
+      <para>In the domain of business processes, traceability is important. Process engines are
+        expected to maintain not only the current state of each process instance, but also the
+        history of performed activities and updated variables.</para>
+        
+      <para>In order to provide these features, the JBoss BPEL implementation builds on the Graph
+        Oriented Programming (<ulink 
+        url="http://docs.jboss.org/jbpm/v3/userguide/graphorientedprogramming.html">GOP</ulink>) 
+        foundation of <ulink url="http://www.jboss.com/products/jbpm">JBoss jBPM</ulink>. The first
+        step towards deploying a process is installing the jBPM MBean in JBoss. Refer to the jBPM
+        BPEL <ulink url="http://docs.jboss.com/jbpm/bpel/getstarted.html#getstarted.setup">user 
+        guide</ulink> for details.</para>
+        
+      <para>Before the process can be enacted, its definition must be stored in a database. The jBPM
+        MBean ships with a preconfigured Hypersonic database. All you need to do is package your 
+        BPEL process + WSDL definitions and submit the resulting file to the store servlet.</para>
+        
+    </section>
+    
+    <section id="wsbpel.deploy.webapp">
+    
+      <title>Deploying the web application</title>
+    
+    </section>
   
   </section>
 




More information about the jboss-svn-commits mailing list