[JBoss JIRA] Created: (JBESB-1062) Clean up Content Based Routing guide
by Richard Achmatowicz (JIRA)
Clean up Content Based Routing guide
------------------------------------
Key: JBESB-1062
URL: http://jira.jboss.com/jira/browse/JBESB-1062
Project: JBoss ESB
Issue Type: Task
Security Level: Public (Everyone can see)
Components: Documentation
Reporter: Richard Achmatowicz
Assigned To: Mark Little
I've been reading through the content based routing guide, as someone who knows nothing about it.
Chapter 1,although short, is beautifully written.
Chapter 2 is virtually unreadable and doesn't cover the important bases adequately:
- possibilities for setting up a content-based router, and all configurable properties
- key aspects of specifying rules in DRL
- key aspects of specifying rules in XPath
- how to link rules with the router defined earlier
These aspects were touched on, but not in a way that made any sense to me. I decided to look at a quickstart and guess all of the above rather than read the document, which really defeats the purpose of providing documentation. Sorry to be so harsh, but I think what i'm saying is accurate.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
17 years, 1 month
[JBoss JIRA] Created: (JBESB-735) Documentation for the jBPM 3.2.1 Admin Console with the ESB is needed
by Burr Sutter (JIRA)
Documentation for the jBPM 3.2.1 Admin Console with the ESB is needed
---------------------------------------------------------------------
Key: JBESB-735
URL: http://jira.jboss.com/jira/browse/JBESB-735
Project: JBoss ESB
Issue Type: Task
Security Level: Public (Everyone can see)
Components: BPM
Affects Versions: 4.2 Milestone Release 2
Reporter: Burr Sutter
Assigned To: Mark Little
Fix For: 4.2
My notes on how to make it run with AS 4.2 with Java 5 are here:
http://jboss.org/index.html?module=bb&op=viewtopic&t=112908
And here:
Steps (for AS 4.2 + Messaging 1.3 + ESB 4.2MR3)
1. Deploy attached hypersonic databases to the server\messaging\data\hypersonic director. jbpmDB.properties, jbpmDB.script
2. Deploy attached datasource - jbpm-ds.xml into the server\messaging\deploy directory
3. Deploy attached jbpm-console.war - created from CVS because the one in the jBPM3.2.1 suite do not work with Java 5
4. Modify the conf\login-config.xml be inserting the following:
<application-policy name = "jbpm">
<authentication>
<login-module code="org.jboss.security.auth.spi.DatabaseServerLoginModule"
flag="required">
<module-option name="dsJndiName">java:/JbpmDS</module-option>
<module-option name="principalsQuery">
SELECT PASSWORD_ FROM JBPM_ID_USER WHERE NAME_=?
</module-option>
<module-option name="rolesQuery">
SELECT g.NAME_ ,'Roles'
FROM JBPM_ID_USER u,
JBPM_ID_MEMBERSHIP m,
JBPM_ID_GROUP g
WHERE g.TYPE_='security-role'
AND m.GROUP_ = g.ID_
AND m.USER_ = u.ID_
AND u.NAME_=?
</module-option>
</login-module>
</authentication>
</application-policy>
5. Modify the server\messaging\deploy\jbpm.esb\hibernate.cfg.xml so that it uses the DS defined in step 2.
The result should look something like the following:
<property name="hibernate.dialect">org.hibernate.dialect.HSQLDialect</property>
<!-- JDBC connection properties (begin)
<property name="hibernate.connection.driver_class">org.hsqldb.jdbcDriver</property>
<property name="hibernate.connection.url">jdbc:hsqldb:mem:jbpm</property>
<property name="hibernate.connection.username">sa</property>
<property name="hibernate.connection.password"></property>
<property name="hibernate.hbm2ddl.auto">create</property>
JDBC connection properties (end) -->
<property name="hibernate.cache.provider_class">org.hibernate.cache.HashtableCacheProvider</property>
<!-- DataSource properties (begin) === -->
<property name="hibernate.connection.datasource">java:/JbpmDS</property>
<!-- ==== DataSource properties (end) -->
6. Start your server with run -c messaging
N . http://localhost:8080/jbpm-console
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
17 years, 1 month