0 Replies Latest reply on Sep 26, 2005 7:33 AM by stefan_

    Method is not defined in the class JpdlXmlReader

    stefan_

      Hi again,
      Now I have another problem. In this code:

      package com.jbay;
      import org.jbpm.graph.def.ProcessDefinition;
      import org.jbpm.graph.exe.ProcessInstance;
      import org.jbpm.jpdl.xml.JpdlXmlReader;
      import junit.framework.TestCase;

      public class HelloTest extends TestCase {
      public void testProcess() throws Exception{
      ProcessDefinition definition =
      JpdlXmlReader.JpdlXmlReader("hello.par/processdefinition.xml");
      }
      }


      the ide gives error in JpdlXmlReader.JpdlXmlReader("hello.par/processdefinition.xml"); and error is that method JpdlXmlReader("hello.par/processdefinition.xml")
      is not defined. This code is from JBoss.com site in the tutorial and it don't works.