1 Reply Latest reply on May 6, 2014 10:21 AM by ganeshneelekani

    Need help on Re-loading remote drools guvnor resource

    mail2gkishor

      HI ,

      I am using Guvnor 5.5 as drools repository running in tomcat6. I have configured using spring in my application and when I use "resource-change-scanner" the action value I am getting as null from the session.

      If I comment the "resource-change-scanner" in my drools configuration then I am getting the value after firing the rule, can anyone please provide the expertise help here.

       

      Spring config :

      <drools:resource-change-scanner id="s1" interval="60" enabled="true" />

             

              <drools:resource id="cs" type="CHANGE_SET" source="http://localhost:8080/guvnor-5.5/rest/packages/AltAcess/assets/AlternateTest/source" basic-authentication="enabled" username="admin" password="admin" />

             

              <drools:kagent kbase="alternateAccessKb" id="kagent" new-instance="false">

                      <drools:resources>

                      <drools:resource ref="cs" />

                   </drools:resources>

              </drools:kagent>

             

      Client code :

       

      StatelessKnowledgeSession session = getAltStlessSessionIns();  // Injected from spring

                  

                   AlternateAccessCode guvnorBean = new AlternateAccessCode();

                  

                   guvnorBean.setConnectionType(6);

                   guvnorBean.setCallDirection(1);

                   guvnorBean.setPricingModel("*");

                   guvnorBean.setBuId("*");

                 

                              

                   session.execute(guvnorBean);

                 

                   String surchargeCodecarrierCodeEmpty = guvnorBean.getSurchargeCode();  

                  

                   System.out.println("Value of the Surchargecode From processalternateAccessKbSurchargeCode  :-  "+surchargeCodecarrierCodeEmpty);  ------>>>>>>>  This I am getting as null if use resource scanner

       

      My requirement is , when I update the rule in guvnor it should reflect the new value at client side.

       

      Thanks and Regards,

         Kishor