JBPM 3.3.1 GA brings a few interesting news: one of this is the GWT console which allows for rapid publishing of Process information as REST resources and has out of the box support for "application/json" and "text/xml" marshalling.
In the web services world, REST is a key design idiom that embraces a stateless client-server architecture in which the web services are viewed as resources and can be identified by their URLs.
In short, the difference with traditional web services is that traditional Web Services are enginereed with a more complex protocol (SOAP) which has been built over HTTP. The web services request and response are in fact SOAP messages. REST web services on the other hand can be invoked as simple HTTP requests, adding the methods and parameters on the URL.
Step 1: download and install JBPM 3.3.1
JBPM can be downloaded from JBoss site at
http://www.jboss.org/jbossjbpm/downloads/
You'll notice that it is not a .zip file as the previous release. It's actually an installer.
java -jar jbpm-installer-3.3.1.GA.jar
A wizard will guide you through the installation. Select th database you want to use (in this tutorial we'll use MySQL)

Then you have to opportunity to select your JBoss server so JBPM gets actually deployed on your server with all the required libraries (this was really an annoying task to do manually!)

Step 2: configure the Database
Once the wizard has completed, move to the "deploy" folder of your JBoss distribution. You'll notice a jbpm folder which contains the libraries, the applications and the configuration.
If you have selected MySQL as database you'll find an "jbpm-mysql-ds.xml". JBPM installer has created it for you. Not only, it has also copied the jdbc drivers for MySQL. Wonderful isn't it ???
You need only to specify the Database settings, in our datasource file :
In our sample we have created an empty schema named "jbpm" on our local machine.
Ok, now populate the Database running the scripts found under the JBPM_HOME/database folder
(I suggest you reading this tip for information about the jbpm database users: http://www.mastertheboss.com/en/jboss-howto/44-jbpm/169-how-to-log-on-the-jbpm-console-.html)
Step 3: launch the console
The GWT console server can be reached at http://localhost:8080/gwt-console-server/
This is an hard copy if it:
GWT Console ServerPublished REST Url's
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
As you can see, every process management action can be done simply with an HTTP request!
The output of the RestFul Web services is JSON.
JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is another protocol to exchange data between web applications. is easy for humans to read and write. It is easy for machines to parse and generate.
JSON is built on two structures:
- A collection of name/value pairs. In various languages, this is realized as an object, record, struct, dictionary, hash table, keyed list, or associative array.
- An ordered list of values. In most languages, this is realized as an array, vector, list, or sequence.
In order to consume these web services you have several options, here we have used a simple shell command "curl" which is available on most Linux platforms and can be downloaded here for other OS:
http://curl.haxx.se/download.html
Here's a sample output from curl under windows:
curl http://localhost:8080/gwt-console-server/rs/process/definitions -u admin:admin
{"definitions":[{"processId":3,"name":"simple","version":"2"},{"processId":2,"na
me":"simple","version":"1"}]}
curl has many options, here we are only passing the URL of the Web service and the -u option which sets username and password needed.<












