<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>wss4j-dev@ws.apache.org Archives</title>
<link rel="self" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/?format=atom"/>
<link href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/"/>
<id>http://mail-archives.apache.org/mod_mbox/ws-fx-dev/</id>
<updated>2009-12-10T17:30:30Z</updated>
<entry>
<title>svn commit: r550380 - in /webservices/sandesha/trunk/c/samples: rm_echo_1_0/rm_echo.c rm_ping_1_0/rm_ping_1_0.c rm_ping_1_1/rm_ping_1_1.c</title>
<author><name>samisa@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/200706.mbox/%3c20070625063925.930DD1A981A@eris.apache.org%3e"/>
<id>urn:uuid:%3c20070625063925-930DD1A981A@eris-apache-org%3e</id>
<updated>2007-06-25T06:39:25Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: samisa
Date: Sun Jun 24 23:39:24 2007
New Revision: 550380

URL: http://svn.apache.org/viewvc?view=rev&amp;rev=550380
Log:
Fixed printing address to be NULL

Modified:
    webservices/sandesha/trunk/c/samples/rm_echo_1_0/rm_echo.c
    webservices/sandesha/trunk/c/samples/rm_ping_1_0/rm_ping_1_0.c
    webservices/sandesha/trunk/c/samples/rm_ping_1_1/rm_ping_1_1.c

Modified: webservices/sandesha/trunk/c/samples/rm_echo_1_0/rm_echo.c
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/samples/rm_echo_1_0/rm_echo.c?view=diff&amp;rev=550380&amp;r1=550379&amp;r2=550380
==============================================================================
--- webservices/sandesha/trunk/c/samples/rm_echo_1_0/rm_echo.c (original)
+++ webservices/sandesha/trunk/c/samples/rm_echo_1_0/rm_echo.c Sun Jun 24 23:39:24 2007
@@ -57,7 +57,6 @@
 {
     const axutil_env_t *env = NULL;
     const axis2_char_t *address = NULL;
-    const axis2_char_t *to = NULL;
     axis2_endpoint_ref_t* endpoint_ref = NULL;
     axis2_endpoint_ref_t* target_epr = NULL;
     axis2_endpoint_ref_t* reply_to = NULL;
@@ -79,7 +78,7 @@
             AXIS2_LOG_LEVEL_TRACE);
 
     /* Set end point reference of echo service */
-    to = "http://127.0.0.1:9090/axis2/services/RMSampleService";
+    address = "http://127.0.0.1:9090/axis2/services/RMSampleService";
     while ((c = AXIS2_GETOPT(argc, argv, ":a:")) != -1)
     {
 
@@ -108,10 +107,7 @@
     printf ("Using endpoint : %s\n", address);
     
     /* Create EPR with given address */
-    if(to)
-        endpoint_ref = axis2_endpoint_ref_create(env, to);
-    if(address)
-        target_epr = axis2_endpoint_ref_create(env, address);
+    target_epr = axis2_endpoint_ref_create(env, address);
 
     /* Setup options */
     options = axis2_options_create(env);

Modified: webservices/sandesha/trunk/c/samples/rm_ping_1_0/rm_ping_1_0.c
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/samples/rm_ping_1_0/rm_ping_1_0.c?view=diff&amp;rev=550380&amp;r1=550379&amp;r2=550380
==============================================================================
--- webservices/sandesha/trunk/c/samples/rm_ping_1_0/rm_ping_1_0.c (original)
+++ webservices/sandesha/trunk/c/samples/rm_ping_1_0/rm_ping_1_0.c Sun Jun 24 23:39:24 2007
@@ -40,7 +40,6 @@
 	char *optarg;
     const axutil_env_t *env = NULL;
     const axis2_char_t *address = NULL;
-    const axis2_char_t *to = NULL;
     axis2_endpoint_ref_t* endpoint_ref = NULL;
     axis2_endpoint_ref_t* target_epr = NULL;
     axis2_options_t *options = NULL;
@@ -56,10 +55,7 @@
     env = axutil_env_create_all("rm_ping.log", AXIS2_LOG_LEVEL_DEBUG);
 
     /* Set end point reference of echo service */
-    /*address = "http://127.0.0.1:9090/axis2/services/RMSampleService";*/
-    /*address = "http://127.0.0.1:9090/axis2/services/RMSampleService";*/
-    /*to = "http://127.0.0.1:8080/axis2/services/RMSampleService";*/
-    to = "http://127.0.0.1:9090/axis2/services/RMSampleService";
+    address = "http://127.0.0.1:9090/axis2/services/RMSampleService";
     while ((c = AXIS2_GETOPT(argc, argv, ":a:")) != -1)
     {
 
@@ -83,10 +79,7 @@
     printf ("Using endpoint : %s\n", address);
     
     /* Create EPR with given address */
-    if(to)
-        endpoint_ref = axis2_endpoint_ref_create(env, to);
-    if(address)
-        target_epr = axis2_endpoint_ref_create(env, address);
+    target_epr = axis2_endpoint_ref_create(env, address);
 
     /* Setup options */
     options = axis2_options_create(env);

Modified: webservices/sandesha/trunk/c/samples/rm_ping_1_1/rm_ping_1_1.c
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/samples/rm_ping_1_1/rm_ping_1_1.c?view=diff&amp;rev=550380&amp;r1=550379&amp;r2=550380
==============================================================================
--- webservices/sandesha/trunk/c/samples/rm_ping_1_1/rm_ping_1_1.c (original)
+++ webservices/sandesha/trunk/c/samples/rm_ping_1_1/rm_ping_1_1.c Sun Jun 24 23:39:24 2007
@@ -40,7 +40,6 @@
 {
     const axutil_env_t *env = NULL;
     const axis2_char_t *address = NULL;
-    const axis2_char_t *to = NULL;
     const axis2_char_t *seq_key = NULL;
     axis2_endpoint_ref_t* endpoint_ref = NULL;
     axis2_endpoint_ref_t* target_epr = NULL;
@@ -57,7 +56,7 @@
     env = axutil_env_create_all("rm_ping.log", AXIS2_LOG_LEVEL_CRITICAL);
 
     /* Set end point reference of echo service */
-    to = "http://127.0.0.1:9090/axis2/services/RMSampleService";
+    address = "http://127.0.0.1:9090/axis2/services/RMSampleService";
     while ((c = AXIS2_GETOPT(argc, argv, ":a:k:")) != -1)
     {
 
@@ -84,10 +83,7 @@
     printf ("Using endpoint : %s\n", address);
     
     /* Create EPR with given address */
-    if(to)
-        endpoint_ref = axis2_endpoint_ref_create(env, to);
-    if(address)
-        target_epr = axis2_endpoint_ref_create(env, address);
+    target_epr = axis2_endpoint_ref_create(env, address);
 
     /* Setup options */
     options = axis2_options_create(env);



---------------------------------------------------------------------
To unsubscribe, e-mail: sandesha-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: sandesha-dev-help@ws.apache.org



</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r550377 - in /webservices/sandesha/trunk/c/src: client/client.c util/sandesha2_utils.c</title>
<author><name>samisa@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/200706.mbox/%3c20070625061843.6288F1A981A@eris.apache.org%3e"/>
<id>urn:uuid:%3c20070625061843-6288F1A981A@eris-apache-org%3e</id>
<updated>2007-06-25T06:18:43Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: samisa
Date: Sun Jun 24 23:18:42 2007
New Revision: 550377

URL: http://svn.apache.org/viewvc?view=rev&amp;rev=550377
Log:
Fixed seg faults due to non checking of pointer validity

Modified:
    webservices/sandesha/trunk/c/src/client/client.c
    webservices/sandesha/trunk/c/src/util/sandesha2_utils.c

Modified: webservices/sandesha/trunk/c/src/client/client.c
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/src/client/client.c?view=diff&amp;rev=550377&amp;r1=550376&amp;r2=550377
==============================================================================
--- webservices/sandesha/trunk/c/src/client/client.c (original)
+++ webservices/sandesha/trunk/c/src/client/client.c Sun Jun 24 23:18:42 2007
@@ -417,7 +417,10 @@
 
     conf = axis2_conf_ctx_get_conf(conf_ctx, env);
     storage_mgr = sandesha2_utils_get_storage_mgr(env, conf_ctx, conf);
-    seq_prop_mgr = sandesha2_storage_mgr_get_seq_property_mgr(storage_mgr, env);
+    if (storage_mgr)
+    {
+        seq_prop_mgr = sandesha2_storage_mgr_get_seq_property_mgr(storage_mgr, env);
+    }
     sandesha2_report = sandesha2_report_create(env);
     internal_seq_find_bean = sandesha2_seq_property_bean_create(env);
     ctx = axis2_conf_ctx_get_base(conf_ctx, env);
@@ -440,16 +443,22 @@
         }
         if(AXIS2_TRUE != within_transaction)
         {
-            report_transaction = sandesha2_storage_mgr_get_transaction(storage_mgr, 
-                env);
+            if (storage_mgr)
+            {
+                report_transaction = sandesha2_storage_mgr_get_transaction(storage_mgr, 
+                    env);
+            }
         }
         client_report_transaction = report_transaction;
     }
     if(internal_seq_find_bean) 
         sandesha2_seq_property_bean_set_name(internal_seq_find_bean, env, 
             SANDESHA2_SEQ_PROP_INTERNAL_SEQ_ID);
-    collection = sandesha2_seq_property_mgr_find(seq_prop_mgr, env, 
-        internal_seq_find_bean);
+    if (seq_prop_mgr)
+    {
+        collection = sandesha2_seq_property_mgr_find(seq_prop_mgr, env, 
+            internal_seq_find_bean);
+    }
     if(collection)
         size = axutil_array_list_size(collection, env);
     for(i = 0; i &lt; size; i++)
@@ -485,8 +494,11 @@
     if(svr_completed_msgs_find_bean)
         sandesha2_seq_property_bean_set_name(svr_completed_msgs_find_bean, env, 
             SANDESHA2_SEQ_PROP_SERVER_COMPLETED_MESSAGES);
-    svr_completed_msgs_beans = sandesha2_seq_property_mgr_find(seq_prop_mgr, 
-        env, svr_completed_msgs_find_bean);
+    if (seq_prop_mgr)
+    {
+        svr_completed_msgs_beans = sandesha2_seq_property_mgr_find(seq_prop_mgr, 
+            env, svr_completed_msgs_find_bean);
+    }
     if(svr_completed_msgs_beans)
         size = axutil_array_list_size(svr_completed_msgs_beans, env);
     for(i = 0; i &lt; size; i++)

Modified: webservices/sandesha/trunk/c/src/util/sandesha2_utils.c
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/src/util/sandesha2_utils.c?view=diff&amp;rev=550377&amp;r1=550376&amp;r2=550377
==============================================================================
--- webservices/sandesha/trunk/c/src/util/sandesha2_utils.c (original)
+++ webservices/sandesha/trunk/c/src/util/sandesha2_utils.c Sun Jun 24 23:18:42 2007
@@ -165,10 +165,14 @@
     axutil_allocator_switch_to_global_pool(env-&gt;allocator);
     prop_bean = (sandesha2_property_bean_t *)sandesha2_utils_get_property_bean(
         env, conf);
-    value = sandesha2_property_bean_get_storage_mgr(prop_bean, env);
-    if(0 == axutil_strcmp(value, SANDESHA2_INMEMORY_STORAGE_MGR))
+    if (prop_bean)
+    {
+        value = sandesha2_property_bean_get_storage_mgr(prop_bean, env);
+    }
+    
+    if(value &amp;&amp; (0 == axutil_strcmp(value, SANDESHA2_INMEMORY_STORAGE_MGR)))
         storage_mgr = sandesha2_utils_get_inmemory_storage_mgr(env, conf_ctx);
-    else if (0 == axutil_strcmp(value, SANDESHA2_PERMANENT_STORAGE_MGR))
+    else if (value &amp;&amp; (0 == axutil_strcmp(value, SANDESHA2_PERMANENT_STORAGE_MGR)))
         storage_mgr = sandesha2_utils_get_permanent_storage_mgr(env, conf_ctx);
     else
     {



---------------------------------------------------------------------
To unsubscribe, e-mail: sandesha-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: sandesha-dev-help@ws.apache.org



</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r550279 - in /webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2: ./ handlers/ msgprocessors/ util/ workers/</title>
<author><name>chamikara@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/200706.mbox/%3c20070624195016.D835C1A981A@eris.apache.org%3e"/>
<id>urn:uuid:%3c20070624195016-D835C1A981A@eris-apache-org%3e</id>
<updated>2007-06-24T19:50:16Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: chamikara
Date: Sun Jun 24 12:50:13 2007
New Revision: 550279

URL: http://svn.apache.org/viewvc?view=rev&amp;rev=550279
Log:
Sandesha2Global In Handler was changed to throw Exceptions if service dispatching has not
happened correctly.
Added some code comments.
Some corrections to the AckRequested Processor.
A bug fix in the SenderWorker.

Modified:
    webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/RMMsgContext.java
    webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/handlers/SandeshaGlobalInHandler.java
    webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/handlers/SandeshaInHandler.java
    webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/msgprocessors/AckRequestedProcessor.java
    webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/util/RMMsgCreator.java
    webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/workers/SenderWorker.java

Modified: webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/RMMsgContext.java
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/RMMsgContext.java?view=diff&amp;rev=550279&amp;r1=550278&amp;r2=550279
==============================================================================
--- webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/RMMsgContext.java
(original)
+++ webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/RMMsgContext.java
Sun Jun 24 12:50:13 2007
@@ -65,7 +65,9 @@
 
 	/**
 	 * To add a new SOAP envelope to the message. The generated envelope will belong 
-	 * to the SOAP version of the MessageContext.
+	 * to the SOAP version of the MessageContext. We will be going through each MessagePart
and adding it to the
+	 * envelope. In other words all the MessageParts that are available in the RMMsg will be
added to the SOAP 
+	 * envelope after this.
 	 * 
 	 * @throws SandeshaException
 	 */

Modified: webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/handlers/SandeshaGlobalInHandler.java
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/handlers/SandeshaGlobalInHandler.java?view=diff&amp;rev=550279&amp;r1=550278&amp;r2=550279
==============================================================================
--- webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/handlers/SandeshaGlobalInHandler.java
(original)
+++ webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/handlers/SandeshaGlobalInHandler.java
Sun Jun 24 12:50:13 2007
@@ -24,8 +24,10 @@
 import org.apache.axiom.soap.SOAPEnvelope;
 import org.apache.axiom.soap.SOAPHeader;
 import org.apache.axis2.AxisFault;
+import org.apache.axis2.addressing.RelatesTo;
 import org.apache.axis2.context.MessageContext;
 import org.apache.axis2.description.AxisOperation;
+import org.apache.axis2.description.AxisService;
 import org.apache.axis2.description.Parameter;
 import org.apache.axis2.handlers.AbstractHandler;
 import org.apache.commons.logging.Log;
@@ -183,6 +185,8 @@
         secManager.checkProofOfPossession(token, seqHeader, rmMsgCtx.getMessageContext());
         secManager.checkProofOfPossession(token, body, rmMsgCtx.getMessageContext());
       }
+      
+      MessageContext messageContext = rmMsgCtx.getMessageContext();
     
       if (bean != null) {
         
@@ -206,27 +210,54 @@
           storageManager.getRMDBeanMgr().update(bean);
         }
         else {
+           
           if (log.isDebugEnabled())
-            log.debug("Detected duplicate message " + msgNo);
-          rmMsgCtx.getMessageContext().setRelationships(null);
+              log.debug("Detected duplicate message " + msgNo);
+            
+            // Add the duplicate RM AxisOperation to the message
+            
+            //If the service has not been found by this time, we cannot proceed.
+            AxisService service = rmMsgCtx.getMessageContext().getAxisService();
+            if (service==null)
+          	  throw new SandeshaException ("Duplicate message detected. But cant dispatch
since the Service has not been found");
+            
+            AxisOperation duplicateMessageOperation = SpecSpecificConstants.getWSRMOperation(
+                Sandesha2Constants.MessageTypes.DUPLICATE_MESSAGE,
+                Sandesha2Constants.SPEC_VERSIONS.v1_0,
+                service);
+            rmMsgCtx.getMessageContext().setAxisOperation(duplicateMessageOperation);
+            
+            
+            /**
+             * Adding a MessageID here if this is a response message. If this is not added
AddressingValidators will fail.
+             * This is becoz the DuplicateOperation I added here has a InOut operation. According
to Addressing a InOut msg
+             * Must contain a MessageID.
+             */
+            
+            RelatesTo relatesTo = messageContext.getRelatesTo();
+            String messageID = messageContext.getOptions().getMessageId();
+            if (relatesTo!=null &amp;&amp; messageID==null) {
+            	messageContext.getOptions().setMessageId (SandeshaUtil.getUUID());
+            }
+        }
+      } else {
+        
+        if (log.isDebugEnabled())
+            log.debug("Detected message for no sequence " + msgNo);
+          messageContext.setRelationships(null);
           // Add the duplicate RM AxisOperation to the message
+
+          //If the service has not been found by this time, we cannot proceed.
+          AxisService service = rmMsgCtx.getMessageContext().getAxisService();
+          if (service==null)
+        	  throw new SandeshaException ("Duplicate message detected. But cant dispatch since
the Service has not been found");
+          
           AxisOperation duplicateMessageOperation = SpecSpecificConstants.getWSRMOperation(
               Sandesha2Constants.MessageTypes.DUPLICATE_MESSAGE,
               Sandesha2Constants.SPEC_VERSIONS.v1_0,
-              rmMsgCtx.getMessageContext().getAxisService());
+              service);
           rmMsgCtx.getMessageContext().setAxisOperation(duplicateMessageOperation);
-        }
-              
-      } else {
-        if (log.isDebugEnabled())
-          log.debug("Detected message for no sequence " + msgNo);
-        rmMsgCtx.getMessageContext().setRelationships(null);
-        // Add the duplicate RM AxisOperation to the message
-        AxisOperation duplicateMessageOperation = SpecSpecificConstants.getWSRMOperation(
-            Sandesha2Constants.MessageTypes.DUPLICATE_MESSAGE,
-            Sandesha2Constants.SPEC_VERSIONS.v1_0,
-            rmMsgCtx.getMessageContext().getAxisService());
-        rmMsgCtx.getMessageContext().setAxisOperation(duplicateMessageOperation);
+          
       }
       
       if(transaction != null &amp;&amp; transaction.isActive()) transaction.commit();

Modified: webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/handlers/SandeshaInHandler.java
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/handlers/SandeshaInHandler.java?view=diff&amp;rev=550279&amp;r1=550278&amp;r2=550279
==============================================================================
--- webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/handlers/SandeshaInHandler.java
(original)
+++ webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/handlers/SandeshaInHandler.java
Sun Jun 24 12:50:13 2007
@@ -102,10 +102,10 @@
 
 			RMMsgContext rmMsgCtx = null;
       
-      if (msgCtx.getProperty(Sandesha2Constants.MessageContextProperties.RM_MESSAGE_CONTEXT)
!= null)
-        rmMsgCtx = (RMMsgContext)msgCtx.getProperty(Sandesha2Constants.MessageContextProperties.RM_MESSAGE_CONTEXT);
-      else
-        rmMsgCtx = MsgInitializer.initializeMessage(msgCtx);
+			if (msgCtx.getProperty(Sandesha2Constants.MessageContextProperties.RM_MESSAGE_CONTEXT)
!= null)
+				rmMsgCtx = (RMMsgContext)msgCtx.getProperty(Sandesha2Constants.MessageContextProperties.RM_MESSAGE_CONTEXT);
+			else
+				rmMsgCtx = MsgInitializer.initializeMessage(msgCtx);
 
 			// validating the message
 			MessageValidator.validateIncomingMessage(rmMsgCtx, storageManager);

Modified: webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/msgprocessors/AckRequestedProcessor.java
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/msgprocessors/AckRequestedProcessor.java?view=diff&amp;rev=550279&amp;r1=550278&amp;r2=550279
==============================================================================
--- webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/msgprocessors/AckRequestedProcessor.java
(original)
+++ webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/msgprocessors/AckRequestedProcessor.java
Sun Jun 24 12:50:13 2007
@@ -36,6 +36,9 @@
 import org.apache.axis2.context.ServiceContext;
 import org.apache.axis2.description.AxisOperation;
 import org.apache.axis2.engine.AxisEngine;
+import org.apache.axis2.transport.mail.MailBasedOutTransportInfo;
+import org.apache.axis2.util.MessageContextBuilder;
+import org.apache.axis2.util.Utils;
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
 import org.apache.sandesha2.RMMsgContext;
@@ -110,6 +113,7 @@
 		if (log.isDebugEnabled())
 			log.debug("Enter: AckRequestedProcessor::processAckRequestedHeader " + soapHeader);
 
+		//checks weather the ack request was a piggybacked one.
 		boolean piggybackedAckRequest = !(rmMsgCtx.getMessageType()==Sandesha2Constants.MessageTypes.ACK_REQUEST);
 		
 		String sequenceId = ackRequested.getIdentifier().getIdentifier();
@@ -123,7 +127,7 @@
 		// Check that the sender of this AckRequest holds the correct token
 		RMDBean rmdBean = SandeshaUtil.getRMDBeanFromSequenceId(storageManager, sequenceId);
 
-		if(rmdBean != null &amp;&amp; rmdBean.getSecurityTokenData() != null) {;
+		if(rmdBean != null &amp;&amp; rmdBean.getSecurityTokenData() != null) {
 			SecurityManager secManager = SandeshaUtil.getSecurityManager(configurationContext);
 			SecurityToken token = secManager.recoverSecurityToken(rmdBean.getSecurityTokenData());
 			
@@ -151,22 +155,28 @@
 		if (acksToStr == null)
 			throw new SandeshaException(SandeshaMessageHelper.getMessage(SandeshaMessageKeys.acksToStrNotSet));
 
+		//Getting the operation for ack messages.
 		AxisOperation ackOperation = SpecSpecificConstants.getWSRMOperation(
 				Sandesha2Constants.MessageTypes.ACK,
 				rmdBean.getRMVersion(),
 				msgContext.getAxisService());
-		MessageContext ackMsgCtx = SandeshaUtil.createNewRelatedMessageContext(rmMsgCtx, ackOperation);
-
-		ackMsgCtx.setProperty(Sandesha2Constants.APPLICATION_PROCESSING_DONE, "true");
-
+		
+		//creating the ack message. If the ackRequest was a standalone this will be a out (response)
message 
+		MessageContext ackMsgCtx = null;
+//		if (piggybackedAckRequest)
+			ackMsgCtx = SandeshaUtil.createNewRelatedMessageContext(rmMsgCtx, ackOperation);
+//		else
+//			ackMsgCtx =MessageContextBuilder.createOutMessageContext (msgContext);
+			
+		//setting up the RMMsgContext
 		RMMsgContext ackRMMsgCtx = MsgInitializer.initializeMessage(ackMsgCtx);
 		ackRMMsgCtx.setRMNamespaceValue(rmMsgCtx.getRMNamespaceValue());
-
-		ackMsgCtx.setMessageID(SandeshaUtil.getUUID());
-
+		
+		if (ackMsgCtx.getMessageID()==null)
+			ackMsgCtx.setMessageID(SandeshaUtil.getUUID());
+		
+		//adding the SOAP Envelope
 		SOAPFactory factory = SOAPAbstractFactory.getSOAPFactory(SandeshaUtil.getSOAPVersion(msgContext.getEnvelope()));
-
-		// Setting new envelope
 		SOAPEnvelope envelope = factory.getDefaultEnvelope();
 		try {
 			ackMsgCtx.setEnvelope(envelope);
@@ -177,13 +187,20 @@
 		ackMsgCtx.setTo(acksTo);
 		ackMsgCtx.setReplyTo(msgContext.getTo());
 		RMMsgCreator.addAckMessage(ackRMMsgCtx, sequenceId, rmdBean);
+		
+		//this is not a client generated message. So set serverSide to true.
 		ackRMMsgCtx.getMessageContext().setServerSide(true);
 
 		if (acksTo.hasAnonymousAddress()) {
-
+			//If acksTo is anonymous we will be sending the ack here it self. Transport will use what
ever mechanism to send the 
+			//message. (for e.g. HTTP will use the back channel)
+			
+			
 			AxisEngine engine = new AxisEngine(ackRMMsgCtx.getMessageContext().getConfigurationContext());
 
 			// setting CONTEXT_WRITTEN since acksto is anonymous
+			
+			//adding an OperationContext if one is not available. (for e.g. If we are in the SandeshaGlobalInHandler)
 			if (rmMsgCtx.getMessageContext().getOperationContext() == null) {
 				// operation context will be null when doing in a GLOBAL
 				// handler.
@@ -194,11 +211,16 @@
 				rmMsgCtx.getMessageContext().setOperationContext(opCtx);
 			}
 
+			//the response will be written here.
 			rmMsgCtx.getMessageContext().getOperationContext().setProperty(org.apache.axis2.Constants.RESPONSE_WRITTEN,
 					Constants.VALUE_TRUE);
 
+			//Marking that we did the acking here.
 			rmMsgCtx.getMessageContext().setProperty(Sandesha2Constants.ACK_WRITTEN, "true");
 
+			
+			MailBasedOutTransportInfo outTrnInfo = (MailBasedOutTransportInfo) ackRMMsgCtx.getMessageContext().getOptions().getProperty(Constants.OUT_TRANSPORT_INFO);
+
 			try {
 				engine.send(ackRMMsgCtx.getMessageContext());
 			} catch (AxisFault e1) {
@@ -206,8 +228,10 @@
 			}
 
 		} else {
-
-			SenderBeanMgr retransmitterBeanMgr = storageManager.getSenderBeanMgr();
+			//If AcksTo is non-anonymous we will be adding a senderBean entry here. The sender is
responsible 
+			//for sending it out.
+			
+			SenderBeanMgr senderBeanMgr = storageManager.getSenderBeanMgr();
 
 			String key = SandeshaUtil.getUUID();
 
@@ -217,7 +241,10 @@
 			SenderBean ackBean = new SenderBean();
 			ackBean.setMessageContextRefKey(key);
 			ackBean.setMessageID(ackMsgCtx.getMessageID());
+			
+			//acks are sent only once.
 			ackBean.setReSend(false);
+			
 			ackBean.setSequenceID(sequenceId);
 			
 			EndpointReference to = ackMsgCtx.getTo();
@@ -228,35 +255,25 @@
 			ackBean.setSend(true);
 
 			ackMsgCtx.setProperty(Sandesha2Constants.QUALIFIED_FOR_SENDING, Sandesha2Constants.VALUE_FALSE);
-
 			ackBean.setMessageType(Sandesha2Constants.MessageTypes.ACK);
-
-			// the internalSequenceId value of the retransmitter Table for the
-			// messages related to an incoming
-			// sequence is the actual sequence ID
-
-			// operation is the lowest level, Sandesha2 can be engaged.
-			SandeshaPolicyBean propertyBean = SandeshaUtil.getPropertyBean(msgContext.getAxisOperation());
+			SandeshaPolicyBean propertyBean = SandeshaUtil.getPropertyBean(msgContext.getAxisMessage());
 
 			long ackInterval = propertyBean.getAcknowledgementInterval();
 
-			// Ack will be sent as stand alone, only after the retransmitter
-			// interval.
+			// Ack will be sent as stand alone, only after the ackknowledgement interval
 			long timeToSend = System.currentTimeMillis() + ackInterval;
 
 			// removing old acks.
 			SenderBean findBean = new SenderBean();
 			findBean.setMessageType(Sandesha2Constants.MessageTypes.ACK);
-			findBean.setSend(true);
-			findBean.setReSend(false);
-			Collection coll = retransmitterBeanMgr.find(findBean);
+			Collection coll = senderBeanMgr.find(findBean);
 			Iterator it = coll.iterator();
 
 			if (it.hasNext()) {
 				SenderBean oldAckBean = (SenderBean) it.next();
-				// If there is an old ack. This ack will be sent in the old timeToSend.
+				// If there is an old Ack. This Ack will be sent in the old timeToSend.
 				timeToSend = oldAckBean.getTimeToSend(); 
-				retransmitterBeanMgr.delete(oldAckBean.getMessageID());
+				senderBeanMgr.delete(oldAckBean.getMessageID());
 			}
 
 			ackBean.setTimeToSend(timeToSend);
@@ -264,18 +281,19 @@
 			msgContext.setProperty(Sandesha2Constants.QUALIFIED_FOR_SENDING, Sandesha2Constants.VALUE_FALSE);
 			
 			// passing the message through sandesha2sender
-
 			SandeshaUtil.executeAndStore(ackRMMsgCtx, key);
 
-			// inserting the new ack.
-			retransmitterBeanMgr.insert(ackBean);
+			// inserting the new Ack.
+			senderBeanMgr.insert(ackBean);
 
 			msgContext.pause();
 
 			if (log.isDebugEnabled())
 				log.debug("Exit: AckRequestedProcessor::processAckRequestedHeader " + Boolean.TRUE);
-			return true;
+			
 		}
+		
+		//No need to suspend. Just proceed.
 		return false;
 	}
 	

Modified: webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/util/RMMsgCreator.java
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/util/RMMsgCreator.java?view=diff&amp;rev=550279&amp;r1=550278&amp;r2=550279
==============================================================================
--- webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/util/RMMsgCreator.java
(original)
+++ webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/util/RMMsgCreator.java
Sun Jun 24 12:50:13 2007
@@ -31,6 +31,7 @@
 import org.apache.axis2.description.AxisOperation;
 import org.apache.axis2.description.AxisService;
 import org.apache.axis2.description.Parameter;
+import org.apache.axis2.util.MessageContextBuilder;
 import org.apache.axis2.util.Utils;
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
@@ -395,10 +396,22 @@
 				Sandesha2Constants.MessageParts.CLOSE_SEQUENCE_RESPONSE, action);
 	}
 
+	/**
+	 * This will create a response message context using the Axis2 Util methods (where things
like relatesTo transformation will
+	 * happen). This will also  make sure that created out message is correctly secured using
the Sequence Token Data of the sequence.
+	 * 
+	 * @param requestMsg The request message
+	 * @param rmSequenceBean 
+	 * @param part
+	 * @param messagePartId
+	 * @param action
+	 * @return
+	 * @throws AxisFault
+	 */
 	private static RMMsgContext createResponseMsg(RMMsgContext requestMsg, RMSequenceBean rmSequenceBean,
IOMRMPart part, 
 			int messagePartId, String action) throws AxisFault {
 
-		MessageContext outMessage = Utils.createOutMessageContext(requestMsg.getMessageContext());
+		MessageContext outMessage = MessageContextBuilder.createOutMessageContext (requestMsg.getMessageContext());
 		RMMsgContext responseRMMsg = new RMMsgContext(outMessage);
 		SOAPFactory factory = SOAPAbstractFactory.getSOAPFactory(SandeshaUtil.getSOAPVersion(requestMsg.getSOAPEnvelope()));
 
@@ -422,10 +435,10 @@
 	}
 
 	/**
-	 * Adds an ack message to the given application message.
+	 * Adds an Ack of specific sequence to the given application message.
 	 * 
-	 * @param applicationMsg
-	 * @param sequenceId
+	 * @param applicationMsg The Message to which the Ack will be added
+	 * @param sequenceId - The sequence to which we will be Acking
 	 * @throws SandeshaException
 	 */
 	public static void addAckMessage(RMMsgContext applicationMsg, String sequenceId, RMDBean
rmdBean)
@@ -531,6 +544,14 @@
 		return makeConnectionRMMessageCtx;
 	}
 
+	/**
+	 * This will add necessary data to a out-bound message to make sure that is is correctly
secured.
+	 * Security Token Data will be taken from the Sandesha2 security manager.
+	 * 
+	 * @param rmBean Sequence bean to identify the sequence. This could be an in-bound sequence
or an out-bound sequence.
+	 * @param message - The message which will be secured.
+	 * @throws SandeshaException 
+	 */
 	public static void secureOutboundMessage(RMSequenceBean rmBean, MessageContext message)
 	throws SandeshaException
 	{

Modified: webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/workers/SenderWorker.java
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/workers/SenderWorker.java?view=diff&amp;rev=550279&amp;r1=550278&amp;r2=550279
==============================================================================
--- webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/workers/SenderWorker.java
(original)
+++ webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/workers/SenderWorker.java
Sun Jun 24 12:50:13 2007
@@ -16,7 +16,7 @@
 import org.apache.axis2.context.OperationContext;
 import org.apache.axis2.context.ServiceContext;
 import org.apache.axis2.description.AxisOperation;
-import org.apache.axis2.description.OutInAxisOperation;
+import org.apache.axis2.description.OutOnlyAxisOperation;
 import org.apache.axis2.engine.AxisEngine;
 import org.apache.axis2.engine.Handler.InvocationResponse;
 import org.apache.axis2.transport.RequestResponseTransport;
@@ -606,7 +606,7 @@
 				
 				AxisOperation operation = msgCtx.getAxisOperation();
 				if (operation!=null &amp;&amp; responseMessageContext.getAxisMessage()==null
-						&amp;&amp; (operation instanceof OutInAxisOperation))
+						&amp;&amp; !(operation instanceof OutOnlyAxisOperation))
 					responseMessageContext.setAxisMessage(operation.getMessage(WSDLConstants.MESSAGE_LABEL_IN_VALUE));
 
 				RMMsgContext responseRMMessage = MsgInitializer.initializeMessage(responseMessageContext);



---------------------------------------------------------------------
To unsubscribe, e-mail: sandesha-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: sandesha-dev-help@ws.apache.org



</pre>
</div>
</content>
</entry>
<entry>
<title>Re: Trying to make UserguidePingClient run</title>
<author><name>&quot;Chamikara Jayalath&quot; &lt;chamikaramj@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/200706.mbox/%3c9d4ec10b0706230505o55ee83d9w6ef9ff9a666c6f48@mail.gmail.com%3e"/>
<id>urn:uuid:%3c9d4ec10b0706230505o55ee83d9w6ef9ff9a666c6f48@mail-gmail-com%3e</id>
<updated>2007-06-23T12:05:07Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Place of the client class should be,

classes/sandesha2/samples/userguide/UserGuidePingClient.java



On 6/23/07, Chamikara Jayalath &lt;chamikaramj@gmail.com&gt; wrote:
&gt;
&gt; Hi Chris,
&gt;
&gt; Since this class has a package.
&gt;
&gt; move to the classes folder.
&gt; Make sure that ur CLASSPATH includes the current directory and all other
&gt; needed jars.
&gt; run it with the command,
&gt; java sandesha2.samples.userguide.UserGuidePingClient
&gt;
&gt; Chamikara
&gt;
&gt;
&gt; On 6/23/07, Chris Schumann &lt;cschumann@twp-llc.com&gt; wrote:
&gt; &gt;
&gt; &gt; Hi Chamikara,
&gt; &gt;
&gt; &gt; No. I ran it this way:
&gt; &gt; $ java UserguidePingClient
&gt; &gt; just as I wrote in my first note.
&gt; &gt;
&gt; &gt; The first line of the given UserguidePingClient.java file is this:
&gt; &gt; package sandesha2.samples.userguide ;
&gt; &gt; And that makes me think the .class file has to be in a certain
&gt; &gt; directory.
&gt; &gt;
&gt; &gt; Chris
&gt; &gt;
&gt; &gt;
&gt; &gt; Chamikara Jayalath wrote:
&gt; &gt; &gt; Hi Chris,
&gt; &gt; &gt;
&gt; &gt; &gt; Dont think I fully got this. Did u run it as,
&gt; &gt; &gt; java sandesha2.samples.userguide.UserGuidePingClient ?
&gt; &gt; &gt;
&gt; &gt; &gt; Chamikara
&gt; &gt; &gt;
&gt; &gt; &gt;
&gt; &gt; &gt;
&gt; &gt; &gt; On 6/21/07, * Chris Schumann* &lt;cschumann@twp-llc.com
&gt; &gt; &gt; &lt;mailto: cschumann@twp-llc.com&gt;&gt; wrote:
&gt; &gt; &gt;
&gt; &gt; &gt;     Hey all,
&gt; &gt; &gt;
&gt; &gt; &gt;     I've got the RMSS running, and reporting fine on the services web
&gt; &gt; &gt;     page. I
&gt; &gt; &gt;     can compile the UserguidePingClient.java file after replacing the
&gt; &gt; &gt;     CLIENT_REPO_PATH, but when I run the code (with "java
&gt; &gt; &gt;     UserguidePingClient"), I get a
&gt; &gt; &gt;
&gt; &gt; &gt;     java.lang.NoClassDefFoundError : UserguidePingClient (wrong name
&gt; &gt; &gt;     sandesha2/samples/userguide/UserguidePingClient).
&gt; &gt; &gt;
&gt; &gt; &gt;     Do I need to adjust the "package" line at the top of the file?
&gt; &gt; &gt;
&gt; &gt; &gt;     Thanks,
&gt; &gt; &gt;     Chris
&gt; &gt; &gt;     (again, new to Java and web services, but not new to programming)
&gt; &gt; &gt;
&gt; &gt; &gt;
&gt; &gt; &gt;
&gt; &gt; &gt;
&gt; &gt; ---------------------------------------------------------------------
&gt; &gt; &gt;     To unsubscribe, e-mail: sandesha-dev-unsubscribe@ws.apache.org
&gt; &gt; &gt;     &lt;mailto:sandesha-dev-unsubscribe@ws.apache.org&gt;
&gt; &gt; &gt;     For additional commands, e-mail: sandesha-dev-help@ws.apache.org
&gt; &gt; &gt;     &lt;mailto:sandesha-dev-help@ws.apache.org &gt;
&gt; &gt; &gt;
&gt; &gt; &gt;
&gt; &gt; &gt;
&gt; &gt; &gt;
&gt; &gt; &gt; --
&gt; &gt; &gt; Chamikara Jayalath
&gt; &gt; &gt; WSO2 Inc.
&gt; &gt; &gt; http://wso2.com/
&gt; &gt; &gt; http://wso2.org/ - For your Oxygen needs
&gt; &gt;
&gt; &gt;
&gt;
&gt;
&gt; --
&gt; Chamikara Jayalath
&gt; WSO2 Inc.
&gt; http://wso2.com/
&gt; http://wso2.org/ - For your Oxygen needs
&gt;



-- 
Chamikara Jayalath
WSO2 Inc.
http://wso2.com/
http://wso2.org/ - For your Oxygen needs


</pre>
</div>
</content>
</entry>
<entry>
<title>Re: Trying to make UserguidePingClient run</title>
<author><name>&quot;Chamikara Jayalath&quot; &lt;chamikaramj@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/200706.mbox/%3c9d4ec10b0706230503t5d1a3555ubc1a2c0ba5a44a74@mail.gmail.com%3e"/>
<id>urn:uuid:%3c9d4ec10b0706230503t5d1a3555ubc1a2c0ba5a44a74@mail-gmail-com%3e</id>
<updated>2007-06-23T12:03:38Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hi Chris,

Since this class has a package.

move to the classes folder.
Make sure that ur CLASSPATH includes the current directory and all other
needed jars.
run it with the command,
java sandesha2.samples.userguide.UserGuidePingClient

Chamikara


On 6/23/07, Chris Schumann &lt;cschumann@twp-llc.com&gt; wrote:
&gt;
&gt; Hi Chamikara,
&gt;
&gt; No. I ran it this way:
&gt; $ java UserguidePingClient
&gt; just as I wrote in my first note.
&gt;
&gt; The first line of the given UserguidePingClient.java file is this:
&gt; package sandesha2.samples.userguide;
&gt; And that makes me think the .class file has to be in a certain directory.
&gt;
&gt; Chris
&gt;
&gt;
&gt; Chamikara Jayalath wrote:
&gt; &gt; Hi Chris,
&gt; &gt;
&gt; &gt; Dont think I fully got this. Did u run it as,
&gt; &gt; java sandesha2.samples.userguide.UserGuidePingClient ?
&gt; &gt;
&gt; &gt; Chamikara
&gt; &gt;
&gt; &gt;
&gt; &gt;
&gt; &gt; On 6/21/07, * Chris Schumann* &lt;cschumann@twp-llc.com
&gt; &gt; &lt;mailto:cschumann@twp-llc.com&gt;&gt; wrote:
&gt; &gt;
&gt; &gt;     Hey all,
&gt; &gt;
&gt; &gt;     I've got the RMSS running, and reporting fine on the services web
&gt; &gt;     page. I
&gt; &gt;     can compile the UserguidePingClient.java file after replacing the
&gt; &gt;     CLIENT_REPO_PATH, but when I run the code (with "java
&gt; &gt;     UserguidePingClient"), I get a
&gt; &gt;
&gt; &gt;     java.lang.NoClassDefFoundError: UserguidePingClient (wrong name
&gt; &gt;     sandesha2/samples/userguide/UserguidePingClient).
&gt; &gt;
&gt; &gt;     Do I need to adjust the "package" line at the top of the file?
&gt; &gt;
&gt; &gt;     Thanks,
&gt; &gt;     Chris
&gt; &gt;     (again, new to Java and web services, but not new to programming)
&gt; &gt;
&gt; &gt;
&gt; &gt;
&gt; &gt;
&gt; ---------------------------------------------------------------------
&gt; &gt;     To unsubscribe, e-mail: sandesha-dev-unsubscribe@ws.apache.org
&gt; &gt;     &lt;mailto:sandesha-dev-unsubscribe@ws.apache.org&gt;
&gt; &gt;     For additional commands, e-mail: sandesha-dev-help@ws.apache.org
&gt; &gt;     &lt;mailto:sandesha-dev-help@ws.apache.org&gt;
&gt; &gt;
&gt; &gt;
&gt; &gt;
&gt; &gt;
&gt; &gt; --
&gt; &gt; Chamikara Jayalath
&gt; &gt; WSO2 Inc.
&gt; &gt; http://wso2.com/
&gt; &gt; http://wso2.org/ - For your Oxygen needs
&gt;
&gt;


-- 
Chamikara Jayalath
WSO2 Inc.
http://wso2.com/
http://wso2.org/ - For your Oxygen needs


</pre>
</div>
</content>
</entry>
<entry>
<title>Re: Accounts</title>
<author><name>Hannes Erven &lt;hannes@erven.at&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/200706.mbox/%3c467D0B21.9030807@erven.at%3e"/>
<id>urn:uuid:%3c467D0B21-9030807@erven-at%3e</id>
<updated>2007-06-23T11:59:29Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hi folks,


thank you for voting us in, and for the warm welcome. It is a great 
honor for us to be part of an ASF project.

The ICLAs were sent out yesterday, and as soon as they appear on the 
unlisted CLA-page [1] we will contact Dims for the account setup.


Best regards,

	-hannes

1: http://people.apache.org/~jim/committers.html#unlistedclas



Thilina Gunarathne wrote:
&gt; Hi Guys,
&gt; Welcome on board :)...


---------------------------------------------------------------------
To unsubscribe, e-mail: kandula-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: kandula-dev-help@ws.apache.org



</pre>
</div>
</content>
</entry>
<entry>
<title>Re: Trying to make UserguidePingClient run</title>
<author><name>Chris Schumann &lt;cschumann@twp-llc.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/200706.mbox/%3c467C9242.1080604@twp-llc.com%3e"/>
<id>urn:uuid:%3c467C9242-1080604@twp-llc-com%3e</id>
<updated>2007-06-23T03:23:46Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hi Chamikara,

No. I ran it this way:
$ java UserguidePingClient
just as I wrote in my first note.

The first line of the given UserguidePingClient.java file is this:
package sandesha2.samples.userguide;
And that makes me think the .class file has to be in a certain directory.

Chris


Chamikara Jayalath wrote:
&gt; Hi Chris,
&gt; 
&gt; Dont think I fully got this. Did u run it as,
&gt; java sandesha2.samples.userguide.UserGuidePingClient ?
&gt; 
&gt; Chamikara
&gt; 
&gt; 
&gt; 
&gt; On 6/21/07, * Chris Schumann* &lt;cschumann@twp-llc.com 
&gt; &lt;mailto:cschumann@twp-llc.com&gt;&gt; wrote:
&gt; 
&gt;     Hey all,
&gt; 
&gt;     I've got the RMSS running, and reporting fine on the services web
&gt;     page. I
&gt;     can compile the UserguidePingClient.java file after replacing the
&gt;     CLIENT_REPO_PATH, but when I run the code (with "java
&gt;     UserguidePingClient"), I get a
&gt; 
&gt;     java.lang.NoClassDefFoundError: UserguidePingClient (wrong name
&gt;     sandesha2/samples/userguide/UserguidePingClient).
&gt; 
&gt;     Do I need to adjust the "package" line at the top of the file?
&gt; 
&gt;     Thanks,
&gt;     Chris
&gt;     (again, new to Java and web services, but not new to programming)
&gt; 
&gt; 
&gt; 
&gt;     ---------------------------------------------------------------------
&gt;     To unsubscribe, e-mail: sandesha-dev-unsubscribe@ws.apache.org
&gt;     &lt;mailto:sandesha-dev-unsubscribe@ws.apache.org&gt;
&gt;     For additional commands, e-mail: sandesha-dev-help@ws.apache.org
&gt;     &lt;mailto:sandesha-dev-help@ws.apache.org&gt;
&gt; 
&gt; 
&gt; 
&gt; 
&gt; -- 
&gt; Chamikara Jayalath
&gt; WSO2 Inc.
&gt; http://wso2.com/
&gt; http://wso2.org/ - For your Oxygen needs


---------------------------------------------------------------------
To unsubscribe, e-mail: sandesha-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: sandesha-dev-help@ws.apache.org



</pre>
</div>
</content>
</entry>
<entry>
<title>Re: Trying to make UserguidePingClient run</title>
<author><name>&quot;Chamikara Jayalath&quot; &lt;chamikaramj@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/200706.mbox/%3c9d4ec10b0706221914k2fc1bac7k9cb7c7baa4db578b@mail.gmail.com%3e"/>
<id>urn:uuid:%3c9d4ec10b0706221914k2fc1bac7k9cb7c7baa4db578b@mail-gmail-com%3e</id>
<updated>2007-06-23T02:14:53Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hi Chris,

Dont think I fully got this. Did u run it as,
java sandesha2.samples.userguide.UserGuidePingClient ?

Chamikara



On 6/21/07, Chris Schumann &lt;cschumann@twp-llc.com&gt; wrote:
&gt;
&gt; Hey all,
&gt;
&gt; I've got the RMSS running, and reporting fine on the services web page. I
&gt; can compile the UserguidePingClient.java file after replacing the
&gt; CLIENT_REPO_PATH, but when I run the code (with "java
&gt; UserguidePingClient"), I get a
&gt;
&gt; java.lang.NoClassDefFoundError: UserguidePingClient (wrong name
&gt; sandesha2/samples/userguide/UserguidePingClient).
&gt;
&gt; Do I need to adjust the "package" line at the top of the file?
&gt;
&gt; Thanks,
&gt; Chris
&gt; (again, new to Java and web services, but not new to programming)
&gt;
&gt;
&gt;
&gt; ---------------------------------------------------------------------
&gt; To unsubscribe, e-mail: sandesha-dev-unsubscribe@ws.apache.org
&gt; For additional commands, e-mail: sandesha-dev-help@ws.apache.org
&gt;
&gt;


-- 
Chamikara Jayalath
WSO2 Inc.
http://wso2.com/
http://wso2.org/ - For your Oxygen needs


</pre>
</div>
</content>
</entry>
<entry>
<title>Re: SOAPMonitor Axis2 phases and Sandesha acknowledgement</title>
<author><name>&quot;Chamikara Jayalath&quot; &lt;chamikaramj@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/200706.mbox/%3c9d4ec10b0706221910m29c104d6h3469e646c0584966@mail.gmail.com%3e"/>
<id>urn:uuid:%3c9d4ec10b0706221910m29c104d6h3469e646c0584966@mail-gmail-com%3e</id>
<updated>2007-06-23T02:10:03Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
At the sender we check weather there are any Acks to be piggy backed and
thats where we add the it to outgoing msgs. So u wont see the Sequence Ack
in the handler level.

Chamikara


On 6/23/07, Chamikara Jayalath &lt;chamikaramj@gmail.com&gt; wrote:
&gt;
&gt; Hi Jerome,
&gt;
&gt; Yes. This is becoz we add the Sequence header in the SenderWorker. You
&gt; will not see the Sequence header in the handler level.
&gt;
&gt; Chamikara
&gt;
&gt;
&gt; On 6/22/07, Jerome Camilleri &lt;jerome.camilleri@bull.net&gt; wrote:
&gt; &gt;
&gt; &gt; Hi,
&gt; &gt;
&gt; &gt; I try to configure SOAPMonitor.mar on my project to debug my application
&gt; &gt; using Axis2 1.2 and Sandesha2 1.2.
&gt; &gt; All my request is catch by SOAPMonitor but on the server response wsrm
&gt; &gt; tag are missing...
&gt; &gt; I try to change  into Axis2.xml file the OutFlow phase to call
&gt; &gt; soapmonitorPhase after RMPhase like you can see on the fill below but I
&gt; &gt; never saw the SequenceAcknowledgement into the server response (I'm sure
&gt; &gt; that the response containe it because I had configure tcpmon beetween
&gt; &gt; Source and Destination).
&gt; &gt;
&gt; &gt; &lt;?xml version='1.0' encoding='utf-8'?&gt;
&gt; &gt; &lt;soapenv:Envelope xmlns:wsa=" http://www.w3.org/2005/08/addressing"
&gt; &gt; xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope"&gt;
&gt; &gt;   &lt;soapenv:Header&gt;
&gt; &gt;     &lt;wsa:MessageID&gt;urn:uuid:E20181888A297B3C631182512256075&lt;/wsa:MessageID&gt;
&gt; &gt;
&gt; &gt;     &lt;wsa:Action&gt;&lt;/wsa:Action&gt;
&gt; &gt;
&gt; &gt;     &lt;wsa:RelatesTo&gt;urn:uuid:22075684A97A8D05F41182512253019&lt;/wsa:RelatesTo&gt;
&gt; &gt;   &lt;/soapenv:Header&gt;
&gt; &gt;   &lt;soapenv:Body&gt;
&gt; &gt; ...
&gt; &gt;   &lt;/soapenv:Body&gt;
&gt; &gt; &lt;/soapenv:Envelope&gt;
&gt; &gt;
&gt; &gt; When I used tcpmon the reponse is correct and contain wsrm tags :
&gt; &gt; &lt;?xml version='1.0' encoding='UTF-8'?&gt;
&gt; &gt;    &lt;soapenv:Envelope xmlns:wsa=" http://www.w3.org/2005/08/addressing"
&gt; &gt; xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope"&gt;
&gt; &gt;       &lt;soapenv:Header&gt;
&gt; &gt;
&gt; &gt; &lt;wsa:MessageID&gt;urn:uuid:E20181888A297B3C631182512249456&lt;/wsa:MessageID&gt;
&gt; &gt;          &lt;wsa:Action&gt;&lt;/wsa:Action&gt;
&gt; &gt;
&gt; &gt; &lt;wsa:RelatesTo&gt;urn:uuid:22075684A97A8D05F41182512245205&lt;/wsa:RelatesTo&gt;
&gt; &gt;          &lt;wsrm:Sequence
&gt; &gt; xmlns:wsrm=" http://schemas.xmlsoap.org/ws/2005/02/rm"
&gt; &gt; soapenv:mustUnderstand="true"&gt;
&gt; &gt;             &lt;wsrm:Identifier&gt;uid1182512244847&lt;/wsrm:Identifier&gt;
&gt; &gt;             &lt;wsrm:MessageNumber&gt;1&lt;/wsrm:MessageNumber&gt;
&gt; &gt;          &lt;/wsrm:Sequence&gt;
&gt; &gt;          &lt;wsrm:SequenceAcknowledgement
&gt; &gt; xmlns:wsrm="http://schemas.xmlsoap.org/ws/2005/02/rm"
&gt; &gt; soapenv:mustUnderstand="true"&gt;
&gt; &gt;
&gt; &gt;
&gt; &gt; &lt;wsrm:Identifier&gt;urn:uuid:E20181888A297B3C631182512248038&lt;/wsrm:Identifier&gt;
&gt; &gt;             &lt;wsrm:AcknowledgementRange Lower="1" Upper="1" /&gt;
&gt; &gt;          &lt;/wsrm:SequenceAcknowledgement&gt;
&gt; &gt;       &lt;/soapenv:Header&gt;
&gt; &gt;       &lt;soapenv:Body&gt;
&gt; &gt;         ...
&gt; &gt;       &lt;/soapenv:Body&gt;
&gt; &gt;    &lt;/soapenv:Envelope&gt;
&gt; &gt;
&gt; &gt; Someone have an explaination about this pleased ?
&gt; &gt;
&gt; &gt; Regards
&gt; &gt; Jérôme
&gt; &gt;
&gt; &gt;
&gt; &gt; Extract of Axis2.xml:
&gt; &gt; ...
&gt; &gt;     &lt;!-- ================================================= --&gt;
&gt; &gt;     &lt;!-- Phases  --&gt;
&gt; &gt;     &lt;!-- ================================================= --&gt;
&gt; &gt;     &lt;phaseOrder type="InFlow"&gt;
&gt; &gt;         &lt;!--  System pre defined phases       --&gt;
&gt; &gt;         &lt;phase name="Transport"&gt;
&gt; &gt;             &lt;handler name="RequestURIBasedDispatcher"
&gt; &gt;
&gt; &gt; class="org.apache.axis2.engine.RequestURIBasedDispatcher "&gt;
&gt; &gt;                 &lt;order phase="Transport"/&gt;
&gt; &gt;             &lt;/handler&gt;
&gt; &gt;             &lt;handler name="SOAPActionBasedDispatcher"
&gt; &gt;
&gt; &gt; class="org.apache.axis2.engine.SOAPActionBasedDispatcher "&gt;
&gt; &gt;                 &lt;order phase="Transport"/&gt;
&gt; &gt;             &lt;/handler&gt;
&gt; &gt;         &lt;/phase&gt;
&gt; &gt;         &lt;phase name="Security"/&gt;
&gt; &gt;         &lt;phase name="PreDispatch"/&gt;
&gt; &gt;         &lt;phase name="Dispatch"
&gt; &gt; class="org.apache.axis2.engine.DispatchPhase"&gt;
&gt; &gt;             &lt;handler name="AddressingBasedDispatcher"
&gt; &gt;
&gt; &gt; class="org.apache.axis2.engine.AddressingBasedDispatcher "&gt;
&gt; &gt;                 &lt;order phase="Dispatch"/&gt;
&gt; &gt;             &lt;/handler&gt;
&gt; &gt;
&gt; &gt;             &lt;handler name="SOAPMessageBodyBasedDispatcher"
&gt; &gt;
&gt; &gt; class="org.apache.axis2.engine.SOAPMessageBodyBasedDispatcher "&gt;
&gt; &gt;                 &lt;order phase="Dispatch"/&gt;
&gt; &gt;             &lt;/handler&gt;
&gt; &gt;             &lt;handler name="InstanceDispatcher"
&gt; &gt;                      class="org.apache.axis2.engine.InstanceDispatcher"&gt;
&gt; &gt;                 &lt;order phase="Dispatch"/&gt;
&gt; &gt;             &lt;/handler&gt;
&gt; &gt;         &lt;/phase&gt;
&gt; &gt;         &lt;!--  System pre defined phases       --&gt;
&gt; &gt;         &lt;!--   After Postdispatch phase module author or or service
&gt; &gt; author can add any phase he want      --&gt;
&gt; &gt;         &lt;phase name="OperationInPhase"/&gt;
&gt; &gt;
&gt; &gt;         &lt;phase name="RMPhase"/&gt;
&gt; &gt;
&gt; &gt;         &lt;phase name="soapmonitorPhase"/&gt;
&gt; &gt;     &lt;/phaseOrder&gt;
&gt; &gt;     &lt;phaseOrder type="OutFlow"&gt;
&gt; &gt;         &lt;!--      user can add his own phases to this area  --&gt;
&gt; &gt;         &lt;phase name="RMPhase"/&gt;
&gt; &gt;         &lt;phase name="OperationOutPhase"/&gt;
&gt; &gt;         &lt;!--system predefined phase--&gt;
&gt; &gt;         &lt;!--these phase will run irrespective of the service--&gt;
&gt; &gt;
&gt; &gt;         &lt;phase name="PolicyDetermination"/&gt;
&gt; &gt;         &lt;phase name="MessageOut"/&gt;
&gt; &gt;         &lt;phase name="Security"/&gt;
&gt; &gt;         &lt;phase name="soapmonitorPhase"/&gt;
&gt; &gt;     &lt;/phaseOrder&gt;
&gt; &gt;     &lt;phaseOrder type="InFaultFlow"&gt;
&gt; &gt;         &lt;phase name="PreDispatch"/&gt;
&gt; &gt;         &lt;phase name="Dispatch"
&gt; &gt; class="org.apache.axis2.engine.DispatchPhase"&gt;
&gt; &gt;             &lt;handler name="RequestURIBasedDispatcher"
&gt; &gt;
&gt; &gt; class="org.apache.axis2.engine.RequestURIBasedDispatcher "&gt;
&gt; &gt;                 &lt;order phase="Dispatch"/&gt;
&gt; &gt;             &lt;/handler&gt;
&gt; &gt;
&gt; &gt;             &lt;handler name="SOAPActionBasedDispatcher"
&gt; &gt;
&gt; &gt; class="org.apache.axis2.engine.SOAPActionBasedDispatcher "&gt;
&gt; &gt;                 &lt;order phase="Dispatch"/&gt;
&gt; &gt;             &lt;/handler&gt;
&gt; &gt;
&gt; &gt;             &lt;handler name="AddressingBasedDispatcher"
&gt; &gt;
&gt; &gt; class="org.apache.axis2.engine.AddressingBasedDispatcher "&gt;
&gt; &gt;                 &lt;order phase="Dispatch"/&gt;
&gt; &gt;             &lt;/handler&gt;
&gt; &gt;
&gt; &gt;             &lt;handler name="SOAPMessageBodyBasedDispatcher"
&gt; &gt;
&gt; &gt; class="org.apache.axis2.engine.SOAPMessageBodyBasedDispatcher "&gt;
&gt; &gt;                 &lt;order phase="Dispatch"/&gt;
&gt; &gt;             &lt;/handler&gt;
&gt; &gt;             &lt;handler name="InstanceDispatcher"
&gt; &gt;                      class="org.apache.axis2.engine.InstanceDispatcher"&gt;
&gt; &gt;                 &lt;order phase="PostDispatch"/&gt;
&gt; &gt;             &lt;/handler&gt;
&gt; &gt;         &lt;/phase&gt;
&gt; &gt;         &lt;!--      user can add his own phases to this area  --&gt;
&gt; &gt;         &lt;phase name="OperationInFaultPhase"/&gt;
&gt; &gt;         &lt;phase name="soapmonitorPhase"/&gt;
&gt; &gt;         &lt;phase name="RMPhase"/&gt;
&gt; &gt;     &lt;/phaseOrder&gt;
&gt; &gt;     &lt;phaseOrder type="OutFaultFlow"&gt;
&gt; &gt;         &lt;phase name="soapmonitorPhase"/&gt;
&gt; &gt;         &lt;phase name="RMPhase"/&gt;
&gt; &gt;         &lt;!--      user can add his own phases to this area  --&gt;
&gt; &gt;         &lt;phase name="OperationOutFaultPhase"/&gt;
&gt; &gt;         &lt;phase name="PolicyDetermination"/&gt;
&gt; &gt;         &lt;phase name="MessageOut"/&gt;
&gt; &gt;     &lt;/phaseOrder&gt;
&gt; &gt; &lt;/axisconfig&gt;
&gt; &gt;
&gt; &gt;
&gt; &gt; Jérôme
&gt; &gt;
&gt; &gt; ---------------------------------------------------------------------
&gt; &gt; To unsubscribe, e-mail: sandesha-dev-unsubscribe@ws.apache.org
&gt; &gt; For additional commands, e-mail: sandesha-dev-help@ws.apache.org
&gt; &gt;
&gt; &gt;
&gt;
&gt;
&gt; --
&gt; Chamikara Jayalath
&gt; WSO2 Inc.
&gt; http://wso2.com/
&gt; http://wso2.org/ - For your Oxygen needs




-- 
Chamikara Jayalath
WSO2 Inc.
http://wso2.com/
http://wso2.org/ - For your Oxygen needs


</pre>
</div>
</content>
</entry>
<entry>
<title>Re: SOAPMonitor Axis2 phases and Sandesha acknowledgement</title>
<author><name>&quot;Chamikara Jayalath&quot; &lt;chamikaramj@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/200706.mbox/%3c9d4ec10b0706221907p2c354faamc6c2046cbb2601a7@mail.gmail.com%3e"/>
<id>urn:uuid:%3c9d4ec10b0706221907p2c354faamc6c2046cbb2601a7@mail-gmail-com%3e</id>
<updated>2007-06-23T02:07:33Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hi Jerome,

Yes. This is becoz we add the Sequence header in the SenderWorker. You will
not see the Sequence header in the handler level.

Chamikara


On 6/22/07, Jerome Camilleri &lt;jerome.camilleri@bull.net&gt; wrote:
&gt;
&gt; Hi,
&gt;
&gt; I try to configure SOAPMonitor.mar on my project to debug my application
&gt; using Axis2 1.2 and Sandesha2 1.2.
&gt; All my request is catch by SOAPMonitor but on the server response wsrm
&gt; tag are missing...
&gt; I try to change  into Axis2.xml file the OutFlow phase to call
&gt; soapmonitorPhase after RMPhase like you can see on the fill below but I
&gt; never saw the SequenceAcknowledgement into the server response (I'm sure
&gt; that the response containe it because I had configure tcpmon beetween
&gt; Source and Destination).
&gt;
&gt; &lt;?xml version='1.0' encoding='utf-8'?&gt;
&gt; &lt;soapenv:Envelope xmlns:wsa="http://www.w3.org/2005/08/addressing"
&gt; xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope"&gt;
&gt;   &lt;soapenv:Header&gt;
&gt;
&gt;     &lt;wsa:MessageID&gt;urn:uuid:E20181888A297B3C631182512256075&lt;/wsa:MessageID&gt;
&gt;     &lt;wsa:Action&gt;&lt;/wsa:Action&gt;
&gt;
&gt;     &lt;wsa:RelatesTo&gt;urn:uuid:22075684A97A8D05F41182512253019&lt;/wsa:RelatesTo&gt;
&gt;   &lt;/soapenv:Header&gt;
&gt;   &lt;soapenv:Body&gt;
&gt; ...
&gt;   &lt;/soapenv:Body&gt;
&gt; &lt;/soapenv:Envelope&gt;
&gt;
&gt; When I used tcpmon the reponse is correct and contain wsrm tags :
&gt; &lt;?xml version='1.0' encoding='UTF-8'?&gt;
&gt;    &lt;soapenv:Envelope xmlns:wsa="http://www.w3.org/2005/08/addressing"
&gt; xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope"&gt;
&gt;       &lt;soapenv:Header&gt;
&gt;
&gt; &lt;wsa:MessageID&gt;urn:uuid:E20181888A297B3C631182512249456&lt;/wsa:MessageID&gt;
&gt;          &lt;wsa:Action&gt;&lt;/wsa:Action&gt;
&gt;
&gt; &lt;wsa:RelatesTo&gt;urn:uuid:22075684A97A8D05F41182512245205&lt;/wsa:RelatesTo&gt;
&gt;          &lt;wsrm:Sequence
&gt; xmlns:wsrm="http://schemas.xmlsoap.org/ws/2005/02/rm"
&gt; soapenv:mustUnderstand="true"&gt;
&gt;             &lt;wsrm:Identifier&gt;uid1182512244847&lt;/wsrm:Identifier&gt;
&gt;             &lt;wsrm:MessageNumber&gt;1&lt;/wsrm:MessageNumber&gt;
&gt;          &lt;/wsrm:Sequence&gt;
&gt;          &lt;wsrm:SequenceAcknowledgement
&gt; xmlns:wsrm="http://schemas.xmlsoap.org/ws/2005/02/rm"
&gt; soapenv:mustUnderstand="true"&gt;
&gt;
&gt;
&gt; &lt;wsrm:Identifier&gt;urn:uuid:E20181888A297B3C631182512248038&lt;/wsrm:Identifier&gt;
&gt;             &lt;wsrm:AcknowledgementRange Lower="1" Upper="1" /&gt;
&gt;          &lt;/wsrm:SequenceAcknowledgement&gt;
&gt;       &lt;/soapenv:Header&gt;
&gt;       &lt;soapenv:Body&gt;
&gt;         ...
&gt;       &lt;/soapenv:Body&gt;
&gt;    &lt;/soapenv:Envelope&gt;
&gt;
&gt; Someone have an explaination about this pleased ?
&gt;
&gt; Regards
&gt; Jérôme
&gt;
&gt;
&gt; Extract of Axis2.xml:
&gt; ...
&gt;     &lt;!-- ================================================= --&gt;
&gt;     &lt;!-- Phases  --&gt;
&gt;     &lt;!-- ================================================= --&gt;
&gt;     &lt;phaseOrder type="InFlow"&gt;
&gt;         &lt;!--  System pre defined phases       --&gt;
&gt;         &lt;phase name="Transport"&gt;
&gt;             &lt;handler name="RequestURIBasedDispatcher"
&gt;
&gt; class="org.apache.axis2.engine.RequestURIBasedDispatcher"&gt;
&gt;                 &lt;order phase="Transport"/&gt;
&gt;             &lt;/handler&gt;
&gt;             &lt;handler name="SOAPActionBasedDispatcher"
&gt;
&gt; class="org.apache.axis2.engine.SOAPActionBasedDispatcher"&gt;
&gt;                 &lt;order phase="Transport"/&gt;
&gt;             &lt;/handler&gt;
&gt;         &lt;/phase&gt;
&gt;         &lt;phase name="Security"/&gt;
&gt;         &lt;phase name="PreDispatch"/&gt;
&gt;         &lt;phase name="Dispatch"
&gt; class="org.apache.axis2.engine.DispatchPhase"&gt;
&gt;             &lt;handler name="AddressingBasedDispatcher"
&gt;
&gt; class="org.apache.axis2.engine.AddressingBasedDispatcher"&gt;
&gt;                 &lt;order phase="Dispatch"/&gt;
&gt;             &lt;/handler&gt;
&gt;
&gt;             &lt;handler name="SOAPMessageBodyBasedDispatcher"
&gt;
&gt; class="org.apache.axis2.engine.SOAPMessageBodyBasedDispatcher"&gt;
&gt;                 &lt;order phase="Dispatch"/&gt;
&gt;             &lt;/handler&gt;
&gt;             &lt;handler name="InstanceDispatcher"
&gt;                      class="org.apache.axis2.engine.InstanceDispatcher"&gt;
&gt;                 &lt;order phase="Dispatch"/&gt;
&gt;             &lt;/handler&gt;
&gt;         &lt;/phase&gt;
&gt;         &lt;!--  System pre defined phases       --&gt;
&gt;         &lt;!--   After Postdispatch phase module author or or service
&gt; author can add any phase he want      --&gt;
&gt;         &lt;phase name="OperationInPhase"/&gt;
&gt;
&gt;         &lt;phase name="RMPhase"/&gt;
&gt;
&gt;         &lt;phase name="soapmonitorPhase"/&gt;
&gt;     &lt;/phaseOrder&gt;
&gt;     &lt;phaseOrder type="OutFlow"&gt;
&gt;         &lt;!--      user can add his own phases to this area  --&gt;
&gt;         &lt;phase name="RMPhase"/&gt;
&gt;         &lt;phase name="OperationOutPhase"/&gt;
&gt;         &lt;!--system predefined phase--&gt;
&gt;         &lt;!--these phase will run irrespective of the service--&gt;
&gt;
&gt;         &lt;phase name="PolicyDetermination"/&gt;
&gt;         &lt;phase name="MessageOut"/&gt;
&gt;         &lt;phase name="Security"/&gt;
&gt;         &lt;phase name="soapmonitorPhase"/&gt;
&gt;     &lt;/phaseOrder&gt;
&gt;     &lt;phaseOrder type="InFaultFlow"&gt;
&gt;         &lt;phase name="PreDispatch"/&gt;
&gt;         &lt;phase name="Dispatch"
&gt; class="org.apache.axis2.engine.DispatchPhase"&gt;
&gt;             &lt;handler name="RequestURIBasedDispatcher"
&gt;
&gt; class="org.apache.axis2.engine.RequestURIBasedDispatcher"&gt;
&gt;                 &lt;order phase="Dispatch"/&gt;
&gt;             &lt;/handler&gt;
&gt;
&gt;             &lt;handler name="SOAPActionBasedDispatcher"
&gt;
&gt; class="org.apache.axis2.engine.SOAPActionBasedDispatcher"&gt;
&gt;                 &lt;order phase="Dispatch"/&gt;
&gt;             &lt;/handler&gt;
&gt;
&gt;             &lt;handler name="AddressingBasedDispatcher"
&gt;
&gt; class="org.apache.axis2.engine.AddressingBasedDispatcher"&gt;
&gt;                 &lt;order phase="Dispatch"/&gt;
&gt;             &lt;/handler&gt;
&gt;
&gt;             &lt;handler name="SOAPMessageBodyBasedDispatcher"
&gt;
&gt; class="org.apache.axis2.engine.SOAPMessageBodyBasedDispatcher"&gt;
&gt;                 &lt;order phase="Dispatch"/&gt;
&gt;             &lt;/handler&gt;
&gt;             &lt;handler name="InstanceDispatcher"
&gt;                      class="org.apache.axis2.engine.InstanceDispatcher"&gt;
&gt;                 &lt;order phase="PostDispatch"/&gt;
&gt;             &lt;/handler&gt;
&gt;         &lt;/phase&gt;
&gt;         &lt;!--      user can add his own phases to this area  --&gt;
&gt;         &lt;phase name="OperationInFaultPhase"/&gt;
&gt;         &lt;phase name="soapmonitorPhase"/&gt;
&gt;         &lt;phase name="RMPhase"/&gt;
&gt;     &lt;/phaseOrder&gt;
&gt;     &lt;phaseOrder type="OutFaultFlow"&gt;
&gt;         &lt;phase name="soapmonitorPhase"/&gt;
&gt;         &lt;phase name="RMPhase"/&gt;
&gt;         &lt;!--      user can add his own phases to this area  --&gt;
&gt;         &lt;phase name="OperationOutFaultPhase"/&gt;
&gt;         &lt;phase name="PolicyDetermination"/&gt;
&gt;         &lt;phase name="MessageOut"/&gt;
&gt;     &lt;/phaseOrder&gt;
&gt; &lt;/axisconfig&gt;
&gt;
&gt;
&gt; Jérôme
&gt;
&gt; ---------------------------------------------------------------------
&gt; To unsubscribe, e-mail: sandesha-dev-unsubscribe@ws.apache.org
&gt; For additional commands, e-mail: sandesha-dev-help@ws.apache.org
&gt;
&gt;


-- 
Chamikara Jayalath
WSO2 Inc.
http://wso2.com/
http://wso2.org/ - For your Oxygen needs


</pre>
</div>
</content>
</entry>
<entry>
<title>Re: Active connexion in TCPMon for TerminateSequence</title>
<author><name>&quot;Chamikara Jayalath&quot; &lt;chamikaramj@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/200706.mbox/%3c9d4ec10b0706221858p6ecc1badjb6fb6fb1a38907d0@mail.gmail.com%3e"/>
<id>urn:uuid:%3c9d4ec10b0706221858p6ecc1badjb6fb6fb1a38907d0@mail-gmail-com%3e</id>
<updated>2007-06-23T01:58:17Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hi Jeromy,

This is a bit strange since at Sandesha2 we dont work in the socket level,
anyway I unerstand wha u mean. Could u file a JIRA on this.

Chamikara


On 6/21/07, Jerome Camilleri &lt;jerome.camilleri@bull.net&gt; wrote:
&gt;
&gt; Hi,
&gt;
&gt; I used TCPMon (or SOAPMonitor) to monitor my WebServices with Axis2-1.2
&gt; and sandesha2 module activate.
&gt; All request is listed correctly and state for eatch begin to Active and
&gt; become Completed.
&gt; Some of them stay in Active state (all Terminate Sequence in fact).
&gt; I notice that the terminateSequence request don't have any SOAP-response.
&gt;
&gt; I used IN-OUT MEP synchrone.
&gt;
&gt; Is it just a TCPMon effect ? or is a TCP connexion keep alive after
&gt; eatch Terminate sequence ?
&gt; How resolved it (if necessary ?)
&gt;
&gt; Regards
&gt; Jérôme
&gt;
&gt; ---------------------------------------------------------------------
&gt; To unsubscribe, e-mail: sandesha-dev-unsubscribe@ws.apache.org
&gt; For additional commands, e-mail: sandesha-dev-help@ws.apache.org
&gt;
&gt;


-- 
Chamikara Jayalath
WSO2 Inc.
http://wso2.com/
http://wso2.org/ - For your Oxygen needs


</pre>
</div>
</content>
</entry>
<entry>
<title>Re: Accounts</title>
<author><name>&quot;Thilina Gunarathne&quot; &lt;csethil@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/200706.mbox/%3ce9115cfd0706221812o339dc2f4rcbb088d066441323@mail.gmail.com%3e"/>
<id>urn:uuid:%3ce9115cfd0706221812o339dc2f4rcbb088d066441323@mail-gmail-com%3e</id>
<updated>2007-06-23T01:12:28Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hi Guys,
Welcome on board :)...

First of all you need to submit the iCLA documents... See the
following pages for more details...
http://www.apache.org/dev/new-committers-guide.html
http://www.apache.org/dev/committers.html

AFAIK we need a WS PMC member to forward the vote thread to the
root@apache requeting for the accounts.. (Hope Dims or Dr.Sanjiva can
give us som help in this matter)

Thanks,
Thilina

On 6/21/07, Dasarath Weeratunge &lt;dweeratu@purdue.edu&gt; wrote:
&gt; Hi Hannes, Georg,
&gt;
&gt; Now that you have received all the required votes, please coordinate with
&gt; Apache to get your account setup. Please ask Dims (Davanum Srinivas) if you need
&gt; any help.
&gt;
&gt; Best regards,
&gt; --dasarath
&gt;
&gt; ---------------------------------------------------------------------
&gt; To unsubscribe, e-mail: kandula-dev-unsubscribe@ws.apache.org
&gt; For additional commands, e-mail: kandula-dev-help@ws.apache.org
&gt;
&gt;


-- 
Thilina Gunarathne  -  http://www.wso2.com - http://thilinag.blogspot.com

---------------------------------------------------------------------
To unsubscribe, e-mail: kandula-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: kandula-dev-help@ws.apache.org



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Created: (SANDESHA2-92) Sandesha2 closing inbound sequence when it shouldn't</title>
<author><name>&quot;Paul Fremantle (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/200706.mbox/%3c17456090.1182519033147.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c17456090-1182519033147-JavaMail-jira@brutus%3e</id>
<updated>2007-06-22T13:30:33Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Sandesha2 closing inbound sequence when it shouldn't
----------------------------------------------------

                 Key: SANDESHA2-92
                 URL: https://issues.apache.org/jira/browse/SANDESHA2-92
             Project: Sandesha2
          Issue Type: Bug
            Reporter: Paul Fremantle


Sandesha1.2

When I do the following:

setUseSeparateListener(true)
engageModule(sandesha2)

stub.startMyMethod(...., callback)
setProperty(Sandesha2LastMessage, true);
stub.startMyMethod(....., callback)

The second response fails because Sandesha is automatically terminating the inbound sequence
when it terminates the outbound sequence. So by the time the second response comes in the
Offered sequence is dead and I get an exception saying that the message references a terminated
sequence.



-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: sandesha-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: sandesha-dev-help@ws.apache.org



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Created: (SANDESHA2-91) When I send a lastmessage+emptybody using non-anonymous there is no corresponding lastmessage sent back and no TS on the response</title>
<author><name>&quot;Paul Fremantle (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/200706.mbox/%3c13057396.1182518486165.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c13057396-1182518486165-JavaMail-jira@brutus%3e</id>
<updated>2007-06-22T13:21:26Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
When I send a lastmessage+emptybody using non-anonymous there is no corresponding lastmessage
sent back and no TS on the response
---------------------------------------------------------------------------------------------------------------------------------

                 Key: SANDESHA2-91
                 URL: https://issues.apache.org/jira/browse/SANDESHA2-91
             Project: Sandesha2
          Issue Type: Bug
            Reporter: Paul Fremantle


when I do a simple client that does:

setUseSeparateListener(true)
engageModule(sandesha2)
.... makes calls....
SandeshaClient.terminateSequence(serviceClient);

the flow is fine except that the Server never responds with a LastMessage or TerminateSequence,
so the Offered Sequence is not completed.

This is with Sandesha1.2

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: sandesha-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: sandesha-dev-help@ws.apache.org



</pre>
</div>
</content>
</entry>
<entry>
<title>SOAPMonitor Axis2 phases and Sandesha acknowledgement</title>
<author><name>Jerome Camilleri &lt;jerome.camilleri@bull.net&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/200706.mbox/%3c467BCBF3.2080005@bull.net%3e"/>
<id>urn:uuid:%3c467BCBF3-2080005@bull-net%3e</id>
<updated>2007-06-22T13:17:39Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hi,

I try to configure SOAPMonitor.mar on my project to debug my application 
using Axis2 1.2 and Sandesha2 1.2.
All my request is catch by SOAPMonitor but on the server response wsrm 
tag are missing...
I try to change  into Axis2.xml file the OutFlow phase to call  
soapmonitorPhase after RMPhase like you can see on the fill below but I 
never saw the SequenceAcknowledgement into the server response (I'm sure 
that the response containe it because I had configure tcpmon beetween 
Source and Destination).

&lt;?xml version='1.0' encoding='utf-8'?&gt;
&lt;soapenv:Envelope xmlns:wsa="http://www.w3.org/2005/08/addressing" 
xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope"&gt;
  &lt;soapenv:Header&gt;
    &lt;wsa:MessageID&gt;urn:uuid:E20181888A297B3C631182512256075&lt;/wsa:MessageID&gt;
    &lt;wsa:Action&gt;&lt;/wsa:Action&gt;
    &lt;wsa:RelatesTo&gt;urn:uuid:22075684A97A8D05F41182512253019&lt;/wsa:RelatesTo&gt;
  &lt;/soapenv:Header&gt;
  &lt;soapenv:Body&gt;
 ...
  &lt;/soapenv:Body&gt;
&lt;/soapenv:Envelope&gt;

When I used tcpmon the reponse is correct and contain wsrm tags :
&lt;?xml version='1.0' encoding='UTF-8'?&gt;
   &lt;soapenv:Envelope xmlns:wsa="http://www.w3.org/2005/08/addressing" 
xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope"&gt;
      &lt;soapenv:Header&gt;
         
&lt;wsa:MessageID&gt;urn:uuid:E20181888A297B3C631182512249456&lt;/wsa:MessageID&gt;
         &lt;wsa:Action&gt;&lt;/wsa:Action&gt;
         
&lt;wsa:RelatesTo&gt;urn:uuid:22075684A97A8D05F41182512245205&lt;/wsa:RelatesTo&gt;
         &lt;wsrm:Sequence 
xmlns:wsrm="http://schemas.xmlsoap.org/ws/2005/02/rm" 
soapenv:mustUnderstand="true"&gt;
            &lt;wsrm:Identifier&gt;uid1182512244847&lt;/wsrm:Identifier&gt;
            &lt;wsrm:MessageNumber&gt;1&lt;/wsrm:MessageNumber&gt;
         &lt;/wsrm:Sequence&gt;
         &lt;wsrm:SequenceAcknowledgement 
xmlns:wsrm="http://schemas.xmlsoap.org/ws/2005/02/rm" 
soapenv:mustUnderstand="true"&gt;
            
&lt;wsrm:Identifier&gt;urn:uuid:E20181888A297B3C631182512248038&lt;/wsrm:Identifier&gt;
            &lt;wsrm:AcknowledgementRange Lower="1" Upper="1" /&gt;
         &lt;/wsrm:SequenceAcknowledgement&gt;
      &lt;/soapenv:Header&gt;
      &lt;soapenv:Body&gt;
        ...
      &lt;/soapenv:Body&gt;
   &lt;/soapenv:Envelope&gt;

Someone have an explaination about this pleased ?

Regards
Jérôme


Extract of Axis2.xml:
...
    &lt;!-- ================================================= --&gt;
    &lt;!-- Phases  --&gt;
    &lt;!-- ================================================= --&gt;
    &lt;phaseOrder type="InFlow"&gt;
        &lt;!--  System pre defined phases       --&gt;
        &lt;phase name="Transport"&gt;
            &lt;handler name="RequestURIBasedDispatcher"
                     
class="org.apache.axis2.engine.RequestURIBasedDispatcher"&gt;
                &lt;order phase="Transport"/&gt;
            &lt;/handler&gt;
            &lt;handler name="SOAPActionBasedDispatcher"
                     
class="org.apache.axis2.engine.SOAPActionBasedDispatcher"&gt;
                &lt;order phase="Transport"/&gt;
            &lt;/handler&gt;
        &lt;/phase&gt;
        &lt;phase name="Security"/&gt;
        &lt;phase name="PreDispatch"/&gt;
        &lt;phase name="Dispatch" 
class="org.apache.axis2.engine.DispatchPhase"&gt;
            &lt;handler name="AddressingBasedDispatcher"
                     
class="org.apache.axis2.engine.AddressingBasedDispatcher"&gt;
                &lt;order phase="Dispatch"/&gt;
            &lt;/handler&gt;
 
            &lt;handler name="SOAPMessageBodyBasedDispatcher"
                     
class="org.apache.axis2.engine.SOAPMessageBodyBasedDispatcher"&gt;
                &lt;order phase="Dispatch"/&gt;
            &lt;/handler&gt;
            &lt;handler name="InstanceDispatcher"
                     class="org.apache.axis2.engine.InstanceDispatcher"&gt;
                &lt;order phase="Dispatch"/&gt;
            &lt;/handler&gt;
        &lt;/phase&gt;
        &lt;!--  System pre defined phases       --&gt;
        &lt;!--   After Postdispatch phase module author or or service 
author can add any phase he want      --&gt;
        &lt;phase name="OperationInPhase"/&gt;

        &lt;phase name="RMPhase"/&gt;

        &lt;phase name="soapmonitorPhase"/&gt;
    &lt;/phaseOrder&gt;
    &lt;phaseOrder type="OutFlow"&gt;
        &lt;!--      user can add his own phases to this area  --&gt;
        &lt;phase name="RMPhase"/&gt;
        &lt;phase name="OperationOutPhase"/&gt;
        &lt;!--system predefined phase--&gt;
        &lt;!--these phase will run irrespective of the service--&gt;
 
        &lt;phase name="PolicyDetermination"/&gt;
        &lt;phase name="MessageOut"/&gt;
        &lt;phase name="Security"/&gt;
        &lt;phase name="soapmonitorPhase"/&gt;
    &lt;/phaseOrder&gt;
    &lt;phaseOrder type="InFaultFlow"&gt;
        &lt;phase name="PreDispatch"/&gt;
        &lt;phase name="Dispatch" 
class="org.apache.axis2.engine.DispatchPhase"&gt;
            &lt;handler name="RequestURIBasedDispatcher"
                     
class="org.apache.axis2.engine.RequestURIBasedDispatcher"&gt;
                &lt;order phase="Dispatch"/&gt;
            &lt;/handler&gt;
 
            &lt;handler name="SOAPActionBasedDispatcher"
                     
class="org.apache.axis2.engine.SOAPActionBasedDispatcher"&gt;
                &lt;order phase="Dispatch"/&gt;
            &lt;/handler&gt;
 
            &lt;handler name="AddressingBasedDispatcher"
                     
class="org.apache.axis2.engine.AddressingBasedDispatcher"&gt;
                &lt;order phase="Dispatch"/&gt;
            &lt;/handler&gt;
 
            &lt;handler name="SOAPMessageBodyBasedDispatcher"
                     
class="org.apache.axis2.engine.SOAPMessageBodyBasedDispatcher"&gt;
                &lt;order phase="Dispatch"/&gt;
            &lt;/handler&gt;
            &lt;handler name="InstanceDispatcher"
                     class="org.apache.axis2.engine.InstanceDispatcher"&gt;
                &lt;order phase="PostDispatch"/&gt;
            &lt;/handler&gt;
        &lt;/phase&gt;
        &lt;!--      user can add his own phases to this area  --&gt;
        &lt;phase name="OperationInFaultPhase"/&gt;
        &lt;phase name="soapmonitorPhase"/&gt;
        &lt;phase name="RMPhase"/&gt;
    &lt;/phaseOrder&gt;
    &lt;phaseOrder type="OutFaultFlow"&gt;
        &lt;phase name="soapmonitorPhase"/&gt;
        &lt;phase name="RMPhase"/&gt;
        &lt;!--      user can add his own phases to this area  --&gt;
        &lt;phase name="OperationOutFaultPhase"/&gt;
        &lt;phase name="PolicyDetermination"/&gt;
        &lt;phase name="MessageOut"/&gt;
    &lt;/phaseOrder&gt;
&lt;/axisconfig&gt;


Jérôme

---------------------------------------------------------------------
To unsubscribe, e-mail: sandesha-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: sandesha-dev-help@ws.apache.org



</pre>
</div>
</content>
</entry>
<entry>
<title>Sandesha2C 0.90 Release</title>
<author><name>Damitha Kumarage &lt;damitha23@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/200706.mbox/%3c467B8CD0.8080304@gmail.com%3e"/>
<id>urn:uuid:%3c467B8CD0-8080304@gmail-com%3e</id>
<updated>2007-06-22T08:48:16Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hi All,
Apache Sandesha2/C Team is pleased to announce the release of Apache 
Sandesha2/C version 0.90.
You can download this release from

http://ws.apache.org/sandesha/sandesha2/c/download.cgi

This release is supposed to be used with the Axis2C 1.0.0 distribution 
which is released recently.

Key Features:

  1.  Support for WS-ReliableMessaging in both client side and server 
side of Axis2C.
        (according   the the WS-ReliableMessaging specification February 
2005 and
        WS-ReliableMessaging specification August 2006).
  2. Pluggable storage framework.
  3. Configurable delivery assurances. Eexactly once delivery assurance 
is guaranteed.
  4. Support for both SOAP 1.1 and 1.2.
  5. Client API, which provides features for both general and advance users.
  6. Samples to test RM scenarios.
  7. Interoperablity with java and .net.
  8. Documentation

We welcome your early feedback on this implementation.
Thanks for your interest in Sandesha2/C

-- Apache Sandesha2/C Team --


---------------------------------------------------------------------
To unsubscribe, e-mail: sandesha-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: sandesha-dev-help@ws.apache.org



</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r549740 - /webservices/sandesha/site/sandesha2/c/download.html</title>
<author><name>damitha@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/200706.mbox/%3c20070622070258.7EBF01A981A@eris.apache.org%3e"/>
<id>urn:uuid:%3c20070622070258-7EBF01A981A@eris-apache-org%3e</id>
<updated>2007-06-22T07:02:58Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: damitha
Date: Fri Jun 22 00:02:57 2007
New Revision: 549740

URL: http://svn.apache.org/viewvc?view=rev&amp;rev=549740
Log:
download path corrected

Modified:
    webservices/sandesha/site/sandesha2/c/download.html

Modified: webservices/sandesha/site/sandesha2/c/download.html
URL: http://svn.apache.org/viewvc/webservices/sandesha/site/sandesha2/c/download.html?view=diff&amp;rev=549740&amp;r1=549739&amp;r2=549740
==============================================================================
--- webservices/sandesha/site/sandesha2/c/download.html (original)
+++ webservices/sandesha/site/sandesha2/c/download.html Fri Jun 22 00:02:57 2007
@@ -2,7 +2,7 @@
           @import url("./style/maven-base.css");
           
 			    @import url("./style/maven-classic.css");&lt;/style&gt;&lt;link rel="stylesheet" href="./style/print.css"
type="text/css" media="print"&gt;&lt;/link&gt;&lt;meta http-equiv="Content-Type" content="text/html;
charset=ISO-8859-1"&gt;&lt;/meta&gt;&lt;/head&gt;&lt;body class="composite"&gt;&lt;div id="banner"&gt;&lt;a
href="http://www.apache.org/" id="organizationLogo"&gt;&lt;img alt="Apache Software Foundation"
src="http://www.apache.org/images/asf-logo.gif"&gt;&lt;/img&gt;&lt;/a&gt;&lt;a href="http://ws.apache.org/sandesha2/c"
id="projectLogo"&gt;&lt;img alt="Apache Sandesha2/C" src="http://ws.apache.org/sandesha2/c/images/sandesha2c_logo.jpg"&gt;&lt;/img&gt;&lt;/a&gt;&lt;div
class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="breadcrumbs"&gt;&lt;div
class="xleft"&gt;
-                	Last published: 21 June 2007
+                	Last published: 22 June 2007
                   | Doc for 0.90&lt;/div&gt;&lt;div class="xright"&gt;&lt;/div&gt;&lt;div
class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="leftColumn"&gt;&lt;div
id="navcolumn"&gt;&lt;div id="menuApache_Sandesha2_C"&gt;&lt;h5&gt;Apache Sandesha2/C&lt;/h5&gt;&lt;ul&gt;&lt;li
class="none"&gt;&lt;a href="index.html"&gt;Apache Sandesha2/C Home&lt;/a&gt;&lt;/li&gt;&lt;li
class="expanded"&gt;&lt;a href="download.cgi"&gt;Download Sandesha2/C&lt;/a&gt;&lt;ul&gt;&lt;li
class="none"&gt;&lt;a href="download.cgi"&gt;Releases&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li
class="expanded"&gt;&lt;a href="docs/index.html"&gt;Documentation&lt;/a&gt;&lt;ul&gt;&lt;li
class="none"&gt;&lt;a href="docs/installationguide.html"&gt;Installation Guide&lt;/a&gt;&lt;/li&gt;&lt;li
class="none"&gt;&lt;a href="docs/sandesha2_manual.html"&gt;Sandesha2/C manual&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li
class="expanded"&gt;&lt;a href="lists_issues.html"&gt;Get Involved&lt;/a&gt;&lt;ul&gt;&lt;li
class="none"&gt;&lt;a href="lists_issues.html"&gt;Mailing Lists &amp;amp; Issue Tracking&lt;/a&gt;&lt;/li&gt;&lt;li
class="none"&gt;&lt;a href="svn.html"&gt;Checkout Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li
class="expanded"&gt;&lt;a href="coding_conventions.html"&gt;Developer Guidelines&lt;/a&gt;&lt;ul&gt;&lt;li
class="none
 "&gt;&lt;a href="coding_conventions.html"&gt;Coding Convention&lt;/a&gt;&lt;/li&gt;&lt;li
class="none"&gt;&lt;a href="versioning.html"&gt;Versionning&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li
class="expanded"&gt;&lt;a href="team-list.html"&gt;Project Information&lt;/a&gt;&lt;ul&gt;&lt;li
class="none"&gt;&lt;a href="team-list.html"&gt;Project Team&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a
href="http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/" class="externalLink" title="External
Link"&gt;Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;a
href="http://maven.apache.org/" title="Built by Maven" id="poweredBy"&gt;&lt;img alt="Built
by Maven" src="./images/logos/maven-button-1.png"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div
id="bodyColumn"&gt;&lt;div class="contentBox"&gt;&lt;div class="section"&gt;&lt;a name="Apache_Axis2_C_Releases"&gt;&lt;/a&gt;&lt;h2&gt;Apache
Axis2/C Releases&lt;/h2&gt;&lt;div align="left"&gt;
 &lt;p&gt;Several releases have been made in the recent past, moving towards the
 1.0.0 release. These releases are available for download as a source or
@@ -10,22 +10,22 @@
 &lt;/div&gt;&lt;div align="center"&gt;
 &lt;table class="bodyTable"&gt;&lt;tbody&gt;
     &lt;tr class="a"&gt;&lt;td align="center" valign="middle"&gt;0.90&lt;/td&gt;&lt;td align="center"&gt;Release&lt;/td&gt;&lt;td&gt;MS
Windows Distribution&lt;br&gt;&lt;/br&gt;
-        - Source Distribution &lt;a href="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-src-0.90.zip"
class="externalLink" title="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-src-0.90.zip"&gt;zip&lt;/a&gt;
-        &lt;a href="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-src-0.90.zip.md5"
class="externalLink" title="[preferred]/ws/sandesha/sandesha2/c/sandesha2c-src-0.90.zip.md5"&gt;MD5&lt;/a&gt;
-        &lt;a href="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-src-0.90.zip.asc"
class="externalLink" title="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-src-0.90.zip.asc"&gt;PGP&lt;/a&gt;
+        - Source Distribution &lt;a href="[preferred]/ws/sandesha2/c/0.90/sandesha2c-src-0.90.zip"
class="externalLink" title="[preferred]/ws/sandesha2/c/0.90/sandesha2c-src-0.90.zip"&gt;zip&lt;/a&gt;
+        &lt;a href="[preferred]/ws/sandesha2/c/0.90/sandesha2c-src-0.90.zip.md5" class="externalLink"
title="[preferred]/ws/sandesha2/c/sandesha2c-src-0.90.zip.md5"&gt;MD5&lt;/a&gt;
+        &lt;a href="[preferred]/ws/sandesha2/c/0.90/sandesha2c-src-0.90.zip.asc" class="externalLink"
title="[preferred]/ws/sandesha2/c/0.90/sandesha2c-src-0.90.zip.asc"&gt;PGP&lt;/a&gt;
         &lt;br&gt;&lt;/br&gt;
-        - Binary Distribution &lt;a href="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-bin-0.90-win32.zip"
class="externalLink" title="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-bin-0.90-win32.zip"&gt;zip&lt;/a&gt;
-        &lt;a href="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-bin-0.90-win32.zip.md5"
class="externalLink" title="[preferred]/ws/sandesha/sandesha2/c/sandesha2c-bin-0.90-win32.zip.md5"&gt;MD5&lt;/a&gt;
-        &lt;a href="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-bin-0.90-win32.zip.asc"
class="externalLink" title="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-bin-0.90-win32.zip.asc"&gt;PGP&lt;/a&gt;
+        - Binary Distribution &lt;a href="[preferred]/ws/sandesha2/c/0.90/sandesha2c-bin-0.90-win32.zip"
class="externalLink" title="[preferred]/ws/sandesha2/c/0.90/sandesha2c-bin-0.90-win32.zip"&gt;zip&lt;/a&gt;
+        &lt;a href="[preferred]/ws/sandesha2/c/0.90/sandesha2c-bin-0.90-win32.zip.md5" class="externalLink"
title="[preferred]/ws/sandesha2/c/sandesha2c-bin-0.90-win32.zip.md5"&gt;MD5&lt;/a&gt;
+        &lt;a href="[preferred]/ws/sandesha2/c/0.90/sandesha2c-bin-0.90-win32.zip.asc" class="externalLink"
title="[preferred]/ws/sandesha2/c/0.90/sandesha2c-bin-0.90-win32.zip.asc"&gt;PGP&lt;/a&gt;
         &lt;br&gt;&lt;/br&gt;
         Linux Distribution &lt;br&gt;&lt;/br&gt;
-        - Source Distribution &lt;a href="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-src-0.90.tar.gz"
class="externalLink" title="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-src-0.90.tar.gz"&gt;tar.gz&lt;/a&gt;
-        &lt;a href="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-src-0.90.tar.gz.md5"
class="externalLink" title="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-src-0.90.tar.gz.md5"&gt;MD5&lt;/a&gt;
-        &lt;a href="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-src-0.90.gz.asc"
class="externalLink" title="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-src-0.90.tar.gz.asc"&gt;PGP&lt;/a&gt;
+        - Source Distribution &lt;a href="[preferred]/ws/sandesha2/c/0.90/sandesha2c-src-0.90.tar.gz"
class="externalLink" title="[preferred]/ws/sandesha2/c/0.90/sandesha2c-src-0.90.tar.gz"&gt;tar.gz&lt;/a&gt;
+        &lt;a href="[preferred]/ws/sandesha2/c/0.90/sandesha2c-src-0.90.tar.gz.md5" class="externalLink"
title="[preferred]/ws/sandesha2/c/0.90/sandesha2c-src-0.90.tar.gz.md5"&gt;MD5&lt;/a&gt;
+        &lt;a href="[preferred]/ws/sandesha2/c/0.90/sandesha2c-src-0.90.gz.asc" class="externalLink"
title="[preferred]/ws/sandesha2/c/0.90/sandesha2c-src-0.90.tar.gz.asc"&gt;PGP&lt;/a&gt;
         &lt;br&gt;&lt;/br&gt;
-        - Binary Distribution &lt;a href="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-bin-0.90-linux.tar.gz"
class="externalLink" title="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-bin-0.90-linux.tar.gz"&gt;tar.gz&lt;/a&gt;
-        &lt;a href="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-bin-0.90-linux.tar.gz.md5"
class="externalLink" title="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-bin-0.90-linux.tar.gz.md5"&gt;MD5&lt;/a&gt;
-        &lt;a href="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-bin-0.90-linux.tar.gz.asc"
class="externalLink" title="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-bin-0.90-linux.tar.gz.asc"&gt;PGP&lt;/a&gt;
+        - Binary Distribution &lt;a href="[preferred]/ws/sandesha2/c/0.90/sandesha2c-bin-0.90-linux.tar.gz"
class="externalLink" title="[preferred]/ws/sandesha2/c/0.90/sandesha2c-bin-0.90-linux.tar.gz"&gt;tar.gz&lt;/a&gt;
+        &lt;a href="[preferred]/ws/sandesha2/c/0.90/sandesha2c-bin-0.90-linux.tar.gz.md5"
class="externalLink" title="[preferred]/ws/sandesha2/c/0.90/sandesha2c-bin-0.90-linux.tar.gz.md5"&gt;MD5&lt;/a&gt;
+        &lt;a href="[preferred]/ws/sandesha2/c/0.90/sandesha2c-bin-0.90-linux.tar.gz.asc"
class="externalLink" title="[preferred]/ws/sandesha2/c/0.90/sandesha2c-bin-0.90-linux.tar.gz.asc"&gt;PGP&lt;/a&gt;
       &lt;/td&gt;&lt;td&gt;11 - 05 - 2007&lt;/td&gt;&lt;td&gt;0.90 Release&lt;/td&gt;&lt;/tr&gt;
   &lt;/tbody&gt;&lt;/table&gt;
 



---------------------------------------------------------------------
To unsubscribe, e-mail: sandesha-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: sandesha-dev-help@ws.apache.org



</pre>
</div>
</content>
</entry>
<entry>
<title>Trying to make UserguidePingClient run</title>
<author><name>&quot;Chris Schumann&quot; &lt;cschumann@twp-llc.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/200706.mbox/%3c15699.64.211.222.210.1182448029.squirrel@alpha.twp-llc.com%3e"/>
<id>urn:uuid:%3c15699-64-211-222-210-1182448029-squirrel@alpha-twp-llc-com%3e</id>
<updated>2007-06-21T17:47:09Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hey all,

I've got the RMSS running, and reporting fine on the services web page. I
can compile the UserguidePingClient.java file after replacing the
CLIENT_REPO_PATH, but when I run the code (with "java
UserguidePingClient"), I get a

java.lang.NoClassDefFoundError: UserguidePingClient (wrong name
sandesha2/samples/userguide/UserguidePingClient).

Do I need to adjust the "package" line at the top of the file?

Thanks,
Chris
(again, new to Java and web services, but not new to programming)



---------------------------------------------------------------------
To unsubscribe, e-mail: sandesha-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: sandesha-dev-help@ws.apache.org



</pre>
</div>
</content>
</entry>
<entry>
<title>Accounts</title>
<author><name>Dasarath Weeratunge &lt;dweeratu@purdue.edu&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/200706.mbox/%3c1182436006.467a8aa60f040@webmail.purdue.edu%3e"/>
<id>urn:uuid:%3c1182436006-467a8aa60f040@webmail-purdue-edu%3e</id>
<updated>2007-06-21T14:26:46Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hi Hannes, Georg,

Now that you have received all the required votes, please coordinate with 
Apache to get your account setup. Please ask Dims (Davanum Srinivas) if you need
any help.

Best regards,
--dasarath

---------------------------------------------------------------------
To unsubscribe, e-mail: kandula-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: kandula-dev-help@ws.apache.org



</pre>
</div>
</content>
</entry>
<entry>
<title>[ANNOUNCEMENT] WSRM 1.1 is now an OASIS Standard</title>
<author><name>&quot;Paul Fremantle&quot; &lt;pzfreo@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/200706.mbox/%3c88f5d710706210619h50cb7d0crc63b73ceff64d3fe@mail.gmail.com%3e"/>
<id>urn:uuid:%3c88f5d710706210619h50cb7d0crc63b73ceff64d3fe@mail-gmail-com%3e</id>
<updated>2007-06-21T13:19:38Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
http://www.oasis-open.org/news/oasis-news-2007-06-21.php

 Boston, MA, USA; 21 June 2007 -- OASIS, the international open
standards consortium, today announced that its members have approved
Web Services Reliable Messaging (WS-ReliableMessaging) version 1.1 as
an OASIS Standard, a status that signifies the highest level of
ratification. WS-ReliableMessaging allows messages to be transferred
reliably despite failures in software components, systems, or
networks. It enables a broad range of reliability features, including
ordered delivery, duplicate elimination, and guaranteed receipt.

"Reliable messaging is one of the features customers demand most as
they move to electronic business. The problem is that messages can be
lost, repeated, or reordered, and host systems can fail," explained
Paul Fremantle of WSO2, co-chair of the OASIS Web Services Reliable
Exchange (WS-RX) Technical Committee. "WS-ReliableMessaging addresses
all these risks by providing a modular mechanism that identifies,
tracks, and manages the reliable transfer of messages between a source
and a destination."

Sanjay Patil of SAP, co-chair of the OASIS WS-RX Technical Committee,
added, "WS-ReliableMessaging delivers a key element in the openness of
an enterprise service-oriented architecture (SOA) and provides a
critical building block that can be used in conjunction with other
specifications and application-specific protocols to reliably handle a
wide variety of SOA requirements and scenarios."

The extensible nature of WS-ReliableMessaging allows additional
functionality, such as security, to be tightly integrated. It
incorporates a SOAP binding for interoperability and allows additional
bindings to be defined. The protocol can be implemented with a variety
of robustness characteristics ranging from in-memory persistence
scoped to a single process lifetime, to replicated durable storage
that is recoverable in the most extreme circumstances.

OASIS president and CEO, Patrick Gannon, noted, "WS-ReliableMessaging
integrates with and complements the WS-Security OASIS Standard as well
as other Web services specifications. Combining these standards offers
companies many reliable, secure messaging options."

The WS-ReliableMessaging OASIS Standard was developed by
representatives of Adobe, BEA Systems, Fujitsu, Hitachi, IBM, Intel,
IONA, Microsoft, NEC, Nortel, Novell, Oracle, Progress Software, Red
Hat, SAP, Sun Microsystems, TIBCO, webMethods, and others. The
WS-ReliableMessaging OASIS Standard and the archives of the OASIS
WS-RX Technical Committee work are publicly accessible. OASIS hosts
the ws-reliablemessaging-dev mailing list for exchanging information
on implementing the standard.

Support for WS-ReliableMessaging OASIS Standard
ACORD
"On behalf of ACORD, we welcome the official release of the
WS-ReliableMessaging OASIS Standard. ACORD is committed to Web
services standards as part of its Service Oriented Architecture
strategy and has been working for several years with its members on a
profile for Web service protocols based on insurance industry use
cases. WS-ReliableMessaging is a piece of the puzzle we have been
critically expecting in support of robust message exchange, flexible
deployment of services, and mass transit on the Internet. We are
strongly encouraging the implementation of this set of protocols in
software libraries and tools, in support of Web services deployment in
the insurance industry," said Lloyd Chumbley, Assistant Vice President
of Standards, ACORD.

Adobe
"Interoperable reliable messaging is a critical component in enabling
real-world distributed Service Oriented Architectures (SOA).
WS-ReliableMessaging provides a framework for reliable and robust
exchange of business information as part of Web services and SOA,
enabling the enterprise to realize reliable integration and
collaborative business processes leveraging disparate applications,"
said Charlton Barreto, Senior Computer Scientist and Architect, Adobe
Systems.

BEA Systems
"The acceptance of WS-ReliableMessaging as an OASIS Standard
represents an important milestone in the development of reliable,
secure services that can leverage today's heterogeneous
infrastructures. Ensuring that messages are delivered, eliminating
duplicate messages, and delivering messages in the order they are sent
are fundamental capabilities for building flexible, SOA-based
applications. With the standardization of WS-ReliableMessaging, BEA
Systems plans to continue its commitment to and leadership in Web
services standards," said Gilbert Pilz, Sr. Principal Technologist,
Office of the CTO, BEA Systems, Inc.

Hitachi
"Enterprise systems are nothing if they are not reliable, and no Web
service that employed intermediaries could be reliable until now.
WS-ReliableMessaging is widely adopted. Platform users can now have
high confidence that this core functionality will be available to them
on a variety of platforms from most enterprise vendors. We thank the
committee for all of its work in resolving the many challenges that
arose in the production of this specification. Hitachi anticipates
that this result has been worth the work," said Takao Nakamura,
Executive General Manager, Software Division, Hitachi Ltd.

Microsoft
"Microsoft is pleased to see WS-ReliableMessaging 1.1 become an
approved standard. Product interoperability is increasingly important,
and we believe that the addition of reliable message exchange to the
suite of standard WS-* protocols will benefit both customers and the
industry," said Omri Gazitt, a Product Unit Manager at Microsoft.

Oracle
"Oracle is committed to driving standards that facilitate the
development of modular business services that can be easily integrated
and reused--creating flexible, adaptable IT infrastructures. The new
WS-ReliableMessaging standard will help provide an interoperable way
to guarantee message delivery to applications or Web services, which
is an essential capability for implementing Service Oriented
Architectures (SOAs)," said Don Deutsch, vice president Standards
Strategy and Architecture, Oracle.

Red Hat
"With WS-Security and WS-Transaction having been approved as OASIS
Standards, WS-ReliableMessaging is the last key component to enable
secure, reliable and transacted Web services in an interoperable
fashion. We're pleased to have been associated with such an important
standard," said Mark Little, Director of Standards for Red Hat.

Sun Microsystems
"We are pleased to have contributed to the standardization of this
much-needed software infrastructure component. Wide industry support
for the WS-ReliableMessaging 1.1 standard will lead to highly
interoperable Web Services stacks, making this technology ubiquitous
for users who require robust service-oriented applications. It will be
a welcome addition to the Web Services capabilities (JAX-WS) of Sun
Java(TM) System Application Server, Open Source Project Glassfish, and
Sun Java(TM) System SE/EE," said Thomas Kincaid, executive director,
Application Platforms, Sun Microsystems.

Additional information:
WS-ReliableMessaging 1.1 OASIS Standard:
http://www.oasis-open.org/specs/index.php#wsrx-rm1.1

OASIS WS-RX Technical Committee:
http://www.oasis-open.org/committees/ws-rx/

Cover Pages Technology Report: Reliable Messaging
http://xml.coverpages.org/reliableMessaging.html

About OASIS:

OASIS (Organization for the Advancement of Structured Information
Standards) is a not-for-profit, international consortium that drives
the development, convergence, and adoption of e-business standards.
Members themselves set the OASIS technical agenda, using a
lightweight, open process expressly designed to promote industry
consensus and unite disparate efforts. The consortium produces open
standards for Web services, security, e-business, and standardization
efforts in the public sector and for application-specific markets.
Founded in 1993, OASIS has more than 5,000 participants representing
over 600 organizations and individual members in 100 countries.
http://www.oasis-open.org

Press contact:
Carol Geyer
OASIS Director of Communications
carol.geyer@oasis-open.org
+1.978.667.5115 x209 (office)
+1.941.284.0403 (mobile)

-- 
Paul Fremantle
Co-Founder and VP of Technical Sales, WSO2
OASIS WS-RX TC Co-chair

blog: http://pzf.fremantle.org
paul@wso2.com

"Oxygenating the Web Service Platform", www.wso2.com

---------------------------------------------------------------------
To unsubscribe, e-mail: sandesha-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: sandesha-dev-help@ws.apache.org



</pre>
</div>
</content>
</entry>
<entry>
<title>Active connexion in TCPMon for TerminateSequence</title>
<author><name>Jerome Camilleri &lt;jerome.camilleri@bull.net&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/200706.mbox/%3c467A460D.2030102@bull.net%3e"/>
<id>urn:uuid:%3c467A460D-2030102@bull-net%3e</id>
<updated>2007-06-21T09:34:05Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hi,

I used TCPMon (or SOAPMonitor) to monitor my WebServices with Axis2-1.2 
and sandesha2 module activate.
All request is listed correctly and state for eatch begin to Active and 
become Completed.
Some of them stay in Active state (all Terminate Sequence in fact).
I notice that the terminateSequence request don't have any SOAP-response.

I used IN-OUT MEP synchrone.

Is it just a TCPMon effect ? or is a TCP connexion keep alive after 
eatch Terminate sequence ?
How resolved it (if necessary ?)

Regards
Jérôme

---------------------------------------------------------------------
To unsubscribe, e-mail: sandesha-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: sandesha-dev-help@ws.apache.org



</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r549404 - /webservices/sandesha/site/sandesha2/c/</title>
<author><name>damitha@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/200706.mbox/%3c20070621061507.525881A981A@eris.apache.org%3e"/>
<id>urn:uuid:%3c20070621061507-525881A981A@eris-apache-org%3e</id>
<updated>2007-06-21T06:15:06Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: damitha
Date: Wed Jun 20 23:15:05 2007
New Revision: 549404

URL: http://svn.apache.org/viewvc?view=rev&amp;rev=549404
Log:
updated the download.html

Modified:
    webservices/sandesha/site/sandesha2/c/coding_conventions.html
    webservices/sandesha/site/sandesha2/c/cvs-usage.html
    webservices/sandesha/site/sandesha2/c/dependencies.html
    webservices/sandesha/site/sandesha2/c/download.html
    webservices/sandesha/site/sandesha2/c/downloads.html
    webservices/sandesha/site/sandesha2/c/index.html
    webservices/sandesha/site/sandesha2/c/issue-tracking.html
    webservices/sandesha/site/sandesha2/c/lists_issues.html
    webservices/sandesha/site/sandesha2/c/mail-lists.html
    webservices/sandesha/site/sandesha2/c/maven-reports.html
    webservices/sandesha/site/sandesha2/c/project-info.html
    webservices/sandesha/site/sandesha2/c/svn.html
    webservices/sandesha/site/sandesha2/c/team-list.html
    webservices/sandesha/site/sandesha2/c/versioning.html

Modified: webservices/sandesha/site/sandesha2/c/coding_conventions.html
URL: http://svn.apache.org/viewvc/webservices/sandesha/site/sandesha2/c/coding_conventions.html?view=diff&amp;rev=549404&amp;r1=549403&amp;r2=549404
==============================================================================
--- webservices/sandesha/site/sandesha2/c/coding_conventions.html (original)
+++ webservices/sandesha/site/sandesha2/c/coding_conventions.html Wed Jun 20 23:15:05 2007
@@ -2,7 +2,7 @@
           @import url("./style/maven-base.css");
           
 			    @import url("./style/maven-classic.css");&lt;/style&gt;&lt;link rel="stylesheet" href="./style/print.css" type="text/css" media="print"&gt;&lt;/link&gt;&lt;meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"&gt;&lt;/meta&gt;&lt;/head&gt;&lt;body class="composite"&gt;&lt;div id="banner"&gt;&lt;a href="http://www.apache.org/" id="organizationLogo"&gt;&lt;img alt="Apache Software Foundation" src="http://www.apache.org/images/asf-logo.gif"&gt;&lt;/img&gt;&lt;/a&gt;&lt;a href="http://ws.apache.org/sandesha2/c" id="projectLogo"&gt;&lt;img alt="Apache Sandesha2/C" src="http://ws.apache.org/sandesha2/c/images/sandesha2c_logo.jpg"&gt;&lt;/img&gt;&lt;/a&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="breadcrumbs"&gt;&lt;div class="xleft"&gt;
-                	Last published: 24 May 2007
-                  | Doc for 0.90&lt;/div&gt;&lt;div class="xright"&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="leftColumn"&gt;&lt;div id="navcolumn"&gt;&lt;div id="menuApache_Sandesha2_C"&gt;&lt;h5&gt;Apache Sandesha2/C&lt;/h5&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="index.html"&gt;Apache Sandesha2/C Home&lt;/a&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="download.cgi"&gt;Download Sandesha2/C&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="download.cgi"&gt;Releases&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="docs/index.html"&gt;Documentation&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="docs/installationguide.html"&gt;Installation Guide&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="docs/sandesha2c_manual.html"&gt;Sandesha2/C manual&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="lists_issues.html"&gt;Get Involved&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="lists_issues.html"&gt;Mailing Lists &amp;amp; Issue Tracking&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="svn.html"&gt;Checkout Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="coding_conventions.html"&gt;Developer Guidelines&lt;/a&gt;&lt;ul&gt;&lt;li class="non
 e"&gt;&lt;a href="coding_conventions.html"&gt;Coding Convention&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="versioning.html"&gt;Versionning&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="team-list.html"&gt;Project Information&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="team-list.html"&gt;Project Team&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="http://svn.apache.org/repos/asf/webservices/sandesha/trunk/c" class="externalLink" title="External Link"&gt;Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy"&gt;&lt;img alt="Built by Maven" src="./images/logos/maven-button-1.png"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="bodyColumn"&gt;&lt;div class="contentBox"&gt;&lt;div class="section"&gt;&lt;a name="Sandesha2_C_Coding_Conventions"&gt;&lt;/a&gt;&lt;h2&gt;Sandesha2/C Coding Conventions&lt;/h2&gt;&lt;p&gt;Apache Sandesha2/C coding convensions are as specified in Apache Axis2/C 
+                	Last published: 21 June 2007
+                  | Doc for 0.90&lt;/div&gt;&lt;div class="xright"&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="leftColumn"&gt;&lt;div id="navcolumn"&gt;&lt;div id="menuApache_Sandesha2_C"&gt;&lt;h5&gt;Apache Sandesha2/C&lt;/h5&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="index.html"&gt;Apache Sandesha2/C Home&lt;/a&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="download.cgi"&gt;Download Sandesha2/C&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="download.cgi"&gt;Releases&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="docs/index.html"&gt;Documentation&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="docs/installationguide.html"&gt;Installation Guide&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="docs/sandesha2_manual.html"&gt;Sandesha2/C manual&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="lists_issues.html"&gt;Get Involved&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="lists_issues.html"&gt;Mailing Lists &amp;amp; Issue Tracking&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="svn.html"&gt;Checkout Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="coding_conventions.html"&gt;Developer Guidelines&lt;/a&gt;&lt;ul&gt;&lt;li class="none
 "&gt;&lt;a href="coding_conventions.html"&gt;Coding Convention&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="versioning.html"&gt;Versionning&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="team-list.html"&gt;Project Information&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="team-list.html"&gt;Project Team&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/" class="externalLink" title="External Link"&gt;Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy"&gt;&lt;img alt="Built by Maven" src="./images/logos/maven-button-1.png"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="bodyColumn"&gt;&lt;div class="contentBox"&gt;&lt;div class="section"&gt;&lt;a name="Sandesha2_C_Coding_Conventions"&gt;&lt;/a&gt;&lt;h2&gt;Sandesha2/C Coding Conventions&lt;/h2&gt;&lt;p&gt;Apache Sandesha2/C coding convensions are as specified in Apache Axis2/C 
  &lt;a href="http://ws.apache.org/axis2/c/versioning.html" class="externalLink" title="External Link"&gt;Coding Conventions&lt;/a&gt;
  &lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;div id="footer"&gt;&lt;div class="xright"&gt;Â© 2005-2007, Apache Software Foundation&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;/body&gt;&lt;/html&gt;

Modified: webservices/sandesha/site/sandesha2/c/cvs-usage.html
URL: http://svn.apache.org/viewvc/webservices/sandesha/site/sandesha2/c/cvs-usage.html?view=diff&amp;rev=549404&amp;r1=549403&amp;r2=549404
==============================================================================
--- webservices/sandesha/site/sandesha2/c/cvs-usage.html (original)
+++ webservices/sandesha/site/sandesha2/c/cvs-usage.html Wed Jun 20 23:15:05 2007
@@ -2,7 +2,7 @@
           @import url("./style/maven-base.css");
           
 			    @import url("./style/maven-classic.css");&lt;/style&gt;&lt;link rel="stylesheet" href="./style/print.css" type="text/css" media="print"&gt;&lt;/link&gt;&lt;meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"&gt;&lt;/meta&gt;&lt;/head&gt;&lt;body class="composite"&gt;&lt;div id="banner"&gt;&lt;a href="http://www.apache.org/" id="organizationLogo"&gt;&lt;img alt="Apache Software Foundation" src="http://www.apache.org/images/asf-logo.gif"&gt;&lt;/img&gt;&lt;/a&gt;&lt;a href="http://ws.apache.org/sandesha2/c" id="projectLogo"&gt;&lt;img alt="Apache Sandesha2/C" src="http://ws.apache.org/sandesha2/c/images/sandesha2c_logo.jpg"&gt;&lt;/img&gt;&lt;/a&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="breadcrumbs"&gt;&lt;div class="xleft"&gt;
-                	Last published: 24 May 2007
-                  | Doc for 0.90&lt;/div&gt;&lt;div class="xright"&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="leftColumn"&gt;&lt;div id="navcolumn"&gt;&lt;div id="menuApache_Sandesha2_C"&gt;&lt;h5&gt;Apache Sandesha2/C&lt;/h5&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="index.html"&gt;Apache Sandesha2/C Home&lt;/a&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="download.cgi"&gt;Download Sandesha2/C&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="download.cgi"&gt;Releases&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="docs/index.html"&gt;Documentation&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="docs/installationguide.html"&gt;Installation Guide&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="docs/sandesha2c_manual.html"&gt;Sandesha2/C manual&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="lists_issues.html"&gt;Get Involved&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="lists_issues.html"&gt;Mailing Lists &amp;amp; Issue Tracking&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="svn.html"&gt;Checkout Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="coding_conventions.html"&gt;Developer Guidelines&lt;/a&gt;&lt;ul&gt;&lt;li class="non
 e"&gt;&lt;a href="coding_conventions.html"&gt;Coding Convention&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="versioning.html"&gt;Versionning&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="team-list.html"&gt;Project Information&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="team-list.html"&gt;Project Team&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="http://svn.apache.org/repos/asf/webservices/sandesha/trunk/c" class="externalLink" title="External Link"&gt;Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy"&gt;&lt;img alt="Built by Maven" src="./images/logos/maven-button-1.png"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="bodyColumn"&gt;&lt;div class="contentBox"&gt;&lt;div class="section"&gt;&lt;a name="Repository"&gt;&lt;/a&gt;&lt;h2&gt;Repository&lt;/h2&gt;&lt;p&gt;
+                	Last published: 21 June 2007
+                  | Doc for 0.90&lt;/div&gt;&lt;div class="xright"&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="leftColumn"&gt;&lt;div id="navcolumn"&gt;&lt;div id="menuApache_Sandesha2_C"&gt;&lt;h5&gt;Apache Sandesha2/C&lt;/h5&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="index.html"&gt;Apache Sandesha2/C Home&lt;/a&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="download.cgi"&gt;Download Sandesha2/C&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="download.cgi"&gt;Releases&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="docs/index.html"&gt;Documentation&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="docs/installationguide.html"&gt;Installation Guide&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="docs/sandesha2_manual.html"&gt;Sandesha2/C manual&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="lists_issues.html"&gt;Get Involved&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="lists_issues.html"&gt;Mailing Lists &amp;amp; Issue Tracking&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="svn.html"&gt;Checkout Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="coding_conventions.html"&gt;Developer Guidelines&lt;/a&gt;&lt;ul&gt;&lt;li class="none
 "&gt;&lt;a href="coding_conventions.html"&gt;Coding Convention&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="versioning.html"&gt;Versionning&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="team-list.html"&gt;Project Information&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="team-list.html"&gt;Project Team&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/" class="externalLink" title="External Link"&gt;Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy"&gt;&lt;img alt="Built by Maven" src="./images/logos/maven-button-1.png"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="bodyColumn"&gt;&lt;div class="contentBox"&gt;&lt;div class="section"&gt;&lt;a name="Repository"&gt;&lt;/a&gt;&lt;h2&gt;Repository&lt;/h2&gt;&lt;p&gt;
           No SCM repository is defined.
         &lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;div id="footer"&gt;&lt;div class="xright"&gt;Â© 2005-2007, Apache Software Foundation&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;/body&gt;&lt;/html&gt;

Modified: webservices/sandesha/site/sandesha2/c/dependencies.html
URL: http://svn.apache.org/viewvc/webservices/sandesha/site/sandesha2/c/dependencies.html?view=diff&amp;rev=549404&amp;r1=549403&amp;r2=549404
==============================================================================
--- webservices/sandesha/site/sandesha2/c/dependencies.html (original)
+++ webservices/sandesha/site/sandesha2/c/dependencies.html Wed Jun 20 23:15:05 2007
@@ -2,8 +2,8 @@
           @import url("./style/maven-base.css");
           
 			    @import url("./style/maven-classic.css");&lt;/style&gt;&lt;link rel="stylesheet" href="./style/print.css" type="text/css" media="print"&gt;&lt;/link&gt;&lt;meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"&gt;&lt;/meta&gt;&lt;/head&gt;&lt;body class="composite"&gt;&lt;div id="banner"&gt;&lt;a href="http://www.apache.org/" id="organizationLogo"&gt;&lt;img alt="Apache Software Foundation" src="http://www.apache.org/images/asf-logo.gif"&gt;&lt;/img&gt;&lt;/a&gt;&lt;a href="http://ws.apache.org/sandesha2/c" id="projectLogo"&gt;&lt;img alt="Apache Sandesha2/C" src="http://ws.apache.org/sandesha2/c/images/sandesha2c_logo.jpg"&gt;&lt;/img&gt;&lt;/a&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="breadcrumbs"&gt;&lt;div class="xleft"&gt;
-                	Last published: 24 May 2007
-                  | Doc for 0.90&lt;/div&gt;&lt;div class="xright"&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="leftColumn"&gt;&lt;div id="navcolumn"&gt;&lt;div id="menuApache_Sandesha2_C"&gt;&lt;h5&gt;Apache Sandesha2/C&lt;/h5&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="index.html"&gt;Apache Sandesha2/C Home&lt;/a&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="download.cgi"&gt;Download Sandesha2/C&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="download.cgi"&gt;Releases&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="docs/index.html"&gt;Documentation&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="docs/installationguide.html"&gt;Installation Guide&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="docs/sandesha2c_manual.html"&gt;Sandesha2/C manual&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="lists_issues.html"&gt;Get Involved&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="lists_issues.html"&gt;Mailing Lists &amp;amp; Issue Tracking&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="svn.html"&gt;Checkout Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="coding_conventions.html"&gt;Developer Guidelines&lt;/a&gt;&lt;ul&gt;&lt;li class="non
 e"&gt;&lt;a href="coding_conventions.html"&gt;Coding Convention&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="versioning.html"&gt;Versionning&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="team-list.html"&gt;Project Information&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="team-list.html"&gt;Project Team&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="http://svn.apache.org/repos/asf/webservices/sandesha/trunk/c" class="externalLink" title="External Link"&gt;Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy"&gt;&lt;img alt="Built by Maven" src="./images/logos/maven-button-1.png"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="bodyColumn"&gt;&lt;div class="contentBox"&gt;&lt;div class="section"&gt;&lt;a name="Dependencies"&gt;&lt;/a&gt;&lt;h2&gt;Dependencies&lt;/h2&gt;&lt;p&gt; 
+                	Last published: 21 June 2007
+                  | Doc for 0.90&lt;/div&gt;&lt;div class="xright"&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="leftColumn"&gt;&lt;div id="navcolumn"&gt;&lt;div id="menuApache_Sandesha2_C"&gt;&lt;h5&gt;Apache Sandesha2/C&lt;/h5&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="index.html"&gt;Apache Sandesha2/C Home&lt;/a&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="download.cgi"&gt;Download Sandesha2/C&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="download.cgi"&gt;Releases&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="docs/index.html"&gt;Documentation&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="docs/installationguide.html"&gt;Installation Guide&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="docs/sandesha2_manual.html"&gt;Sandesha2/C manual&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="lists_issues.html"&gt;Get Involved&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="lists_issues.html"&gt;Mailing Lists &amp;amp; Issue Tracking&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="svn.html"&gt;Checkout Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="coding_conventions.html"&gt;Developer Guidelines&lt;/a&gt;&lt;ul&gt;&lt;li class="none
 "&gt;&lt;a href="coding_conventions.html"&gt;Coding Convention&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="versioning.html"&gt;Versionning&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="team-list.html"&gt;Project Information&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="team-list.html"&gt;Project Team&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/" class="externalLink" title="External Link"&gt;Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy"&gt;&lt;img alt="Built by Maven" src="./images/logos/maven-button-1.png"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="bodyColumn"&gt;&lt;div class="contentBox"&gt;&lt;div class="section"&gt;&lt;a name="Dependencies"&gt;&lt;/a&gt;&lt;h2&gt;Dependencies&lt;/h2&gt;&lt;p&gt; 
         There are no dependencies for this project.  It is a standalone
         application that does not depend on any other project.
       &lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;div id="footer"&gt;&lt;div class="xright"&gt;Â© 2005-2007, Apache Software Foundation&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;/body&gt;&lt;/html&gt;

Modified: webservices/sandesha/site/sandesha2/c/download.html
URL: http://svn.apache.org/viewvc/webservices/sandesha/site/sandesha2/c/download.html?view=diff&amp;rev=549404&amp;r1=549403&amp;r2=549404
==============================================================================
--- webservices/sandesha/site/sandesha2/c/download.html (original)
+++ webservices/sandesha/site/sandesha2/c/download.html Wed Jun 20 23:15:05 2007
@@ -2,30 +2,30 @@
           @import url("./style/maven-base.css");
           
 			    @import url("./style/maven-classic.css");&lt;/style&gt;&lt;link rel="stylesheet" href="./style/print.css" type="text/css" media="print"&gt;&lt;/link&gt;&lt;meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"&gt;&lt;/meta&gt;&lt;/head&gt;&lt;body class="composite"&gt;&lt;div id="banner"&gt;&lt;a href="http://www.apache.org/" id="organizationLogo"&gt;&lt;img alt="Apache Software Foundation" src="http://www.apache.org/images/asf-logo.gif"&gt;&lt;/img&gt;&lt;/a&gt;&lt;a href="http://ws.apache.org/sandesha2/c" id="projectLogo"&gt;&lt;img alt="Apache Sandesha2/C" src="http://ws.apache.org/sandesha2/c/images/sandesha2c_logo.jpg"&gt;&lt;/img&gt;&lt;/a&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="breadcrumbs"&gt;&lt;div class="xleft"&gt;
-                	Last published: 24 May 2007
-                  | Doc for 0.90&lt;/div&gt;&lt;div class="xright"&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="leftColumn"&gt;&lt;div id="navcolumn"&gt;&lt;div id="menuApache_Sandesha2_C"&gt;&lt;h5&gt;Apache Sandesha2/C&lt;/h5&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="index.html"&gt;Apache Sandesha2/C Home&lt;/a&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="download.cgi"&gt;Download Sandesha2/C&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="download.cgi"&gt;Releases&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="docs/index.html"&gt;Documentation&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="docs/installationguide.html"&gt;Installation Guide&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="docs/sandesha2c_manual.html"&gt;Sandesha2/C manual&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="lists_issues.html"&gt;Get Involved&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="lists_issues.html"&gt;Mailing Lists &amp;amp; Issue Tracking&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="svn.html"&gt;Checkout Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="coding_conventions.html"&gt;Developer Guidelines&lt;/a&gt;&lt;ul&gt;&lt;li class="non
 e"&gt;&lt;a href="coding_conventions.html"&gt;Coding Convention&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="versioning.html"&gt;Versionning&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="team-list.html"&gt;Project Information&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="team-list.html"&gt;Project Team&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="http://svn.apache.org/repos/asf/webservices/sandesha/trunk/c" class="externalLink" title="External Link"&gt;Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy"&gt;&lt;img alt="Built by Maven" src="./images/logos/maven-button-1.png"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="bodyColumn"&gt;&lt;div class="contentBox"&gt;&lt;div class="section"&gt;&lt;a name="Apache_Axis2_C_Releases"&gt;&lt;/a&gt;&lt;h2&gt;Apache Axis2/C Releases&lt;/h2&gt;&lt;div align="left"&gt;
+                	Last published: 21 June 2007
+                  | Doc for 0.90&lt;/div&gt;&lt;div class="xright"&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="leftColumn"&gt;&lt;div id="navcolumn"&gt;&lt;div id="menuApache_Sandesha2_C"&gt;&lt;h5&gt;Apache Sandesha2/C&lt;/h5&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="index.html"&gt;Apache Sandesha2/C Home&lt;/a&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="download.cgi"&gt;Download Sandesha2/C&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="download.cgi"&gt;Releases&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="docs/index.html"&gt;Documentation&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="docs/installationguide.html"&gt;Installation Guide&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="docs/sandesha2_manual.html"&gt;Sandesha2/C manual&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="lists_issues.html"&gt;Get Involved&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="lists_issues.html"&gt;Mailing Lists &amp;amp; Issue Tracking&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="svn.html"&gt;Checkout Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="coding_conventions.html"&gt;Developer Guidelines&lt;/a&gt;&lt;ul&gt;&lt;li class="none
 "&gt;&lt;a href="coding_conventions.html"&gt;Coding Convention&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="versioning.html"&gt;Versionning&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="team-list.html"&gt;Project Information&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="team-list.html"&gt;Project Team&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/" class="externalLink" title="External Link"&gt;Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy"&gt;&lt;img alt="Built by Maven" src="./images/logos/maven-button-1.png"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="bodyColumn"&gt;&lt;div class="contentBox"&gt;&lt;div class="section"&gt;&lt;a name="Apache_Axis2_C_Releases"&gt;&lt;/a&gt;&lt;h2&gt;Apache Axis2/C Releases&lt;/h2&gt;&lt;div align="left"&gt;
 &lt;p&gt;Several releases have been made in the recent past, moving towards the
 1.0.0 release. These releases are available for download as a source or
 binary. For more information on Apache software releases, please see &lt;a href="http://www.apache.org/dev/release.html" class="externalLink" title="External Link"&gt;Apache Releases FAQ&lt;/a&gt;.&lt;/p&gt;
 &lt;/div&gt;&lt;div align="center"&gt;
 &lt;table class="bodyTable"&gt;&lt;tbody&gt;
     &lt;tr class="a"&gt;&lt;td align="center" valign="middle"&gt;0.90&lt;/td&gt;&lt;td align="center"&gt;Release&lt;/td&gt;&lt;td&gt;MS Windows Distribution&lt;br&gt;&lt;/br&gt;
-        - Source Distribution &lt;a href="[preferred]/ws/sandesha2/c/0.90/sandesha2c-src-0.90.zip" class="externalLink" title="[preferred]/ws/sandesha2/c/0.90/sandesha2c-src-0.90.zip"&gt;zip&lt;/a&gt;
-        &lt;a href="[preferred]/ws/sandesha2/c/0.90/sandesha2c-src-0.90.zip.md5" class="externalLink" title="[preferred]/ws/sandesha2/c/sandesha2c-src-0.90.zip.md5"&gt;MD5&lt;/a&gt;
-        &lt;a href="[preferred]/ws/sandesha2/c/0.90/sandesha2c-src-0.90.zip.asc" class="externalLink" title="[preferred]/ws/sandesha2/c/0.90/sandesha2c-src-0.90.zip.asc"&gt;PGP&lt;/a&gt;
+        - Source Distribution &lt;a href="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-src-0.90.zip" class="externalLink" title="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-src-0.90.zip"&gt;zip&lt;/a&gt;
+        &lt;a href="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-src-0.90.zip.md5" class="externalLink" title="[preferred]/ws/sandesha/sandesha2/c/sandesha2c-src-0.90.zip.md5"&gt;MD5&lt;/a&gt;
+        &lt;a href="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-src-0.90.zip.asc" class="externalLink" title="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-src-0.90.zip.asc"&gt;PGP&lt;/a&gt;
         &lt;br&gt;&lt;/br&gt;
-        - Binary Distribution &lt;a href="[preferred]/ws/sandesha2/c/0.90/sandesha2c-bin-0.90-win32.zip" class="externalLink" title="[preferred]/ws/sandesha2/c/0.90/sandesha2c-bin-0.90-win32.zip"&gt;zip&lt;/a&gt;
-        &lt;a href="[preferred]/ws/sandesha2/c/0.90/sandesha2c-bin-0.90-win32.zip.md5" class="externalLink" title="[preferred]/ws/sandesha2/c/sandesha2c-bin-0.90-win32.zip.md5"&gt;MD5&lt;/a&gt;
-        &lt;a href="[preferred]/ws/sandesha2/c/0.90/sandesha2c-bin-0.90-win32.zip.asc" class="externalLink" title="[preferred]/ws/sandesha2/c/0.90/sandesha2c-bin-0.90-win32.zip.asc"&gt;PGP&lt;/a&gt;
+        - Binary Distribution &lt;a href="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-bin-0.90-win32.zip" class="externalLink" title="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-bin-0.90-win32.zip"&gt;zip&lt;/a&gt;
+        &lt;a href="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-bin-0.90-win32.zip.md5" class="externalLink" title="[preferred]/ws/sandesha/sandesha2/c/sandesha2c-bin-0.90-win32.zip.md5"&gt;MD5&lt;/a&gt;
+        &lt;a href="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-bin-0.90-win32.zip.asc" class="externalLink" title="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-bin-0.90-win32.zip.asc"&gt;PGP&lt;/a&gt;
         &lt;br&gt;&lt;/br&gt;
         Linux Distribution &lt;br&gt;&lt;/br&gt;
-        - Source Distribution &lt;a href="[preferred]/ws/sandesha2/c/0.90/sandesha2c-src-0.90.tar.gz" class="externalLink" title="[preferred]/ws/sandesha2/c/0.90/sandesha2c-src-0.90.tar.gz"&gt;tar.gz&lt;/a&gt;
-        &lt;a href="[preferred]/ws/sandesha2/c/0.90/sandesha2c-src-0.90.tar.gz.md5" class="externalLink" title="[preferred]/ws/sandesha2/c/0.90/sandesha2c-src-0.90.tar.gz.md5"&gt;MD5&lt;/a&gt;
-        &lt;a href="[preferred]/ws/sandesha2/c/0.90/sandesha2c-src-0.90.gz.asc" class="externalLink" title="[preferred]/ws/sandesha2/c/0.90/sandesha2c-src-0.90.tar.gz.asc"&gt;PGP&lt;/a&gt;
+        - Source Distribution &lt;a href="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-src-0.90.tar.gz" class="externalLink" title="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-src-0.90.tar.gz"&gt;tar.gz&lt;/a&gt;
+        &lt;a href="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-src-0.90.tar.gz.md5" class="externalLink" title="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-src-0.90.tar.gz.md5"&gt;MD5&lt;/a&gt;
+        &lt;a href="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-src-0.90.gz.asc" class="externalLink" title="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-src-0.90.tar.gz.asc"&gt;PGP&lt;/a&gt;
         &lt;br&gt;&lt;/br&gt;
-        - Binary Distribution &lt;a href="[preferred]/ws/sandesha2/c/0.90/sandesha2c-bin-0.90-linux.tar.gz" class="externalLink" title="[preferred]/ws/sandesha2/c/0.90/sandesha2c-bin-0.90-linux.tar.gz"&gt;tar.gz&lt;/a&gt;
-        &lt;a href="[preferred]/ws/sandesha2/c/0.90/sandesha2c-bin-0.90-linux.tar.gz.md5" class="externalLink" title="[preferred]/ws/sandesha2/c/0.90/sandesha2c-bin-0.90-linux.tar.gz.md5"&gt;MD5&lt;/a&gt;
-        &lt;a href="[preferred]/ws/sandesha2/c/0.90/sandesha2c-bin-0.90-linux.tar.gz.asc" class="externalLink" title="[preferred]/ws/sandesha2/c/0.90/sandesha2c-bin-0.90-linux.tar.gz.asc"&gt;PGP&lt;/a&gt;
+        - Binary Distribution &lt;a href="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-bin-0.90-linux.tar.gz" class="externalLink" title="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-bin-0.90-linux.tar.gz"&gt;tar.gz&lt;/a&gt;
+        &lt;a href="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-bin-0.90-linux.tar.gz.md5" class="externalLink" title="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-bin-0.90-linux.tar.gz.md5"&gt;MD5&lt;/a&gt;
+        &lt;a href="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-bin-0.90-linux.tar.gz.asc" class="externalLink" title="[preferred]/ws/sandesha/sandesha2/c/0.90/sandesha2c-bin-0.90-linux.tar.gz.asc"&gt;PGP&lt;/a&gt;
       &lt;/td&gt;&lt;td&gt;11 - 05 - 2007&lt;/td&gt;&lt;td&gt;0.90 Release&lt;/td&gt;&lt;/tr&gt;
   &lt;/tbody&gt;&lt;/table&gt;
 

Modified: webservices/sandesha/site/sandesha2/c/downloads.html
URL: http://svn.apache.org/viewvc/webservices/sandesha/site/sandesha2/c/downloads.html?view=diff&amp;rev=549404&amp;r1=549403&amp;r2=549404
==============================================================================
--- webservices/sandesha/site/sandesha2/c/downloads.html (original)
+++ webservices/sandesha/site/sandesha2/c/downloads.html Wed Jun 20 23:15:05 2007
@@ -2,6 +2,6 @@
           @import url("./style/maven-base.css");
           
 			    @import url("./style/maven-classic.css");&lt;/style&gt;&lt;link rel="stylesheet" href="./style/print.css" type="text/css" media="print"&gt;&lt;/link&gt;&lt;meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"&gt;&lt;/meta&gt;&lt;/head&gt;&lt;body class="composite"&gt;&lt;div id="banner"&gt;&lt;a href="http://www.apache.org/" id="organizationLogo"&gt;&lt;img alt="Apache Software Foundation" src="http://www.apache.org/images/asf-logo.gif"&gt;&lt;/img&gt;&lt;/a&gt;&lt;a href="http://ws.apache.org/sandesha2/c" id="projectLogo"&gt;&lt;img alt="Apache Sandesha2/C" src="http://ws.apache.org/sandesha2/c/images/sandesha2c_logo.jpg"&gt;&lt;/img&gt;&lt;/a&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="breadcrumbs"&gt;&lt;div class="xleft"&gt;
-                	Last published: 24 May 2007
-                  | Doc for 0.90&lt;/div&gt;&lt;div class="xright"&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="leftColumn"&gt;&lt;div id="navcolumn"&gt;&lt;div id="menuApache_Sandesha2_C"&gt;&lt;h5&gt;Apache Sandesha2/C&lt;/h5&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="index.html"&gt;Apache Sandesha2/C Home&lt;/a&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="download.cgi"&gt;Download Sandesha2/C&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="download.cgi"&gt;Releases&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="docs/index.html"&gt;Documentation&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="docs/installationguide.html"&gt;Installation Guide&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="docs/sandesha2c_manual.html"&gt;Sandesha2/C manual&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="lists_issues.html"&gt;Get Involved&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="lists_issues.html"&gt;Mailing Lists &amp;amp; Issue Tracking&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="svn.html"&gt;Checkout Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="coding_conventions.html"&gt;Developer Guidelines&lt;/a&gt;&lt;ul&gt;&lt;li class="non
 e"&gt;&lt;a href="coding_conventions.html"&gt;Coding Convention&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="versioning.html"&gt;Versionning&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="team-list.html"&gt;Project Information&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="team-list.html"&gt;Project Team&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="http://svn.apache.org/repos/asf/webservices/sandesha/trunk/c" class="externalLink" title="External Link"&gt;Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy"&gt;&lt;img alt="Built by Maven" src="./images/logos/maven-button-1.png"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="bodyColumn"&gt;&lt;div class="contentBox"&gt;&lt;div class="section"&gt;&lt;a name="Downloads"&gt;&lt;/a&gt;&lt;h2&gt;Downloads&lt;/h2&gt;&lt;p&gt;You must define the
+                	Last published: 21 June 2007
+                  | Doc for 0.90&lt;/div&gt;&lt;div class="xright"&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="leftColumn"&gt;&lt;div id="navcolumn"&gt;&lt;div id="menuApache_Sandesha2_C"&gt;&lt;h5&gt;Apache Sandesha2/C&lt;/h5&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="index.html"&gt;Apache Sandesha2/C Home&lt;/a&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="download.cgi"&gt;Download Sandesha2/C&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="download.cgi"&gt;Releases&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="docs/index.html"&gt;Documentation&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="docs/installationguide.html"&gt;Installation Guide&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="docs/sandesha2_manual.html"&gt;Sandesha2/C manual&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="lists_issues.html"&gt;Get Involved&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="lists_issues.html"&gt;Mailing Lists &amp;amp; Issue Tracking&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="svn.html"&gt;Checkout Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="coding_conventions.html"&gt;Developer Guidelines&lt;/a&gt;&lt;ul&gt;&lt;li class="none
 "&gt;&lt;a href="coding_conventions.html"&gt;Coding Convention&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="versioning.html"&gt;Versionning&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="team-list.html"&gt;Project Information&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="team-list.html"&gt;Project Team&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/" class="externalLink" title="External Link"&gt;Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy"&gt;&lt;img alt="Built by Maven" src="./images/logos/maven-button-1.png"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="bodyColumn"&gt;&lt;div class="contentBox"&gt;&lt;div class="section"&gt;&lt;a name="Downloads"&gt;&lt;/a&gt;&lt;h2&gt;Downloads&lt;/h2&gt;&lt;p&gt;You must define the
         &lt;code&gt;maven.xdoc.distributionUrl&lt;/code&gt;property if you wish to generate the download report.&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;div id="footer"&gt;&lt;div class="xright"&gt;Â© 2005-2007, Apache Software Foundation&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;/body&gt;&lt;/html&gt;

Modified: webservices/sandesha/site/sandesha2/c/index.html
URL: http://svn.apache.org/viewvc/webservices/sandesha/site/sandesha2/c/index.html?view=diff&amp;rev=549404&amp;r1=549403&amp;r2=549404
==============================================================================
--- webservices/sandesha/site/sandesha2/c/index.html (original)
+++ webservices/sandesha/site/sandesha2/c/index.html Wed Jun 20 23:15:05 2007
@@ -2,14 +2,24 @@
           @import url("./style/maven-base.css");
           
 			    @import url("./style/maven-classic.css");&lt;/style&gt;&lt;link rel="stylesheet" href="./style/print.css" type="text/css" media="print"&gt;&lt;/link&gt;&lt;meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"&gt;&lt;/meta&gt;&lt;/head&gt;&lt;body class="composite"&gt;&lt;div id="banner"&gt;&lt;a href="http://www.apache.org/" id="organizationLogo"&gt;&lt;img alt="Apache Software Foundation" src="http://www.apache.org/images/asf-logo.gif"&gt;&lt;/img&gt;&lt;/a&gt;&lt;a href="http://ws.apache.org/sandesha2/c" id="projectLogo"&gt;&lt;img alt="Apache Sandesha2/C" src="http://ws.apache.org/sandesha2/c/images/sandesha2c_logo.jpg"&gt;&lt;/img&gt;&lt;/a&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="breadcrumbs"&gt;&lt;div class="xleft"&gt;
-                	Last published: 24 May 2007
-                  | Doc for 0.90&lt;/div&gt;&lt;div class="xright"&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="leftColumn"&gt;&lt;div id="navcolumn"&gt;&lt;div id="menuApache_Sandesha2_C"&gt;&lt;h5&gt;Apache Sandesha2/C&lt;/h5&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="index.html"&gt;Apache Sandesha2/C Home&lt;/a&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="download.cgi"&gt;Download Sandesha2/C&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="download.cgi"&gt;Releases&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="docs/index.html"&gt;Documentation&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="docs/installationguide.html"&gt;Installation Guide&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="docs/sandesha2c_manual.html"&gt;Sandesha2/C manual&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="lists_issues.html"&gt;Get Involved&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="lists_issues.html"&gt;Mailing Lists &amp;amp; Issue Tracking&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="svn.html"&gt;Checkout Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="coding_conventions.html"&gt;Developer Guidelines&lt;/a&gt;&lt;ul&gt;&lt;li class="non
 e"&gt;&lt;a href="coding_conventions.html"&gt;Coding Convention&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="versioning.html"&gt;Versionning&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="team-list.html"&gt;Project Information&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="team-list.html"&gt;Project Team&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="http://svn.apache.org/repos/asf/webservices/sandesha/trunk/c" class="externalLink" title="External Link"&gt;Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy"&gt;&lt;img alt="Built by Maven" src="./images/logos/maven-button-1.png"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="bodyColumn"&gt;&lt;div class="contentBox"&gt;&lt;div class="section"&gt;&lt;a name="Welcome_to_Apache_Sandesha2_C"&gt;&lt;/a&gt;&lt;h2&gt;Welcome to Apache Sandesha2/C&lt;/h2&gt;&lt;p&gt; Sandesha2C is a C implementation of WS-ReliableMessaging specification published by IBM, Microsoft, BEA and TIBCO. Sandesha2C is built on top of Axis2C. Therefore by using Sandesha2C you can add reliable messaging capability to the 
 web services hosted using Axis2C. Sandesha2C can also be used with Axis2C client to interact with already hosted web services in a reliable manner.&lt;/p&gt;&lt;div class="subsection"&gt;&lt;a name="Latest_Release"&gt;&lt;/a&gt;&lt;h3&gt;Latest Release&lt;/h3&gt;&lt;/div&gt;&lt;div class="subsection"&gt;&lt;a name="25th_May_2007_-_Apache_Sandesha2_C_Version_0_90_Released"&gt;&lt;/a&gt;&lt;h3&gt;25th May 2007 - Apache Sandesha2/C Version 0.90 Released&lt;/h3&gt;&lt;p&gt;&lt;a href="download.cgi"&gt;Download 0.90&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class="subsection"&gt;&lt;a name="Key_Features"&gt;&lt;/a&gt;&lt;h3&gt;Key Features&lt;/h3&gt;&lt;ol&gt;
-    &lt;li&gt;Support for WS-ReliableMessaging in both client side and server side of Axis2C. (according   the the WS-ReliableMessaging specification February 2005 and WS-ReliableMessaging specification August 2006).&lt;/li&gt;
-    &lt;li&gt;Pluggable storage framework.&lt;/li&gt;
-    &lt;li&gt;Configurable delivery assurances. Eexactly once delivery assurance is guaranteed.&lt;/li&gt;
-    &lt;li&gt;Support for both SOAP 1.1 and 1.2.&lt;/li&gt;
-    &lt;li&gt;Client API, which provides features for both general and advance users.&lt;/li&gt;
-    &lt;li&gt;Samples to test RM scenarios.&lt;/li&gt;
-    &lt;li&gt;Interoperablity with java and .net.&lt;/li&gt;
-    &lt;li&gt;Documentation&lt;/li&gt;
-&lt;/ol&gt;&lt;/div&gt;&lt;div class="subsection"&gt;&lt;a name="Major_Changes_Since_Last_Release"&gt;&lt;/a&gt;&lt;h3&gt;Major Changes Since Last Release&lt;/h3&gt;&lt;p&gt;Apache Sandesha2/C still in the first release. &lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;div id="footer"&gt;&lt;div class="xright"&gt;Â© 2005-2007, Apache Software Foundation&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;/body&gt;&lt;/html&gt;
\ No newline at end of file
+                	Last published: 21 June 2007
+                  | Doc for 0.90&lt;/div&gt;&lt;div class="xright"&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="leftColumn"&gt;&lt;div id="navcolumn"&gt;&lt;div id="menuApache_Sandesha2_C"&gt;&lt;h5&gt;Apache Sandesha2/C&lt;/h5&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="index.html"&gt;Apache Sandesha2/C Home&lt;/a&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="download.cgi"&gt;Download Sandesha2/C&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="download.cgi"&gt;Releases&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="docs/index.html"&gt;Documentation&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="docs/installationguide.html"&gt;Installation Guide&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="docs/sandesha2_manual.html"&gt;Sandesha2/C manual&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="lists_issues.html"&gt;Get Involved&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="lists_issues.html"&gt;Mailing Lists &amp;amp; Issue Tracking&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="svn.html"&gt;Checkout Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="coding_conventions.html"&gt;Developer Guidelines&lt;/a&gt;&lt;ul&gt;&lt;li class="none
 "&gt;&lt;a href="coding_conventions.html"&gt;Coding Convention&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="versioning.html"&gt;Versionning&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="team-list.html"&gt;Project Information&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="team-list.html"&gt;Project Team&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/" class="externalLink" title="External Link"&gt;Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy"&gt;&lt;img alt="Built by Maven" src="./images/logos/maven-button-1.png"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="bodyColumn"&gt;&lt;div class="contentBox"&gt;&lt;div class="section"&gt;&lt;a name="Welcome_to_Apache_Sandesha2_C"&gt;&lt;/a&gt;&lt;h2&gt;Welcome to Apache Sandesha2/C&lt;/h2&gt;&lt;p&gt;Sandesha2/C is a C implementation of &lt;a href="http://www.oasis-open.org/committees/tc_home.php?wg_abbrev=wsrm" class="externalLink" title="External Link"&gt;WS-ReliableMessaging
+specification&lt;/a&gt; published by IBM, Microsoft, BEA and TIBCO. Sandesha2/C is
+built on top of &lt;a href="http://ws.apache.org/axis2/c/" class="externalLink" title="External Link"&gt;Apache Axis2/C Web
+services engine&lt;/a&gt;, as a &lt;a href="http://ws.apache.org/axis2/c/docs/axis2c_manual.html#engaging_module" class="externalLink" title="External Link"&gt;module&lt;/a&gt;.
+Therefore by using Sandesha2/C you can add reliable messaging capability to
+Web services hosted using Axis2/C. Sandesha2/C can also be used with Axis2/C
+client to interact with already hosted Web services in a reliable manner.&lt;/p&gt;&lt;div class="subsection"&gt;&lt;a name="Latest_Release"&gt;&lt;/a&gt;&lt;h3&gt;Latest Release&lt;/h3&gt;&lt;/div&gt;&lt;div class="subsection"&gt;&lt;a name="25th_May_2007_-_Apache_Sandesha2_C_Version_0_90_Released"&gt;&lt;/a&gt;&lt;h3&gt;25th May 2007 - Apache Sandesha2/C Version 0.90 Released&lt;/h3&gt;&lt;p&gt;&lt;a href="http://ws.apache.org/sandesha/sandesha2/c/download.cgi" class="externalLink" title="External Link"&gt;Download 0.90&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class="subsection"&gt;&lt;a name="Key_Features"&gt;&lt;/a&gt;&lt;h3&gt;Key Features&lt;/h3&gt;&lt;ol&gt;
+  &lt;li&gt;Support for WS-ReliableMessaging on both client side and server side of
+    Axis2/C. (according the the WS-ReliableMessaging specification February
+    2005 and WS-ReliableMessaging specification August 2006).&lt;/li&gt;
+  &lt;li&gt;Pluggable storage framework.&lt;/li&gt;
+  &lt;li&gt;Configurable delivery assurances. Exactly once delivery assurance is
+    guaranteed.&lt;/li&gt;
+  &lt;li&gt;Support for both SOAP 1.1 and 1.2.&lt;/li&gt;
+  &lt;li&gt;Client API, which provides features for both general and advance
+  users.&lt;/li&gt;
+  &lt;li&gt;Samples to test RM scenarios.&lt;/li&gt;
+  &lt;li&gt;Interoperability with java and .NET.&lt;/li&gt;
+  &lt;li&gt;Documentation&lt;/li&gt;
+&lt;/ol&gt;&lt;/div&gt;&lt;div class="subsection"&gt;&lt;a name="Major_Changes_Since_Last_Release"&gt;&lt;/a&gt;&lt;h3&gt;Major Changes Since Last Release&lt;/h3&gt;&lt;p&gt;Apache Sandesha2/C still in the first release.&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;div id="footer"&gt;&lt;div class="xright"&gt;Â© 2005-2007, Apache Software Foundation&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;/body&gt;&lt;/html&gt;
\ No newline at end of file

Modified: webservices/sandesha/site/sandesha2/c/issue-tracking.html
URL: http://svn.apache.org/viewvc/webservices/sandesha/site/sandesha2/c/issue-tracking.html?view=diff&amp;rev=549404&amp;r1=549403&amp;r2=549404
==============================================================================
--- webservices/sandesha/site/sandesha2/c/issue-tracking.html (original)
+++ webservices/sandesha/site/sandesha2/c/issue-tracking.html Wed Jun 20 23:15:05 2007
@@ -2,7 +2,7 @@
           @import url("./style/maven-base.css");
           
 			    @import url("./style/maven-classic.css");&lt;/style&gt;&lt;link rel="stylesheet" href="./style/print.css" type="text/css" media="print"&gt;&lt;/link&gt;&lt;meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"&gt;&lt;/meta&gt;&lt;/head&gt;&lt;body class="composite"&gt;&lt;div id="banner"&gt;&lt;a href="http://www.apache.org/" id="organizationLogo"&gt;&lt;img alt="Apache Software Foundation" src="http://www.apache.org/images/asf-logo.gif"&gt;&lt;/img&gt;&lt;/a&gt;&lt;a href="http://ws.apache.org/sandesha2/c" id="projectLogo"&gt;&lt;img alt="Apache Sandesha2/C" src="http://ws.apache.org/sandesha2/c/images/sandesha2c_logo.jpg"&gt;&lt;/img&gt;&lt;/a&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="breadcrumbs"&gt;&lt;div class="xleft"&gt;
-                	Last published: 24 May 2007
-                  | Doc for 0.90&lt;/div&gt;&lt;div class="xright"&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="leftColumn"&gt;&lt;div id="navcolumn"&gt;&lt;div id="menuApache_Sandesha2_C"&gt;&lt;h5&gt;Apache Sandesha2/C&lt;/h5&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="index.html"&gt;Apache Sandesha2/C Home&lt;/a&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="download.cgi"&gt;Download Sandesha2/C&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="download.cgi"&gt;Releases&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="docs/index.html"&gt;Documentation&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="docs/installationguide.html"&gt;Installation Guide&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="docs/sandesha2c_manual.html"&gt;Sandesha2/C manual&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="lists_issues.html"&gt;Get Involved&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="lists_issues.html"&gt;Mailing Lists &amp;amp; Issue Tracking&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="svn.html"&gt;Checkout Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="coding_conventions.html"&gt;Developer Guidelines&lt;/a&gt;&lt;ul&gt;&lt;li class="non
 e"&gt;&lt;a href="coding_conventions.html"&gt;Coding Convention&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="versioning.html"&gt;Versionning&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="team-list.html"&gt;Project Information&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="team-list.html"&gt;Project Team&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="http://svn.apache.org/repos/asf/webservices/sandesha/trunk/c" class="externalLink" title="External Link"&gt;Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy"&gt;&lt;img alt="Built by Maven" src="./images/logos/maven-button-1.png"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="bodyColumn"&gt;&lt;div class="contentBox"&gt;&lt;div class="section"&gt;&lt;a name="Issue_Tracking"&gt;&lt;/a&gt;&lt;h2&gt;Issue Tracking&lt;/h2&gt;&lt;p&gt;
+                	Last published: 21 June 2007
+                  | Doc for 0.90&lt;/div&gt;&lt;div class="xright"&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="leftColumn"&gt;&lt;div id="navcolumn"&gt;&lt;div id="menuApache_Sandesha2_C"&gt;&lt;h5&gt;Apache Sandesha2/C&lt;/h5&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="index.html"&gt;Apache Sandesha2/C Home&lt;/a&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="download.cgi"&gt;Download Sandesha2/C&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="download.cgi"&gt;Releases&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="docs/index.html"&gt;Documentation&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="docs/installationguide.html"&gt;Installation Guide&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="docs/sandesha2_manual.html"&gt;Sandesha2/C manual&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="lists_issues.html"&gt;Get Involved&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="lists_issues.html"&gt;Mailing Lists &amp;amp; Issue Tracking&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="svn.html"&gt;Checkout Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="coding_conventions.html"&gt;Developer Guidelines&lt;/a&gt;&lt;ul&gt;&lt;li class="none
 "&gt;&lt;a href="coding_conventions.html"&gt;Coding Convention&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="versioning.html"&gt;Versionning&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="team-list.html"&gt;Project Information&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="team-list.html"&gt;Project Team&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/" class="externalLink" title="External Link"&gt;Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy"&gt;&lt;img alt="Built by Maven" src="./images/logos/maven-button-1.png"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="bodyColumn"&gt;&lt;div class="contentBox"&gt;&lt;div class="section"&gt;&lt;a name="Issue_Tracking"&gt;&lt;/a&gt;&lt;h2&gt;Issue Tracking&lt;/h2&gt;&lt;p&gt;
                 &lt;a href="http://issues.apache.org/jira/browse/SANDESHA2C" class="externalLink" title="External Link"&gt;http://issues.apache.org/jira/browse/SANDESHA2C&lt;/a&gt;
       &lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;div id="footer"&gt;&lt;div class="xright"&gt;Â© 2005-2007, Apache Software Foundation&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;/body&gt;&lt;/html&gt;

Modified: webservices/sandesha/site/sandesha2/c/lists_issues.html
URL: http://svn.apache.org/viewvc/webservices/sandesha/site/sandesha2/c/lists_issues.html?view=diff&amp;rev=549404&amp;r1=549403&amp;r2=549404
==============================================================================
--- webservices/sandesha/site/sandesha2/c/lists_issues.html (original)
+++ webservices/sandesha/site/sandesha2/c/lists_issues.html Wed Jun 20 23:15:05 2007
@@ -2,8 +2,8 @@
           @import url("./style/maven-base.css");
           
 			    @import url("./style/maven-classic.css");&lt;/style&gt;&lt;link rel="stylesheet" href="./style/print.css" type="text/css" media="print"&gt;&lt;/link&gt;&lt;meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"&gt;&lt;/meta&gt;&lt;/head&gt;&lt;body class="composite"&gt;&lt;div id="banner"&gt;&lt;a href="http://www.apache.org/" id="organizationLogo"&gt;&lt;img alt="Apache Software Foundation" src="http://www.apache.org/images/asf-logo.gif"&gt;&lt;/img&gt;&lt;/a&gt;&lt;a href="http://ws.apache.org/sandesha2/c" id="projectLogo"&gt;&lt;img alt="Apache Sandesha2/C" src="http://ws.apache.org/sandesha2/c/images/sandesha2c_logo.jpg"&gt;&lt;/img&gt;&lt;/a&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="breadcrumbs"&gt;&lt;div class="xleft"&gt;
-                	Last published: 24 May 2007
-                  | Doc for 0.90&lt;/div&gt;&lt;div class="xright"&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="leftColumn"&gt;&lt;div id="navcolumn"&gt;&lt;div id="menuApache_Sandesha2_C"&gt;&lt;h5&gt;Apache Sandesha2/C&lt;/h5&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="index.html"&gt;Apache Sandesha2/C Home&lt;/a&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="download.cgi"&gt;Download Sandesha2/C&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="download.cgi"&gt;Releases&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="docs/index.html"&gt;Documentation&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="docs/installationguide.html"&gt;Installation Guide&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="docs/sandesha2c_manual.html"&gt;Sandesha2/C manual&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="lists_issues.html"&gt;Get Involved&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="lists_issues.html"&gt;Mailing Lists &amp;amp; Issue Tracking&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="svn.html"&gt;Checkout Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="coding_conventions.html"&gt;Developer Guidelines&lt;/a&gt;&lt;ul&gt;&lt;li class="non
 e"&gt;&lt;a href="coding_conventions.html"&gt;Coding Convention&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="versioning.html"&gt;Versionning&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="team-list.html"&gt;Project Information&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="team-list.html"&gt;Project Team&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="http://svn.apache.org/repos/asf/webservices/sandesha/trunk/c" class="externalLink" title="External Link"&gt;Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy"&gt;&lt;img alt="Built by Maven" src="./images/logos/maven-button-1.png"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="bodyColumn"&gt;&lt;div class="contentBox"&gt;&lt;div class="section"&gt;&lt;p&gt;&lt;a name="Mailing_Lists"&gt;&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class="section"&gt;&lt;a name="Mailing________Lists"&gt;&lt;/a&gt;&lt;h2&gt;Mailing        Lists&lt;/h2&gt;&lt;p&gt;These are the mailing lists that have been established for
+                	Last published: 21 June 2007
+                  | Doc for 0.90&lt;/div&gt;&lt;div class="xright"&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="leftColumn"&gt;&lt;div id="navcolumn"&gt;&lt;div id="menuApache_Sandesha2_C"&gt;&lt;h5&gt;Apache Sandesha2/C&lt;/h5&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="index.html"&gt;Apache Sandesha2/C Home&lt;/a&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="download.cgi"&gt;Download Sandesha2/C&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="download.cgi"&gt;Releases&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="docs/index.html"&gt;Documentation&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="docs/installationguide.html"&gt;Installation Guide&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="docs/sandesha2_manual.html"&gt;Sandesha2/C manual&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="lists_issues.html"&gt;Get Involved&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="lists_issues.html"&gt;Mailing Lists &amp;amp; Issue Tracking&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="svn.html"&gt;Checkout Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="coding_conventions.html"&gt;Developer Guidelines&lt;/a&gt;&lt;ul&gt;&lt;li class="none
 "&gt;&lt;a href="coding_conventions.html"&gt;Coding Convention&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="versioning.html"&gt;Versionning&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="team-list.html"&gt;Project Information&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="team-list.html"&gt;Project Team&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/" class="externalLink" title="External Link"&gt;Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy"&gt;&lt;img alt="Built by Maven" src="./images/logos/maven-button-1.png"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="bodyColumn"&gt;&lt;div class="contentBox"&gt;&lt;div class="section"&gt;&lt;p&gt;&lt;a name="Mailing_Lists"&gt;&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class="section"&gt;&lt;a name="Mailing________Lists"&gt;&lt;/a&gt;&lt;h2&gt;Mailing        Lists&lt;/h2&gt;&lt;p&gt;These are the mailing lists that have been established for
 	      this project.  For each list, there is a subscribe, unsubscribe,
 	      and an archive link.
       &lt;/p&gt;&lt;table class="bodyTable"&gt;&lt;thead&gt;

Modified: webservices/sandesha/site/sandesha2/c/mail-lists.html
URL: http://svn.apache.org/viewvc/webservices/sandesha/site/sandesha2/c/mail-lists.html?view=diff&amp;rev=549404&amp;r1=549403&amp;r2=549404
==============================================================================
--- webservices/sandesha/site/sandesha2/c/mail-lists.html (original)
+++ webservices/sandesha/site/sandesha2/c/mail-lists.html Wed Jun 20 23:15:05 2007
@@ -2,8 +2,8 @@
           @import url("./style/maven-base.css");
           
 			    @import url("./style/maven-classic.css");&lt;/style&gt;&lt;link rel="stylesheet" href="./style/print.css" type="text/css" media="print"&gt;&lt;/link&gt;&lt;meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"&gt;&lt;/meta&gt;&lt;/head&gt;&lt;body class="composite"&gt;&lt;div id="banner"&gt;&lt;a href="http://www.apache.org/" id="organizationLogo"&gt;&lt;img alt="Apache Software Foundation" src="http://www.apache.org/images/asf-logo.gif"&gt;&lt;/img&gt;&lt;/a&gt;&lt;a href="http://ws.apache.org/sandesha2/c" id="projectLogo"&gt;&lt;img alt="Apache Sandesha2/C" src="http://ws.apache.org/sandesha2/c/images/sandesha2c_logo.jpg"&gt;&lt;/img&gt;&lt;/a&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="breadcrumbs"&gt;&lt;div class="xleft"&gt;
-                	Last published: 24 May 2007
-                  | Doc for 0.90&lt;/div&gt;&lt;div class="xright"&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="leftColumn"&gt;&lt;div id="navcolumn"&gt;&lt;div id="menuApache_Sandesha2_C"&gt;&lt;h5&gt;Apache Sandesha2/C&lt;/h5&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="index.html"&gt;Apache Sandesha2/C Home&lt;/a&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="download.cgi"&gt;Download Sandesha2/C&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="download.cgi"&gt;Releases&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="docs/index.html"&gt;Documentation&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="docs/installationguide.html"&gt;Installation Guide&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="docs/sandesha2c_manual.html"&gt;Sandesha2/C manual&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="lists_issues.html"&gt;Get Involved&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="lists_issues.html"&gt;Mailing Lists &amp;amp; Issue Tracking&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="svn.html"&gt;Checkout Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="coding_conventions.html"&gt;Developer Guidelines&lt;/a&gt;&lt;ul&gt;&lt;li class="non
 e"&gt;&lt;a href="coding_conventions.html"&gt;Coding Convention&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="versioning.html"&gt;Versionning&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="team-list.html"&gt;Project Information&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="team-list.html"&gt;Project Team&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="http://svn.apache.org/repos/asf/webservices/sandesha/trunk/c" class="externalLink" title="External Link"&gt;Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy"&gt;&lt;img alt="Built by Maven" src="./images/logos/maven-button-1.png"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="bodyColumn"&gt;&lt;div class="contentBox"&gt;&lt;div class="section"&gt;&lt;a name="Mailing_Lists"&gt;&lt;/a&gt;&lt;h2&gt;Mailing Lists&lt;/h2&gt;&lt;p&gt; 
+                	Last published: 21 June 2007
+                  | Doc for 0.90&lt;/div&gt;&lt;div class="xright"&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="leftColumn"&gt;&lt;div id="navcolumn"&gt;&lt;div id="menuApache_Sandesha2_C"&gt;&lt;h5&gt;Apache Sandesha2/C&lt;/h5&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="index.html"&gt;Apache Sandesha2/C Home&lt;/a&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="download.cgi"&gt;Download Sandesha2/C&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="download.cgi"&gt;Releases&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="docs/index.html"&gt;Documentation&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="docs/installationguide.html"&gt;Installation Guide&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="docs/sandesha2_manual.html"&gt;Sandesha2/C manual&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="lists_issues.html"&gt;Get Involved&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="lists_issues.html"&gt;Mailing Lists &amp;amp; Issue Tracking&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="svn.html"&gt;Checkout Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="coding_conventions.html"&gt;Developer Guidelines&lt;/a&gt;&lt;ul&gt;&lt;li class="none
 "&gt;&lt;a href="coding_conventions.html"&gt;Coding Convention&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="versioning.html"&gt;Versionning&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="team-list.html"&gt;Project Information&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="team-list.html"&gt;Project Team&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/" class="externalLink" title="External Link"&gt;Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy"&gt;&lt;img alt="Built by Maven" src="./images/logos/maven-button-1.png"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="bodyColumn"&gt;&lt;div class="contentBox"&gt;&lt;div class="section"&gt;&lt;a name="Mailing_Lists"&gt;&lt;/a&gt;&lt;h2&gt;Mailing Lists&lt;/h2&gt;&lt;p&gt; 
         These are the mailing lists that have been established for this
         project.  For each list, there is a subscribe, unsubscribe, and an
         archive link.

Modified: webservices/sandesha/site/sandesha2/c/maven-reports.html
URL: http://svn.apache.org/viewvc/webservices/sandesha/site/sandesha2/c/maven-reports.html?view=diff&amp;rev=549404&amp;r1=549403&amp;r2=549404
==============================================================================
--- webservices/sandesha/site/sandesha2/c/maven-reports.html (original)
+++ webservices/sandesha/site/sandesha2/c/maven-reports.html Wed Jun 20 23:15:05 2007
@@ -2,8 +2,8 @@
           @import url("./style/maven-base.css");
           
 			    @import url("./style/maven-classic.css");&lt;/style&gt;&lt;link rel="stylesheet" href="./style/print.css" type="text/css" media="print"&gt;&lt;/link&gt;&lt;meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"&gt;&lt;/meta&gt;&lt;/head&gt;&lt;body class="composite"&gt;&lt;div id="banner"&gt;&lt;a href="http://www.apache.org/" id="organizationLogo"&gt;&lt;img alt="Apache Software Foundation" src="http://www.apache.org/images/asf-logo.gif"&gt;&lt;/img&gt;&lt;/a&gt;&lt;a href="http://ws.apache.org/sandesha2/c" id="projectLogo"&gt;&lt;img alt="Apache Sandesha2/C" src="http://ws.apache.org/sandesha2/c/images/sandesha2c_logo.jpg"&gt;&lt;/img&gt;&lt;/a&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="breadcrumbs"&gt;&lt;div class="xleft"&gt;
-                	Last published: 24 May 2007
-                  | Doc for 0.90&lt;/div&gt;&lt;div class="xright"&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="leftColumn"&gt;&lt;div id="navcolumn"&gt;&lt;div id="menuApache_Sandesha2_C"&gt;&lt;h5&gt;Apache Sandesha2/C&lt;/h5&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="index.html"&gt;Apache Sandesha2/C Home&lt;/a&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="download.cgi"&gt;Download Sandesha2/C&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="download.cgi"&gt;Releases&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="docs/index.html"&gt;Documentation&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="docs/installationguide.html"&gt;Installation Guide&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="docs/sandesha2c_manual.html"&gt;Sandesha2/C manual&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="lists_issues.html"&gt;Get Involved&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="lists_issues.html"&gt;Mailing Lists &amp;amp; Issue Tracking&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="svn.html"&gt;Checkout Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="coding_conventions.html"&gt;Developer Guidelines&lt;/a&gt;&lt;ul&gt;&lt;li class="non
 e"&gt;&lt;a href="coding_conventions.html"&gt;Coding Convention&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="versioning.html"&gt;Versionning&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="team-list.html"&gt;Project Information&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="team-list.html"&gt;Project Team&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="http://svn.apache.org/repos/asf/webservices/sandesha/trunk/c" class="externalLink" title="External Link"&gt;Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy"&gt;&lt;img alt="Built by Maven" src="./images/logos/maven-button-1.png"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="bodyColumn"&gt;&lt;div class="contentBox"&gt;&lt;div class="section"&gt;&lt;a name="Maven_Generated_Reports"&gt;&lt;/a&gt;&lt;h2&gt;Maven Generated Reports&lt;/h2&gt;&lt;p&gt;
+                	Last published: 21 June 2007
+                  | Doc for 0.90&lt;/div&gt;&lt;div class="xright"&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="leftColumn"&gt;&lt;div id="navcolumn"&gt;&lt;div id="menuApache_Sandesha2_C"&gt;&lt;h5&gt;Apache Sandesha2/C&lt;/h5&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="index.html"&gt;Apache Sandesha2/C Home&lt;/a&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="download.cgi"&gt;Download Sandesha2/C&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="download.cgi"&gt;Releases&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="docs/index.html"&gt;Documentation&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="docs/installationguide.html"&gt;Installation Guide&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="docs/sandesha2_manual.html"&gt;Sandesha2/C manual&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="lists_issues.html"&gt;Get Involved&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="lists_issues.html"&gt;Mailing Lists &amp;amp; Issue Tracking&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="svn.html"&gt;Checkout Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="coding_conventions.html"&gt;Developer Guidelines&lt;/a&gt;&lt;ul&gt;&lt;li class="none
 "&gt;&lt;a href="coding_conventions.html"&gt;Coding Convention&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="versioning.html"&gt;Versionning&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="team-list.html"&gt;Project Information&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="team-list.html"&gt;Project Team&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/" class="externalLink" title="External Link"&gt;Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy"&gt;&lt;img alt="Built by Maven" src="./images/logos/maven-button-1.png"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="bodyColumn"&gt;&lt;div class="contentBox"&gt;&lt;div class="section"&gt;&lt;a name="Maven_Generated_Reports"&gt;&lt;/a&gt;&lt;h2&gt;Maven Generated Reports&lt;/h2&gt;&lt;p&gt;
         This document provides an overview of the various reports that
         are automatically generated by 
         &lt;a href="http://maven.apache.org/" class="externalLink" title="External Link"&gt;Maven&lt;/a&gt;.

Modified: webservices/sandesha/site/sandesha2/c/project-info.html
URL: http://svn.apache.org/viewvc/webservices/sandesha/site/sandesha2/c/project-info.html?view=diff&amp;rev=549404&amp;r1=549403&amp;r2=549404
==============================================================================
--- webservices/sandesha/site/sandesha2/c/project-info.html (original)
+++ webservices/sandesha/site/sandesha2/c/project-info.html Wed Jun 20 23:15:05 2007
@@ -2,8 +2,8 @@
           @import url("./style/maven-base.css");
           
 			    @import url("./style/maven-classic.css");&lt;/style&gt;&lt;link rel="stylesheet" href="./style/print.css" type="text/css" media="print"&gt;&lt;/link&gt;&lt;meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"&gt;&lt;/meta&gt;&lt;/head&gt;&lt;body class="composite"&gt;&lt;div id="banner"&gt;&lt;a href="http://www.apache.org/" id="organizationLogo"&gt;&lt;img alt="Apache Software Foundation" src="http://www.apache.org/images/asf-logo.gif"&gt;&lt;/img&gt;&lt;/a&gt;&lt;a href="http://ws.apache.org/sandesha2/c" id="projectLogo"&gt;&lt;img alt="Apache Sandesha2/C" src="http://ws.apache.org/sandesha2/c/images/sandesha2c_logo.jpg"&gt;&lt;/img&gt;&lt;/a&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="breadcrumbs"&gt;&lt;div class="xleft"&gt;
-                	Last published: 24 May 2007
-                  | Doc for 0.90&lt;/div&gt;&lt;div class="xright"&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="leftColumn"&gt;&lt;div id="navcolumn"&gt;&lt;div id="menuApache_Sandesha2_C"&gt;&lt;h5&gt;Apache Sandesha2/C&lt;/h5&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="index.html"&gt;Apache Sandesha2/C Home&lt;/a&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="download.cgi"&gt;Download Sandesha2/C&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="download.cgi"&gt;Releases&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="docs/index.html"&gt;Documentation&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="docs/installationguide.html"&gt;Installation Guide&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="docs/sandesha2c_manual.html"&gt;Sandesha2/C manual&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="lists_issues.html"&gt;Get Involved&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="lists_issues.html"&gt;Mailing Lists &amp;amp; Issue Tracking&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="svn.html"&gt;Checkout Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="coding_conventions.html"&gt;Developer Guidelines&lt;/a&gt;&lt;ul&gt;&lt;li class="non
 e"&gt;&lt;a href="coding_conventions.html"&gt;Coding Convention&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="versioning.html"&gt;Versionning&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="team-list.html"&gt;Project Information&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="team-list.html"&gt;Project Team&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="http://svn.apache.org/repos/asf/webservices/sandesha/trunk/c" class="externalLink" title="External Link"&gt;Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy"&gt;&lt;img alt="Built by Maven" src="./images/logos/maven-button-1.png"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="bodyColumn"&gt;&lt;div class="contentBox"&gt;&lt;div class="section"&gt;&lt;a name="General_Project_Information"&gt;&lt;/a&gt;&lt;h2&gt;General Project Information&lt;/h2&gt;&lt;p&gt;
+                	Last published: 21 June 2007
+                  | Doc for 0.90&lt;/div&gt;&lt;div class="xright"&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="leftColumn"&gt;&lt;div id="navcolumn"&gt;&lt;div id="menuApache_Sandesha2_C"&gt;&lt;h5&gt;Apache Sandesha2/C&lt;/h5&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="index.html"&gt;Apache Sandesha2/C Home&lt;/a&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="download.cgi"&gt;Download Sandesha2/C&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="download.cgi"&gt;Releases&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="docs/index.html"&gt;Documentation&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="docs/installationguide.html"&gt;Installation Guide&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="docs/sandesha2_manual.html"&gt;Sandesha2/C manual&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="lists_issues.html"&gt;Get Involved&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="lists_issues.html"&gt;Mailing Lists &amp;amp; Issue Tracking&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="svn.html"&gt;Checkout Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="coding_conventions.html"&gt;Developer Guidelines&lt;/a&gt;&lt;ul&gt;&lt;li class="none
 "&gt;&lt;a href="coding_conventions.html"&gt;Coding Convention&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="versioning.html"&gt;Versionning&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="team-list.html"&gt;Project Information&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="team-list.html"&gt;Project Team&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/" class="externalLink" title="External Link"&gt;Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy"&gt;&lt;img alt="Built by Maven" src="./images/logos/maven-button-1.png"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="bodyColumn"&gt;&lt;div class="contentBox"&gt;&lt;div class="section"&gt;&lt;a name="General_Project_Information"&gt;&lt;/a&gt;&lt;h2&gt;General Project Information&lt;/h2&gt;&lt;p&gt;
         This document provides an overview of the various documents and
         links that are part of this project's general information.  All
         of this content is automatically generated by 

Modified: webservices/sandesha/site/sandesha2/c/svn.html
URL: http://svn.apache.org/viewvc/webservices/sandesha/site/sandesha2/c/svn.html?view=diff&amp;rev=549404&amp;r1=549403&amp;r2=549404
==============================================================================
--- webservices/sandesha/site/sandesha2/c/svn.html (original)
+++ webservices/sandesha/site/sandesha2/c/svn.html Wed Jun 20 23:15:05 2007
@@ -2,8 +2,8 @@
           @import url("./style/maven-base.css");
           
 			    @import url("./style/maven-classic.css");&lt;/style&gt;&lt;link rel="stylesheet" href="./style/print.css" type="text/css" media="print"&gt;&lt;/link&gt;&lt;meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"&gt;&lt;/meta&gt;&lt;/head&gt;&lt;body class="composite"&gt;&lt;div id="banner"&gt;&lt;a href="http://www.apache.org/" id="organizationLogo"&gt;&lt;img alt="Apache Software Foundation" src="http://www.apache.org/images/asf-logo.gif"&gt;&lt;/img&gt;&lt;/a&gt;&lt;a href="http://ws.apache.org/sandesha2/c" id="projectLogo"&gt;&lt;img alt="Apache Sandesha2/C" src="http://ws.apache.org/sandesha2/c/images/sandesha2c_logo.jpg"&gt;&lt;/img&gt;&lt;/a&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="breadcrumbs"&gt;&lt;div class="xleft"&gt;
-                	Last published: 24 May 2007
-                  | Doc for 0.90&lt;/div&gt;&lt;div class="xright"&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="leftColumn"&gt;&lt;div id="navcolumn"&gt;&lt;div id="menuApache_Sandesha2_C"&gt;&lt;h5&gt;Apache Sandesha2/C&lt;/h5&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="index.html"&gt;Apache Sandesha2/C Home&lt;/a&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="download.cgi"&gt;Download Sandesha2/C&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="download.cgi"&gt;Releases&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="docs/index.html"&gt;Documentation&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="docs/installationguide.html"&gt;Installation Guide&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="docs/sandesha2c_manual.html"&gt;Sandesha2/C manual&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="lists_issues.html"&gt;Get Involved&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="lists_issues.html"&gt;Mailing Lists &amp;amp; Issue Tracking&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="svn.html"&gt;Checkout Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="coding_conventions.html"&gt;Developer Guidelines&lt;/a&gt;&lt;ul&gt;&lt;li class="non
 e"&gt;&lt;a href="coding_conventions.html"&gt;Coding Convention&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="versioning.html"&gt;Versionning&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="team-list.html"&gt;Project Information&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="team-list.html"&gt;Project Team&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="http://svn.apache.org/repos/asf/webservices/sandesha/trunk/c" class="externalLink" title="External Link"&gt;Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy"&gt;&lt;img alt="Built by Maven" src="./images/logos/maven-button-1.png"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="bodyColumn"&gt;&lt;div class="contentBox"&gt;&lt;div class="section"&gt;&lt;a name="Developing_Apache_Sandesha2_C"&gt;&lt;/a&gt;&lt;h2&gt;Developing Apache Sandesha2/C&lt;/h2&gt;&lt;p&gt;This document provides information on how to use SVN to get an SVN
+                	Last published: 21 June 2007
+                  | Doc for 0.90&lt;/div&gt;&lt;div class="xright"&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="leftColumn"&gt;&lt;div id="navcolumn"&gt;&lt;div id="menuApache_Sandesha2_C"&gt;&lt;h5&gt;Apache Sandesha2/C&lt;/h5&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="index.html"&gt;Apache Sandesha2/C Home&lt;/a&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="download.cgi"&gt;Download Sandesha2/C&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="download.cgi"&gt;Releases&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="docs/index.html"&gt;Documentation&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="docs/installationguide.html"&gt;Installation Guide&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="docs/sandesha2_manual.html"&gt;Sandesha2/C manual&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="lists_issues.html"&gt;Get Involved&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="lists_issues.html"&gt;Mailing Lists &amp;amp; Issue Tracking&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="svn.html"&gt;Checkout Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="coding_conventions.html"&gt;Developer Guidelines&lt;/a&gt;&lt;ul&gt;&lt;li class="none
 "&gt;&lt;a href="coding_conventions.html"&gt;Coding Convention&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="versioning.html"&gt;Versionning&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="team-list.html"&gt;Project Information&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="team-list.html"&gt;Project Team&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/" class="externalLink" title="External Link"&gt;Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy"&gt;&lt;img alt="Built by Maven" src="./images/logos/maven-button-1.png"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="bodyColumn"&gt;&lt;div class="contentBox"&gt;&lt;div class="section"&gt;&lt;a name="Developing_Apache_Sandesha2_C"&gt;&lt;/a&gt;&lt;h2&gt;Developing Apache Sandesha2/C&lt;/h2&gt;&lt;p&gt;This document provides information on how to use SVN to get an SVN
 checkout/update and make commits to the source repository.&lt;/p&gt;&lt;div class="subsection"&gt;&lt;a name="Contents"&gt;&lt;/a&gt;&lt;h3&gt;Contents&lt;/h3&gt;&lt;ul&gt;
   &lt;li&gt;&lt;a href="#svn"&gt;Working with Subversion (SVN)&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href="#checkout"&gt;Checking-out Sandesha2 from Subversion&lt;/a&gt;&lt;/li&gt;

Modified: webservices/sandesha/site/sandesha2/c/team-list.html
URL: http://svn.apache.org/viewvc/webservices/sandesha/site/sandesha2/c/team-list.html?view=diff&amp;rev=549404&amp;r1=549403&amp;r2=549404
==============================================================================
--- webservices/sandesha/site/sandesha2/c/team-list.html (original)
+++ webservices/sandesha/site/sandesha2/c/team-list.html Wed Jun 20 23:15:05 2007
@@ -14,10 +14,10 @@
           }
   	
   	  function init() {
-	    	       	         	               	       	         	                     }
+	    	       	         	               	       	         	               	       	         	               	       	         	               	       	         	               	       	         	                     }
     &lt;/script&gt;&lt;/head&gt;&lt;body class="composite" onload="init();"&gt;&lt;div id="banner"&gt;&lt;a href="http://www.apache.org/" id="organizationLogo"&gt;&lt;img alt="Apache Software Foundation" src="http://www.apache.org/images/asf-logo.gif"&gt;&lt;/img&gt;&lt;/a&gt;&lt;a href="http://ws.apache.org/sandesha2/c" id="projectLogo"&gt;&lt;img alt="Apache Sandesha2/C" src="http://ws.apache.org/sandesha2/c/images/sandesha2c_logo.jpg"&gt;&lt;/img&gt;&lt;/a&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="breadcrumbs"&gt;&lt;div class="xleft"&gt;
-                	Last published: 24 May 2007
-                  | Doc for 0.90&lt;/div&gt;&lt;div class="xright"&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="leftColumn"&gt;&lt;div id="navcolumn"&gt;&lt;div id="menuApache_Sandesha2_C"&gt;&lt;h5&gt;Apache Sandesha2/C&lt;/h5&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="index.html"&gt;Apache Sandesha2/C Home&lt;/a&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="download.cgi"&gt;Download Sandesha2/C&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="download.cgi"&gt;Releases&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="docs/index.html"&gt;Documentation&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="docs/installationguide.html"&gt;Installation Guide&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="docs/sandesha2c_manual.html"&gt;Sandesha2/C manual&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="lists_issues.html"&gt;Get Involved&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="lists_issues.html"&gt;Mailing Lists &amp;amp; Issue Tracking&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="svn.html"&gt;Checkout Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="coding_conventions.html"&gt;Developer Guidelines&lt;/a&gt;&lt;ul&gt;&lt;li class="non
 e"&gt;&lt;a href="coding_conventions.html"&gt;Coding Convention&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="versioning.html"&gt;Versionning&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="team-list.html"&gt;Project Information&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="team-list.html"&gt;Project Team&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="http://svn.apache.org/repos/asf/webservices/sandesha/trunk/c" class="externalLink" title="External Link"&gt;Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy"&gt;&lt;img alt="Built by Maven" src="./images/logos/maven-button-1.png"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="bodyColumn"&gt;&lt;div class="contentBox"&gt;&lt;div class="section"&gt;&lt;a name="The_Team"&gt;&lt;/a&gt;&lt;h2&gt;The Team&lt;/h2&gt;&lt;p&gt;
+                	Last published: 21 June 2007
+                  | Doc for 0.90&lt;/div&gt;&lt;div class="xright"&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="leftColumn"&gt;&lt;div id="navcolumn"&gt;&lt;div id="menuApache_Sandesha2_C"&gt;&lt;h5&gt;Apache Sandesha2/C&lt;/h5&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="index.html"&gt;Apache Sandesha2/C Home&lt;/a&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="download.cgi"&gt;Download Sandesha2/C&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="download.cgi"&gt;Releases&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="docs/index.html"&gt;Documentation&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="docs/installationguide.html"&gt;Installation Guide&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="docs/sandesha2_manual.html"&gt;Sandesha2/C manual&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="lists_issues.html"&gt;Get Involved&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="lists_issues.html"&gt;Mailing Lists &amp;amp; Issue Tracking&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="svn.html"&gt;Checkout Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="coding_conventions.html"&gt;Developer Guidelines&lt;/a&gt;&lt;ul&gt;&lt;li class="none
 "&gt;&lt;a href="coding_conventions.html"&gt;Coding Convention&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="versioning.html"&gt;Versionning&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="team-list.html"&gt;Project Information&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="team-list.html"&gt;Project Team&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/" class="externalLink" title="External Link"&gt;Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy"&gt;&lt;img alt="Built by Maven" src="./images/logos/maven-button-1.png"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="bodyColumn"&gt;&lt;div class="contentBox"&gt;&lt;div class="section"&gt;&lt;a name="The_Team"&gt;&lt;/a&gt;&lt;h2&gt;The Team&lt;/h2&gt;&lt;p&gt;
         A successful project requires many people to play many roles.
         Some members write code or documentation, while others are
         valuable as testers, submitting patches and suggestions.
@@ -36,10 +36,18 @@
       &lt;/p&gt;&lt;table class="bodyTable"&gt;&lt;thead&gt;
         &lt;tr class="b"&gt;&lt;th&gt;Name&lt;/th&gt;&lt;th&gt;Id&lt;/th&gt;&lt;th&gt;Email&lt;/th&gt;&lt;th&gt;Organization&lt;/th&gt;&lt;th&gt;Roles&lt;/th&gt;&lt;th&gt;TZ Offset&lt;/th&gt;&lt;th&gt;Time&lt;/th&gt;&lt;/tr&gt;
         &lt;/thead&gt;&lt;tbody&gt;
+                &lt;tr class="a"&gt;&lt;td&gt;Samisa Abeysinghe&lt;/td&gt;&lt;td&gt;&lt;a name="samisa"&gt;&lt;/a&gt;samisa&lt;/td&gt;&lt;td&gt;&lt;a href="mailto:samisa AT wso2.com"&gt;samisa AT wso2.com&lt;/a&gt;&lt;/td&gt;&lt;td&gt;WSO2&lt;/td&gt;&lt;td&gt;
+                    &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td&gt;&lt;span id="developer-samisa"&gt;Unknown&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
+                &lt;tr class="b"&gt;&lt;td&gt;Dushshantha Chandradasa&lt;/td&gt;&lt;td&gt;&lt;a name="dushshantha"&gt;&lt;/a&gt;dushshantha&lt;/td&gt;&lt;td&gt;&lt;a href="mailto:dushshantha AT wso2.com"&gt;dushshantha AT wso2.com&lt;/a&gt;&lt;/td&gt;&lt;td&gt;WSO2&lt;/td&gt;&lt;td&gt;
+                    &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td&gt;&lt;span id="developer-dushshantha"&gt;Unknown&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
                 &lt;tr class="a"&gt;&lt;td&gt;Sahan Gamage&lt;/td&gt;&lt;td&gt;&lt;a name="sahan"&gt;&lt;/a&gt;sahan&lt;/td&gt;&lt;td&gt;&lt;a href="mailto:sahans AT gmail.com"&gt;sahans AT gmail.com&lt;/a&gt;&lt;/td&gt;&lt;td&gt;Purdue University&lt;/td&gt;&lt;td&gt;
                     &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td&gt;&lt;span id="developer-sahan"&gt;Unknown&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
                 &lt;tr class="b"&gt;&lt;td&gt;Damitha Kumarage&lt;/td&gt;&lt;td&gt;&lt;a name="damitha"&gt;&lt;/a&gt;damitha&lt;/td&gt;&lt;td&gt;&lt;a href="mailto:damitha AT wso2.com"&gt;damitha AT wso2.com&lt;/a&gt;&lt;/td&gt;&lt;td&gt;WSO2&lt;/td&gt;&lt;td&gt;
                     &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td&gt;&lt;span id="developer-damitha"&gt;Unknown&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
+                &lt;tr class="a"&gt;&lt;td&gt;Nandika Jayawardana&lt;/td&gt;&lt;td&gt;&lt;a name="nandika"&gt;&lt;/a&gt;nandika&lt;/td&gt;&lt;td&gt;&lt;a href="mailto:nandika AT wso2.com"&gt;nandika AT wso2.com&lt;/a&gt;&lt;/td&gt;&lt;td&gt;WSO2&lt;/td&gt;&lt;td&gt;
+                    &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td&gt;&lt;span id="developer-nandika"&gt;Unknown&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
+                &lt;tr class="b"&gt;&lt;td&gt;Sanjaya Rathnaweera&lt;/td&gt;&lt;td&gt;&lt;a name="pini"&gt;&lt;/a&gt;pini&lt;/td&gt;&lt;td&gt;&lt;a href="mailto:sanjaya AT wso2.com"&gt;sanjaya AT wso2.com&lt;/a&gt;&lt;/td&gt;&lt;td&gt;WSO2&lt;/td&gt;&lt;td&gt;
+                    &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td&gt;&lt;span id="developer-pini"&gt;Unknown&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
                 &lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class="subsection"&gt;&lt;a name="Contributors"&gt;&lt;/a&gt;&lt;h3&gt;Contributors&lt;/h3&gt;&lt;p&gt;
         The following additional people have contributed to this project
         through the way of suggestions, patches or documentation.

Modified: webservices/sandesha/site/sandesha2/c/versioning.html
URL: http://svn.apache.org/viewvc/webservices/sandesha/site/sandesha2/c/versioning.html?view=diff&amp;rev=549404&amp;r1=549403&amp;r2=549404
==============================================================================
--- webservices/sandesha/site/sandesha2/c/versioning.html (original)
+++ webservices/sandesha/site/sandesha2/c/versioning.html Wed Jun 20 23:15:05 2007
@@ -2,7 +2,7 @@
           @import url("./style/maven-base.css");
           
 			    @import url("./style/maven-classic.css");&lt;/style&gt;&lt;link rel="stylesheet" href="./style/print.css" type="text/css" media="print"&gt;&lt;/link&gt;&lt;meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"&gt;&lt;/meta&gt;&lt;/head&gt;&lt;body class="composite"&gt;&lt;div id="banner"&gt;&lt;a href="http://www.apache.org/" id="organizationLogo"&gt;&lt;img alt="Apache Software Foundation" src="http://www.apache.org/images/asf-logo.gif"&gt;&lt;/img&gt;&lt;/a&gt;&lt;a href="http://ws.apache.org/sandesha2/c" id="projectLogo"&gt;&lt;img alt="Apache Sandesha2/C" src="http://ws.apache.org/sandesha2/c/images/sandesha2c_logo.jpg"&gt;&lt;/img&gt;&lt;/a&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="breadcrumbs"&gt;&lt;div class="xleft"&gt;
-                	Last published: 24 May 2007
-                  | Doc for 0.90&lt;/div&gt;&lt;div class="xright"&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="leftColumn"&gt;&lt;div id="navcolumn"&gt;&lt;div id="menuApache_Sandesha2_C"&gt;&lt;h5&gt;Apache Sandesha2/C&lt;/h5&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="index.html"&gt;Apache Sandesha2/C Home&lt;/a&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="download.cgi"&gt;Download Sandesha2/C&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="download.cgi"&gt;Releases&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="docs/index.html"&gt;Documentation&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="docs/installationguide.html"&gt;Installation Guide&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="docs/sandesha2c_manual.html"&gt;Sandesha2/C manual&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="lists_issues.html"&gt;Get Involved&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="lists_issues.html"&gt;Mailing Lists &amp;amp; Issue Tracking&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="svn.html"&gt;Checkout Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="coding_conventions.html"&gt;Developer Guidelines&lt;/a&gt;&lt;ul&gt;&lt;li class="non
 e"&gt;&lt;a href="coding_conventions.html"&gt;Coding Convention&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="versioning.html"&gt;Versionning&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="team-list.html"&gt;Project Information&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="team-list.html"&gt;Project Team&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="http://svn.apache.org/repos/asf/webservices/sandesha/trunk/c" class="externalLink" title="External Link"&gt;Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy"&gt;&lt;img alt="Built by Maven" src="./images/logos/maven-button-1.png"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="bodyColumn"&gt;&lt;div class="contentBox"&gt;&lt;div class="section"&gt;&lt;a name="Versioning_of_Apache_Sandesha2_C"&gt;&lt;/a&gt;&lt;h2&gt;Versioning of Apache Sandesha2/C&lt;/h2&gt;&lt;p&gt;Apache Sandesha2/C versioning guide lines as specified in Apache Axis2/C
+                	Last published: 21 June 2007
+                  | Doc for 0.90&lt;/div&gt;&lt;div class="xright"&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="leftColumn"&gt;&lt;div id="navcolumn"&gt;&lt;div id="menuApache_Sandesha2_C"&gt;&lt;h5&gt;Apache Sandesha2/C&lt;/h5&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="index.html"&gt;Apache Sandesha2/C Home&lt;/a&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="download.cgi"&gt;Download Sandesha2/C&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="download.cgi"&gt;Releases&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="docs/index.html"&gt;Documentation&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="docs/installationguide.html"&gt;Installation Guide&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="docs/sandesha2_manual.html"&gt;Sandesha2/C manual&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="lists_issues.html"&gt;Get Involved&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="lists_issues.html"&gt;Mailing Lists &amp;amp; Issue Tracking&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="svn.html"&gt;Checkout Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="coding_conventions.html"&gt;Developer Guidelines&lt;/a&gt;&lt;ul&gt;&lt;li class="none
 "&gt;&lt;a href="coding_conventions.html"&gt;Coding Convention&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="versioning.html"&gt;Versionning&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class="expanded"&gt;&lt;a href="team-list.html"&gt;Project Information&lt;/a&gt;&lt;ul&gt;&lt;li class="none"&gt;&lt;a href="team-list.html"&gt;Project Team&lt;/a&gt;&lt;/li&gt;&lt;li class="none"&gt;&lt;a href="http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/" class="externalLink" title="External Link"&gt;Source Code&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy"&gt;&lt;img alt="Built by Maven" src="./images/logos/maven-button-1.png"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="bodyColumn"&gt;&lt;div class="contentBox"&gt;&lt;div class="section"&gt;&lt;a name="Versioning_of_Apache_Sandesha2_C"&gt;&lt;/a&gt;&lt;h2&gt;Versioning of Apache Sandesha2/C&lt;/h2&gt;&lt;p&gt;Apache Sandesha2/C versioning guide lines as specified in Apache Axis2/C
 &lt;a href="http://ws.apache.org/axis2/c/versioning.html" class="externalLink" title="External Link"&gt;http://ws.apache.org/axis2/c/versioning.html &lt;/a&gt;
 &lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;div id="footer"&gt;&lt;div class="xright"&gt;Â© 2005-2007, Apache Software Foundation&lt;/div&gt;&lt;div class="clear"&gt;&lt;hr&gt;&lt;/hr&gt;&lt;/div&gt;&lt;/div&gt;&lt;/body&gt;&lt;/html&gt;



---------------------------------------------------------------------
To unsubscribe, e-mail: sandesha-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: sandesha-dev-help@ws.apache.org



</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r549394 - /webservices/sandesha/trunk/c/NEWS</title>
<author><name>damitha@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/200706.mbox/%3c20070621055711.29B4D1A981A@eris.apache.org%3e"/>
<id>urn:uuid:%3c20070621055711-29B4D1A981A@eris-apache-org%3e</id>
<updated>2007-06-21T05:57:11Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: damitha
Date: Wed Jun 20 22:57:10 2007
New Revision: 549394

URL: http://svn.apache.org/viewvc?view=rev&amp;rev=549394
Log:
updated NEWS

Modified:
    webservices/sandesha/trunk/c/NEWS

Modified: webservices/sandesha/trunk/c/NEWS
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/NEWS?view=diff&amp;rev=549394&amp;r1=549393&amp;r2=549394
==============================================================================
--- webservices/sandesha/trunk/c/NEWS (original)
+++ webservices/sandesha/trunk/c/NEWS Wed Jun 20 22:57:10 2007
@@ -1,6 +1,6 @@
 Apache Sandesha2/C Team is pleased to announce the release of Apache Sandesha2/C version
0.90
 You can download this release from
-http://ws.apache.org/sandesha2/c/download.cgi
+http://ws.apache.org/sandesha/sandesha2/c/download.cgi
 This release is supposed to be used with the Axis2C 1.0.0 distribution which is released
recently.
 
 Key Features:



---------------------------------------------------------------------
To unsubscribe, e-mail: sandesha-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: sandesha-dev-help@ws.apache.org



</pre>
</div>
</content>
</entry>
<entry>
<title>Re: [VOTE] Hannes and Georg as committers</title>
<author><name>Sanjiva Weerawarana &lt;sanjiva@opensource.lk&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/200706.mbox/%3c4679D3F1.5040908@opensource.lk%3e"/>
<id>urn:uuid:%3c4679D3F1-5040908@opensource-lk%3e</id>
<updated>2007-06-21T01:27:13Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
+1; welcome!

Sanjiva.

Dasarath Weeratunge wrote:
&gt; Hannes Erven (hannes@erven.at) and Georg Hicker (georg.hicker@reflex.at)
&gt; contributed the ws-ba implementation of Kandula-1 as part of their studies
&gt; at Vienna University of Technology. This work result in a paper at recent 
&gt; ICWS '07 (http://ws.apache.org/kandula/1/publications.html). Bulk of the new 
&gt; code has been integrated into the existing Kandula-1 source tree under
&gt; org.apache.kandula.coordinator.ba.*. Relavent documentation can be found on the
&gt; Kandula-1 website (http://ws.apache.org/kandula/1/ws-ba--how_to_use.html)
&gt; For mail archives, please follow the thread: http://mail-
&gt; archives.apache.org/mod_mbox/ws-kandula-dev/200705.mbox/%
&gt; 3c1179799398.46524f66c5501@webmail.purdue.edu%3e
&gt; 
&gt; --dasarath
&gt; 
&gt; ---------------------------------------------------------------------
&gt; To unsubscribe, e-mail: kandula-dev-unsubscribe@ws.apache.org
&gt; For additional commands, e-mail: kandula-dev-help@ws.apache.org
&gt; 
&gt; 

-- 
Sanjiva Weerawarana, Ph.D.
Founder &amp; Director; Lanka Software Foundation; http://www.opensource.lk/
Founder, Chairman &amp; CEO; WSO2, Inc.; http://www.wso2.com/
Director; Open Source Initiative; http://www.opensource.org/
Member; Apache Software Foundation; http://www.apache.org/
Visiting Lecturer; University of Moratuwa; http://www.cse.mrt.ac.lk/

---------------------------------------------------------------------
To unsubscribe, e-mail: kandula-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: kandula-dev-help@ws.apache.org



</pre>
</div>
</content>
</entry>
<entry>
<title>Re: Kandula binaries ...</title>
<author><name>&quot;Thilina Gunarathne&quot; &lt;csethil@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/200706.mbox/%3ce9115cfd0706201038i7b6250ear6ff28e0b6cc7295e@mail.gmail.com%3e"/>
<id>urn:uuid:%3ce9115cfd0706201038i7b6250ear6ff28e0b6cc7295e@mail-gmail-com%3e</id>
<updated>2007-06-20T17:38:25Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hi Sumukh,
Kandula2 does not provide binaries at the moment.. You can checkout
the source for Kandula2 using a svn client from the following URL..
http://svn.apache.org/repos/asf/webservices/kandula/trunk/java/

Then you can use maven[1] to build the binaries of kandula2... Issuing
"maven" command in the above checkout dir will build kandula2 for
you..

A good guide for the above process can be found at
http://ws.apache.org/axis2/svn.html

Thanks,
Thilina

[1] http://maven.apache.org/maven-1.x/

On 6/20/07, Sumukh.Keni@iflexsolutions.com
&lt;Sumukh.Keni@iflexsolutions.com&gt; wrote:
&gt;
&gt;
&gt;
&gt;
&gt; Hi All,
&gt;
&gt;
&gt;
&gt; Request you to direct me to a url where we can download source and binaries
&gt; of the kandula project for use with apache axis 2.1.2.  Thanks.
&gt;
&gt;
&gt;
&gt; Regards,
&gt;
&gt; Sumukh
&gt;
&gt;
&gt;
&gt;
&gt;
&gt; DISCLAIMER:
&gt; This message contains privileged and confidential information and is
&gt; intended only for an individual named. If you are not the intended
&gt; recipient, you should not disseminate, distribute, store, print, copy or
&gt; deliver this message. Please notify the sender immediately by e-mail if you
&gt; have received this e-mail by mistake and delete this e-mail from your
&gt; system. E-mail transmission cannot be guaranteed to be secure or error-free
&gt; as information could be intercepted, corrupted, lost, destroyed, arrive late
&gt; or incomplete or contain viruses. The sender, therefore, does not accept
&gt; liability for any errors or omissions in the contents of this message which
&gt; arise as a result of e-mail transmission. If verification is required,
&gt; please request a hard-copy version.


-- 
Thilina Gunarathne  -  http://www.wso2.com - http://thilinag.blogspot.com

---------------------------------------------------------------------
To unsubscribe, e-mail: kandula-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: kandula-dev-help@ws.apache.org



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Commented: (WSS-81) Compatibility between WSS4J and WebLogic 9 for Encryption</title>
<author><name>=?utf-8?Q?ang=C3=A9lique_=28JIRA=29?= &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/200706.mbox/%3c8213157.1182354746320.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c8213157-1182354746320-JavaMail-jira@brutus%3e</id>
<updated>2007-06-20T15:52:26Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

    [ https://issues.apache.org/jira/browse/WSS-81?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12506578
] 

angÃ©lique commented on WSS-81:
------------------------------

Hi,

So you think that I have to configure signature and encryption as action to have both elements
?
I am going to try to sign the header.

Regards,

     Angel

&gt; Compatibility between WSS4J and WebLogic 9 for Encryption
&gt; ---------------------------------------------------------
&gt;
&gt;                 Key: WSS-81
&gt;                 URL: https://issues.apache.org/jira/browse/WSS-81
&gt;             Project: WSS4J
&gt;          Issue Type: Bug
&gt;         Environment: Web service serveur: Web Logic 9
&gt; Web service client : axis+wss4j+bouncy castle on linux
&gt;            Reporter: angÃ©lique
&gt;            Assignee: Werner Dittmann
&gt;            Priority: Blocker
&gt;
&gt; Hello,
&gt; There is a problem of compatibility between Web Logic 9 and WSS4J.
&gt; One one hand, when a weblogic server is configured to do encryption only, the SOAP message
generated contain a xml node like this:
&gt; &lt;wsse:BinarySecurityToken wsu:Id="bst_JFDmu9E2O5K4Opex" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"
ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3"
EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary"&gt;
&gt; XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
&gt; &lt;/wsse:BinarySecurityToken&gt;
&gt; On the other hand, it's only possible with WSS4J to add the token for signature. When
using encryption alone, configuring the client to send a SOAP message with this BinarySecurityToken
is not possible.
&gt; Wath can I do to make a SOAP request whith an Encrypted body AND a BinarySecurityToken
in the &lt;head&gt; part ?
&gt; Regards,
&gt;        AngÃ©lique

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: wss4j-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: wss4j-dev-help@ws.apache.org



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Commented: (WSS-81) Compatibility between WSS4J and WebLogic 9 for Encryption</title>
<author><name>&quot;Werner Dittmann (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/200706.mbox/%3c22389800.1182354027213.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c22389800-1182354027213-JavaMail-jira@brutus%3e</id>
<updated>2007-06-20T15:40:27Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

    [ https://issues.apache.org/jira/browse/WSS-81?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12506572
] 

Werner Dittmann commented on WSS-81:
------------------------------------

Hi,

WSS4J does not support multiple certificate references in
a SOAP request for one action (signature or encryption) although
you may have different certificate references for signature and
encryption.

Regards,
Werner




&gt; Compatibility between WSS4J and WebLogic 9 for Encryption
&gt; ---------------------------------------------------------
&gt;
&gt;                 Key: WSS-81
&gt;                 URL: https://issues.apache.org/jira/browse/WSS-81
&gt;             Project: WSS4J
&gt;          Issue Type: Bug
&gt;         Environment: Web service serveur: Web Logic 9
&gt; Web service client : axis+wss4j+bouncy castle on linux
&gt;            Reporter: angÃ©lique
&gt;            Assignee: Werner Dittmann
&gt;            Priority: Blocker
&gt;
&gt; Hello,
&gt; There is a problem of compatibility between Web Logic 9 and WSS4J.
&gt; One one hand, when a weblogic server is configured to do encryption only, the SOAP message
generated contain a xml node like this:
&gt; &lt;wsse:BinarySecurityToken wsu:Id="bst_JFDmu9E2O5K4Opex" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"
ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3"
EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary"&gt;
&gt; XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
&gt; &lt;/wsse:BinarySecurityToken&gt;
&gt; On the other hand, it's only possible with WSS4J to add the token for signature. When
using encryption alone, configuring the client to send a SOAP message with this BinarySecurityToken
is not possible.
&gt; Wath can I do to make a SOAP request whith an Encrypted body AND a BinarySecurityToken
in the &lt;head&gt; part ?
&gt; Regards,
&gt;        AngÃ©lique

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: wss4j-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: wss4j-dev-help@ws.apache.org



</pre>
</div>
</content>
</entry>
<entry>
<title>Re: [jira] Issue Comment Edited: (WSS-81) Compatibility between WSS4J and WebLogic 9 for Encryption</title>
<author><name>Werner Dittmann &lt;Werner.Dittmann@t-online.de&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/200706.mbox/%3c467949BA.9000802@t-online.de%3e"/>
<id>urn:uuid:%3c467949BA-9000802@t-online-de%3e</id>
<updated>2007-06-20T15:37:30Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hi,

WSS4J does not support multiple certificate references in
a SOAP request for one action (signature or encryption) although
you may have different certificate references for signature and
encryption.

Regards,
Werner

angÃ©lique (JIRA) wrote:
&gt;     [ https://issues.apache.org/jira/browse/WSS-81?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12506569
] 
&gt; 
&gt; angÃ©lique edited comment on WSS-81 at 6/20/07 8:29 AM:
&gt; -------------------------------------------------------
&gt; 
&gt; Hello again,
&gt; 
&gt; The directReference woks fine to add the BinarySecurityToken to the SOAP request but
now the following part is missing:
&gt; 
&gt; &lt;ns2:X509Data&gt;
&gt; &lt;ns2:X509IssuerSerial&gt;
&gt; &lt;ns2:X509IssuerName&gt;
&gt; CN=XXXXXXX,OU=FOR TESTING ONLY,O=MyOrganization,L=MyTown,ST=MyState,C=US
&gt; &lt;/ns2:X509IssuerName&gt;
&gt; &lt;ns2:X509SerialNumber&gt;
&gt; 0000000000000000000000000000000000000
&gt; &lt;/ns2:X509SerialNumber&gt;
&gt; &lt;/ns2:X509IssuerSerial&gt;
&gt; &lt;/ns2:X509Data&gt;
&gt; 
&gt; This part of the header was created with the propertie:
&gt; 
&gt; &lt;parameter name="encryptionKeyIdentifier" value="IssuerSerial" /&gt;
&gt; 
&gt; How can I have both the BinarySecurityToken element  AND the X509Data element in the
same time ?
&gt; My aim is still to make work fine a Web logic server with my Axis/wss4j client.
&gt; 
&gt;       Regards,
&gt; 
&gt;              Angel
&gt; 
&gt; 
&gt;  was:
&gt; Hello again,
&gt; 
&gt; The directReference woks fine to add the BinarySecurityToken to the SOAP request but
now the following part is missing:
&gt; 
&gt; &lt;ns2:X509Data&gt;
&gt; &lt;ns2:X509IssuerSerial&gt;
&gt; &lt;ns2:X509IssuerName&gt;
&gt; CN=XXXXXXX,OU=FOR TESTING ONLY,O=MyOrganization,L=MyTown,ST=MyState,C=US
&gt; &lt;/ns2:X509IssuerName&gt;
&gt; &lt;ns2:X509SerialNumber&gt;
&gt; 0000000000000000000000000000000000000
&gt; &lt;/ns2:X509SerialNumber&gt;
&gt; &lt;/ns2:X509IssuerSerial&gt;
&gt; &lt;/ns2:X509Data&gt;
&gt; 
&gt; This part of the header was created with the propertie:
&gt; 
&gt; &lt;parameter name="encryptionKeyIdentifier" value="IssuerSerial" /&gt;
&gt; 
&gt; How can I have both the BinarySecurityToken element  AND the X509Data element in the
same time ?
&gt; My aim is still to make work fine a Web logic serveur with my Axis/wss4j client.
&gt; 
&gt;       Regards,
&gt; 
&gt;              Angel
&gt; 
&gt;&gt; Compatibility between WSS4J and WebLogic 9 for Encryption
&gt;&gt; ---------------------------------------------------------
&gt;&gt;
&gt;&gt;                 Key: WSS-81
&gt;&gt;                 URL: https://issues.apache.org/jira/browse/WSS-81
&gt;&gt;             Project: WSS4J
&gt;&gt;          Issue Type: Bug
&gt;&gt;         Environment: Web service serveur: Web Logic 9
&gt;&gt; Web service client : axis+wss4j+bouncy castle on linux
&gt;&gt;            Reporter: angÃ©lique
&gt;&gt;            Assignee: Werner Dittmann
&gt;&gt;            Priority: Blocker
&gt;&gt;
&gt;&gt; Hello,
&gt;&gt; There is a problem of compatibility between Web Logic 9 and WSS4J.
&gt;&gt; One one hand, when a weblogic server is configured to do encryption only, the SOAP
message generated contain a xml node like this:
&gt;&gt; &lt;wsse:BinarySecurityToken wsu:Id="bst_JFDmu9E2O5K4Opex" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"
ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3"
EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary"&gt;
&gt;&gt; XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
&gt;&gt; &lt;/wsse:BinarySecurityToken&gt;
&gt;&gt; On the other hand, it's only possible with WSS4J to add the token for signature.
When using encryption alone, configuring the client to send a SOAP message with this BinarySecurityToken
is not possible.
&gt;&gt; Wath can I do to make a SOAP request whith an Encrypted body AND a BinarySecurityToken
in the &lt;head&gt; part ?
&gt;&gt; Regards,
&gt;&gt;        AngÃ©lique
&gt; 


---------------------------------------------------------------------
To unsubscribe, e-mail: wss4j-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: wss4j-dev-help@ws.apache.org



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Issue Comment Edited: (WSS-81) Compatibility between WSS4J and WebLogic 9 for Encryption</title>
<author><name>=?utf-8?Q?ang=C3=A9lique_=28JIRA=29?= &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/200706.mbox/%3c21478299.1182353366546.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c21478299-1182353366546-JavaMail-jira@brutus%3e</id>
<updated>2007-06-20T15:29:26Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

    [ https://issues.apache.org/jira/browse/WSS-81?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12506569
] 

angÃ©lique edited comment on WSS-81 at 6/20/07 8:29 AM:
-------------------------------------------------------

Hello again,

The directReference woks fine to add the BinarySecurityToken to the SOAP request but now the
following part is missing:

&lt;ns2:X509Data&gt;
&lt;ns2:X509IssuerSerial&gt;
&lt;ns2:X509IssuerName&gt;
CN=XXXXXXX,OU=FOR TESTING ONLY,O=MyOrganization,L=MyTown,ST=MyState,C=US
&lt;/ns2:X509IssuerName&gt;
&lt;ns2:X509SerialNumber&gt;
0000000000000000000000000000000000000
&lt;/ns2:X509SerialNumber&gt;
&lt;/ns2:X509IssuerSerial&gt;
&lt;/ns2:X509Data&gt;

This part of the header was created with the propertie:

&lt;parameter name="encryptionKeyIdentifier" value="IssuerSerial" /&gt;

How can I have both the BinarySecurityToken element  AND the X509Data element in the same
time ?
My aim is still to make work fine a Web logic server with my Axis/wss4j client.

      Regards,

             Angel


 was:
Hello again,

The directReference woks fine to add the BinarySecurityToken to the SOAP request but now the
following part is missing:

&lt;ns2:X509Data&gt;
&lt;ns2:X509IssuerSerial&gt;
&lt;ns2:X509IssuerName&gt;
CN=XXXXXXX,OU=FOR TESTING ONLY,O=MyOrganization,L=MyTown,ST=MyState,C=US
&lt;/ns2:X509IssuerName&gt;
&lt;ns2:X509SerialNumber&gt;
0000000000000000000000000000000000000
&lt;/ns2:X509SerialNumber&gt;
&lt;/ns2:X509IssuerSerial&gt;
&lt;/ns2:X509Data&gt;

This part of the header was created with the propertie:

&lt;parameter name="encryptionKeyIdentifier" value="IssuerSerial" /&gt;

How can I have both the BinarySecurityToken element  AND the X509Data element in the same
time ?
My aim is still to make work fine a Web logic serveur with my Axis/wss4j client.

      Regards,

             Angel

&gt; Compatibility between WSS4J and WebLogic 9 for Encryption
&gt; ---------------------------------------------------------
&gt;
&gt;                 Key: WSS-81
&gt;                 URL: https://issues.apache.org/jira/browse/WSS-81
&gt;             Project: WSS4J
&gt;          Issue Type: Bug
&gt;         Environment: Web service serveur: Web Logic 9
&gt; Web service client : axis+wss4j+bouncy castle on linux
&gt;            Reporter: angÃ©lique
&gt;            Assignee: Werner Dittmann
&gt;            Priority: Blocker
&gt;
&gt; Hello,
&gt; There is a problem of compatibility between Web Logic 9 and WSS4J.
&gt; One one hand, when a weblogic server is configured to do encryption only, the SOAP message
generated contain a xml node like this:
&gt; &lt;wsse:BinarySecurityToken wsu:Id="bst_JFDmu9E2O5K4Opex" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"
ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3"
EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary"&gt;
&gt; XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
&gt; &lt;/wsse:BinarySecurityToken&gt;
&gt; On the other hand, it's only possible with WSS4J to add the token for signature. When
using encryption alone, configuring the client to send a SOAP message with this BinarySecurityToken
is not possible.
&gt; Wath can I do to make a SOAP request whith an Encrypted body AND a BinarySecurityToken
in the &lt;head&gt; part ?
&gt; Regards,
&gt;        AngÃ©lique

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: wss4j-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: wss4j-dev-help@ws.apache.org



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Commented: (WSS-81) Compatibility between WSS4J and WebLogic 9 for Encryption</title>
<author><name>=?utf-8?Q?ang=C3=A9lique_=28JIRA=29?= &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/200706.mbox/%3c22164260.1182353366315.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c22164260-1182353366315-JavaMail-jira@brutus%3e</id>
<updated>2007-06-20T15:29:26Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

    [ https://issues.apache.org/jira/browse/WSS-81?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12506569
] 

angÃ©lique commented on WSS-81:
------------------------------

Hello again,

The directReference woks fine to add the BinarySecurityToken to the SOAP request but now the
following part is missing:

&lt;ns2:X509Data&gt;
&lt;ns2:X509IssuerSerial&gt;
&lt;ns2:X509IssuerName&gt;
CN=XXXXXXX,OU=FOR TESTING ONLY,O=MyOrganization,L=MyTown,ST=MyState,C=US
&lt;/ns2:X509IssuerName&gt;
&lt;ns2:X509SerialNumber&gt;
0000000000000000000000000000000000000
&lt;/ns2:X509SerialNumber&gt;
&lt;/ns2:X509IssuerSerial&gt;
&lt;/ns2:X509Data&gt;

This part of the header was created with the propertie:

&lt;parameter name="encryptionKeyIdentifier" value="IssuerSerial" /&gt;

How can I have both the BinarySecurityToken element  AND the X509Data element in the same
time ?
My aim is still to make work fine a Web logic serveur with my Axis/wss4j client.

      Regards,

             Angel

&gt; Compatibility between WSS4J and WebLogic 9 for Encryption
&gt; ---------------------------------------------------------
&gt;
&gt;                 Key: WSS-81
&gt;                 URL: https://issues.apache.org/jira/browse/WSS-81
&gt;             Project: WSS4J
&gt;          Issue Type: Bug
&gt;         Environment: Web service serveur: Web Logic 9
&gt; Web service client : axis+wss4j+bouncy castle on linux
&gt;            Reporter: angÃ©lique
&gt;            Assignee: Werner Dittmann
&gt;            Priority: Blocker
&gt;
&gt; Hello,
&gt; There is a problem of compatibility between Web Logic 9 and WSS4J.
&gt; One one hand, when a weblogic server is configured to do encryption only, the SOAP message
generated contain a xml node like this:
&gt; &lt;wsse:BinarySecurityToken wsu:Id="bst_JFDmu9E2O5K4Opex" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"
ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3"
EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary"&gt;
&gt; XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
&gt; &lt;/wsse:BinarySecurityToken&gt;
&gt; On the other hand, it's only possible with WSS4J to add the token for signature. When
using encryption alone, configuring the client to send a SOAP message with this BinarySecurityToken
is not possible.
&gt; Wath can I do to make a SOAP request whith an Encrypted body AND a BinarySecurityToken
in the &lt;head&gt; part ?
&gt; Regards,
&gt;        AngÃ©lique

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: wss4j-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: wss4j-dev-help@ws.apache.org



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Commented: (WSS-81) Compatibility between WSS4J and WebLogic 9 for Encryption</title>
<author><name>=?utf-8?Q?ang=C3=A9lique_=28JIRA=29?= &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/200706.mbox/%3c23310267.1182337826253.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c23310267-1182337826253-JavaMail-jira@brutus%3e</id>
<updated>2007-06-20T11:10:26Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

    [ https://issues.apache.org/jira/browse/WSS-81?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12506489
] 

angÃ©lique commented on WSS-81:
------------------------------

Ok, thanks, I am going to try it with the last version of wss4j.

-----Message d'origine-----
DeÂ : Dittmann, Werner (JIRA) [mailto:jira@apache.org] 
EnvoyÃ©Â : mercredi 20 juin 2007 12:47
Ã€Â : Jard AngÃ©lique
ObjetÂ : [jira] Commented: (WSS-81) Compatibility between WSS4J and WebLogic 9 for Encryption


    [ https://issues.apache.org/jira/browse/WSS-81?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12506479
] 

Dittmann, Werner commented on WSS-81:
-------------------------------------

I've added some more information to the Java file. In fact
you case use "DirectReference" for the encryption key
id as well. The documentation was outdated, that's why I 
updated it int SVN (this is the source code repository).

Regards,
Werner





-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.






&gt; Compatibility between WSS4J and WebLogic 9 for Encryption
&gt; ---------------------------------------------------------
&gt;
&gt;                 Key: WSS-81
&gt;                 URL: https://issues.apache.org/jira/browse/WSS-81
&gt;             Project: WSS4J
&gt;          Issue Type: Bug
&gt;         Environment: Web service serveur: Web Logic 9
&gt; Web service client : axis+wss4j+bouncy castle on linux
&gt;            Reporter: angÃ©lique
&gt;            Assignee: Werner Dittmann
&gt;            Priority: Blocker
&gt;
&gt; Hello,
&gt; There is a problem of compatibility between Web Logic 9 and WSS4J.
&gt; One one hand, when a weblogic server is configured to do encryption only, the SOAP message
generated contain a xml node like this:
&gt; &lt;wsse:BinarySecurityToken wsu:Id="bst_JFDmu9E2O5K4Opex" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"
ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3"
EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary"&gt;
&gt; XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
&gt; &lt;/wsse:BinarySecurityToken&gt;
&gt; On the other hand, it's only possible with WSS4J to add the token for signature. When
using encryption alone, configuring the client to send a SOAP message with this BinarySecurityToken
is not possible.
&gt; Wath can I do to make a SOAP request whith an Encrypted body AND a BinarySecurityToken
in the &lt;head&gt; part ?
&gt; Regards,
&gt;        AngÃ©lique

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: wss4j-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: wss4j-dev-help@ws.apache.org



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Commented: (WSS-81) Compatibility between WSS4J and WebLogic 9 for Encryption</title>
<author><name>&quot;Dittmann, Werner (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/200706.mbox/%3c33105265.1182336446211.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c33105265-1182336446211-JavaMail-jira@brutus%3e</id>
<updated>2007-06-20T10:47:26Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

    [ https://issues.apache.org/jira/browse/WSS-81?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12506479
] 

Dittmann, Werner commented on WSS-81:
-------------------------------------

I've added some more information to the Java file. In fact
you case use "DirectReference" for the encryption key
id as well. The documentation was outdated, that's why I 
updated it int SVN (this is the source code repository).

Regards,
Werner




&gt; Compatibility between WSS4J and WebLogic 9 for Encryption
&gt; ---------------------------------------------------------
&gt;
&gt;                 Key: WSS-81
&gt;                 URL: https://issues.apache.org/jira/browse/WSS-81
&gt;             Project: WSS4J
&gt;          Issue Type: Bug
&gt;         Environment: Web service serveur: Web Logic 9
&gt; Web service client : axis+wss4j+bouncy castle on linux
&gt;            Reporter: angÃ©lique
&gt;            Assignee: Werner Dittmann
&gt;            Priority: Blocker
&gt;
&gt; Hello,
&gt; There is a problem of compatibility between Web Logic 9 and WSS4J.
&gt; One one hand, when a weblogic server is configured to do encryption only, the SOAP message
generated contain a xml node like this:
&gt; &lt;wsse:BinarySecurityToken wsu:Id="bst_JFDmu9E2O5K4Opex" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"
ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3"
EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary"&gt;
&gt; XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
&gt; &lt;/wsse:BinarySecurityToken&gt;
&gt; On the other hand, it's only possible with WSS4J to add the token for signature. When
using encryption alone, configuring the client to send a SOAP message with this BinarySecurityToken
is not possible.
&gt; Wath can I do to make a SOAP request whith an Encrypted body AND a BinarySecurityToken
in the &lt;head&gt; part ?
&gt; Regards,
&gt;        AngÃ©lique

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: wss4j-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: wss4j-dev-help@ws.apache.org



</pre>
</div>
</content>
</entry>
<entry>
<title>AW: [jira] Reopened: (WSS-81) Compatibility between WSS4J and WebLogic 9 for Encryption</title>
<author><name>&quot;Dittmann, Werner&quot; &lt;werner.dittmann@nsn.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/200706.mbox/%3cA5B453A80186CF47BDA33BBA924EFAE901E8A1A2@MCHP7I5A.ww002.siemens.net%3e"/>
<id>urn:uuid:%3cA5B453A80186CF47BDA33BBA924EFAE901E8A1A2@MCHP7I5A-ww002-siemens-net%3e</id>
<updated>2007-06-20T10:43:57Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
I've added some more information to the Java file. In fact
you case use "DirectReference" for the encryption key
id as well. The documentation was outdated, that's why I 
updated it int SVN (this is the source code repository).

Regards,
Werner


&gt; -----Ursprüngliche Nachricht-----
&gt; Von: ext angélique (JIRA) [mailto:jira@apache.org] 
&gt; Gesendet: Mittwoch, 20. Juni 2007 11:50
&gt; An: wss4j-dev@ws.apache.org
&gt; Betreff: [jira] Reopened: (WSS-81) Compatibility between 
&gt; WSS4J and WebLogic 9 for Encryption
&gt; 
&gt; 
&gt;      [ 
&gt; https://issues.apache.org/jira/browse/WSS-81?page=com.atlassia
&gt; n.jira.plugin.system.issuetabpanels:all-tabpanel ]
&gt; 
&gt; angélique reopened WSS-81:
&gt; --------------------------
&gt; 
&gt; 
&gt; In the javadoc, I read ( WSHandlerConstants =&gt;ENC_KEY_ID):
&gt; "For encryption IssuerSerial  and X509KeyIdentifier are valid only."
&gt; 
&gt; I tried both of them, and the BinarySecurityToken never appears.....
&gt; 
&gt; The only propertie that create the BinarySecurityToken  
&gt; element is encryptionKeyIdentifier=DirectReference, but it's 
&gt; for Signing and I don't want to sign, I just want to encrypt.
&gt; 
&gt; How can I encrypt a SOAP message with WSS4J to match the 
&gt; request expected by the Web logic server ?
&gt; 
&gt; &gt; Compatibility between WSS4J and WebLogic 9 for Encryption
&gt; &gt; ---------------------------------------------------------
&gt; &gt;
&gt; &gt;                 Key: WSS-81
&gt; &gt;                 URL: https://issues.apache.org/jira/browse/WSS-81
&gt; &gt;             Project: WSS4J
&gt; &gt;          Issue Type: Bug
&gt; &gt;         Environment: Web service serveur: Web Logic 9
&gt; &gt; Web service client : axis+wss4j+bouncy castle on linux
&gt; &gt;            Reporter: angélique
&gt; &gt;            Assignee: Werner Dittmann
&gt; &gt;            Priority: Blocker
&gt; &gt;
&gt; &gt; Hello,
&gt; &gt; There is a problem of compatibility between Web Logic 9 and WSS4J.
&gt; &gt; One one hand, when a weblogic server is configured to do 
&gt; encryption only, the SOAP message generated contain a xml 
&gt; node like this:
&gt; &gt; &lt;wsse:BinarySecurityToken wsu:Id="bst_JFDmu9E2O5K4Opex" 
&gt; xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401
&gt; -wss-wssecurity-utility-1.0.xsd" 
&gt; ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401
&gt; -wss-x509-token-profile-1.0#X509v3" 
&gt; EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200
&gt; 401-wss-soap-message-security-1.0#Base64Binary"&gt;
&gt; &gt; 
&gt; XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
&gt; XXXXXXXXXXX
&gt; &gt; &lt;/wsse:BinarySecurityToken&gt;
&gt; &gt; On the other hand, it's only possible with WSS4J to add the 
&gt; token for signature. When using encryption alone, configuring 
&gt; the client to send a SOAP message with this 
&gt; BinarySecurityToken is not possible.
&gt; &gt; Wath can I do to make a SOAP request whith an Encrypted 
&gt; body AND a BinarySecurityToken in the &lt;head&gt; part ?
&gt; &gt; Regards,
&gt; &gt;        Angélique
&gt; 
&gt; -- 
&gt; This message is automatically generated by JIRA.
&gt; -
&gt; You can reply to this email to add a comment to the issue online.
&gt; 
&gt; 
&gt; ---------------------------------------------------------------------
&gt; To unsubscribe, e-mail: wss4j-dev-unsubscribe@ws.apache.org
&gt; For additional commands, e-mail: wss4j-dev-help@ws.apache.org
&gt; 
&gt; 

---------------------------------------------------------------------
To unsubscribe, e-mail: wss4j-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: wss4j-dev-help@ws.apache.org



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Reopened: (WSS-81) Compatibility between WSS4J and WebLogic 9 for Encryption</title>
<author><name>=?utf-8?Q?ang=C3=A9lique_=28JIRA=29?= &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/200706.mbox/%3c2485582.1182333026140.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c2485582-1182333026140-JavaMail-jira@brutus%3e</id>
<updated>2007-06-20T09:50:26Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

     [ https://issues.apache.org/jira/browse/WSS-81?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]

angÃ©lique reopened WSS-81:
--------------------------


In the javadoc, I read ( WSHandlerConstants =&gt;ENC_KEY_ID):
"For encryption IssuerSerial  and X509KeyIdentifier are valid only."

I tried both of them, and the BinarySecurityToken never appears.....

The only propertie that create the BinarySecurityToken  element is encryptionKeyIdentifier=DirectReference,
but it's for Signing and I don't want to sign, I just want to encrypt.

How can I encrypt a SOAP message with WSS4J to match the request expected by the Web logic
server ?

&gt; Compatibility between WSS4J and WebLogic 9 for Encryption
&gt; ---------------------------------------------------------
&gt;
&gt;                 Key: WSS-81
&gt;                 URL: https://issues.apache.org/jira/browse/WSS-81
&gt;             Project: WSS4J
&gt;          Issue Type: Bug
&gt;         Environment: Web service serveur: Web Logic 9
&gt; Web service client : axis+wss4j+bouncy castle on linux
&gt;            Reporter: angÃ©lique
&gt;            Assignee: Werner Dittmann
&gt;            Priority: Blocker
&gt;
&gt; Hello,
&gt; There is a problem of compatibility between Web Logic 9 and WSS4J.
&gt; One one hand, when a weblogic server is configured to do encryption only, the SOAP message
generated contain a xml node like this:
&gt; &lt;wsse:BinarySecurityToken wsu:Id="bst_JFDmu9E2O5K4Opex" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"
ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3"
EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary"&gt;
&gt; XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
&gt; &lt;/wsse:BinarySecurityToken&gt;
&gt; On the other hand, it's only possible with WSS4J to add the token for signature. When
using encryption alone, configuring the client to send a SOAP message with this BinarySecurityToken
is not possible.
&gt; Wath can I do to make a SOAP request whith an Encrypted body AND a BinarySecurityToken
in the &lt;head&gt; part ?
&gt; Regards,
&gt;        AngÃ©lique

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: wss4j-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: wss4j-dev-help@ws.apache.org



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Commented: (WSS-81) Compatibility between WSS4J and WebLogic 9 for Encryption</title>
<author><name>=?utf-8?Q?ang=C3=A9lique_=28JIRA=29?= &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/200706.mbox/%3c23809648.1182328466139.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c23809648-1182328466139-JavaMail-jira@brutus%3e</id>
<updated>2007-06-20T08:34:26Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

    [ https://issues.apache.org/jira/browse/WSS-81?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12506450
] 

angÃ©lique commented on WSS-81:
------------------------------

Hello,

Thanks for your answer.
Can you explain to me how to read this new documentation ? =&gt; "SVN WSS4J revision 548233"
is it on the apache WSS4J web site ?

Regards,

	Angel

-----Message d'origine-----
DeÂ : Werner Dittmann (JIRA) [mailto:jira@apache.org] 
EnvoyÃ©Â : lundi 18 juin 2007 08:46
Ã€Â : Jard AngÃ©lique
ObjetÂ : [jira] Closed: (WSS-81) Compatibility between WSS4J and WebLogic 9 for Encryption


     [ https://issues.apache.org/jira/browse/WSS-81?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]

Werner Dittmann closed WSS-81.
------------------------------

    Resolution: Fixed
      Assignee: Werner Dittmann  (was: Davanum Srinivas)

Added some documentation to describe the real behaviour. Refer to
SVN WSS4J revision 548233.


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.






&gt; Compatibility between WSS4J and WebLogic 9 for Encryption
&gt; ---------------------------------------------------------
&gt;
&gt;                 Key: WSS-81
&gt;                 URL: https://issues.apache.org/jira/browse/WSS-81
&gt;             Project: WSS4J
&gt;          Issue Type: Bug
&gt;         Environment: Web service serveur: Web Logic 9
&gt; Web service client : axis+wss4j+bouncy castle on linux
&gt;            Reporter: angÃ©lique
&gt;            Assignee: Werner Dittmann
&gt;            Priority: Blocker
&gt;
&gt; Hello,
&gt; There is a problem of compatibility between Web Logic 9 and WSS4J.
&gt; One one hand, when a weblogic server is configured to do encryption only, the SOAP message
generated contain a xml node like this:
&gt; &lt;wsse:BinarySecurityToken wsu:Id="bst_JFDmu9E2O5K4Opex" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"
ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3"
EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary"&gt;
&gt; XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
&gt; &lt;/wsse:BinarySecurityToken&gt;
&gt; On the other hand, it's only possible with WSS4J to add the token for signature. When
using encryption alone, configuring the client to send a SOAP message with this BinarySecurityToken
is not possible.
&gt; Wath can I do to make a SOAP request whith an Encrypted body AND a BinarySecurityToken
in the &lt;head&gt; part ?
&gt; Regards,
&gt;        AngÃ©lique

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: wss4j-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: wss4j-dev-help@ws.apache.org



</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r548947 - /webservices/sandesha/trunk/c/src/handlers/sandesha2_global_in_handler.c</title>
<author><name>samisa@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/200706.mbox/%3c20070620061205.903321A981A@eris.apache.org%3e"/>
<id>urn:uuid:%3c20070620061205-903321A981A@eris-apache-org%3e</id>
<updated>2007-06-20T06:12:05Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: samisa
Date: Tue Jun 19 23:12:03 2007
New Revision: 548947

URL: http://svn.apache.org/viewvc?view=rev&amp;rev=548947
Log:
Removed printf

Modified:
    webservices/sandesha/trunk/c/src/handlers/sandesha2_global_in_handler.c

Modified: webservices/sandesha/trunk/c/src/handlers/sandesha2_global_in_handler.c
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/src/handlers/sandesha2_global_in_handler.c?view=diff&amp;rev=548947&amp;r1=548946&amp;r2=548947
==============================================================================
--- webservices/sandesha/trunk/c/src/handlers/sandesha2_global_in_handler.c (original)
+++ webservices/sandesha/trunk/c/src/handlers/sandesha2_global_in_handler.c Tue Jun 19 23:12:03
2007
@@ -134,7 +134,6 @@
     if(!soap_action &amp;&amp; !wsa_action)
     {
         axiom_soap_envelope_t *envelope = NULL;
-        printf("Look for a WSRM 1.0 sequence header with the lastMessage marker\n");
         envelope = axis2_msg_ctx_get_soap_envelope(msg_ctx, env);
         if(envelope)
         {



---------------------------------------------------------------------
To unsubscribe, e-mail: sandesha-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: sandesha-dev-help@ws.apache.org



</pre>
</div>
</content>
</entry>
<entry>
<title>Re: [VOTE] Hannes and Georg as committers</title>
<author><name>&quot;Davanum Srinivas&quot; &lt;davanum@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/200706.mbox/%3c19e0530f0706190701y620bcb33qc2f2019db2977513@mail.gmail.com%3e"/>
<id>urn:uuid:%3c19e0530f0706190701y620bcb33qc2f2019db2977513@mail-gmail-com%3e</id>
<updated>2007-06-19T14:01:57Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
+1 from me.

On 6/19/07, Thilina Gunarathne &lt;csethil@gmail.com&gt; wrote:
&gt; Here is my +1...
&gt;
&gt; Thanks,
&gt; Thilina
&gt;
&gt; On 6/19/07, Dasarath Weeratunge &lt;dweeratu@purdue.edu&gt; wrote:
&gt; &gt; Quoting Dasarath Weeratunge &lt;dweeratu@purdue.edu&gt;:
&gt; &gt;
&gt; &gt; +1
&gt; &gt;
&gt; &gt; --dasarath
&gt; &gt;
&gt; &gt; &gt; Hannes Erven (hannes@erven.at) and Georg Hicker (georg.hicker@reflex.at)
&gt; &gt; &gt; contributed the ws-ba implementation of Kandula-1 as part of their studies
&gt; &gt; &gt; at Vienna University of Technology. This work result in a paper at recent
&gt; &gt; &gt; ICWS '07 (http://ws.apache.org/kandula/1/publications.html). Bulk of the new
&gt; &gt; &gt;
&gt; &gt; &gt; code has been integrated into the existing Kandula-1 source tree under
&gt; &gt; &gt; org.apache.kandula.coordinator.ba.*. Relavent documentation can be found on
&gt; &gt; &gt; the
&gt; &gt; &gt; Kandula-1 website (http://ws.apache.org/kandula/1/ws-ba--how_to_use.html)
&gt; &gt; &gt; For mail archives, please follow the thread: http://mail-
&gt; &gt; &gt; archives.apache.org/mod_mbox/ws-kandula-dev/200705.mbox/%
&gt; &gt; &gt; 3c1179799398.46524f66c5501@webmail.purdue.edu%3e
&gt; &gt; &gt;
&gt; &gt; &gt; --dasarath
&gt; &gt; &gt;
&gt; &gt; &gt; ---------------------------------------------------------------------
&gt; &gt; &gt; To unsubscribe, e-mail: kandula-dev-unsubscribe@ws.apache.org
&gt; &gt; &gt; For additional commands, e-mail: kandula-dev-help@ws.apache.org
&gt; &gt; &gt;
&gt; &gt; &gt;
&gt; &gt;
&gt; &gt;
&gt; &gt;
&gt; &gt; ---------------------------------------------------------------------
&gt; &gt; To unsubscribe, e-mail: kandula-dev-unsubscribe@ws.apache.org
&gt; &gt; For additional commands, e-mail: kandula-dev-help@ws.apache.org
&gt; &gt;
&gt; &gt;
&gt;
&gt;
&gt; --
&gt; Thilina Gunarathne  -  http://www.wso2.com - http://thilinag.blogspot.com
&gt;
&gt; ---------------------------------------------------------------------
&gt; To unsubscribe, e-mail: kandula-dev-unsubscribe@ws.apache.org
&gt; For additional commands, e-mail: kandula-dev-help@ws.apache.org
&gt;
&gt;


-- 
Davanum Srinivas :: http://davanum.wordpress.com

---------------------------------------------------------------------
To unsubscribe, e-mail: kandula-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: kandula-dev-help@ws.apache.org



</pre>
</div>
</content>
</entry>
<entry>
<title>Re: [VOTE] Hannes and Georg as committers</title>
<author><name>&quot;Thilina Gunarathne&quot; &lt;csethil@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/200706.mbox/%3ce9115cfd0706190656i4928a1fat5a2a6fd6903220be@mail.gmail.com%3e"/>
<id>urn:uuid:%3ce9115cfd0706190656i4928a1fat5a2a6fd6903220be@mail-gmail-com%3e</id>
<updated>2007-06-19T13:56:52Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Here is my +1...

Thanks,
Thilina

On 6/19/07, Dasarath Weeratunge &lt;dweeratu@purdue.edu&gt; wrote:
&gt; Quoting Dasarath Weeratunge &lt;dweeratu@purdue.edu&gt;:
&gt;
&gt; +1
&gt;
&gt; --dasarath
&gt;
&gt; &gt; Hannes Erven (hannes@erven.at) and Georg Hicker (georg.hicker@reflex.at)
&gt; &gt; contributed the ws-ba implementation of Kandula-1 as part of their studies
&gt; &gt; at Vienna University of Technology. This work result in a paper at recent
&gt; &gt; ICWS '07 (http://ws.apache.org/kandula/1/publications.html). Bulk of the new
&gt; &gt;
&gt; &gt; code has been integrated into the existing Kandula-1 source tree under
&gt; &gt; org.apache.kandula.coordinator.ba.*. Relavent documentation can be found on
&gt; &gt; the
&gt; &gt; Kandula-1 website (http://ws.apache.org/kandula/1/ws-ba--how_to_use.html)
&gt; &gt; For mail archives, please follow the thread: http://mail-
&gt; &gt; archives.apache.org/mod_mbox/ws-kandula-dev/200705.mbox/%
&gt; &gt; 3c1179799398.46524f66c5501@webmail.purdue.edu%3e
&gt; &gt;
&gt; &gt; --dasarath
&gt; &gt;
&gt; &gt; ---------------------------------------------------------------------
&gt; &gt; To unsubscribe, e-mail: kandula-dev-unsubscribe@ws.apache.org
&gt; &gt; For additional commands, e-mail: kandula-dev-help@ws.apache.org
&gt; &gt;
&gt; &gt;
&gt;
&gt;
&gt;
&gt; ---------------------------------------------------------------------
&gt; To unsubscribe, e-mail: kandula-dev-unsubscribe@ws.apache.org
&gt; For additional commands, e-mail: kandula-dev-help@ws.apache.org
&gt;
&gt;


-- 
Thilina Gunarathne  -  http://www.wso2.com - http://thilinag.blogspot.com

---------------------------------------------------------------------
To unsubscribe, e-mail: kandula-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: kandula-dev-help@ws.apache.org



</pre>
</div>
</content>
</entry>
<entry>
<title>Re: [VOTE] Hannes and Georg as committers</title>
<author><name>Dasarath Weeratunge &lt;dweeratu@purdue.edu&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/200706.mbox/%3c1182259791.4677da4fbbb09@webmail.purdue.edu%3e"/>
<id>urn:uuid:%3c1182259791-4677da4fbbb09@webmail-purdue-edu%3e</id>
<updated>2007-06-19T13:29:51Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Quoting Dasarath Weeratunge &lt;dweeratu@purdue.edu&gt;:

+1

--dasarath

&gt; Hannes Erven (hannes@erven.at) and Georg Hicker (georg.hicker@reflex.at)
&gt; contributed the ws-ba implementation of Kandula-1 as part of their studies
&gt; at Vienna University of Technology. This work result in a paper at recent 
&gt; ICWS '07 (http://ws.apache.org/kandula/1/publications.html). Bulk of the new
&gt; 
&gt; code has been integrated into the existing Kandula-1 source tree under
&gt; org.apache.kandula.coordinator.ba.*. Relavent documentation can be found on
&gt; the
&gt; Kandula-1 website (http://ws.apache.org/kandula/1/ws-ba--how_to_use.html)
&gt; For mail archives, please follow the thread: http://mail-
&gt; archives.apache.org/mod_mbox/ws-kandula-dev/200705.mbox/%
&gt; 3c1179799398.46524f66c5501@webmail.purdue.edu%3e
&gt; 
&gt; --dasarath
&gt; 
&gt; ---------------------------------------------------------------------
&gt; To unsubscribe, e-mail: kandula-dev-unsubscribe@ws.apache.org
&gt; For additional commands, e-mail: kandula-dev-help@ws.apache.org
&gt; 
&gt; 



---------------------------------------------------------------------
To unsubscribe, e-mail: kandula-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: kandula-dev-help@ws.apache.org



</pre>
</div>
</content>
</entry>
<entry>
<title>[VOTE] Hannes and Georg as committers</title>
<author><name>Dasarath Weeratunge &lt;dweeratu@purdue.edu&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/ws-fx-dev/200706.mbox/%3c1182259618.4677d9a22c973@webmail.purdue.edu%3e"/>
<id>urn:uuid:%3c1182259618-4677d9a22c973@webmail-purdue-edu%3e</id>
<updated>2007-06-19T13:26:58Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hannes Erven (hannes@erven.at) and Georg Hicker (georg.hicker@reflex.at)
contributed the ws-ba implementation of Kandula-1 as part of their studies
at Vienna University of Technology. This work result in a paper at recent 
ICWS '07 (http://ws.apache.org/kandula/1/publications.html). Bulk of the new 
code has been integrated into the existing Kandula-1 source tree under
org.apache.kandula.coordinator.ba.*. Relavent documentation can be found on the
Kandula-1 website (http://ws.apache.org/kandula/1/ws-ba--how_to_use.html)
For mail archives, please follow the thread: http://mail-
archives.apache.org/mod_mbox/ws-kandula-dev/200705.mbox/%
3c1179799398.46524f66c5501@webmail.purdue.edu%3e

--dasarath

---------------------------------------------------------------------
To unsubscribe, e-mail: kandula-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: kandula-dev-help@ws.apache.org



</pre>
</div>
</content>
</entry>
</feed>
