You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fx-dev@ws.apache.org by ch...@apache.org on 2006/10/30 16:43:25 UTC

svn commit: r469167 [3/7] - in /webservices/sandesha/trunk/java: config/ interop/conf/ src/org/apache/sandesha2/ src/org/apache/sandesha2/client/ src/org/apache/sandesha2/handlers/ src/org/apache/sandesha2/i18n/ src/org/apache/sandesha2/msgprocessors/ ...

Modified: webservices/sandesha/trunk/java/src/org/apache/sandesha2/handlers/SandeshaGlobalInHandler.java
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/java/src/org/apache/sandesha2/handlers/SandeshaGlobalInHandler.java?view=diff&rev=469167&r1=469166&r2=469167
==============================================================================
--- webservices/sandesha/trunk/java/src/org/apache/sandesha2/handlers/SandeshaGlobalInHandler.java (original)
+++ webservices/sandesha/trunk/java/src/org/apache/sandesha2/handlers/SandeshaGlobalInHandler.java Mon Oct 30 07:43:24 2006
@@ -40,6 +40,7 @@
 import org.apache.sandesha2.i18n.SandeshaMessageHelper;
 import org.apache.sandesha2.i18n.SandeshaMessageKeys;
 import org.apache.sandesha2.msgprocessors.ApplicationMsgProcessor;
+import org.apache.sandesha2.msgprocessors.SequenceProcessor;
 import org.apache.sandesha2.storage.StorageManager;
 import org.apache.sandesha2.storage.Transaction;
 import org.apache.sandesha2.storage.beanmanagers.SequencePropertyBeanMgr;
@@ -275,8 +276,8 @@
 
 							seqPropMgr.update(receivedMsgsBean);
 
-							ApplicationMsgProcessor ackProcessor = new ApplicationMsgProcessor();
-							ackProcessor.sendAckIfNeeded(rmMsgContext, receivedMsgStr, storageManager);
+							SequenceProcessor processor = new SequenceProcessor();
+							processor.sendAckIfNeeded(rmMsgContext, receivedMsgStr, storageManager);
 							
 							
 							drop = true;
@@ -343,10 +344,10 @@
 					Sandesha2Constants.SequenceProperties.SERVER_COMPLETED_MESSAGES);
 			String receivedMsgStr = receivedMsgsBean.getValue();
 
-			ApplicationMsgProcessor ackProcessor = new ApplicationMsgProcessor();
 			// Even though the duplicate message is dropped, hv to send the ack
 			// if needed.
-			ackProcessor.sendAckIfNeeded(rmMsgContext, receivedMsgStr, storageManager);
+			SequenceProcessor processor = new SequenceProcessor();
+			processor.sendAckIfNeeded(rmMsgContext, receivedMsgStr, storageManager);
 
 		}
 		if (log.isDebugEnabled())

Modified: webservices/sandesha/trunk/java/src/org/apache/sandesha2/handlers/SandeshaInHandler.java
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/java/src/org/apache/sandesha2/handlers/SandeshaInHandler.java?view=diff&rev=469167&r1=469166&r2=469167
==============================================================================
--- webservices/sandesha/trunk/java/src/org/apache/sandesha2/handlers/SandeshaInHandler.java (original)
+++ webservices/sandesha/trunk/java/src/org/apache/sandesha2/handlers/SandeshaInHandler.java Mon Oct 30 07:43:24 2006
@@ -32,8 +32,7 @@
 import org.apache.sandesha2.i18n.SandeshaMessageKeys;
 import org.apache.sandesha2.msgprocessors.AckRequestedProcessor;
 import org.apache.sandesha2.msgprocessors.AcknowledgementProcessor;
-import org.apache.sandesha2.msgprocessors.MsgProcessor;
-import org.apache.sandesha2.msgprocessors.MsgProcessorFactory;
+import org.apache.sandesha2.msgprocessors.SequenceProcessor;
 import org.apache.sandesha2.storage.StorageManager;
 import org.apache.sandesha2.storage.Transaction;
 import org.apache.sandesha2.util.MsgInitializer;
@@ -100,18 +99,6 @@
 
 		try {
 
-			// Process Ack headers in the message
-			AcknowledgementProcessor ackProcessor = new AcknowledgementProcessor();
-			if(ackProcessor.processAckHeaders(msgCtx)){
-				returnValue = InvocationResponse.SUSPEND;
-			}
-
-			// Process Ack Request headers in the message
-			AckRequestedProcessor reqProcessor = new AckRequestedProcessor();
-			if(reqProcessor.processAckRequestedHeaders(msgCtx)){
-				returnValue = InvocationResponse.SUSPEND;
-			}
-
 			AxisService axisService = msgCtx.getAxisService();
 			if (axisService == null) {
 				String message = SandeshaMessageHelper.getMessage(SandeshaMessageKeys.axisServiceIsNull);
@@ -128,26 +115,25 @@
 				throw new AxisFault(message, ex);
 			}
 
-			//Ack messages will be paused
-			if (rmMsgCtx.getMessageType()==Sandesha2Constants.MessageTypes.ACK) {
-				rmMsgCtx.pause();
-				returnValue = InvocationResponse.SUSPEND;
-			}
-			
 			// validating the message
 			MessageValidator.validateMessage(rmMsgCtx, storageManager);
 
-			MsgProcessor msgProcessor = MsgProcessorFactory.getMessageProcessor(rmMsgCtx);
+			// Process Ack headers in the message
+			AcknowledgementProcessor ackProcessor = new AcknowledgementProcessor();
+			ackProcessor.processAckHeaders(rmMsgCtx);
+
+			// Process Ack Request headers in the message
+			AckRequestedProcessor reqProcessor = new AckRequestedProcessor();
+			if(reqProcessor.processAckRequestedHeaders(rmMsgCtx)){
+				returnValue = InvocationResponse.SUSPEND;
+			}
 
-			if (msgProcessor != null){
-				if(msgProcessor.processInMessage(rmMsgCtx)){
-					//this paused the msg
-					returnValue = InvocationResponse.SUSPEND;
-				}
+			// Process the Sequence header, if there is one
+			SequenceProcessor seqProcessor = new SequenceProcessor();
+			if(seqProcessor.processSequenceHeader(rmMsgCtx)) {
+				returnValue = InvocationResponse.SUSPEND;
 			}
-				
 
-			
 		} catch (AxisFault e) {
 			// message should not be sent in a exception situation.
 			msgCtx.pause();

Modified: webservices/sandesha/trunk/java/src/org/apache/sandesha2/i18n/SandeshaMessageKeys.java
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/java/src/org/apache/sandesha2/i18n/SandeshaMessageKeys.java?view=diff&rev=469167&r1=469166&r2=469167
==============================================================================
--- webservices/sandesha/trunk/java/src/org/apache/sandesha2/i18n/SandeshaMessageKeys.java (original)
+++ webservices/sandesha/trunk/java/src/org/apache/sandesha2/i18n/SandeshaMessageKeys.java Mon Oct 30 07:43:24 2006
@@ -1,251 +1,251 @@
-package org.apache.sandesha2.i18n;
-
-public class SandeshaMessageKeys {
-
-
-	public static final String cannotInitInMemoryStorageManager="cannotInitInMemoryStorageManager";
-	public static final String cannotInitPersistentStorageManager="cannotInitPersistentStorageManager";
-	public static final String cannotProceedDueToStorageManager="cannotProceedDueToStorageManager";
-	public static final String cannotGetStorageKey="cannotGetStorageKey";
-	public static final String cannotGetStorageManager="cannotGetStorageManager";
-	public static final String storageManagerMustImplement="storageManagerMustImplement";
-	public static final String cannotInitSecurityManager="cannotInitSecurityManager";
-	public static final String securityManagerMustImplement="securityManagerMustImplement";
-	public static final String cannotFindModulePolicies="cannotFindModulePolicies";
-
-	public static final String commitError="commitError";
-	public static final String rollbackError="rollbackError";
-	public static final String inMsgError="inMsgError";
-	public static final String outMsgError="outMsgError";
-	public static final String invokeMsgError="invokeMsgError";
-	public static final String msgError="msgError";
-	public static final String sendMsgError="sendMsgError";
-	public static final String noValidSyncResponse="noValidSyncResponse";
-	public static final String generalError="generalError";
-	public static final String classLoaderNotFound="classLoaderNotFound";
-
-	public static final String defaultPropertyBeanNotSet="defaultPropertyBeanNotSet";
-	public static final String propertyBeanNotSet="propertyBeanNotSet";
-	public static final String optionsObjectNotSet="optionsObjectNotSet";
-	public static final String serviceContextNotSet="serviceContextNotSet";
-	public static final String sequenceIdBeanNotSet="sequenceIdBeanNotSet";
-	public static final String configContextNotSet="configContextNotSet";
-	public static final String soapEnvNotSet="soapEnvNotSet";
-	public static final String soapBodyNotPresent="soapBodyNotPresent";
-	public static final String unknownSoapVersion="unknownSoapVersion";
-	public static final String axisServiceIsNull="axisServiceIsNull";
-	public static final String msgContextNotSetInbound="msgContextNotSetInbound";
-	public static final String msgContextNotSetOutbound="msgContextNotSetOutbound";
-	public static final String msgContextNotSet="msgContextNotSet";
-	public static final String requestMsgContextNull="requestMsgContextNull";
-	public static final String axisOperationError="axisOperationError";
-	public static final String axisOperationRegisterError="axisOperationRegisterError";
-	public static final String transportOutNotPresent="transportOutNotPresent";
-	public static final String storedKeyNotPresent="storedKeyNotPresent";
-	public static final String invalidQName="invalidQName";
-	public static final String couldNotFindPropertyKey="couldNotFindPropertyKey";
-
-	public static final String dummyCallback="dummyCallback";
-	public static final String cannotFindSequenceID="cannotFindSequenceID";
-	public static final String dummyCallbackError="dummyCallbackError";
-	public static final String setAValidMsgNumber="setAValidMsgNumber";
-	public final static String processTokenMethodError="processTokenMethodError";
-	public final static String policyProcessingException="policyProcessingException"; 
-	public static final String errorOnTokenStack="errorOnTokenStack";
-	public static final String unknownTokenAbortTran="unknownTokenAbortTran";
-	public static final String commitingUnknownToken="commitingUnknownToken";
-	public static final String cannotStartTransportListenerDueToError="cannotStartTransportListener";
-	public static final String cannotStartListenerForIncommingMsgs="cannotStartListenerForIncommingMsgs";
-	public static final String selectRSNotSupported="selectRSNotSupported";
-	public static final String nonUniqueResult="nonUniqueResult";
-	public static final String invalidStringArray="invalidStringArray";
-	public static final String nextMsgNotSetCorrectly="nextMsgNotSetCorrectly";
-	public static final String invalidNextMsgNumber="invalidNextMsgNumber";
-	public static final String cannotCointinueSender="cannotCointinueSender";
-	public static final String msgContextNotPresentInStorage="msgContextNotPresentInStorage";
-	public static final String sendHasUnavailableMsgEntry="sendHasUnavailableMsgEntry";
-	public static final String cannotInnitMessage="cannotInnitMessage";
-	public static final String propertyInvalidValue="propertyInvalidValue";
-	public static final String couldNotCopyParameters="couldNotCopyParameters";
-	public static final String senderBeanNotFound="senderBeanNotFound";
-	public static final String workAlreadyAssigned="workAlreadyAssigned";
-	public static final String workNotPresent="workNotPresent";
-	public static final String cannotSendToTheAddress="cannotSendToTheAddress";
-	
-
-
-	public static final String rmNamespaceNotMatchSequence="rmNamespaceNotMatchSequence";
-	public static final String wsaNamespaceNotMatchSequence="wsaNamespaceNotMatchSequence";
-	public static final String unknownWSAVersion="unknownWSAVersion";
-	public static final String rmNamespaceMismatch="rmNamespaceMismatch";
-	public static final String emptyAckRequestSpecLevel="emptyAckRequestSpecLevel";
-	public static final String closeSequenceSpecLevel="closeSequenceSpecLevel";
-	public static final String unknownSpec="unknownSpec";
-	public static final String unknownRMNamespace="unknownRMNamespace";
-	public static final String unknownNamespace="unknownNamespace";
-	public static final String cannotDecideRMVersion="cannotDecideRMVersion";
-	public static final String specVersionPropertyNotAvailable="specVersionPropertyNotAvailable";
-	public static final String specVersionNotSet="specVersionNotSet";
-	public static final String specDoesNotSupportElement="specDoesNotSupportElement";
-		
-	public static final String couldNotSendTerminate="couldNotSendTerminate";
-	public static final String couldNotSendClose="couldNotSendClose";
-	public static final String couldNotSendAck="couldNotSendAck";
-	public static final String couldNotSendTerminateResponse="couldNotSendTerminateResponse";
-	public static final String couldNotSendTerminateSeqNotFound="couldNotSendTerminateSeqNotFound";
-	public static final String couldNotSendFault="couldNotSendFault";
-	public static final String cannotSendAckRequestNotActive="cannotSendAckRequestNotActive";
-	public static final String cannotSendAckRequestException="cannotSendAckRequestException";
-	public static final String cannotCloseSequenceNotActive="cannotCloseSequenceNotActive";
-	public static final String noSequenceEstablished="noSequenceEstablished";
-	public static final String invalidInternalSequenceID="invalidInternalSequenceID";
-	public static final String tempNotSetOnReceivedMsg="tempNotSetOnReceivedMsg";
-	public static final String completedMsgBeanIsNull="completedMsgBeanIsNull";
-	public static final String internalSeqBeanNotAvailableOnSequence="internalSeqBeanNotAvailableOnSequence";
-	public static final String createSeqEntryNotFound="createSeqEntryNotFound";
-
-	public static final String toEPRNotValid="toEPRNotValid";
-	public static final String noWSAACtionValue="noWSAACtionValue";
-	public static final String cannotFindSequence="cannotFindSequence";
-	public static final String notValidTerminate="notValidTerminate";
-	public static final String notValidTimeOut="notValidTimeOut";
-	public static final String cannotFindAcksTo="cannotFindAcksTo";
-	public static final String droppingDuplicate="droppingDuplicate";
-	public static final String cannotAcceptMsgAsSequenceClosed="cannotAcceptMsgAsSequenceClosed"; 
-	public static final String msgNumberMustBeLargerThanZero="msgNumberMustBeLargerThanZero";
-	public static final String msgNumberLargerThanLastMsg="msgNumberLargerThanLastMsg";
-	public static final String msgNumberNotLargerThanLastMsg="msgNumberNotLargerThanLastMsg";
-	public static final String outMsgHasNoEnvelope="outMsgHasNoEnvelope";
-	public static final String msgNumberExceededLastMsgNo="msgNumberExceededLastMsgNo";
-	public static final String ackInvalid="ackInvalid";
-	public static final String highestMsgKeyNotStored="highestMsgKeyNotStored";
-	public static final String cannotHaveFinalWithNack="cannotHaveFinalWithNack";
-	public static final String accptButNoSequenceOffered="accptButNoSequenceOffered";
-	public static final String relatesToNotAvailable="relatesToNotAvailable";
-	public static final String cannotDerriveAckInterval="cannotDerriveAckInterval";
-	public static final String cannotDerriveRetransInterval="cannotDerriveRetransInterval";
-	public static final String cannotDerriveInactivityTimeout="cannotDerriveInactivityTimeout";
-	public static final String noCreateSeqParts="noCreateSeqParts";
-	public static final String noAcceptPart="noAcceptPart";
-	public static final String noAcksToPartInCreateSequence="noAcksToPartInCreateSequence";
-	public static final String tempSeqIdNotSet="tempSeqIdNotSet";
-	public static final String ackRandDoesNotHaveCorrectValues="ackRandDoesNotHaveCorrectValues";
-	public static final String cannotSetAckRangeNullElement="cannotSetAckRangeNullElement";
-	public static final String completedMessagesNull="completedMessagesNull";
-	public static final String emptyLastMsg="emptyLastMsg";
-	public static final String acksToStrNotSet="acksToStrNotSet";
-	public static final String invalidSequenceID="invalidsequenceID";
-	public static final String cantSendMakeConnectionNoTransportOut="cantSendMakeConnectionNoTransportOut";
-	
-	public static final String noCreateSeqResponse="noCreateSeqResponse";
-	public static final String noTerminateSeqPart="noTerminateSeqPart";
-	public static final String noNackInSeqAckPart="noNackInSeqAckPart";
-	public static final String nackDoesNotContainValidLongValue="nackDoesNotContainValidLongValue";
-	public static final String cannotSetNackElemnt="cannotSetNackElemnt";
-	public static final String seqAckPartIsNull="seqAckPartIsNull";
-	public static final String cannotAddSequencePartNullMsgNumber="cannotAddSequencePartNullMsgNumber";
-	public static final String cannotSetSeqAck="cannotSetSeqAck";
-	public static final String noneNotAllowedNamespace="noneNotAllowedNamespace";
-	public static final String noneNotAllowedAckRangesPresent="noneNotAllowedAckRangesPresent";
-	public static final String noneNotAllowedNackPresent="noneNotAllowedNackPresent";
-	public static final String finalNotAllowedNamespace="finalNotAllowedNamespace";
-	public static final String noFaultCodeNullElement="noFaultCodeNullElement";
-	public static final String noSeqFaultInElement="noSeqFaultInElement";
-	public static final String noSeqOfferInElement="noSeqOfferInElement";
-	public static final String noCreateSeqInElement="noCreateSeqInElement";
-	public static final String noTerminateSeqInElement="noTerminateSeqInElement";
-	public static final String noTerminateSeqResponseInElement="noTerminateSeqResponseInElement";
-	public static final String noAcceptPartInElement="noAcceptPartInElement";
-	public static final String noUpperOrLowerAttributesInElement="noUpperOrLowerAttributesInElement";
-	public static final String noSequencePartInElement="noSequencePartInElement";
-	public static final String noLastMessagePartInElement="noLastMessagePartInElement";
-	public static final String noFinalPartInElement="noFinalPartInElement"; 
-	public static final String noNonePartInElement="noNonePartInElement";
-	public static final String noCloseSequencePartInElement="noCloseSequencePartInElement";
-	public static final String noMessageNumberPartInElement="noMessageNumberPartInElement";
-	public static final String noCloseSeqResponsePartInElement="noCloseSeqResponsePartInElement";
-	public static final String noExpiresPartInElement="noExpiresPartInElement";
-	public static final String noCreateSeqPartInElement="noCreateSeqPartInElement";
-	public static final String noAckRequestedPartInElement="noAckRequestedPartInElement";
-	public static final String noCreateSeqResponsePartInElement="noCreateSeqResponsePartInElement";
-	public static final String noFaultCodePart="noFaultCodePart";
-	public static final String cannotFindAddressElement="cannotFindAddressElement";
-	public static final String cannotFindAddressText="cannotFindAddressText";
-	public static final String nullPassedElement="nullPassedElement";
-	public static final String noAckRequestedElement="noAckRequestedElement";
-	public static final String invalidAckMessageEntry="invalidAckMessageEntry";
-	public static final String seqPartIsNull="seqPartIsNull";
-	public static final String incomingSequenceNotValidID="incomingSequenceNotValidID";
-	public static final String noMakeConnectionPartInElement="noCloseSequencePartInElement";
-
-	public static final String seqFaultCannotBeExtractedToNonHeader="seqFaultCannotBeExtractedToNonHeader";
-	public static final String seqElementCannotBeAddedToNonHeader="seqElementCannotBeAddedToNonHeader";
-	public static final String ackRequestedCannotBeAddedToNonHeader="ackRequestedCannotBeAddedToNonHeader";
-	public static final String terminateSeqCannotBeAddedToNonBody="terminateSeqCannotBeAddedToNonBody";
-	public static final String terminateSeqResponseCannotBeAddedToNonBody="terminateSeqResponseCannotBeAddedToNonBody";
-	public static final String closeSeqCannotBeAddedToNonBody="closeSeqCannotBeAddedToNonBody";
-	public static final String closeSeqCannotBeExtractedFromNonBody="closeSeqCannotBeExtractedFromNonBody";
-	public static final String closeSeqResponseCannotBeAddedToNonBody="closeSeqResponseCannotBeAddedToNonBody";
-	public static final String createSeqCannotBeAddedToNonBody="createSeqCannotBeAddedToNonBody";
-	public static final String createSeqResponseCannotBeAddedToNonBody="createSeqResponseCannotBeAddedToNonBody";
-	public static final String seqOfferNullID="seqOfferNullID";
-	public static final String terminateSequence="terminateSequence";
-	public static final String terminateSeqResponseNullID="terminateSeqResponseNullID";
-	public static final String sequencePartNullID="sequencePartNullID";
-	public static final String closeSeqPartNullID="closeSeqPartNullID";
-	public static final String invalidIdentifier="invalidIdentifier";
-	public static final String closeSeqResponsePartNullID="closeSeqResponsePartNullID";
-	public static final String ackRequestNullID="ackRequestNullID";
-	public static final String createSeqNullAcksTo="createSeqNullAcksTo";
-	public static final String acceptNullAcksTo="acceptNullAcksTo";
-	public static final String noAcksToPart="noAcksToPart";
-	public static final String noElementPart="noElementPart";
-	public static final String cannotProcessExpires="cannotProcessExpires";
-	public static final String noFaultCode="noFaultCode";
-	public static final String seqAckNonHeader="seqAckNonHeader";
-	public static final String makeConnectionCannotBeAddedToNonBody="makeConnectionCannotBeAddedToNonBody";
-
-	public static final String cannotSetAcksTo="cannotSetAcksTo";
-	public static final String cannotSetEndpoint="cannotSetEndpoint";
-	public static final String invalidMsgNumber="invalidMsgNumber";
-	public static final String addressNotValid="addressNotValid";
-
-	public static final String incommingSequenceReportNotFound="incommingSequenceReportNotFound";
-	public static final String cannotGenerateReport="cannotGenerateReport";
-	public static final String cannotFindReportForGivenData="cannotFindReportForGivenData";
-	public static final String cannotGenerateReportNonUniqueSequence="cannotGenerateReportNonUniqueSequence";
-
-	public static final String outSeqIDIsNull="outSeqIDIsNull";
-	public static final String requestMsgNotPresent="requestMsgNotPresent";
-	public static final String requestSeqIsNull="requestSeqIsNull";
-	public static final String newSeqIdIsNull="newSeqIdIsNull";
-	public static final String unavailableAppMsg="unavailableAppMsg";
-	public static final String terminateAddedPreviously="terminateAddedPreviously";
-	public static final String maximumRetransmissionCountProcessor="maximumRetransmissionCountProcessor";
-	public static final String nullMsgId="nullMsgId";
-	public static final String storageMapNotPresent="storageMapNotPresent";
-	public static final String entryNotPresentForUpdating="entryNotPresentForUpdating";
-	public static final String appMsgIsNull="appMsgIsNull";
-	public static final String terminateOpperationIsNull="terminateOpperationIsNull";
-	public static final String invalidMsgNumberList="invalidMsgNumberList";
-	public static final String cannotFindReqMsgFromOpContext="cannotFindReqMsgFromOpContext";
-
-	public static final String secureDummyNoProof="secureDummyNoProof";
-	public static final String secureDummyNoToken="secureDummyNoToken";
-	public static final String secureDummyNoSTR  ="secureDummyNoSTR";
-	
-	public static final String cannotFindTransportInDesc = "cannotFindTransportInDesc";
-	public static final String toEPRNotSet = "toEPRNotSet";
-    
-    public final static String errorRetrievingSecurityToken = "errorRetrievingSecurityToken";
-	public final static String proofOfPossessionNotVerified = "proofOfPossessionNotVerified";
-    public final static String noSecurityResults = "noSecurityResults";
-    public final static String noSecConvTokenInPolicy = "noSecConvTokenInPolicy";
-    public final static String noServicePolicy = "noServicePolicy";
-    
-    public final static String elementMustForSpec = "elementMustForSpec";
-    public final static String addressingNamespaceNotSet = "addressingNamespaceNotSet";
-    public final static String invalidOfferNoResponseEndpoint = "invalidOfferNoResponseEndpoint";
-    public final static String invalidElementFoundWithinElement = "invalidElementFoundWithinElement";
-    
+package org.apache.sandesha2.i18n;
+
+public class SandeshaMessageKeys {
+
+
+	public static final String cannotInitInMemoryStorageManager="cannotInitInMemoryStorageManager";
+	public static final String cannotInitPersistentStorageManager="cannotInitPersistentStorageManager";
+	public static final String cannotProceedDueToStorageManager="cannotProceedDueToStorageManager";
+	public static final String cannotGetStorageKey="cannotGetStorageKey";
+	public static final String cannotGetStorageManager="cannotGetStorageManager";
+	public static final String storageManagerMustImplement="storageManagerMustImplement";
+	public static final String cannotInitSecurityManager="cannotInitSecurityManager";
+	public static final String securityManagerMustImplement="securityManagerMustImplement";
+	public static final String cannotFindModulePolicies="cannotFindModulePolicies";
+
+	public static final String commitError="commitError";
+	public static final String rollbackError="rollbackError";
+	public static final String inMsgError="inMsgError";
+	public static final String outMsgError="outMsgError";
+	public static final String invokeMsgError="invokeMsgError";
+	public static final String msgError="msgError";
+	public static final String sendMsgError="sendMsgError";
+	public static final String noValidSyncResponse="noValidSyncResponse";
+	public static final String generalError="generalError";
+	public static final String classLoaderNotFound="classLoaderNotFound";
+
+	public static final String defaultPropertyBeanNotSet="defaultPropertyBeanNotSet";
+	public static final String propertyBeanNotSet="propertyBeanNotSet";
+	public static final String optionsObjectNotSet="optionsObjectNotSet";
+	public static final String serviceContextNotSet="serviceContextNotSet";
+	public static final String sequenceIdBeanNotSet="sequenceIdBeanNotSet";
+	public static final String configContextNotSet="configContextNotSet";
+	public static final String soapEnvNotSet="soapEnvNotSet";
+	public static final String soapBodyNotPresent="soapBodyNotPresent";
+	public static final String unknownSoapVersion="unknownSoapVersion";
+	public static final String axisServiceIsNull="axisServiceIsNull";
+	public static final String msgContextNotSetInbound="msgContextNotSetInbound";
+	public static final String msgContextNotSetOutbound="msgContextNotSetOutbound";
+	public static final String msgContextNotSet="msgContextNotSet";
+	public static final String requestMsgContextNull="requestMsgContextNull";
+	public static final String axisOperationError="axisOperationError";
+	public static final String axisOperationRegisterError="axisOperationRegisterError";
+	public static final String transportOutNotPresent="transportOutNotPresent";
+	public static final String storedKeyNotPresent="storedKeyNotPresent";
+	public static final String invalidQName="invalidQName";
+	public static final String couldNotFindPropertyKey="couldNotFindPropertyKey";
+	public static final String couldNotFindOperation="couldNotFindOperation";
+
+	public static final String dummyCallback="dummyCallback";
+	public static final String cannotFindSequenceID="cannotFindSequenceID";
+	public static final String dummyCallbackError="dummyCallbackError";
+	public static final String setAValidMsgNumber="setAValidMsgNumber";
+	public final static String processTokenMethodError="processTokenMethodError";
+	public final static String policyProcessingException="policyProcessingException"; 
+	public static final String errorOnTokenStack="errorOnTokenStack";
+	public static final String unknownTokenAbortTran="unknownTokenAbortTran";
+	public static final String commitingUnknownToken="commitingUnknownToken";
+	public static final String cannotStartTransportListenerDueToError="cannotStartTransportListener";
+	public static final String cannotStartListenerForIncommingMsgs="cannotStartListenerForIncommingMsgs";
+	public static final String selectRSNotSupported="selectRSNotSupported";
+	public static final String nonUniqueResult="nonUniqueResult";
+	public static final String invalidStringArray="invalidStringArray";
+	public static final String nextMsgNotSetCorrectly="nextMsgNotSetCorrectly";
+	public static final String invalidNextMsgNumber="invalidNextMsgNumber";
+	public static final String cannotCointinueSender="cannotCointinueSender";
+	public static final String msgContextNotPresentInStorage="msgContextNotPresentInStorage";
+	public static final String sendHasUnavailableMsgEntry="sendHasUnavailableMsgEntry";
+	public static final String cannotInnitMessage="cannotInnitMessage";
+	public static final String propertyInvalidValue="propertyInvalidValue";
+	public static final String couldNotCopyParameters="couldNotCopyParameters";
+	public static final String senderBeanNotFound="senderBeanNotFound";
+	public static final String workAlreadyAssigned="workAlreadyAssigned";
+	public static final String workNotPresent="workNotPresent";
+	public static final String cannotSendToTheAddress="cannotSendToTheAddress";
+	
+
+
+	public static final String rmNamespaceNotMatchSequence="rmNamespaceNotMatchSequence";
+	public static final String wsaNamespaceNotMatchSequence="wsaNamespaceNotMatchSequence";
+	public static final String unknownWSAVersion="unknownWSAVersion";
+	public static final String rmNamespaceMismatch="rmNamespaceMismatch";
+	public static final String emptyAckRequestSpecLevel="emptyAckRequestSpecLevel";
+	public static final String closeSequenceSpecLevel="closeSequenceSpecLevel";
+	public static final String unknownSpec="unknownSpec";
+	public static final String unknownRMNamespace="unknownRMNamespace";
+	public static final String unknownNamespace="unknownNamespace";
+	public static final String cannotDecideRMVersion="cannotDecideRMVersion";
+	public static final String specVersionPropertyNotAvailable="specVersionPropertyNotAvailable";
+	public static final String specVersionNotSet="specVersionNotSet";
+	public static final String specDoesNotSupportElement="specDoesNotSupportElement";
+		
+	public static final String couldNotSendTerminate="couldNotSendTerminate";
+	public static final String couldNotSendClose="couldNotSendClose";
+	public static final String couldNotSendAck="couldNotSendAck";
+	public static final String couldNotSendTerminateResponse="couldNotSendTerminateResponse";
+	public static final String couldNotSendTerminateSeqNotFound="couldNotSendTerminateSeqNotFound";
+	public static final String couldNotSendFault="couldNotSendFault";
+	public static final String cannotSendAckRequestNotActive="cannotSendAckRequestNotActive";
+	public static final String cannotSendAckRequestException="cannotSendAckRequestException";
+	public static final String cannotCloseSequenceNotActive="cannotCloseSequenceNotActive";
+	public static final String noSequenceEstablished="noSequenceEstablished";
+	public static final String invalidInternalSequenceID="invalidInternalSequenceID";
+	public static final String tempNotSetOnReceivedMsg="tempNotSetOnReceivedMsg";
+	public static final String completedMsgBeanIsNull="completedMsgBeanIsNull";
+	public static final String internalSeqBeanNotAvailableOnSequence="internalSeqBeanNotAvailableOnSequence";
+	public static final String createSeqEntryNotFound="createSeqEntryNotFound";
+
+	public static final String toEPRNotValid="toEPRNotValid";
+	public static final String noWSAACtionValue="noWSAACtionValue";
+	public static final String cannotFindSequence="cannotFindSequence";
+	public static final String notValidTerminate="notValidTerminate";
+	public static final String notValidTimeOut="notValidTimeOut";
+	public static final String cannotFindAcksTo="cannotFindAcksTo";
+	public static final String droppingDuplicate="droppingDuplicate";
+	public static final String cannotAcceptMsgAsSequenceClosed="cannotAcceptMsgAsSequenceClosed"; 
+	public static final String msgNumberMustBeLargerThanZero="msgNumberMustBeLargerThanZero";
+	public static final String msgNumberLargerThanLastMsg="msgNumberLargerThanLastMsg";
+	public static final String msgNumberNotLargerThanLastMsg="msgNumberNotLargerThanLastMsg";
+	public static final String outMsgHasNoEnvelope="outMsgHasNoEnvelope";
+	public static final String msgNumberExceededLastMsgNo="msgNumberExceededLastMsgNo";
+	public static final String ackInvalid="ackInvalid";
+	public static final String highestMsgKeyNotStored="highestMsgKeyNotStored";
+	public static final String cannotHaveFinalWithNack="cannotHaveFinalWithNack";
+	public static final String accptButNoSequenceOffered="accptButNoSequenceOffered";
+	public static final String relatesToNotAvailable="relatesToNotAvailable";
+	public static final String cannotDerriveAckInterval="cannotDerriveAckInterval";
+	public static final String cannotDerriveRetransInterval="cannotDerriveRetransInterval";
+	public static final String cannotDerriveInactivityTimeout="cannotDerriveInactivityTimeout";
+	public static final String noCreateSeqParts="noCreateSeqParts";
+	public static final String noAcceptPart="noAcceptPart";
+	public static final String noAcksToPartInCreateSequence="noAcksToPartInCreateSequence";
+	public static final String tempSeqIdNotSet="tempSeqIdNotSet";
+	public static final String ackRandDoesNotHaveCorrectValues="ackRandDoesNotHaveCorrectValues";
+	public static final String cannotSetAckRangeNullElement="cannotSetAckRangeNullElement";
+	public static final String completedMessagesNull="completedMessagesNull";
+	public static final String emptyLastMsg="emptyLastMsg";
+	public static final String acksToStrNotSet="acksToStrNotSet";
+	public static final String invalidSequenceID="invalidsequenceID";
+	public static final String cantSendMakeConnectionNoTransportOut="cantSendMakeConnectionNoTransportOut";
+	
+	public static final String noCreateSeqResponse="noCreateSeqResponse";
+	public static final String noTerminateSeqPart="noTerminateSeqPart";
+	public static final String noNackInSeqAckPart="noNackInSeqAckPart";
+	public static final String nackDoesNotContainValidLongValue="nackDoesNotContainValidLongValue";
+	public static final String cannotSetNackElemnt="cannotSetNackElemnt";
+	public static final String seqAckPartIsNull="seqAckPartIsNull";
+	public static final String cannotAddSequencePartNullMsgNumber="cannotAddSequencePartNullMsgNumber";
+	public static final String cannotSetSeqAck="cannotSetSeqAck";
+	public static final String noneNotAllowedNamespace="noneNotAllowedNamespace";
+	public static final String noneNotAllowedAckRangesPresent="noneNotAllowedAckRangesPresent";
+	public static final String noneNotAllowedNackPresent="noneNotAllowedNackPresent";
+	public static final String finalNotAllowedNamespace="finalNotAllowedNamespace";
+	public static final String noFaultCodeNullElement="noFaultCodeNullElement";
+	public static final String noSeqFaultInElement="noSeqFaultInElement";
+	public static final String noSeqOfferInElement="noSeqOfferInElement";
+	public static final String noCreateSeqInElement="noCreateSeqInElement";
+	public static final String noTerminateSeqInElement="noTerminateSeqInElement";
+	public static final String noTerminateSeqResponseInElement="noTerminateSeqResponseInElement";
+	public static final String noAcceptPartInElement="noAcceptPartInElement";
+	public static final String noUpperOrLowerAttributesInElement="noUpperOrLowerAttributesInElement";
+	public static final String noSequencePartInElement="noSequencePartInElement";
+	public static final String noLastMessagePartInElement="noLastMessagePartInElement";
+	public static final String noFinalPartInElement="noFinalPartInElement"; 
+	public static final String noNonePartInElement="noNonePartInElement";
+	public static final String noCloseSequencePartInElement="noCloseSequencePartInElement";
+	public static final String noMessageNumberPartInElement="noMessageNumberPartInElement";
+	public static final String noCloseSeqResponsePartInElement="noCloseSeqResponsePartInElement";
+	public static final String noExpiresPartInElement="noExpiresPartInElement";
+	public static final String noCreateSeqPartInElement="noCreateSeqPartInElement";
+	public static final String noAckRequestedPartInElement="noAckRequestedPartInElement";
+	public static final String noCreateSeqResponsePartInElement="noCreateSeqResponsePartInElement";
+	public static final String noFaultCodePart="noFaultCodePart";
+	public static final String cannotFindAddressElement="cannotFindAddressElement";
+	public static final String cannotFindAddressText="cannotFindAddressText";
+	public static final String nullPassedElement="nullPassedElement";
+	public static final String noAckRequestedElement="noAckRequestedElement";
+	public static final String invalidAckMessageEntry="invalidAckMessageEntry";
+	public static final String seqPartIsNull="seqPartIsNull";
+	public static final String incomingSequenceNotValidID="incomingSequenceNotValidID";
+	public static final String noMakeConnectionPartInElement="noCloseSequencePartInElement";
+
+	public static final String seqFaultCannotBeExtractedToNonHeader="seqFaultCannotBeExtractedToNonHeader";
+	public static final String seqElementCannotBeAddedToNonHeader="seqElementCannotBeAddedToNonHeader";
+	public static final String ackRequestedCannotBeAddedToNonHeader="ackRequestedCannotBeAddedToNonHeader";
+	public static final String terminateSeqCannotBeAddedToNonBody="terminateSeqCannotBeAddedToNonBody";
+	public static final String terminateSeqResponseCannotBeAddedToNonBody="terminateSeqResponseCannotBeAddedToNonBody";
+	public static final String closeSeqCannotBeAddedToNonBody="closeSeqCannotBeAddedToNonBody";
+	public static final String closeSeqCannotBeExtractedFromNonBody="closeSeqCannotBeExtractedFromNonBody";
+	public static final String closeSeqResponseCannotBeAddedToNonBody="closeSeqResponseCannotBeAddedToNonBody";
+	public static final String createSeqCannotBeAddedToNonBody="createSeqCannotBeAddedToNonBody";
+	public static final String createSeqResponseCannotBeAddedToNonBody="createSeqResponseCannotBeAddedToNonBody";
+	public static final String seqOfferNullID="seqOfferNullID";
+	public static final String terminateSequence="terminateSequence";
+	public static final String terminateSeqResponseNullID="terminateSeqResponseNullID";
+	public static final String sequencePartNullID="sequencePartNullID";
+	public static final String closeSeqPartNullID="closeSeqPartNullID";
+	public static final String invalidIdentifier="invalidIdentifier";
+	public static final String closeSeqResponsePartNullID="closeSeqResponsePartNullID";
+	public static final String ackRequestNullID="ackRequestNullID";
+	public static final String createSeqNullAcksTo="createSeqNullAcksTo";
+	public static final String acceptNullAcksTo="acceptNullAcksTo";
+	public static final String noAcksToPart="noAcksToPart";
+	public static final String noElementPart="noElementPart";
+	public static final String cannotProcessExpires="cannotProcessExpires";
+	public static final String noFaultCode="noFaultCode";
+	public static final String seqAckNonHeader="seqAckNonHeader";
+	public static final String makeConnectionCannotBeAddedToNonBody="makeConnectionCannotBeAddedToNonBody";
+
+	public static final String cannotSetAcksTo="cannotSetAcksTo";
+	public static final String cannotSetEndpoint="cannotSetEndpoint";
+	public static final String invalidMsgNumber="invalidMsgNumber";
+	public static final String addressNotValid="addressNotValid";
+
+	public static final String incommingSequenceReportNotFound="incommingSequenceReportNotFound";
+	public static final String cannotGenerateReport="cannotGenerateReport";
+	public static final String cannotFindReportForGivenData="cannotFindReportForGivenData";
+	public static final String cannotGenerateReportNonUniqueSequence="cannotGenerateReportNonUniqueSequence";
+
+	public static final String outSeqIDIsNull="outSeqIDIsNull";
+	public static final String requestMsgNotPresent="requestMsgNotPresent";
+	public static final String requestSeqIsNull="requestSeqIsNull";
+	public static final String newSeqIdIsNull="newSeqIdIsNull";
+	public static final String unavailableAppMsg="unavailableAppMsg";
+	public static final String terminateAddedPreviously="terminateAddedPreviously";
+	public static final String maximumRetransmissionCountProcessor="maximumRetransmissionCountProcessor";
+	public static final String nullMsgId="nullMsgId";
+	public static final String storageMapNotPresent="storageMapNotPresent";
+	public static final String entryNotPresentForUpdating="entryNotPresentForUpdating";
+	public static final String appMsgIsNull="appMsgIsNull";
+	public static final String invalidMsgNumberList="invalidMsgNumberList";
+	public static final String cannotFindReqMsgFromOpContext="cannotFindReqMsgFromOpContext";
+
+	public static final String secureDummyNoProof="secureDummyNoProof";
+	public static final String secureDummyNoToken="secureDummyNoToken";
+	public static final String secureDummyNoSTR  ="secureDummyNoSTR";
+	
+	public static final String cannotFindTransportInDesc = "cannotFindTransportInDesc";
+	public static final String toEPRNotSet = "toEPRNotSet";
+    
+    public final static String errorRetrievingSecurityToken = "errorRetrievingSecurityToken";
+	public final static String proofOfPossessionNotVerified = "proofOfPossessionNotVerified";
+    public final static String noSecurityResults = "noSecurityResults";
+    public final static String noSecConvTokenInPolicy = "noSecConvTokenInPolicy";
+    public final static String noServicePolicy = "noServicePolicy";
+    
+    public final static String elementMustForSpec = "elementMustForSpec";
+    public final static String addressingNamespaceNotSet = "addressingNamespaceNotSet";
+    public final static String invalidOfferNoResponseEndpoint = "invalidOfferNoResponseEndpoint";
+    public final static String invalidElementFoundWithinElement = "invalidElementFoundWithinElement";
+    
 }

Modified: webservices/sandesha/trunk/java/src/org/apache/sandesha2/i18n/resource.properties
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/java/src/org/apache/sandesha2/i18n/resource.properties?view=diff&rev=469167&r1=469166&r2=469167
==============================================================================
--- webservices/sandesha/trunk/java/src/org/apache/sandesha2/i18n/resource.properties (original)
+++ webservices/sandesha/trunk/java/src/org/apache/sandesha2/i18n/resource.properties Mon Oct 30 07:43:24 2006
@@ -1,277 +1,277 @@
-# Translation instructions.
-# 1.  Each message line is of the form key=value.
-#     Translate the value, DO NOT translate the key.
-# 2.  The messages may contain arguments that will be filled in
-#     by the runtime.  These are of the form: {0}, {1}, etc.
-#     These must appear as is in the message, though the order
-#     may be changed to support proper language syntax.
-# 3.  If a single quote character is to appear in the resulting
-#     message, it must appear in this file as two consecutive
-#     single quote characters.
-# 4.  Lines beginning with "#" (like this one) are comment lines
-#     and may contain translation instructions.  They need not be
-#     translated unless your translated file, rather than this file,
-#     will serve as a base for other translators.
-
-
-#-------------------------------------
-#
-#	General Sandesha messages
-#
-#-------------------------------------
-
-cannotInitInMemoryStorageManager=Cannot initialize the given in-memory storage manager due to exception {0}.
-cannotInitPersistentStorageManager=Cannot initialize the given persistent storage manager due to exception {0}.
-cannotProceedDueToStorageManager=Sandesha2 Internal Error: the StorageManager is not available due to exception {0}.
-cannotGetStorageKey=Sandesha2 Internal Error: could not obtain the sandesha2 storage key in order to store the message.
-cannotGetStorageManager=Sandesha2 Internal Error: could not load the specified storage manager. 
-storageManagerMustImplement=StorageManager {0} must implement the org.apache.sandesha2.storage.StorageManager interface.
-cannotInitSecurityManager=Cannot initialize the given security manager due to exception {0}.
-securityManagerMustImplement=SecurityManager {0} must implement the org.apache.sandesha2.storage.StorageManager interface.
-cannotFindModulePolicies=No policies were found in the module.xml at the module initiation time
-
-commitError=Exception thrown when trying to commit the transaction: {0}
-rollbackError=Exception thrown when trying to rollback the transaction: {0}
-inMsgError=Sandesha2 got an exception when processing an in message: {0}
-outMsgError=Sandesha2 got an exception when processing an out message: {0}
-invokeMsgError=Sandesha2 got an exception when invoking message: {0}
-msgError=Sandesha2 got an exception when processing a message: {0}
-sendMsgError=Sandesha2 got an exception when sending a message: {0}
-noValidSyncResponse=Sandesha2 sender thread has not received a valid synchronous response...
-generalError=Sandesha2 Internal Error: sandesha2 encountered the following exception {0}
-classLoaderNotFound=Module class loader not found.
-
-defaultPropertyBeanNotSet=Sandesha2 Internal Error: ''DefaultPropertyBean'' is not set.
-propertyBeanNotSet=Sandesha2 Internal Error: ''PropertyBean'' is not set.
-optionsObjectNotSet=Sandesha2 Internal Error: ''Options'' object is not set.
-serviceContextNotSet=Sandesha2 Internal Error: ''ServiceContext'' is not set
-sequenceIdBeanNotSet=Sandesha2 Internal Error: ''SequenceIdBean'' is not set
-configContextNotSet=Sandesha2 Internal Error: ''ConfigurationContext'' is not set
-soapEnvNotSet=Sandesha2 Internal Error:  SOAP envelope is not set
-soapBodyNotPresent=Invalid SOAP message: the body is not present.
-unknownSoapVersion=Unknow SOAP version {0}
-axisServiceIsNull=Sandesha2 Internal Error: ''AxisService'' is null
-msgContextNotSetInbound=Sandesha2 Internal Error: ''MessageContext'' is null on the inbound message.
-msgContextNotSetOutbound=Sandesha2 Internal Error: ''MessageContext'' is null on the outbound message.
-msgContextNotSet=Sandesha2 Internal Error: ''MessageContext'' is null.
-requestMsgContextNull=Request message context is null: cannot find out the request side sequenceID.
-axisOperationError=Sandesha2 Internal Error: could not create the ''AxisOperation'' due to an error {0}
-axisOperationRegisterError=Sandesha2 Internal Error: could not register an ''OutInAxisOperation'' due to exception {0}
-transportOutNotPresent=Sandesha2 Internal Error: original transport sender is not present
-storedKeyNotPresent=Sandesha2 Internal Error: stored key not present in the retransmittable message
-invalidQName=Invalid QName string: {0}
-senderBeanNotFound=SenderBean was not found
-workAlreadyAssigned=Work ''{0}'' is already assigned to a different Worker. Will try the next one
-workNotPresent="SenderWorker has been assigned an unexisting work with the Id ''{0}''
-cannotSendToTheAddress=Message cannot be sent to the address ''{0}'' 
-couldNotFindPropertyKey=Could not determine the PropertyKey of the {0} message from the available information
-
-dummyCallback=Sandesha2 Internal Error: dummy callback was called but this should never happen.
-dummyCallbackError=Sandesha2 Internal Error: dummy callback received an error but this should never happen.
-invalidMsgNumber=Sandesha2 Internal Error: invalid message number {0}
-processTokenMethodError=Exception occured when invoking processTokenMethod: {0}
-policyProcessingException=Exception {0} occured when processing policy {1} 
-errorOnTokenStack=Sandesha2 Internal Error: error on token stack - no current token.
-unknownTokenAbortTran=Aborting transaction because of unknown token: {0}
-commitingUnknownToken=Sandesha2 Internal error: token stack commiting an unknown token: {0}
-cannotStartTransportListenerDueToError=Sandesha2 Internal error: could not start the transport listener due to error {0}.
-cannotStartListenerForIncommingMsgs=Sandesha2 Internal error: cannot start the listner for incoming messages. You must set the ''transport in'' protocol in order to get async acknowledgement messages.
-selectRSNotSupported=Sandesha2 Internal error: selectRS() methods are not currently supported
-nonUniqueResult=Sandesha2 Internal error: A search for a unique object resulted in several matches.
-invalidStringArray=Sandesha2 Internal error: invalid String array : {0}.
-nextMsgNotSetCorrectly=Sandesha2 Internal error: next message not set correctly. Removing the invalid entry: {0}.
-invalidNextMsgNumber=Sandesha2 Internal error: message number {0} is not valid as the Next Message Number.
-cannotCointinueSender=Sandesha2 Internal error: cannot continue the Sender due to exception: {0}
-msgContextNotPresentInStorage=Sandesha2 Internal error: message context {0} is not present in the store.
-sendHasUnavailableMsgEntry=Sandesha2 Internal error: sender has an unavailable message entry {0}.
-cannotInnitMessage=Sandesha2 Internal error: cannot initialize the message.
-propertyInvalidValue=Sandesha2 Internal error: property {0} contains an invalid value.
-couldNotCopyParameters=Could not copy parameters when creating the new RM Message. See the following exception for more details: {0}.
-
-#-------------------------------------
-#
-#	Protocol Oriented Messages
-#
-#-------------------------------------
-
-rmNamespaceNotMatchSequence=Validation failed. The RM namespace value {0} of the message does not match {1} for sequence {2}.
-wsaNamespaceNotMatchSequence=Validation failed. The WS-Addressing namespace value {0} of the message does not match {1} for sequence {2}.
-unknownWSAVersion=Unknown WS-Addressing version {0}
-rmNamespaceMismatch=Cannot process message as the rm namespace value {0} is different from the reqistered namespace value {1} for the sequence {2}.
-emptyAckRequestSpecLevel=Empty AckRequest messages can only be sent with the v1_1 spec. You are using spec version {0}.
-closeSequenceSpecLevel=Close sequence messages can only be sent with the v1_1 spec. You are using spec version {0}.
-unknownSpec=Unknown specification version {0}.
-unknownRMNamespace=Unknown rm namespace value {0}.
-unknownNamespace=Unsupported namespace {0}.
-cannotDecideRMVersion=Message does not has a valid RM namespace value - cannot decide the RM version.
-specVersionPropertyNotAvailable=''SpecVersion'' sequence property is not available for the incoming sequence {0}: cannot find the RM version for outgoing side.
-specVersionNotSet=Error: 'SpecVersion'' is not set.
-specDoesNotSupportElement=Spec ''{0}'' does not support the element {1}
-addressingNamespaceNotSet=Internal error. Addressing namespace not set.
-
-couldNotSendTerminate=Could not send the terminate message due to error {0}.
-couldNotSendClose=Could not send the close sequence message due to error {0}.
-couldNotSendAck=Could not send the ack message on sequence {0} due to an exception: {1}
-couldNotSendTerminateResponse=Could not send the terminate sequence response due to exception {0}.
-couldNotSendTerminateSeqNotFound=Internal sequenceID {0} was not found: cannot send the terminate message.
-couldNotSendFault=Could not send the fault message due to an exception: {0}
-cannotSendAckRequestNotActive=Cannot send the ackRequest message since the sequence with internal ID {0} is not active.
-cannotSendAckRequestException=Could not send the ackRequest message on sequence {0} due to an exception: {1}
-cannotCloseSequenceNotActive=Cannot close the sequence with internal ID {0} since it is not active.
-noSequenceEstablished=A sequence with the given sequence ID {0} has not been established, has been terminated or could not be found.
-invalidInternalSequenceID=Sandesha2 Internal Error: The internal sequence ID {0} is not valid.
-tempNotSetOnReceivedMsg=''TempSequenceId'' is not set correctly in the received message.
-completedMsgBeanIsNull=Completed messages bean is null for the sequence {0}.
-internalSeqBeanNotAvailableOnSequence=Error: ''InternalSequenceBean'' is not available for the sequence with internal ID {0}.
-createSeqEntryNotFound=''Create Sequence'' entry is not found.
-
-toEPRNotValid=The ''To'' endpoint reference address is not set correctly: {0}
-noWSAACtionValue=Create sequence message does not have the ''WSA:Action'' value set correctly.
-cannotFindSequence=Cannot find the sequence with ID {0}.
-cannotFindSequenceID=Cannot find the sequence ID for the sequenceID bean {0}.
-notValidTerminate=Not a valid terminated sequence: ''InternalSequenceBean'' is not available for the sequence with interal ID {0}
-notValidTimeOut= Not a valid timedOut sequence: ''InternalSequenceBean'' is not available for the sequence with internal ID {0}
-cannotFindAcksTo=Could not find the stored ''acksTo'' property for the specified sequence.
-droppingDuplicate=Dropping a duplicate RM message.
-cannotAcceptMsgAsSequenceClosed=Cannot accept message as sequence {0} has been closed. 
-msgNumberMustBeLargerThanZero=Message number {0} is invalid: this value has to be larger than zero.
-msgNumberNotLargerThanLastMsg=The message number {0} is not larger than the last message sent on this sequence {1}.
-msgNumberLargerThanLastMsg=The message number {0} is larger than the value {1}, which was previously declared as the last message.
-outMsgHasNoEnvelope=Out message does not have a envelope: {0}
-msgNumberExceededLastMsgNo=The received message number {0} on sequence {1} exceeds the message number {1} which was declared as last in a previosly received application message.
-ackInvalid=The SequenceAcknowledgement received is invalid as the lower value {1} is larger than upper value {2}.
-highestMsgKeyNotStored=Key of the highest message number has not been stored for sequence {0}
-cannotHaveFinalWithNack=The ''Final'' element cannot be present when there are Nack elements under the SequenceAcknowledgement.
-accptButNoSequenceOffered=Error: An ''accept'' was received but there was no offered sequence entry.
-relatesToNotAvailable: Invalid create sequence message: ''RelatesTo'' part is not available.
-cannotDerriveAckInterval=Cannot derive the ''Acknowledgement Interval'' from the passed string {0}
-cannotDerriveRetransInterval=Cannot derive the ''Retransmission Interval'' from the passed string {0}
-cannotDerriveInactivityTimeout=Cannot derive the ''Inactivity Timeout'' from the passed string {0}
-noCreateSeqParts=No ''CreateSequence'' part is present in the create sequence message
-noAcceptPart=An ''Accept'' part has not been generated for the ''create sequence request'' with an offer part.
-noAcksToPartInCreateSequence=No ''AcksTo'' part is present in the create sequence message.
-tempSeqIdNotSet=Error: ''TempSequenceId'' is not set.
-ackRandDoesNotHaveCorrectValues=The ack range {0} does not have correct values for Upper and Lower attributes.
-cannotSetAckRangeNullElement=Cannot set Ack Range part since element is null.
-completedMessagesNull=Completed messages bean is null for the sequence {0}
-emptyLastMsg=Received empty body for LastMessage part.
-acksToStrNotSet=acksToStr Seqeunce property is not set correctly
-invalidSequenceID=invalid sequence ID: {0}
-cantSendMakeConnectionNoTransportOut=Can''t send the MakeConnection reply since the message does not has a TransportOutDescription
-
-noCreateSeqResponse=''CreateSequenceResponse'' part is not available.
-noTerminateSeqPart=''Terminate Sequence'' part is not available.
-noNackInSeqAckPart=Passed ''sequence ack'' element does not contain a ''nack'' part. {0}
-nackDoesNotContainValidLongValue=''Nack'' element does not contain a valid long value {0}.
-cannotSetNackElemnt=Cannot set the ''nack'' part since the ''sequence ack'' element is null.
-seqAckPartIsNull=''Sequence acknowledgement'' part is null.
-cannotAddSequencePartNullMsgNumber=Cannot add ''Sequence'' part since ''MessageNumber'' is null.
-cannotSetSeqAck=Cannot set ''sequence acknowledgement'' since the element is null.
-noneNotAllowedNamespace=The given namespace {0} does not allow the ''None'' part to be added to the ''sequenceAcknowledgement'' element.
-noneNotAllowedAckRangesPresent=The ''None'' element cannot be present when there are acknowledgement range elements under the ''sequenceAcknowledgement'' element.
-noneNotAllowedNackPresent=The ''None'' element cannot be present when there are Nack elements under the ''sequenceAcknowledgement'' element.
-finalNotAllowedNamespace=The given namespace {0} does not allow the 'Final' part to be added to the ''sequenceAcknowledgement'' element.
-noFaultCodeNullElement=Cannot add ''Fault Code'' part since the passed element is null
-noSeqFaultInElement=The passed element {0} does not contain a ''Sequence Fault'' element.
-noSeqOfferInElement=The passed element {0} does not contain a ''SequenceOffer'' part.
-noCreateSeqInElement=The passed message {0} does not have a ''CreateSequence'' part.
-noTerminateSeqInElement=The passed element {0} does not contain a ''terminate sequence'' part.
-noTerminateSeqResponseInElement=The passed element {0} does not contain a ''terminate sequence response'' part.
-noAcceptPartInElement=The passed element {0} does not contain an ''Accept'' part.
-noUpperOrLowerAttributesInElement=The passed element {0} does not contain upper or lower attributes.
-noSequencePartInElement=The passed element {0} does not contain a ''Sequence'' part.
-noLastMessagePartInElement=The passed element {0} does not contain a ''Last Message'' part.
-noFinalPartInElement=The passed element {0} does not contain a ''Final'' part. 
-noNonePartInElement=The passed element {0} does not contain a ''None'' part.
-noCloseSequencePartInElement=The passed element {0} does not contain a ''close sequence'' part.
-noMessageNumberPartInElement=The passed sequnce element {0} does not contain a ''message number'' part.
-noCloseSeqResponsePartInElement=The passed element {0} does not contain a ''close sequence response'' part.
-noExpiresPartInElement=The passed elemenet {0} does not contain an ''Expires'' part.
-noCreateSeqPartInElement=The passed element {0} does not contain a ''create sequence'' part.
-noAckRequestedPartInElement=The passed element {0} does not contain an ''ack requested'' part.
-noCreateSeqResponsePartInElement=The passed element {0} does not contain a ''create seqence response'' part.
-noFaultCodePart=The passed element {0} does not contain a ''Fault Code'' part.
-cannotFindAddressElement=Cannot find an ''Address'' part in the given element {0}
-cannotFindAddressText=The passed element {0} does not have a valid address text.
-nullPassedElement=The passed element is null.
-noAckRequestedElement=Message identified as of type ''AckRequested'' but it does not have an ''AckRequeted'' element.
-invalidAckMessageEntry=Invalid ack message entry: {0}
-seqPartIsNull=Sequence part is null.
-incomingSequenceNotValidID="The ID for the incoming sequence is not valid: {0}"
-
-seqFaultCannotBeExtractedToNonHeader=Cannot extract ''Sequence Fault'' part from a non-header element.
-seqElementCannotBeAddedToNonHeader=''Sequence'' element cannot be added to non-header element.
-ackRequestedCannotBeAddedToNonHeader=''Ack Requested'' part cannot be added to a non-header element.
-terminateSeqCannotBeAddedToNonBody=Cannot add ''terminate sequence'' to a non-body element.
-terminateSeqResponseCannotBeAddedToNonBody=Cannot add ''terminate sequence response'' to a non-body element.
-closeSeqCannotBeAddedToNonBody=Cannot add ''close sequence'' to a non-body element.
-closeSeqCannotBeExtractedFromNonBody=Cannot extract ''close sequence'' from a non-body element.
-closeSeqResponseCannotBeAddedToNonBody=Cannot add ''close sequence response'' to a non-body element.
-createSeqCannotBeAddedToNonBody=Cannot add ''create sequence'' part to a non-body element.
-createSeqResponseCannotBeAddedToNonBody=Cannot get ''create sequnce response'' from a non-body element.
-seqOfferNullID=Cannot add ''SequnceOffer'' parts since identifier is not set.
-terminateSequence=Cannot add ''terminate sequence'' part since identifier is not set.
-terminateSeqResponseNullID=Cannot add ''terminate sequence response'' part since identifier is not set.
-sequencePartNullID=Cannot add ''Sequence'' part since identifier is not set.
-closeSeqPartNullID=Cannot add ''close sequence'' part since identifier is not set
-closeSeqResponsePartNullID=Cannot add ''close sequence response'' part since identifier is not set
-invalidIdentifier=The passed element {0} does not contain a valid identifier part.
-ackRequestNullID=Cannot add ''ack request'' part since the identifier is not set.
-createSeqNullAcksTo=Cannot add a ''create seqeunce part'' since ''acksTo'' is not set.
-acceptNullAcksTo=Cannot add ''Accept'' part since ''acksTo'' is not set.
-noAcksToPart=The passed element {0} does not contain an ''acksTo'' part.
-noElementPart=The passed element {0} does not contain an ''Ele,'' part.
-cannotProcessExpires=Cannot process ''Expires'' since the duration value is not valid.
-noFaultCode=Cannot add ''Fault Code'' since the the value is not set correctly.
-seqAckNonHeader=Cannot get sequence acknowlegement from a non-header element
-
-cannotSetACksTo=Cannot set the of the AcksTo element address as the value is not valid {0}
-cannotSetEndpoint=Cannot set the address of the Elndpoint element as the value is not valid {0}
-setAValidMsgNumber=Set A Valid Message Number {0}.
-addressNotValid=Cannot set the address - the address value is not valid
-
-elementMustForSpec=Element ''{0}'' must be present for the spec ''{1}'' 
-
-#-------------------------------------
-#
-#	Client messages
-#
-#-------------------------------------
-
-incommingSequenceReportNotFound=An incoming sequence report is not present for the given sequenceID {0}
-cannotGenerateReport=Cannot generate the sequence report for the given ''internalSequenceID'' {0}
-cannotFindReportForGivenData=Cannnot find a sequence report for the given data {0}.
-cannotGenerateReportNonUniqueSequence=Sequence data {0} is not unique. Cannot generate report.
-
-outSeqIDIsNull=''OutSequenceId'' is null
-requestMsgNotPresent=Request message is not present
-requestSeqIsNull=Error: ''RequestSequence'' is null
-newSeqIdIsNull=New sequence Id is null
-unavailableAppMsg=Error: unavailable application message
-terminateAddedPreviously=Terminate was added previously.
-maximumRetransmissionCountProcessor=MaximumRetransmissionCountProcessor:doAcknowledgementInterval
-nullMsgId=Key (MessageId) is null. Cannot insert.
-storageMapNotPresent=Error: storage Map not present
-entryNotPresentForUpdating=Entry is not present for updating
-appMsgIsNull=Application message is null
-terminateOpperationIsNull=Terminate Operation was null
-invalidMsgNumberList=Invalid msg number list
-cannotFindReqMsgFromOpContext=Cannot find the request message from the operation context
-toEPRNotSet=To EPR has not been set in the given message
-cannotFindTransportInDesc=Cannot find the transport in description {0} in the ConfigurationContext
-invalidOfferNoResponseEndpoint=Cannot derive a valid offer from the given infomation. No Endpoint for receiving messages.
-invalidElementFoundWithinElement=Found invalid ''{0}'' element within ''{1}'' element
-
-#------------------
-# Security messages
-#------------------
-secureDummyNoProof="Dummy security manager cannot check proof of possession"
-secureDummyNoToken="Dummy security manager cannot serialise or recover security tokens"
-secureDummyNoSTR  ="Dummy security manager cannot parse or write security token references"
-
-
-errorRetrievingSecurityToken = Error retrieving security token from token storage
-proofOfPossessionNotVerified = Proof of possession not verified
-noSecurityResults = No Security results
-noSecConvTokenInPolicy = No SecureConversationToken in policy
+# Translation instructions.
+# 1.  Each message line is of the form key=value.
+#     Translate the value, DO NOT translate the key.
+# 2.  The messages may contain arguments that will be filled in
+#     by the runtime.  These are of the form: {0}, {1}, etc.
+#     These must appear as is in the message, though the order
+#     may be changed to support proper language syntax.
+# 3.  If a single quote character is to appear in the resulting
+#     message, it must appear in this file as two consecutive
+#     single quote characters.
+# 4.  Lines beginning with "#" (like this one) are comment lines
+#     and may contain translation instructions.  They need not be
+#     translated unless your translated file, rather than this file,
+#     will serve as a base for other translators.
+
+
+#-------------------------------------
+#
+#	General Sandesha messages
+#
+#-------------------------------------
+
+cannotInitInMemoryStorageManager=Cannot initialize the given in-memory storage manager due to exception {0}.
+cannotInitPersistentStorageManager=Cannot initialize the given persistent storage manager due to exception {0}.
+cannotProceedDueToStorageManager=Sandesha2 Internal Error: the StorageManager is not available due to exception {0}.
+cannotGetStorageKey=Sandesha2 Internal Error: could not obtain the sandesha2 storage key in order to store the message.
+cannotGetStorageManager=Sandesha2 Internal Error: could not load the specified storage manager. 
+storageManagerMustImplement=StorageManager {0} must implement the org.apache.sandesha2.storage.StorageManager interface.
+cannotInitSecurityManager=Cannot initialize the given security manager due to exception {0}.
+securityManagerMustImplement=SecurityManager {0} must implement the org.apache.sandesha2.storage.StorageManager interface.
+cannotFindModulePolicies=No policies were found in the module.xml at the module initiation time
+
+commitError=Exception thrown when trying to commit the transaction: {0}
+rollbackError=Exception thrown when trying to rollback the transaction: {0}
+inMsgError=Sandesha2 got an exception when processing an in message: {0}
+outMsgError=Sandesha2 got an exception when processing an out message: {0}
+invokeMsgError=Sandesha2 got an exception when invoking message: {0}
+msgError=Sandesha2 got an exception when processing a message: {0}
+sendMsgError=Sandesha2 got an exception when sending a message: {0}
+noValidSyncResponse=Sandesha2 sender thread has not received a valid synchronous response...
+generalError=Sandesha2 Internal Error: sandesha2 encountered the following exception {0}
+classLoaderNotFound=Module class loader not found.
+
+defaultPropertyBeanNotSet=Sandesha2 Internal Error: ''DefaultPropertyBean'' is not set.
+propertyBeanNotSet=Sandesha2 Internal Error: ''PropertyBean'' is not set.
+optionsObjectNotSet=Sandesha2 Internal Error: ''Options'' object is not set.
+serviceContextNotSet=Sandesha2 Internal Error: ''ServiceContext'' is not set
+sequenceIdBeanNotSet=Sandesha2 Internal Error: ''SequenceIdBean'' is not set
+configContextNotSet=Sandesha2 Internal Error: ''ConfigurationContext'' is not set
+soapEnvNotSet=Sandesha2 Internal Error:  SOAP envelope is not set
+soapBodyNotPresent=Invalid SOAP message: the body is not present.
+unknownSoapVersion=Unknow SOAP version {0}
+axisServiceIsNull=Sandesha2 Internal Error: ''AxisService'' is null
+msgContextNotSetInbound=Sandesha2 Internal Error: ''MessageContext'' is null on the inbound message.
+msgContextNotSetOutbound=Sandesha2 Internal Error: ''MessageContext'' is null on the outbound message.
+msgContextNotSet=Sandesha2 Internal Error: ''MessageContext'' is null.
+requestMsgContextNull=Request message context is null: cannot find out the request side sequenceID.
+axisOperationError=Sandesha2 Internal Error: could not create the ''AxisOperation'' due to an error {0}
+axisOperationRegisterError=Sandesha2 Internal Error: could not register an ''OutInAxisOperation'' due to exception {0}
+transportOutNotPresent=Sandesha2 Internal Error: original transport sender is not present
+storedKeyNotPresent=Sandesha2 Internal Error: stored key not present in the retransmittable message
+invalidQName=Invalid QName string: {0}
+senderBeanNotFound=SenderBean was not found
+workAlreadyAssigned=Work ''{0}'' is already assigned to a different Worker. Will try the next one
+workNotPresent=SenderWorker has been assigned an unexisting work with the Id ''{0}''
+cannotSendToTheAddress=Message cannot be sent to the address ''{0}'' 
+couldNotFindPropertyKey=Could not determine the PropertyKey of the {0} message from the available information
+couldNotFindOperation=Could not find operation for message type {0} and spec level {1}.
+
+dummyCallback=Sandesha2 Internal Error: dummy callback was called but this should never happen.
+dummyCallbackError=Sandesha2 Internal Error: dummy callback received an error but this should never happen.
+invalidMsgNumber=Sandesha2 Internal Error: invalid message number {0}
+processTokenMethodError=Exception occured when invoking processTokenMethod: {0}
+policyProcessingException=Exception {0} occured when processing policy {1} 
+errorOnTokenStack=Sandesha2 Internal Error: error on token stack - no current token.
+unknownTokenAbortTran=Aborting transaction because of unknown token: {0}
+commitingUnknownToken=Sandesha2 Internal error: token stack commiting an unknown token: {0}
+cannotStartTransportListenerDueToError=Sandesha2 Internal error: could not start the transport listener due to error {0}.
+cannotStartListenerForIncommingMsgs=Sandesha2 Internal error: cannot start the listner for incoming messages. You must set the ''transport in'' protocol in order to get async acknowledgement messages.
+selectRSNotSupported=Sandesha2 Internal error: selectRS() methods are not currently supported
+nonUniqueResult=Sandesha2 Internal error: A search for a unique object resulted in several matches.
+invalidStringArray=Sandesha2 Internal error: invalid String array : {0}.
+nextMsgNotSetCorrectly=Sandesha2 Internal error: next message not set correctly. Removing the invalid entry: {0}.
+invalidNextMsgNumber=Sandesha2 Internal error: message number {0} is not valid as the Next Message Number.
+cannotCointinueSender=Sandesha2 Internal error: cannot continue the Sender due to exception: {0}
+msgContextNotPresentInStorage=Sandesha2 Internal error: message context {0} is not present in the store.
+sendHasUnavailableMsgEntry=Sandesha2 Internal error: sender has an unavailable message entry {0}.
+cannotInnitMessage=Sandesha2 Internal error: cannot initialize the message.
+propertyInvalidValue=Sandesha2 Internal error: property {0} contains an invalid value.
+couldNotCopyParameters=Could not copy parameters when creating the new RM Message. See the following exception for more details: {0}.
+
+#-------------------------------------
+#
+#	Protocol Oriented Messages
+#
+#-------------------------------------
+
+rmNamespaceNotMatchSequence=Validation failed. The RM namespace value {0} of the message does not match {1} for sequence {2}.
+wsaNamespaceNotMatchSequence=Validation failed. The WS-Addressing namespace value {0} of the message does not match {1} for sequence {2}.
+unknownWSAVersion=Unknown WS-Addressing version {0}
+rmNamespaceMismatch=Cannot process message as the rm namespace value {0} is different from the reqistered namespace value {1} for the sequence {2}.
+emptyAckRequestSpecLevel=Empty AckRequest messages can only be sent with the v1_1 spec. You are using spec version {0}.
+closeSequenceSpecLevel=Close sequence messages can only be sent with the v1_1 spec. You are using spec version {0}.
+unknownSpec=Unknown specification version {0}.
+unknownRMNamespace=Unknown rm namespace value {0}.
+unknownNamespace=Unsupported namespace {0}.
+cannotDecideRMVersion=Message does not has a valid RM namespace value - cannot decide the RM version.
+specVersionPropertyNotAvailable=''SpecVersion'' sequence property is not available for the incoming sequence {0}: cannot find the RM version for outgoing side.
+specVersionNotSet=Error: 'SpecVersion'' is not set.
+specDoesNotSupportElement=Spec ''{0}'' does not support the element {1}
+addressingNamespaceNotSet=Internal error. Addressing namespace not set.
+
+couldNotSendTerminate=Could not send the terminate message due to error {0}.
+couldNotSendClose=Could not send the close sequence message due to error {0}.
+couldNotSendAck=Could not send the ack message on sequence {0} due to an exception: {1}
+couldNotSendTerminateResponse=Could not send the terminate sequence response due to exception {0}.
+couldNotSendTerminateSeqNotFound=Internal sequenceID {0} was not found: cannot send the terminate message.
+couldNotSendFault=Could not send the fault message due to an exception: {0}
+cannotSendAckRequestNotActive=Cannot send the ackRequest message since the sequence with internal ID {0} is not active.
+cannotSendAckRequestException=Could not send the ackRequest message on sequence {0} due to an exception: {1}
+cannotCloseSequenceNotActive=Cannot close the sequence with internal ID {0} since it is not active.
+noSequenceEstablished=A sequence with the given sequence ID {0} has not been established, has been terminated or could not be found.
+invalidInternalSequenceID=Sandesha2 Internal Error: The internal sequence ID {0} is not valid.
+tempNotSetOnReceivedMsg=''TempSequenceId'' is not set correctly in the received message.
+completedMsgBeanIsNull=Completed messages bean is null for the sequence {0}.
+internalSeqBeanNotAvailableOnSequence=Error: ''InternalSequenceBean'' is not available for the sequence with internal ID {0}.
+createSeqEntryNotFound=''Create Sequence'' entry is not found.
+
+toEPRNotValid=The ''To'' endpoint reference address is not set correctly: {0}
+noWSAACtionValue=Create sequence message does not have the ''WSA:Action'' value set correctly.
+cannotFindSequence=Cannot find the sequence with ID {0}.
+cannotFindSequenceID=Cannot find the sequence ID for the sequenceID bean {0}.
+notValidTerminate=Not a valid terminated sequence: ''InternalSequenceBean'' is not available for the sequence with interal ID {0}
+notValidTimeOut= Not a valid timedOut sequence: ''InternalSequenceBean'' is not available for the sequence with internal ID {0}
+cannotFindAcksTo=Could not find the stored ''acksTo'' property for the specified sequence.
+droppingDuplicate=Dropping a duplicate RM message.
+cannotAcceptMsgAsSequenceClosed=Cannot accept message as sequence {0} has been closed. 
+msgNumberMustBeLargerThanZero=Message number {0} is invalid: this value has to be larger than zero.
+msgNumberNotLargerThanLastMsg=The message number {0} is not larger than the last message sent on this sequence {1}.
+msgNumberLargerThanLastMsg=The message number {0} is larger than the value {1}, which was previously declared as the last message.
+outMsgHasNoEnvelope=Out message does not have a envelope: {0}
+msgNumberExceededLastMsgNo=The received message number {0} on sequence {1} exceeds the message number {1} which was declared as last in a previosly received application message.
+ackInvalid=The SequenceAcknowledgement received is invalid as the lower value {1} is larger than upper value {2}.
+highestMsgKeyNotStored=Key of the highest message number has not been stored for sequence {0}
+cannotHaveFinalWithNack=The ''Final'' element cannot be present when there are Nack elements under the SequenceAcknowledgement.
+accptButNoSequenceOffered=Error: An ''accept'' was received but there was no offered sequence entry.
+relatesToNotAvailable: Invalid create sequence message: ''RelatesTo'' part is not available.
+cannotDerriveAckInterval=Cannot derive the ''Acknowledgement Interval'' from the passed string {0}
+cannotDerriveRetransInterval=Cannot derive the ''Retransmission Interval'' from the passed string {0}
+cannotDerriveInactivityTimeout=Cannot derive the ''Inactivity Timeout'' from the passed string {0}
+noCreateSeqParts=No ''CreateSequence'' part is present in the create sequence message
+noAcceptPart=An ''Accept'' part has not been generated for the ''create sequence request'' with an offer part.
+noAcksToPartInCreateSequence=No ''AcksTo'' part is present in the create sequence message.
+tempSeqIdNotSet=Error: ''TempSequenceId'' is not set.
+ackRandDoesNotHaveCorrectValues=The ack range {0} does not have correct values for Upper and Lower attributes.
+cannotSetAckRangeNullElement=Cannot set Ack Range part since element is null.
+completedMessagesNull=Completed messages bean is null for the sequence {0}
+emptyLastMsg=Received empty body for LastMessage part.
+acksToStrNotSet=acksToStr Seqeunce property is not set correctly
+invalidSequenceID=invalid sequence ID: {0}
+cantSendMakeConnectionNoTransportOut=Can''t send the MakeConnection reply since the message does not has a TransportOutDescription
+
+noCreateSeqResponse=''CreateSequenceResponse'' part is not available.
+noTerminateSeqPart=''Terminate Sequence'' part is not available.
+noNackInSeqAckPart=Passed ''sequence ack'' element does not contain a ''nack'' part. {0}
+nackDoesNotContainValidLongValue=''Nack'' element does not contain a valid long value {0}.
+cannotSetNackElemnt=Cannot set the ''nack'' part since the ''sequence ack'' element is null.
+seqAckPartIsNull=''Sequence acknowledgement'' part is null.
+cannotAddSequencePartNullMsgNumber=Cannot add ''Sequence'' part since ''MessageNumber'' is null.
+cannotSetSeqAck=Cannot set ''sequence acknowledgement'' since the element is null.
+noneNotAllowedNamespace=The given namespace {0} does not allow the ''None'' part to be added to the ''sequenceAcknowledgement'' element.
+noneNotAllowedAckRangesPresent=The ''None'' element cannot be present when there are acknowledgement range elements under the ''sequenceAcknowledgement'' element.
+noneNotAllowedNackPresent=The ''None'' element cannot be present when there are Nack elements under the ''sequenceAcknowledgement'' element.
+finalNotAllowedNamespace=The given namespace {0} does not allow the 'Final' part to be added to the ''sequenceAcknowledgement'' element.
+noFaultCodeNullElement=Cannot add ''Fault Code'' part since the passed element is null
+noSeqFaultInElement=The passed element {0} does not contain a ''Sequence Fault'' element.
+noSeqOfferInElement=The passed element {0} does not contain a ''SequenceOffer'' part.
+noCreateSeqInElement=The passed message {0} does not have a ''CreateSequence'' part.
+noTerminateSeqInElement=The passed element {0} does not contain a ''terminate sequence'' part.
+noTerminateSeqResponseInElement=The passed element {0} does not contain a ''terminate sequence response'' part.
+noAcceptPartInElement=The passed element {0} does not contain an ''Accept'' part.
+noUpperOrLowerAttributesInElement=The passed element {0} does not contain upper or lower attributes.
+noSequencePartInElement=The passed element {0} does not contain a ''Sequence'' part.
+noLastMessagePartInElement=The passed element {0} does not contain a ''Last Message'' part.
+noFinalPartInElement=The passed element {0} does not contain a ''Final'' part. 
+noNonePartInElement=The passed element {0} does not contain a ''None'' part.
+noCloseSequencePartInElement=The passed element {0} does not contain a ''close sequence'' part.
+noMessageNumberPartInElement=The passed sequnce element {0} does not contain a ''message number'' part.
+noCloseSeqResponsePartInElement=The passed element {0} does not contain a ''close sequence response'' part.
+noExpiresPartInElement=The passed elemenet {0} does not contain an ''Expires'' part.
+noCreateSeqPartInElement=The passed element {0} does not contain a ''create sequence'' part.
+noAckRequestedPartInElement=The passed element {0} does not contain an ''ack requested'' part.
+noCreateSeqResponsePartInElement=The passed element {0} does not contain a ''create seqence response'' part.
+noFaultCodePart=The passed element {0} does not contain a ''Fault Code'' part.
+cannotFindAddressElement=Cannot find an ''Address'' part in the given element {0}
+cannotFindAddressText=The passed element {0} does not have a valid address text.
+nullPassedElement=The passed element is null.
+noAckRequestedElement=Message identified as of type ''AckRequested'' but it does not have an ''AckRequeted'' element.
+invalidAckMessageEntry=Invalid ack message entry: {0}
+seqPartIsNull=Sequence part is null.
+incomingSequenceNotValidID="The ID for the incoming sequence is not valid: {0}"
+
+seqFaultCannotBeExtractedToNonHeader=Cannot extract ''Sequence Fault'' part from a non-header element.
+seqElementCannotBeAddedToNonHeader=''Sequence'' element cannot be added to non-header element.
+ackRequestedCannotBeAddedToNonHeader=''Ack Requested'' part cannot be added to a non-header element.
+terminateSeqCannotBeAddedToNonBody=Cannot add ''terminate sequence'' to a non-body element.
+terminateSeqResponseCannotBeAddedToNonBody=Cannot add ''terminate sequence response'' to a non-body element.
+closeSeqCannotBeAddedToNonBody=Cannot add ''close sequence'' to a non-body element.
+closeSeqCannotBeExtractedFromNonBody=Cannot extract ''close sequence'' from a non-body element.
+closeSeqResponseCannotBeAddedToNonBody=Cannot add ''close sequence response'' to a non-body element.
+createSeqCannotBeAddedToNonBody=Cannot add ''create sequence'' part to a non-body element.
+createSeqResponseCannotBeAddedToNonBody=Cannot get ''create sequnce response'' from a non-body element.
+seqOfferNullID=Cannot add ''SequnceOffer'' parts since identifier is not set.
+terminateSequence=Cannot add ''terminate sequence'' part since identifier is not set.
+terminateSeqResponseNullID=Cannot add ''terminate sequence response'' part since identifier is not set.
+sequencePartNullID=Cannot add ''Sequence'' part since identifier is not set.
+closeSeqPartNullID=Cannot add ''close sequence'' part since identifier is not set
+closeSeqResponsePartNullID=Cannot add ''close sequence response'' part since identifier is not set
+invalidIdentifier=The passed element {0} does not contain a valid identifier part.
+ackRequestNullID=Cannot add ''ack request'' part since the identifier is not set.
+createSeqNullAcksTo=Cannot add a ''create seqeunce part'' since ''acksTo'' is not set.
+acceptNullAcksTo=Cannot add ''Accept'' part since ''acksTo'' is not set.
+noAcksToPart=The passed element {0} does not contain an ''acksTo'' part.
+noElementPart=The passed element {0} does not contain an ''Ele,'' part.
+cannotProcessExpires=Cannot process ''Expires'' since the duration value is not valid.
+noFaultCode=Cannot add ''Fault Code'' since the the value is not set correctly.
+seqAckNonHeader=Cannot get sequence acknowlegement from a non-header element
+
+cannotSetACksTo=Cannot set the of the AcksTo element address as the value is not valid {0}
+cannotSetEndpoint=Cannot set the address of the Elndpoint element as the value is not valid {0}
+setAValidMsgNumber=Set A Valid Message Number {0}.
+addressNotValid=Cannot set the address - the address value is not valid
+
+elementMustForSpec=Element ''{0}'' must be present for the spec ''{1}'' 
+
+#-------------------------------------
+#
+#	Client messages
+#
+#-------------------------------------
+
+incommingSequenceReportNotFound=An incoming sequence report is not present for the given sequenceID {0}
+cannotGenerateReport=Cannot generate the sequence report for the given ''internalSequenceID'' {0}
+cannotFindReportForGivenData=Cannnot find a sequence report for the given data {0}.
+cannotGenerateReportNonUniqueSequence=Sequence data {0} is not unique. Cannot generate report.
+
+outSeqIDIsNull=''OutSequenceId'' is null
+requestMsgNotPresent=Request message is not present
+requestSeqIsNull=Error: ''RequestSequence'' is null
+newSeqIdIsNull=New sequence Id is null
+unavailableAppMsg=Error: unavailable application message
+terminateAddedPreviously=Terminate was added previously.
+maximumRetransmissionCountProcessor=MaximumRetransmissionCountProcessor:doAcknowledgementInterval
+nullMsgId=Key (MessageId) is null. Cannot insert.
+storageMapNotPresent=Error: storage Map not present
+entryNotPresentForUpdating=Entry is not present for updating
+appMsgIsNull=Application message is null
+invalidMsgNumberList=Invalid msg number list
+cannotFindReqMsgFromOpContext=Cannot find the request message from the operation context
+toEPRNotSet=To EPR has not been set in the given message
+cannotFindTransportInDesc=Cannot find the transport in description {0} in the ConfigurationContext
+invalidOfferNoResponseEndpoint=Cannot derive a valid offer from the given infomation. No Endpoint for receiving messages.
+invalidElementFoundWithinElement=Found invalid ''{0}'' element within ''{1}'' element
+
+#------------------
+# Security messages
+#------------------
+secureDummyNoProof="Dummy security manager cannot check proof of possession"
+secureDummyNoToken="Dummy security manager cannot serialise or recover security tokens"
+secureDummyNoSTR  ="Dummy security manager cannot parse or write security token references"
+
+
+errorRetrievingSecurityToken = Error retrieving security token from token storage
+proofOfPossessionNotVerified = Proof of possession not verified
+noSecurityResults = No Security results
+noSecConvTokenInPolicy = No SecureConversationToken in policy
 noServicePolicy=Service policy missing



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