2 Replies Latest reply on Dec 20, 2008 8:23 AM by kukeltje

    JBPM_VARIABLEINSTANCE null value

      Hi
      I made a simple application with jbpm.When I starting new task I saw null value on the JBPM_VARIABLEINSTANCE.Why null value is occuring on this table can anybody explain? Ä°s it a bug?

      I use jbpm 3.2.3 versiyon
      here is my procesdeffinition.xml

      
      <process-definition xmlns="urn:jbpm.org:jpdl-3.2" name="calisma">
      
      
       <start-state name="start-state1">
       <transition to="gorev" name="git"></transition>
       </start-state>
      
      
       <task-node name="gorev">
       <task name="gorev">
       <assignment actor-id="manager"></assignment>
       <controller>
       <variable access="read,write" name="ad"></variable>
       </controller>
       </task>
       <transition to="end-state1" name="but"></transition>
       </task-node>
      
      
       <end-state name="end-state1"></end-state>
      
      
      </process-definition>
      


      here is table value when task has been started.

      ID_ CLASS_ VERSION_ NAME_ CONVERTER_ ------------------
      1 N 1 null
      2 s 0 ad
      ................................................................

      I want to know the why value of first row is null how can I correct this?