2 Replies Latest reply on Aug 29, 2006 5:24 AM by cwad0000

    about process deployment ...

    wenbozhu

      What's documented in the latest user guide 16.1 doesn't seem to be up to date .. and are there any other jBPM documents available .. other than the freely avaiable user guide (v3.1)?

      I am currently using "create.db" and "deploy.processes" targets, and the two servelets from webapp seem fine too, /deploy and /upload. Are there any other ways available to deploy processes? And any front end forms for the servlets?

      - Wenbo

        • 1. Re: about process deployment ...
          kukeltje

          no, not yet. The 3.2 webapp will probably have something for this. There is someone working dedicated on the webapp now.

          • 2. Re: about process deployment ...
            cwad0000

             

            "wenbozhu" wrote:
            Are there any other ways available to deploy processes?


            i deploy the processes in an own method, by calling the api:
            ...
            ProcessDefinition processDefinition = ProcessDefinition.parseXmlInputStream(is);
            jbpmContext.deployProcessDefinition(processDefinition);
            ...