<html><head><style type="text/css"><!-- DIV {margin:0px;} --></style></head><body><div style="font-family:times new roman, new york, times, serif;font-size:12pt">i see...that would works...but now if you add stuff and make a rule that look like this, the binding will not work...<br><br><span style="font-weight: bold;">rule "dtv_discount_request"</span><br style="font-weight: bold;"><span style="font-weight: bold;"> when</span><br style="font-weight: bold;"><span style="font-weight: bold;"> MegaTransferObject(orders_FkOrderTypeId == Constants.NEW_COMPLETED_ORDER_TYPE) and</span><br style="font-weight: bold;"><span style="font-weight: bold;"> not MegaTransferObject(ct:other_ChannelType -> (ct.equalsIgnoreCase(Constants.CHANNEL_TYPE_RESELLER))) and</span><br style="font-weight: bold;"><span style="font-weight: bold;"> (not
MegaTransferObject(orders_FkChannelId == Constants.ISP_CHANNEL_ID_PRW) and</span><br style="font-weight: bold;"><span style="font-weight: bold;"> not MegaTransferObject(orders_FkChannelId == Constants.ISP_CHANNEL_ID_TLD) and</span><br style="font-weight: bold;"><span style="font-weight: bold;"> not MegaTransferObject(orders_FkChannelId == Constants.ISP_CHANNEL_ID_AOL)) and</span><br style="font-weight: bold;"><span style="font-weight: bold;"> (MegaTransferObject(phoneList_GovernmentAccount == null) or MegaTransferObject(phoneList_GovernmentAccount == Constants.FLAG_NO)) and</span><br style="font-weight: bold;"><span style="font-weight: bold;"> (MegaTransferObject(customerProfile_DtvDiscount == null) or MegaTransferObject(customerProfile_DtvDiscount == Constants.FLAG_NO)) and</span><br style="font-weight: bold;"><span
style="font-weight: bold;"> (MegaTransferObject(other_AccountType == null) or MegaTransferObject(other_AccountType == Constants.PHONE_TYPE_RESIDENTIAL)) and</span><br style="font-weight: bold;"><span style="font-weight: bold;"> MegaTransferObject(other_HasDtvDiscountRequest == false)</span><br style="font-weight: bold;"><span style="font-weight: bold;"> then</span><br style="font-weight: bold;"><span style="font-weight: bold;"> menu.add(new String[]{Constants.SERVICE_ASSURANCE_TREE_MENU_DSL, Constants.SERVICE_ASSURANCE_MENU_DTV_DISCOUNT_REQUEST});</span><br style="font-weight: bold;"><span style="font-weight: bold;">end</span><br><div> </div>i was trying to bre creative and add megaTO: before all the MegaTransferObject and it gave me the compilation error you mention...but only after the third megaTO:<br><br><br>Joel G.
Rivera-Gonzalez<br>PRT<br><br>"The first 90% of a project takes 90% of the time, the last 10% takes the other 90% of the time" - Murphy's Law<div style="font-family: times new roman,new york,times,serif; font-size: 12pt;"><br><br><div style="font-family: times new roman,new york,times,serif; font-size: 12pt;">----- Original Message ----<br>From: Edson Tirelli <tirelli@post.com><br>To: Rules Users List <rules-users@lists.jboss.org><br>Sent: Tuesday, January 9, 2007 4:39:57 PM<br>Subject: Re: [rules-users] About String..."==" same as ".equals"?<br><br><div> Joel,<br><br> I just noticed in your last rule you do the binding to the same variable:<br><br> > megaTO:MegaTransferObject(other_AccountType == "RMS")<br> > megaTO:MegaTransferObject(other_HasDtvDiscountRequest == false)<br><br> I thought that feature was already
disabled... :( it should give you <br>an error of duplicate variable declaration! is it not raising an error <br>when compiling the rule??<br><br> The correct way of doing it if it is the same object is getting both <br>constraints in the same pattern:<br><br> megaTO: MegaTransferObject( other_AccountType == "RMS", <br>other_HasDtvDiscountRequest == false)<br><br> So, rules 1 and 2 are correct in not firing, since you would need 2 <br>different objects to match the 2 patterns in them.<br> The mapping between patterns and objects is "one-to-one".<br><br> []s<br> Edson<br> <br><br><br>Joel G. Rivera-González wrote:<br><br>> 1. i downloaded the latest release from the download page...<br>> 2. just one MTO...the returning arrayList should have arround 10 values.<br>><br>> will do an example and (class and ruleFile) and send it to your email...<br>><br>> thanks<br>> <br>>
Joel G. Rivera-Gonzalez<br>> PRT<br>><br>> "The first 90% of a project takes 90% of the time, the last 10% takes <br>> the other 90% of the time" - Murphy's Law<br>><br>><br>> ----- Original Message ----<br>> From: Edson Tirelli <tirelli@post.com><br>> To: Rules Users List <rules-users@lists.jboss.org><br>> Sent: Tuesday, January 9, 2007 3:29:26 PM<br>> Subject: Re: [rules-users] About String..."==" same as ".equals"?<br>><br>><br>> Joel,<br>><br>> Your rules seems to be correct.<br>> Questions:<br>><br>> 1. What JBRules version are you using?<br>><br>> 2. How many MTO instances are you asserting in the working memory, that<br>> would match each Pattern in your rule?<br>><br>> It may be an issue with "or". Can you provide a self contained test<br>> for me to
investigate?<br>><br>> Thank you<br>> Edson<br>><br>> Joel G. Rivera-González wrote:<br>><br>> > i have to be doing something wrong...but it make no sense...<br>> > a MegaTransferObject is asserted.<br>> ><br>> > case1: No rules fired.<br>> > rule "dtv_discount_request"<br>> > when<br>> > MegaTransferObject(other_AccountType == null) or<br>> > MegaTransferObject(other_AccountType ==<br>> > Constants.PHONE_TYPE_RESIDENTIAL)<br>> > MegaTransferObject(other_HasDtvDiscountRequest == false)<br>> > then<br>> > menu.add(new<br>> > String[]{Constants.SERVICE_ASSURANCE_TREE_MENU_DSL,<br>>
> Constants.SERVICE_ASSURANCE_MENU_DTV_DISCOUNT_REQUEST});<br>> > end<br>> ><br>> > case 2: no rule fired.<br>> ><br>> > rule "dtv_discount_request"<br>> > when<br>> > MegaTransferObject(other_AccountType == null) or<br>> > MegaTransferObject(other_AccountType == "RMS")<br>> > MegaTransferObject(other_HasDtvDiscountRequest == false)<br>> > then<br>> > menu.add(new<br>> > String[]{Constants.SERVICE_ASSURANCE_TREE_MENU_DSL,<br>> > Constants.SERVICE_ASSURANCE_MENU_DTV_DISCOUNT_REQUEST});<br>> > end<br>> ><br>> > case 3: rule fired<br>> > <br>> > rule "dtv_discount_request"<br>> >
when<br>> > megaTO:MegaTransferObject(other_AccountType == "RMS")<br>> > megaTO:MegaTransferObject(other_HasDtvDiscountRequest == false)<br>> > then<br>> > menu.add(new<br>> > String[]{Constants.SERVICE_ASSURANCE_TREE_MENU_DSL,<br>> > Constants.SERVICE_ASSURANCE_MENU_DTV_DISCOUNT_REQUEST});<br>> > end<br>> ><br>> > i really dont get it...<br>> > i must not be getting something...<br>> > help...<br>> ><br>> ><br>> > Joel G. Rivera-Gonzalez<br>> > PRT<br>> ><br>> > "The first 90% of a project takes 90% of the time, the last 10% takes<br>> > the other 90% of the time" - Murphy's Law<br>> ><br>> ><br>> > ----- Original Message ----<br>> > From: Edson Tirelli
<tirelli@post.com><br>> > To: Rules Users List <rules-users@lists.jboss.org><br>> > Sent: Tuesday, January 9, 2007 7:26:35 AM<br>> > Subject: Re: [rules-users] About String..."==" same as ".equals"?<br>> ><br>> ><br>> > Joel,<br>> ><br>> > This is the correct syntax and it works (at least we didn't get a<br>> > report for it not working yet):<br>> ><br>> > Object(variable == Constants.value)<br>> ><br>> > Can you please elaborate about the problem you are having in order<br>> > for us to help solving it? If it is a bug we need to fix.<br>> ><br>> > Thank you,<br>> > Edson<br>> ><br>> > Joel G. Rivera-González wrote:<br>> ><br>> > > most (if not all) of my rules will have conditions like this:<br>> >
> Object(variable == Constants.value)<br>> > > this is not working...<br>> > > BUT if i change the Constants.value to corresponding value from the<br>> > > constants class it will work...<br>> > > is there any other way other than this Object(a:variable-> <br>> > > (a.equals(Constants.value)) to do it?<br>> > ><br>> > ><br>> > ><br>> > > <br>> > > Joel G. Rivera-Gonzalez<br>> > > PRT<br>> > ><br>> > > "The first 90% of a project takes 90% of the time, the last 10% takes<br>> > > the other 90% of the time" - Murphy's Law<br>> > ><br>> > <br>> >------------------------------------------------------------------------<br>> > ><br>> > >_______________________________________________<br>> > >rules-users mailing list<br>> > >rules-users@lists.jboss.org<br>> > ><a
target="_blank" href="https://lists.jboss.org/mailman/listinfo/rules-users">https://lists.jboss.org/mailman/listinfo/rules-users</a><br>> > > <br>> > ><br>> ><br>> ><br>> > --<br>> > Edson Tirelli<br>> > Software Engineer - JBoss Rules Core Developer<br>> > Office: +55 11 3124-6000<br>> > Mobile: +55 11 9218-4151<br>> > JBoss, a division of Red Hat @ <a target="_blank" href="http://www.jboss.com">www.jboss.com</a> <<a target="_blank" href="http://www.jboss.com">http://www.jboss.com</a>> <br>> <<a target="_blank" href="http://www.jboss.com">http://www.jboss.com</a>><br>> ><br>> ><br>> > _______________________________________________<br>> > rules-users mailing list<br>> > rules-users@lists.jboss.org<br>> > <a target="_blank" href="https://lists.jboss.org/mailman/listinfo/rules-users">https://lists.jboss.org/mailman/listinfo/rules-users</a><br>>
><br>> >------------------------------------------------------------------------<br>> ><br>> >_______________________________________________<br>> >rules-users mailing list<br>> >rules-users@lists.jboss.org<br>> ><a target="_blank" href="https://lists.jboss.org/mailman/listinfo/rules-users">https://lists.jboss.org/mailman/listinfo/rules-users</a><br>> > <br>> ><br>><br>><br>> -- <br>> Edson Tirelli<br>> Software Engineer - JBoss Rules Core Developer<br>> Office: +55 11 3124-6000<br>> Mobile: +55 11 9218-4151<br>> JBoss, a division of Red Hat @ <a target="_blank" href="http://www.jboss.com">www.jboss.com</a> <<a target="_blank" href="http://www.jboss.com">http://www.jboss.com</a>><br>><br>><br>> _______________________________________________<br>> rules-users mailing list<br>> rules-users@lists.jboss.org<br>> <a target="_blank"
href="https://lists.jboss.org/mailman/listinfo/rules-users">https://lists.jboss.org/mailman/listinfo/rules-users</a><br>><br>>------------------------------------------------------------------------<br>><br>>_______________________________________________<br>>rules-users mailing list<br>>rules-users@lists.jboss.org<br>><a target="_blank" href="https://lists.jboss.org/mailman/listinfo/rules-users">https://lists.jboss.org/mailman/listinfo/rules-users</a><br>> <br>><br><br><br>-- <br> Edson Tirelli<br> Software Engineer - JBoss Rules Core Developer<br> Office: +55 11 3124-6000<br> Mobile: +55 11 9218-4151<br> JBoss, a division of Red Hat @ <a target="_blank" href="http://www.jboss.com">www.jboss.com</a><br><br><br>_______________________________________________<br>rules-users mailing list<br>rules-users@lists.jboss.org<br><a target="_blank"
href="https://lists.jboss.org/mailman/listinfo/rules-users">https://lists.jboss.org/mailman/listinfo/rules-users</a><br></div></div><br></div></div></body></html>