Hi:
    i  have  global value problem...
 
     i use the method of setGlobal in Persistence ,
  
     for example: 
 
-           ksession = (CommandBasedStatefulKnowledgeSession)JPAKnowledgeService.newStatefulKnowledgeSession(kbase, config, env); 
-           ksession.setGlobal("testkey","testValue");
-           ksession.startProcess(processId);
-           ksession.dispose();
 
 
then i use 
   
 ksession = (CommandBasedStatefulKnowledgeSession)JPAKnowledgeService.loadStatefulKnowledgeSession(ksessionId,kbase, config, env);
 
get the ksession again,
 
          then ksession.getGlobal("testkey")   is  null,
 
why? and  how do use the globalValue  in Persistence..
 
thanks for u !