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/03/18 13:34:40 UTC

svn commit: r386842 - /webservices/sandesha/trunk/src/org/apache/sandesha2/msgprocessors/CreateSeqMsgProcessor.java

Author: chamikara
Date: Sat Mar 18 04:34:37 2006
New Revision: 386842

URL: http://svn.apache.org/viewcvs?rev=386842&view=rev
Log:
Offered sequenceIDs of single character are declined.

Modified:
    webservices/sandesha/trunk/src/org/apache/sandesha2/msgprocessors/CreateSeqMsgProcessor.java

Modified: webservices/sandesha/trunk/src/org/apache/sandesha2/msgprocessors/CreateSeqMsgProcessor.java
URL: http://svn.apache.org/viewcvs/webservices/sandesha/trunk/src/org/apache/sandesha2/msgprocessors/CreateSeqMsgProcessor.java?rev=386842&r1=386841&r2=386842&view=diff
==============================================================================
--- webservices/sandesha/trunk/src/org/apache/sandesha2/msgprocessors/CreateSeqMsgProcessor.java (original)
+++ webservices/sandesha/trunk/src/org/apache/sandesha2/msgprocessors/CreateSeqMsgProcessor.java Sat Mar 18 04:34:37 2006
@@ -214,6 +214,9 @@
 		if (arr.size()>0)
 			return false;
 		
+		if (sequenceID.length()<=1)
+			return false;   //Single character offers are NOT accepted.
+		
 		return true;
 	}
 	



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