1 Reply Latest reply on May 31, 2007 1:37 PM by estaub

    JBPM getCurrentContext

    agb48

      Hi all, I'm getting an exception while trying to lookup the jbpmConfiguration. I'm doing that from an external web app.
      I need extra configuration ?

      Here, my code thnks !!!!

      protected JbpmConfiguration getJbpmConfiguration() throws Exception {
      if (this.conf == null){
      JbpmConfiguration config = null;
      String jndiName = null;
      Context ctx = new InitialContext();

      // Get jndi name for jbpm configuration

      jndiName = "java:/jbpm/JbpmConfiguration";
      config = (JbpmConfiguration)ctx.lookup(jndiName);
      this.conf = config;
      }
      return this.conf;
      }

      The exceptions ocurrs when doing lookup.
      If i do a

      JbpmConfiguration.getInstance().getCurrentJbpmContext()

      I get a ClassNotFoundException org.jbpm....