<br><font size=2 face="sans-serif">Hi </font>
<br>
<br><font size=2 face="sans-serif">In drools in deployment we get the below
link.</font>
<table>
<tr valign=top>
<td><a href="http://localhost:8080/drools-guvnor/org.drools.guvnor.Guvnor/package/xxxxxxx/LATEST.drl"><font size=2 color=blue face="Tahoma"><b><u>http://localhost:8080/drools-guvnor/org.drools.guvnor.Guvnor/package/xxxxxxx/LATEST.drl</u></b></font></a><font size=2 face="Tahoma">
</font>
<br><font size=2 face="Tahoma">We need to include this in properties file
in application wherein this URL is mentioned.</font>
<br><font size=2 face="Tahoma">How can one protect unauthorized access
to this URL as the whole set of rules can be viewed for this .</font></table>
<br>
<br><font size=2 face="sans-serif"><br>
Nilima <br>
____________________________________________<br>
Experience certainty. &nbsp; &nbsp; &nbsp; &nbsp;IT Services<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp;Business Solutions<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp;Outsourcing<br>
____________________________________________</font>
<br>
<br>
<br>
<table width=100%>
<tr valign=top>
<td><font size=1 color=#5f5f5f face="sans-serif">From:</font>
<td><font size=1 face="sans-serif">rules-users-request@lists.jboss.org</font>
<tr valign=top>
<td><font size=1 color=#5f5f5f face="sans-serif">To:</font>
<td><font size=1 face="sans-serif">rules-users@lists.jboss.org</font>
<tr valign=top>
<td><font size=1 color=#5f5f5f face="sans-serif">Date:</font>
<td><font size=1 face="sans-serif">02/17/2010 10:14 PM</font>
<tr valign=top>
<td><font size=1 color=#5f5f5f face="sans-serif">Subject:</font>
<td><font size=1 face="sans-serif">rules-users Digest, Vol 39, Issue 45</font>
<tr valign=top>
<td><font size=1 color=#5f5f5f face="sans-serif">Sent by:</font>
<td><font size=1 face="sans-serif">rules-users-bounces@lists.jboss.org</font></table>
<br>
<hr noshade>
<br>
<br>
<br><tt><font size=2>Send rules-users mailing list submissions to<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
rules-users@lists.jboss.org<br>
<br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
</font></tt><a href="https://lists.jboss.org/mailman/listinfo/rules-users"><tt><font size=2>https://lists.jboss.org/mailman/listinfo/rules-users</font></tt></a><tt><font size=2><br>
or, via email, send a message with subject or body 'help' to<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
rules-users-request@lists.jboss.org<br>
<br>
You can reach the person managing the list at<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
rules-users-owner@lists.jboss.org<br>
<br>
When replying, please edit your Subject line so it is more specific<br>
than &quot;Re: Contents of rules-users digest...&quot;<br>
<br>
<br>
Today's Topics:<br>
<br>
 &nbsp; 1. Re: Negating a result (Wolfgang Laun)<br>
 &nbsp; 2. Re: Negating a result (djb)<br>
 &nbsp; 3. Re: Negating a result (Wolfgang Laun)<br>
 &nbsp; 4. Re: guvnor - dsl rule editor - using &quot;:&quot; in text box<br>
 &nbsp; &nbsp; &nbsp;(Toni Rikkola)<br>
 &nbsp; 5. Re: getWorkingMemoryEntryPoint returns NULL (Wolfgang Laun)<br>
 &nbsp; 6. Insert new facts from RHS (Malinda Kaushalye)<br>
 &nbsp; 7. Re: Insert new facts from RHS (Mauricio Salatino)<br>
 &nbsp; 8. Re: Insert new facts from RHS (Enda J Diggins)<br>
<br>
<br>
----------------------------------------------------------------------<br>
<br>
Message: 1<br>
Date: Wed, 17 Feb 2010 09:48:50 +0100<br>
From: Wolfgang Laun &lt;wolfgang.laun@gmail.com&gt;<br>
Subject: Re: [rules-users] Negating a result<br>
To: Rules Users List &lt;rules-users@lists.jboss.org&gt;<br>
Message-ID:<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&lt;17de7ee81002170048j6898203br6a73e2e2962cbc79@mail.gmail.com&gt;<br>
Content-Type: text/plain; charset=&quot;iso-8859-1&quot;<br>
<br>
Please be more specfic. If your field is called &quot;foo&quot;, then<br>
should have a method in the class representing<br>
your fact, such as:<br>
<br>
 &nbsp; boolean getFoo(){<br>
 &nbsp; &nbsp; &nbsp; return &lt;condition&gt; ? ! (&lt;expression&gt;)
: &lt;expression&gt;;<br>
 &nbsp; }<br>
<br>
Basically, &lt;condition&gt; could be a global parameter (public static
final)<br>
or a static or regular method call. &lt;expression&gt; could depend on
other<br>
attribute values, and so on.<br>
<br>
You can then write your CEs with a test such as<br>
 &nbsp;foo == true<br>
<br>
But I think this is closely related with that other question you<br>
have posted.<br>
<br>
-W<br>
<br>
<br>
On Wed, Feb 17, 2010 at 9:32 AM, djb &lt;dbrownell83@hotmail.com&gt; wrote:<br>
<br>
&gt;<br>
&gt; Hi Wolfgang,<br>
&gt;<br>
&gt; Sure, I know de Morgan's laws, but I'm not asking how one can negate
a<br>
&gt; condition...<br>
&gt;<br>
&gt; I'm asking how one can either negate or not negate, based on a test...
and<br>
&gt; whether I'm going to have to split my spreadsheet/rule-template into
2,<br>
&gt; (i.e. 1 for &quot;may not be&quot; rules, 1 for &quot;must be&quot;
rules).<br>
&gt;<br>
&gt; My spreadsheet has a field that in Java would be expressed as field
?<br>
&gt; !finalResult : finalResult<br>
&gt;<br>
&gt; But in DRL, it seems the lack of a ternary operator means I have to
split<br>
&gt; my<br>
&gt; rule-set, and I'm just checking if this is the case.<br>
&gt;<br>
&gt; -Daniel<br>
&gt;<br>
&gt; --<br>
&gt; View this message in context:<br>
&gt; </font></tt><a href="http://n3.nabble.com/Negating-a-result-tp212559p212656.html"><tt><font size=2>http://n3.nabble.com/Negating-a-result-tp212559p212656.html</font></tt></a><tt><font size=2><br>
&gt; Sent from the Drools - User mailing list archive at Nabble.com.<br>
&gt; _______________________________________________<br>
&gt; rules-users mailing list<br>
&gt; rules-users@lists.jboss.org<br>
&gt; </font></tt><a href="https://lists.jboss.org/mailman/listinfo/rules-users"><tt><font size=2>https://lists.jboss.org/mailman/listinfo/rules-users</font></tt></a><tt><font size=2><br>
&gt;<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: </font></tt><a href="http://lists.jboss.org/pipermail/rules-users/attachments/20100217/18c19147/attachment-0001.html"><tt><font size=2>http://lists.jboss.org/pipermail/rules-users/attachments/20100217/18c19147/attachment-0001.html</font></tt></a><tt><font size=2>
<br>
<br>
------------------------------<br>
<br>
Message: 2<br>
Date: Wed, 17 Feb 2010 02:02:08 -0800 (PST)<br>
From: djb &lt;dbrownell83@hotmail.com&gt;<br>
Subject: Re: [rules-users] Negating a result<br>
To: rules-users@lists.jboss.org<br>
Message-ID: &lt;1266400928420-212797.post@n3.nabble.com&gt;<br>
Content-Type: text/plain; charset=us-ascii<br>
<br>
<br>
Well the thing is, it's not just one condition - it's the combination of
all<br>
my rule's conditions. <br>
And my rules have about 7 conditions, none of which are mandatory. <br>
<br>
And that is actually the source of all my problems: that the conditions
are<br>
optional.<br>
<br>
If I set up a few logical relationships, there is nothing specific I am<br>
testing on, which gives a single expression I can test in a function. &nbsp;In<br>
procedural programming, I check each of the 7 conditions optionally, and<br>
then I apply my ternary operator to the final result. &nbsp;But here I
can't do<br>
that, because the condition is made up of all the little conditions that
may<br>
or may not be applicable.<br>
<br>
<br>
<br>
PS. <br>
Ok, so I see from the other thread that a rule template is meant to place<br>
whatever text you give it, like a text pre-processor. &nbsp;I'll see if
that is<br>
correct, thanks. &nbsp;I thought it might not be, because if you provide
a blank<br>
cell, it deletes your entire condition, instead of providing a &quot;&quot;
or a null,<br>
like you'd expect from a text pre-processor.<br>
<br>
-- <br>
View this message in context: </font></tt><a href="http://n3.nabble.com/Negating-a-result-tp212559p212797.html"><tt><font size=2>http://n3.nabble.com/Negating-a-result-tp212559p212797.html</font></tt></a><tt><font size=2><br>
Sent from the Drools - User mailing list archive at Nabble.com.<br>
<br>
<br>
------------------------------<br>
<br>
Message: 3<br>
Date: Wed, 17 Feb 2010 11:33:14 +0100<br>
From: Wolfgang Laun &lt;wolfgang.laun@gmail.com&gt;<br>
Subject: Re: [rules-users] Negating a result<br>
To: Rules Users List &lt;rules-users@lists.jboss.org&gt;<br>
Message-ID:<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&lt;17de7ee81002170233s62e0353fs50d439c532c75e82@mail.gmail.com&gt;<br>
Content-Type: text/plain; charset=&quot;iso-8859-1&quot;<br>
<br>
On Wed, Feb 17, 2010 at 11:02 AM, djb &lt;dbrownell83@hotmail.com&gt; wrote:<br>
<br>
&gt;<br>
&gt; Ok, so I see from the other thread that a rule template is meant to
place<br>
&gt; whatever text you give it, like a text pre-processor. &nbsp;I'll see
if that is<br>
&gt; correct, thanks.<br>
<br>
<br>
I implemented this, so I hope I still know what I did. :-)<br>
<br>
<br>
&gt; &nbsp;I thought it might not be, because if you provide a blank<br>
&gt; cell, it deletes your entire condition, instead of providing a &quot;&quot;
or a<br>
&gt; null,<br>
&gt; like you'd expect from a text pre-processor.<br>
&gt;<br>
<br>
The idea of the interface for generating rules from object collection<br>
is to avoid the constraints of spreadsheet translation.<br>
<br>
-W<br>
<br>
&gt; --<br>
&gt; View this message in context:<br>
&gt; </font></tt><a href="http://n3.nabble.com/Negating-a-result-tp212559p212797.html"><tt><font size=2>http://n3.nabble.com/Negating-a-result-tp212559p212797.html</font></tt></a><tt><font size=2><br>
&gt; Sent from the Drools - User mailing list archive at Nabble.com.<br>
&gt; _______________________________________________<br>
&gt; rules-users mailing list<br>
&gt; rules-users@lists.jboss.org<br>
&gt; </font></tt><a href="https://lists.jboss.org/mailman/listinfo/rules-users"><tt><font size=2>https://lists.jboss.org/mailman/listinfo/rules-users</font></tt></a><tt><font size=2><br>
&gt;<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: </font></tt><a href="http://lists.jboss.org/pipermail/rules-users/attachments/20100217/ea6ec91f/attachment-0001.html"><tt><font size=2>http://lists.jboss.org/pipermail/rules-users/attachments/20100217/ea6ec91f/attachment-0001.html</font></tt></a><tt><font size=2>
<br>
<br>
------------------------------<br>
<br>
Message: 4<br>
Date: Wed, 17 Feb 2010 12:33:10 +0200<br>
From: Toni Rikkola &lt;trikkola@redhat.com&gt;<br>
Subject: Re: [rules-users] guvnor - dsl rule editor - using &quot;:&quot;
in<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
text box<br>
To: Rules Users List &lt;rules-users@lists.jboss.org&gt;<br>
Message-ID: &lt;4B7BC5E6.6040704@redhat.com&gt;<br>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed<br>
<br>
Tested it and this is a bug.<br>
I made a Jira for it so you can follow it.<br>
</font></tt><a href="https://jira.jboss.org/jira/browse/GUVNOR-505"><tt><font size=2>https://jira.jboss.org/jira/browse/GUVNOR-505</font></tt></a><tt><font size=2><br>
<br>
Toni<br>
<br>
John Walker wrote:<br>
&gt; All,<br>
&gt;<br>
&gt; I have a DSL sentence that looks like this:<br>
&gt; [when]- and var9 matches {v9}=field9!=null, field9 matches &quot;{v9}&quot;<br>
&gt;<br>
&gt; When using the Guvnor guided rule editor, I add the &quot;- and var9
<br>
&gt; matches {v9}&quot; DSL sentence to the rule, giving me a WHEN condition
<br>
&gt; like this:<br>
&gt; - and var9 matches [text box]<br>
&gt;<br>
&gt; I want to put a URL in the text box, but anytime I use a value <br>
&gt; containing a colon&quot;:&quot;,<br>
&gt; I get a popup box with error message &quot;The value [some value with
a <br>
&gt; colon] is not valid for this field&quot;<br>
&gt;<br>
&gt; Example:<br>
&gt; DSL in rule, using guvnor guided editor: &nbsp;&quot;- and var9 matches
<br>
&gt; [</font></tt><a href=http://google.com/><tt><font size=2>http://google.com</font></tt></a><tt><font size=2>]&quot;<br>
&gt; Popup error message: &nbsp; &quot;The value </font></tt><a href=http://google.com/><tt><font size=2>http://google.com</font></tt></a><tt><font size=2>
is not valid for <br>
&gt; this field&quot;<br>
&gt;<br>
&gt; What needs to happen to allow a value with a colon? &nbsp;I did not
have <br>
&gt; this problem with drools4 and JBRMS.<br>
&gt;<br>
&gt; Thanks,<br>
&gt; John<br>
&gt; ------------------------------------------------------------------------<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; rules-users mailing list<br>
&gt; rules-users@lists.jboss.org<br>
&gt; </font></tt><a href="https://lists.jboss.org/mailman/listinfo/rules-users"><tt><font size=2>https://lists.jboss.org/mailman/listinfo/rules-users</font></tt></a><tt><font size=2><br>
&gt; &nbsp; <br>
<br>
<br>
<br>
------------------------------<br>
<br>
Message: 5<br>
Date: Wed, 17 Feb 2010 13:59:03 +0100<br>
From: Wolfgang Laun &lt;wolfgang.laun@gmail.com&gt;<br>
Subject: Re: [rules-users] getWorkingMemoryEntryPoint returns NULL<br>
To: Rules Users List &lt;rules-users@lists.jboss.org&gt;<br>
Message-ID:<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&lt;17de7ee81002170459y5c64fe34p2922245f510decfc@mail.gmail.com&gt;<br>
Content-Type: text/plain; charset=&quot;iso-8859-1&quot;<br>
<br>
Do you use &quot;global&quot; in your rules? This would be the &quot;declaration&quot;
of an<br>
entry point.<br>
<br>
Also, KnowledgeSessionConfiguration should be passed to the method call<br>
creating a session, which I don't see in your code.<br>
<br>
-W<br>
<br>
On Wed, Feb 17, 2010 at 2:16 AM, Malinda Kaushalye &lt;kaushalye@yahoo.com&gt;wrote:<br>
<br>
&gt; Dear All,<br>
&gt; It appears to be that the getWorkingMemoryEntryPoint() method returns
NULL<br>
&gt; in my code given below.<br>
&gt; Note that EventProcessingOption = STREAM and ClockType = &quot;realtime&quot;
if that<br>
&gt; is of any importance.<br>
&gt; Cheers,<br>
&gt; Malinda<br>
&gt;<br>
&gt; public class EventKnowledgeBase { private &nbsp;KnowledgeBase kbase
= null;<br>
&gt; private &nbsp;StatefulKnowledgeSession ksession = null; private<br>
&gt; &nbsp;WorkingMemoryEntryPoint globalStream = null;<br>
&gt; public EventKnowledgeBase() throws Exception {<br>
&gt; super();<br>
&gt; kbase = readKnowledgeBase();<br>
&gt; ksession = kbase.newStatefulKnowledgeSession();<br>
&gt; KnowledgeBaseConfiguration config =<br>
&gt; KnowledgeBaseFactory.newKnowledgeBaseConfiguration();<br>
&gt; config.setOption( EventProcessingOption.STREAM );<br>
&gt; KnowledgeSessionConfiguration kbSessionConfig =<br>
&gt; KnowledgeBaseFactory.newKnowledgeSessionConfiguration();<br>
&gt; kbSessionConfig.setOption( ClockTypeOption.get(&quot;realtime&quot;)
);<br>
&gt; globalStream = ksession.getWorkingMemoryEntryPoint( &quot;global&quot;
);<br>
&gt; if(null == globalStream){<br>
&gt; System.out.println(&quot;WorkingMemoryEntryPoint is Null&quot;); //YEAH..!
&nbsp;IT<br>
&gt; RETURNS NULL<br>
&gt; }<br>
&gt; }<br>
&gt;<br>
&gt;<br>
&gt; }<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; rules-users mailing list<br>
&gt; rules-users@lists.jboss.org<br>
&gt; </font></tt><a href="https://lists.jboss.org/mailman/listinfo/rules-users"><tt><font size=2>https://lists.jboss.org/mailman/listinfo/rules-users</font></tt></a><tt><font size=2><br>
&gt;<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: </font></tt><a href="http://lists.jboss.org/pipermail/rules-users/attachments/20100217/23fa4cdc/attachment-0001.html"><tt><font size=2>http://lists.jboss.org/pipermail/rules-users/attachments/20100217/23fa4cdc/attachment-0001.html</font></tt></a><tt><font size=2>
<br>
<br>
------------------------------<br>
<br>
Message: 6<br>
Date: Wed, 17 Feb 2010 08:25:37 -0800 (PST)<br>
From: Malinda Kaushalye &lt;kaushalye@yahoo.com&gt;<br>
Subject: [rules-users] Insert new facts from RHS<br>
To: rules-users@lists.jboss.org<br>
Message-ID: &lt;817565.1542.qm@web56503.mail.re3.yahoo.com&gt;<br>
Content-Type: text/plain; charset=utf-8<br>
<br>
Hi All,<br>
How do I insert new facts/events to the working memory from RHS?<br>
<br>
rule &quot;myrule&quot;<br>
when <br>
//Some condition<br>
then <br>
 <br>
//Create and Insert some new events/facts to the working memory <br>
end<br>
<br>
Cheers,<br>
Malinda<br>
<br>
<br>
 &nbsp; &nbsp; &nbsp;<br>
<br>
<br>
<br>
<br>
------------------------------<br>
<br>
Message: 7<br>
Date: Wed, 17 Feb 2010 13:35:40 -0300<br>
From: Mauricio Salatino &lt;salaboy@gmail.com&gt;<br>
Subject: Re: [rules-users] Insert new facts from RHS<br>
To: Rules Users List &lt;rules-users@lists.jboss.org&gt;<br>
Message-ID:<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&lt;efac615a1002170835q3ee9c0d8o8d1efada0ef1e310@mail.gmail.com&gt;<br>
Content-Type: text/plain; charset=&quot;iso-8859-1&quot;<br>
<br>
just calling<br>
insert(new Person());<br>
in the RHS<br>
<br>
On Wed, Feb 17, 2010 at 1:25 PM, Malinda Kaushalye &lt;kaushalye@yahoo.com&gt;wrote:<br>
<br>
&gt; Hi All,<br>
&gt; How do I insert new facts/events to the working memory from RHS?<br>
&gt;<br>
&gt; rule &quot;myrule&quot;<br>
&gt; when<br>
&gt; //Some condition<br>
&gt; then<br>
&gt;<br>
&gt; //Create and Insert some new events/facts to the working memory<br>
&gt; end<br>
&gt;<br>
&gt; Cheers,<br>
&gt; Malinda<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; rules-users mailing list<br>
&gt; rules-users@lists.jboss.org<br>
&gt; </font></tt><a href="https://lists.jboss.org/mailman/listinfo/rules-users"><tt><font size=2>https://lists.jboss.org/mailman/listinfo/rules-users</font></tt></a><tt><font size=2><br>
&gt;<br>
<br>
<br>
<br>
-- <br>
- </font></tt><a href=http://salaboy.wordpress.com/><tt><font size=2>http://salaboy.wordpress.com</font></tt></a><tt><font size=2><br>
- </font></tt><a href=http://www.jbug.com.ar/><tt><font size=2>http://www.jbug.com.ar</font></tt></a><tt><font size=2><br>
- Salatino &quot;Salaboy&quot; Mauricio -<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: </font></tt><a href="http://lists.jboss.org/pipermail/rules-users/attachments/20100217/f380292f/attachment-0001.html"><tt><font size=2>http://lists.jboss.org/pipermail/rules-users/attachments/20100217/f380292f/attachment-0001.html</font></tt></a><tt><font size=2>
<br>
<br>
------------------------------<br>
<br>
Message: 8<br>
Date: Wed, 17 Feb 2010 16:38:35 +0000<br>
From: Enda J Diggins &lt;ejdiggins@gmail.com&gt;<br>
Subject: Re: [rules-users] Insert new facts from RHS<br>
To: Rules Users List &lt;rules-users@lists.jboss.org&gt;<br>
Message-ID:<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&lt;55587e551002170838u27e625efqa41ca3973564c91@mail.gmail.com&gt;<br>
Content-Type: text/plain; charset=&quot;iso-8859-1&quot;<br>
<br>
Hi Malinda,<br>
<br>
rule &quot;myrule&quot;<br>
 when<br>
 &nbsp; //some condition<br>
 &nbsp;then<br>
 &nbsp; insert(new Object());<br>
 &nbsp; // or<br>
 &nbsp; Variable var = new Variable();<br>
 &nbsp; insert(var);<br>
end<br>
<br>
<br>
<br>
On Wed, Feb 17, 2010 at 4:25 PM, Malinda Kaushalye &lt;kaushalye@yahoo.com&gt;wrote:<br>
<br>
&gt; Hi All,<br>
&gt; How do I insert new facts/events to the working memory from RHS?<br>
&gt;<br>
&gt; rule &quot;myrule&quot;<br>
&gt; when<br>
&gt; //Some condition<br>
&gt; then<br>
&gt;<br>
&gt; //Create and Insert some new events/facts to the working memory<br>
&gt; end<br>
&gt;<br>
&gt; Cheers,<br>
&gt; Malinda<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; rules-users mailing list<br>
&gt; rules-users@lists.jboss.org<br>
&gt; </font></tt><a href="https://lists.jboss.org/mailman/listinfo/rules-users"><tt><font size=2>https://lists.jboss.org/mailman/listinfo/rules-users</font></tt></a><tt><font size=2><br>
&gt;<br>
<br>
<br>
<br>
-- <br>
Enda J Diggins<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: </font></tt><a href="http://lists.jboss.org/pipermail/rules-users/attachments/20100217/f4adb2cf/attachment.html"><tt><font size=2>http://lists.jboss.org/pipermail/rules-users/attachments/20100217/f4adb2cf/attachment.html</font></tt></a><tt><font size=2>
<br>
<br>
------------------------------<br>
<br>
_______________________________________________<br>
rules-users mailing list<br>
rules-users@lists.jboss.org<br>
</font></tt><a href="https://lists.jboss.org/mailman/listinfo/rules-users"><tt><font size=2>https://lists.jboss.org/mailman/listinfo/rules-users</font></tt></a><tt><font size=2><br>
<br>
<br>
End of rules-users Digest, Vol 39, Issue 45<br>
*******************************************<br>
</font></tt>
<br>
<br><pre>=====-----=====-----=====
Notice: The information contained in this e-mail
message and/or attachments to it may contain 
confidential or privileged information. If you are 
not the intended recipient, any dissemination, use, 
review, distribution, printing or copying of the 
information contained in this e-mail message 
and/or attachments to it are strictly prohibited. If 
you have received this communication in error, 
please notify us by reply e-mail or telephone and 
immediately and permanently delete the message 
and any attachments. Thank you


</pre>