[JBoss Transactions Development] - Narayana Release Process
by Tom Jenkinson
Tom Jenkinson [https://community.jboss.org/people/tomjenkinson] modified the document:
"Narayana Release Process"
To view the document, visit: https://community.jboss.org/docs/DOC-17433
--------------------------------------------------------------
This page provides a list of instructions that must be done *in order* when doing a release of Narayana.
h2. Check JIRA
1. Check all issues resolved.
2. Create next point release version if not exists - this is so you can push issues in step 3 below.
3. Unresolved issues should be resolved or pushed.
h2. Check Hudson
Ensure no test failures in the group of hudson tests, for the branch you intend to release.
h2. Raise AS7 component upgrade request in Jira
Prepare for a PR to update AS7.
1. https://issues.jboss.org/browse/WFLY https://issues.jboss.org/browse/WFLY
2. create a new 'component update' issue.1. Ensure the module is set to 'transactions'
2. select an appropriate 'fix for'.
3. Assign it to yourself.
h2. Do Release
h3. Git Branches (4.17 and 5 only)
Must be done first as the build-release-packages.xml relies on the tag being available
cd $NARAYANA_SRC/scripts
pre-release.sh <next version, e.g: 5.0.0.M3>
h3. Create the AS7 pull request branch and roll the jbosstm/jboss-as branch to next SNAPSHOT (UN-TESTED COMMANDS!!)
First rebase 5_BRANCH, to make the following commands run more smothly:
cd $NARAYANA_SRC/scripts
./rebase-jbossas-branch.sh
Now do this:
BRANCH=4_BRANCH
AS_BRANCH=master
JIRA=AS7-5815
CURRENT=4.17.2.Final
NEXT=4.17.3.Final
git clone git@github.com:jbosstm/jboss-as.git
cd jboss-as
git checkout $BRANCH
git remote add upstream git://github.com/wildfly/wildfly.git
git pull --rebase --ff-only upstream $AS_BRANCH
sed -i "s/$CURRENT-SNAPSHOT/$CURRENT/g" pom.xml
git commit -am "${JIRA} Upgrade Narayana to $CURRENT"
# You now need to squash the two version commits together.
# should use git merge-base $BRANCH upstream/master
# You will need to resolve some merge conflicts. Most likely around version numbers.
git rebase -i HEAD~10
git checkout -b "${JIRA}_Upgrading_Narayana_to_${CURRENT}"
git checkout $BRANCH
sed -i "s/$CURRENT/$NEXT-SNAPSHOT/g" pom.xml
git commit -am "${JIRA} Upgrade Narayana to $NEXT-SNAPSHOT"
git push origin "${JIRA}_Upgrading_Narayana_to_${CURRENT}"
git push origin $BRANCH
h2. Build and release
h3. blacktie windows binaries
CURRENT=<Version to release. e.g 5.0.0.M2>
On Windows:
rem You need to build the windows version separately as we don't support cross compile
git clone git(a)github.com (mailto:git@github.com):jbosstm/blacktie.git
build.bat install -DskipTests
scp blacktie/target/blacktie-$CURRENT-vc9x32-bin.zip <user>@<ipaddress>:
h3. Narayana upload
CURRENT=<Version to release. e.g 5.0.0.M2>
mkdir -p ~/narayana/filemgmt.jboss.org/
On Linux:
sshfs jbosstm(a)filemgmt.jboss.org (mailto:jbosstm@filemgmt.jboss.org): ~/narayana/filemgmt.jboss.org/
On MacOS:
sshfs -o defer_permissions jbosstm(a)filemgmt.jboss.org (mailto:jbosstm@filemgmt.jboss.org): ~/narayana/filemgmt.jboss.org/
git clone git(a)github.com (mailto:git@github.com):jbosstm/narayana.git
cd narayana
git checkout $CURRENT
On Linux:
ant -f build-release-pkgs.xml dist downloads docs magnolia -Drsync=false
On MacOS:
ant -f build-release-pkgs.xml dist downloads docs magnolia
h3. svn branches
#Make sure your checkout has no local changes
svn update
svn status
POINT_VERSION=5
NEXT_POINT_VERSION=6
#Update the version in text files
find . -name \*.java -o -name \*.xml -o -name \*.properties -o -name \*.ent -o -name \INSTALL -o -name \README | grep -v ".svn" | grep -v target | xargs grep -l "4[._]16" | xargs sed -i "s/4\([._]\)16\([._]\)${POINT_VERSION}\([._]\)Final-SNAPSHOT/4\116\2$POINT_VERSION\3Final/"
svn commit -m "Updated to version 4.16.$POINT_VERSION.Final"
#Tag the release:
svn cp https://svn.jboss.org/repos/labs/labs/jbosstm/branches/JBOSSTS_4_16 https://svn.jboss.org/repos/labs/labs/jbosstm/branches/JBOSSTS_4_16 https://svn.jboss.org/repos/labs/labs/jbosstm/tags/JBOSSTS_4_16_4_Final/ https://svn.jboss.org/repos/labs/labs/jbosstm/tags/JBOSSTS_4_16_${POINT_V... -m "4.16.$POINT_VERSION"
#Bump to next version using similar find to above
find . -name \*.java -o -name \*.xml -o -name \*.properties -o -name \*.ent -o -name \INSTALL -o -name \README | grep -v ".svn" | grep -v target | xargs grep -l "4[._]16" | xargs sed -i "s/4\([._]\)16\([._]\)${POINT_VERSION}\([._]\)Final/4\116\2${NEXT_POINT_VERSION}\3Final-SNAPSHOT/"
svn commit -m "Updated to version 4.16.${NEXT_POINT_VERSION}.Final-SNAPSHOT"
#Update the maven version of jbossts in our fork of JBossAS: https://github.com/jbosstm/jboss-as https://github.com/jbosstm/jboss-as
git checkout 4_16_BRANCH
git pull --rebase --ff-only
#Check no local changes
git status
sed -i "s/4.16.${POINT_VERSION}.Final-SNAPSHOT/4.16.${NEXT_POINT_VERSION}.Final-SNAPSHOT/g" pom.xml
git commit -am "Updated to 4.16.${NEXT_POINT_VERSION}.Final-SNAPSHOT"
git push
#Build and deploy the release to nexus staging:
mkdir ~/filemgmt.jboss.org/
sshfs -o defer_permissions mailto:jbosstm@filemgmt.jboss.org jbosstm(a)filemgmt.jboss.org: ~/filemgmt.jboss.org/
svn switch https://svn.jboss.org/repos/labs/labs/jbosstm/tags/JBOSSTS_4_16_$ https://svn.jboss.org/repos/labs/labs/jbosstm/tags/JBOSSTS_4_16_${NEXT_PO...
ant -f build-release-pkgs.xml dist mvn-repository downloads magnolia
h3.
h2. Release the artifact through Nexus
1. https://repository.jboss.org/nexus/index.html#welcome https://repository.jboss.org/nexus/index.html#welcome
2. login
3. "Staging Repositories"
4. Click tickbox for your repo
5. Click "Close"
6. Don't worry about a description, just click "Close"
7. Click tickbox after it is closed
8. Click "Release"
9. Again a description doesn't matter
h2. Push Upstream
Check that the pull request will work. *If it doesn't and it requires Narayana changes you *have* to rev the version number - DON'T attempt to re-release with the same version number:*
JIRA=AS7-5815
CURRENT=4.17.2.Final
git clone mailto:git@github.com git@github.com:jbosstm/jboss-as.git
cd jboss-as
git checkout "${JIRA}_Upgrading_Narayana_to_${CURRENT}"
rm -rf ~/.m2/repository/org/jboss/jbossts
rm -rf ~/.m2/repository/org/jboss/narayana
./build.sh clean install
1. Raise the pull request using our branch
2. Update http://172.17.131.2/view/Narayana+BlackTie-release/job/release-narayana-A... this job to run our CI over the PR. You need to re-run this every time you change the PR, top make sure it still works.1. Change "Branch Specifier"
2. Change branch name in script.
3. Once merged, resolve the AS7 Jira issue.
4. Once merged, rebase the jbosstm/jboss-as 5_BRANCH|4_BRANCH branch with the updated wildfly master branch
h2. JIRA Release
1. Close all issues for the release
2. Mark as released (Need admin permissions)
h2. Update Website
Update the Narayana community site:
* Login to Magnolia* https://www.jboss.org/author/.magnolia/pages/adminCentral.html https://www.jboss.org/author/.magnolia/pages/adminCentral.html
* Login with credentials: Tom and Paul know these, ask them.
* Documentation* Browse to 'jbosstm/documentation'
* right click on 'downloads' and select 'import'
* browse to the location of the 'website.jbosstm.documentation.4.16.5.Final.xml' file
* Long left click on the file name and replace the '.' with '_'.
* Right click on the new file and click 'move'
* Drag the file to the top of the documentation list.
* Right click on the new page and select 'open page...'
* Check that the page looks right and that the download links work
* Right click on the new page and select 'activate'
* You now need to wait for the page to be moderated before it will appear.
* Downloads* Browse to 'jbosstm/downloads'
* right click on 'downloads' and select 'import'
* browse to the location of the 'website.jbosstm.downloads.4.16.5.Final.xml' file
*
Long left click on the file name and replace the '.' with '_'.
* Right click on the new file and click 'move'
* Drag the file to the top of the downloads list.
* Right click on the new page and select 'open page...'
* Check that the page looks right and that the download links work
* Right click on the new page and select 'activate'
* You now need to wait for the page to be moderated before it will appear.
* Announcement* Right click on 'jbosstm' and select 'open page...'
* Click edit on the 'announcement' pane
* Update the announcement for this release.
* Right click on 'jbosstm' and select 'activate changes'
* You now need to wait for the page to be moderated before it will appear.
* Release notes* Right click on 'jbosstm' and select 'open page...'
* Click edit on the 'getting started' pane on the right-hand-side
* Edit the release notes url to point to the release notes for this version
* Click save
* Right click on 'jbosstm' and select 'activate changes'
* You now need to wait for the page to be moderated before it will appear.
h2. Update CI
Update jobs, to use the new Version (quickstarts, etc).
Start by updating http://172.17.131.2/view/Narayana+BlackTie/job/jenkins-config-sanity-check/ http://172.17.131.2/view/Narayana+BlackTie/job/jenkins-config-sanity-check/ then see what fails.
h2. Checked the released Quickstarts
Make sure the released quickstarts run against the released Narayana. Do this by updating this job: http://172.17.131.2/view/Narayana+BlackTie-release/job/release-btny-naray... http://172.17.131.2/view/Narayana+BlackTie-release/job/release-btny-naray...
Change:
1. Branches to build
2. On line bellow " REMEMBER TO uncomment and put back the command that can't be named"
1. Replace 'rem' with 'wget'
2. replace 'h t t p' with 'http'
3. All occurances of the previous release version number with the newly released version number
h2. Promote
NOTE: It is worth waiting for the merge of the pull request before advertising, or at least wait for the merge build notification first ;)
Promote the release through the following channels:
1. Email jbossts-announce(a)lists.jboss.org (mailto:jbossts-announce@lists.jboss.org)
2. Forum
3. Blog: fixversion = "5.0.0.M4" ANDproject in (jbtm) AND priority >= major AND issuetype not in (Bug, task) AND resolution not in ("Duplicate Issue", Rejected, "Won't Fix", "Out of Date", "Cannot Reproduce Bug")
h2. JBoss Transaction SPI
These instructions apply to the maintainance SPI branch:
export CURRENT=7.0.1
export NEXT=7.0.2
git clone mailto:git@github.com git@github.com:jbosstm/jboss-transaction-spi.git
vi pom.xml # remove -SNAPSHOT from $CURRENT
git add pom.xml
git commit -m "Updated to $CURRENT.Final"
git tag $CURRENT
git checkout $CURRENT
mvn deploy
git checkout master
vi pom.xml # change version number to $NEXT.Final-SNAPSHOT
git commit -m "Updated to $NEXT.Final-SNAPSHOT"
git push origin
You then need to go to nexus and release the artifact.
--------------------------------------------------------------
Comment by going to Community
[https://community.jboss.org/docs/DOC-17433]
Create a new document in JBoss Transactions Development at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=102&c...]
11 years, 7 months
[JBoss Transactions Development] - Narayana Release Process
by Paul Robinson
Paul Robinson [https://community.jboss.org/people/paul.robinson] modified the document:
"Narayana Release Process"
To view the document, visit: https://community.jboss.org/docs/DOC-17433
--------------------------------------------------------------
This page provides a list of instructions that must be done *in order* when doing a release of Narayana.
h2. Check JIRA
1. Check all issues resolved.
2. Create next point release version if not exists - this is so you can push issues in step 3 below.
3. Unresolved issues should be resolved or pushed.
h2. Check Hudson
Ensure no test failures in the group of hudson tests, for the branch you intend to release.
h2. Raise AS7 component upgrade request in Jira
Prepare for a PR to update AS7.
1. https://issues.jboss.org/browse/WFLY https://issues.jboss.org/browse/WFLY
2. create a new 'component update' issue.1. Ensure the module is set to 'transactions'
2. select an appropriate 'fix for'.
3. Assign it to yourself.
h2. Do Release
h3. Git Branches (4.17 and 5 only)
Must be done first as the build-release-packages.xml relies on the tag being available
cd $NARAYANA_SRC/scripts
pre-release.sh <next version, e.g: 5.0.0.M3>
h3. Create the AS7 pull request branch and roll the jbosstm/jboss-as branch to next SNAPSHOT (UN-TESTED COMMANDS!!)
First rebase 5_BRANCH, to make the following commands run more smothly:
cd $NARAYANA_SRC/scripts
./rebase-jbossas-branch.sh
Now do this:
BRANCH=4_BRANCH
AS_BRANCH=master
JIRA=AS7-5815
CURRENT=4.17.2.Final
NEXT=4.17.3.Final
git clone git@github.com:jbosstm/jboss-as.git
cd jboss-as
git checkout $BRANCH
git remote add upstream git://github.com/wildfly/wildfly.git
git pull --rebase --ff-only upstream $AS_BRANCH
sed -i "s/$CURRENT-SNAPSHOT/$CURRENT/g" pom.xml
git commit -am "${JIRA} Upgrade Narayana to $CURRENT"
# You now need to squash the two version commits together.
# should use git merge-base $BRANCH upstream/master
# You will need to resolve some merge conflicts. Most likely around version numbers.
git rebase -i HEAD~10
git checkout -b "${JIRA}_Upgrading_Narayana_to_${CURRENT}"
git checkout $BRANCH
sed -i "s/$CURRENT/$NEXT-SNAPSHOT/g" pom.xml
git commit -am "${JIRA} Upgrade Narayana to $NEXT-SNAPSHOT"
git push origin "${JIRA}_Upgrading_Narayana_to_${CURRENT}"
git push origin $BRANCH
h2. Build and release
h3. blacktie windows binaries
CURRENT=<Version to release. e.g 5.0.0.M2>
On Windows:
rem You need to build the windows version separately as we don't support cross compile
git clone git(a)github.com (mailto:git@github.com):jbosstm/blacktie.git
build.bat install -DskipTests
scp blacktie/target/blacktie-$CURRENT-vc9x32-bin.zip <user>@<ipaddress>:
h3. Narayana upload
CURRENT=<Version to release. e.g 5.0.0.M2>
mkdir -p ~/narayana/filemgmt.jboss.org/
On Linux:
sshfs jbosstm(a)filemgmt.jboss.org (mailto:jbosstm@filemgmt.jboss.org): ~/narayana/filemgmt.jboss.org/
On MacOS:
sshfs -o defer_permissions jbosstm(a)filemgmt.jboss.org (mailto:jbosstm@filemgmt.jboss.org): ~/narayana/filemgmt.jboss.org/
git clone git(a)github.com (mailto:git@github.com):jbosstm/narayana.git
cd narayana
git checkout $CURRENT
On Linux:
ant -f build-release-pkgs.xml dist downloads docs magnolia -Drsync=false
On MacOS:
ant -f build-release-pkgs.xml dist downloads docs magnolia
h3. svn branches
#Make sure your checkout has no local changes
svn update
svn status
POINT_VERSION=5
NEXT_POINT_VERSION=6
#Update the version in text files
find . -name \*.java -o -name \*.xml -o -name \*.properties -o -name \*.ent -o -name \INSTALL -o -name \README | grep -v ".svn" | grep -v target | xargs grep -l "4[._]16" | xargs sed -i "s/4\([._]\)16\([._]\)${POINT_VERSION}\([._]\)Final-SNAPSHOT/4\116\2$POINT_VERSION\3Final/"
svn commit -m "Updated to version 4.16.$POINT_VERSION.Final"
#Tag the release:
svn cp https://svn.jboss.org/repos/labs/labs/jbosstm/branches/JBOSSTS_4_16 https://svn.jboss.org/repos/labs/labs/jbosstm/branches/JBOSSTS_4_16 https://svn.jboss.org/repos/labs/labs/jbosstm/tags/JBOSSTS_4_16_4_Final/ https://svn.jboss.org/repos/labs/labs/jbosstm/tags/JBOSSTS_4_16_${POINT_V... -m "4.16.$POINT_VERSION"
#Bump to next version using similar find to above
find . -name \*.java -o -name \*.xml -o -name \*.properties -o -name \*.ent -o -name \INSTALL -o -name \README | grep -v ".svn" | grep -v target | xargs grep -l "4[._]16" | xargs sed -i "s/4\([._]\)16\([._]\)${POINT_VERSION}\([._]\)Final/4\116\2${NEXT_POINT_VERSION}\3Final-SNAPSHOT/"
svn commit -m "Updated to version 4.16.${NEXT_POINT_VERSION}.Final-SNAPSHOT"
#Update the maven version of jbossts in our fork of JBossAS: https://github.com/jbosstm/jboss-as https://github.com/jbosstm/jboss-as
git checkout 4_16_BRANCH
git pull --rebase --ff-only
#Check no local changes
git status
sed -i "s/4.16.${POINT_VERSION}.Final-SNAPSHOT/4.16.${NEXT_POINT_VERSION}.Final-SNAPSHOT/g" pom.xml
git commit -am "Updated to 4.16.${NEXT_POINT_VERSION}.Final-SNAPSHOT"
git push
#Build and deploy the release to nexus staging:
mkdir ~/filemgmt.jboss.org/
sshfs -o defer_permissions mailto:jbosstm@filemgmt.jboss.org jbosstm(a)filemgmt.jboss.org: ~/filemgmt.jboss.org/
svn switch https://svn.jboss.org/repos/labs/labs/jbosstm/tags/JBOSSTS_4_16_$ https://svn.jboss.org/repos/labs/labs/jbosstm/tags/JBOSSTS_4_16_${NEXT_PO...
ant -f build-release-pkgs.xml dist mvn-repository downloads magnolia
h3.
h2. Release the artifact through Nexus
1. https://repository.jboss.org/nexus/index.html#welcome https://repository.jboss.org/nexus/index.html#welcome
2. login
3. "Staging Repositories"
4. Click tickbox for your repo
5. Click "Close"
6. Don't worry about a description, just click "Close"
7. Click tickbox after it is closed
8. Click "Release"
9. Again a description doesn't matter
h2. Push Upstream
Check that the pull request will work. *If it doesn't and it requires Narayana changes you *have* to rev the version number - DON'T attempt to re-release with the same version number:*
JIRA=AS7-5815
CURRENT=4.17.2.Final
git clone mailto:git@github.com git@github.com:jbosstm/jboss-as.git
cd jboss-as
git checkout "${JIRA}_Upgrading_Narayana_to_${CURRENT}"
rm -rf ~/.m2/repository/org/jboss/jbossts
rm -rf ~/.m2/repository/org/jboss/narayana
./build.sh clean install
1. Raise the pull request using our branch
2. Update http://172.17.131.2/view/Narayana+BlackTie-release/job/release-narayana-A... this job to run our CI over the PR. You need to re-run this every time you change the PR, top make sure it still works.1. Change "Branch Specifier"
2. Change branch name in script.
3. Once merged, resolve the AS7 Jira issue.
4. Once merged, rebase the jbosstm/jboss-as 5_BRANCH|4_BRANCH branch with the updated wildfly master branch
h2. JIRA Release
1. Close all issues for the release
2. Mark as released (Need admin permissions)
h2. Update Website
Update the Narayana community site:
* Login to Magnolia* https://www.jboss.org/author/.magnolia/pages/adminCentral.html https://www.jboss.org/author/.magnolia/pages/adminCentral.html
* Login with credentials: Tom and Paul know these, ask them.
* Documentation* Browse to 'jbosstm/documentation'
* right click on 'downloads' and select 'import'
* browse to the location of the 'website.jbosstm.documentation.4.16.5.Final.xml' file
* Long left click on the file name and replace the '.' with '_'.
* Right click on the new file and click 'move'
* Drag the file to the top of the documentation list.
* Right click on the new page and select 'open page...'
* Check that the page looks right and that the download links work
* Right click on the new page and select 'activate'
* You now need to wait for the page to be moderated before it will appear.
* Downloads* Browse to 'jbosstm/downloads'
* right click on 'downloads' and select 'import'
* browse to the location of the 'website.jbosstm.downloads.4.16.5.Final.xml' file
*
Long left click on the file name and replace the '.' with '_'.
* Right click on the new file and click 'move'
* Drag the file to the top of the downloads list.
* Right click on the new page and select 'open page...'
* Check that the page looks right and that the download links work
* Right click on the new page and select 'activate'
* You now need to wait for the page to be moderated before it will appear.
* Announcement* Right click on 'jbosstm' and select 'open page...'
* Click edit on the 'announcement' pane
* Update the announcement for this release.
* Right click on 'jbosstm' and select 'activate changes'
* You now need to wait for the page to be moderated before it will appear.
* Release notes* Right click on 'jbosstm' and select 'open page...'
* Click edit on the 'getting started' pane on the right-hand-side
* Edit the release notes url to point to the release notes for this version
* Click save
* Right click on 'jbosstm' and select 'activate changes'
* You now need to wait for the page to be moderated before it will appear.
h2. Update CI
Update jobs, to use the new Version (quickstarts, etc).
Start by updating http://172.17.131.2/view/Narayana+BlackTie/job/jenkins-config-sanity-check/ http://172.17.131.2/view/Narayana+BlackTie/job/jenkins-config-sanity-check/ then see what fails.
h2. Checked the released Quickstarts
Make sure the released quickstarts run against the released Narayana. Do this by updating this job: http://172.17.131.2/view/Narayana+BlackTie-release/job/release-btny-naray... http://172.17.131.2/view/Narayana+BlackTie-release/job/release-btny-naray...
Change:
1. Branches to build
2. On line bellow " REMEMBER TO uncomment and put back the command that can't be named"
1. Replace 'rem' with 'wget'
2. replace 'h t t p' with 'http'
3. All occurances of the previous release version number with the newly released version number
h2. Promote
NOTE: It is worth waiting for the merge of the pull request before advertising, or at least wait for the merge build notification first ;)
Promote the release through the following channels:
1. Email jbossts-announce(a)lists.jboss.org (mailto:jbossts-announce@lists.jboss.org)
2. Forum
3. Blog: project in (jbtm, blacktie) AND fixversion = "5.0.0.M2" AND priority >= major AND issuetype not in (Bug, task) AND resolution not in ("Duplicate Issue", Rejected, "Won't Fix", "Out of Date", "Cannot Reproduce Bug")
h2. JBoss Transaction SPI
These instructions apply to the maintainance SPI branch:
export CURRENT=7.0.1
export NEXT=7.0.2
git clone mailto:git@github.com git@github.com:jbosstm/jboss-transaction-spi.git
vi pom.xml # remove -SNAPSHOT from $CURRENT
git add pom.xml
git commit -m "Updated to $CURRENT.Final"
git tag $CURRENT
git checkout $CURRENT
mvn deploy
git checkout master
vi pom.xml # change version number to $NEXT.Final-SNAPSHOT
git commit -m "Updated to $NEXT.Final-SNAPSHOT"
git push origin
You then need to go to nexus and release the artifact.
--------------------------------------------------------------
Comment by going to Community
[https://community.jboss.org/docs/DOC-17433]
Create a new document in JBoss Transactions Development at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=102&c...]
11 years, 7 months
[JBoss Transactions Development] - Narayana Release Process
by Paul Robinson
Paul Robinson [https://community.jboss.org/people/paul.robinson] modified the document:
"Narayana Release Process"
To view the document, visit: https://community.jboss.org/docs/DOC-17433
--------------------------------------------------------------
This page provides a list of instructions that must be done *in order* when doing a release of Narayana.
h2. Check JIRA
1. Check all issues resolved.
2. Create next point release version if not exists - this is so you can push issues in step 3 below.
3. Unresolved issues should be resolved or pushed.
h2. Check Hudson
Ensure no test failures in the group of hudson tests, for the branch you intend to release.
h2. Raise AS7 component upgrade request in Jira
Prepare for a PR to update AS7.
1. https://issues.jboss.org/browse/WFLY https://issues.jboss.org/browse/WFLY
2. create a new 'component update' issue.1. Ensure the module is set to 'transactions'
2. select an appropriate 'fix for'.
3. Assign it to yourself.
h2. Do Release
h3. Git Branches (4.17 and 5 only)
Must be done first as the build-release-packages.xml relies on the tag being available
cd $NARAYANA_SRC/scripts
pre-release.sh <next version, e.g: 5.0.0.M3>
h3. Create the AS7 pull request branch and roll the jbosstm/jboss-as branch to next SNAPSHOT (UN-TESTED COMMANDS!!)
First rebase 5_BRANCH, to make the following commands run more smothly:
cd $NARAYANA_SRC/scripts
./rebase-jbossas-branch.sh
Now do this:
BRANCH=4_BRANCH
AS_BRANCH=master
JIRA=AS7-5815
CURRENT=4.17.2.Final
NEXT=4.17.3.Final
git clone git@github.com:jbosstm/jboss-as.git
cd jboss-as
git checkout $BRANCH
git remote add upstream git://github.com/wildfly/wildfly.git
git pull --rebase --ff-only upstream $AS_BRANCH
sed -i "s/$CURRENT-SNAPSHOT/$CURRENT/g" pom.xml
git commit -am "${JIRA} Upgrade Narayana to $CURRENT"
# You now need to squash the two version commits together.
# should use git merge-base $BRANCH upstream/master
# You will need to resolve some merge conflicts. Most likely around version numbers.
git rebase -i HEAD~10
git checkout -b "${JIRA}_Upgrading_Narayana_to_${CURRENT}"
git checkout $BRANCH
sed -i "s/$CURRENT/$NEXT-SNAPSHOT/g" pom.xml
git commit -am "${JIRA} Upgrade Narayana to $NEXT-SNAPSHOT"
git push origin "${JIRA}_Upgrading_Narayana_to_${CURRENT}"
git push origin $BRANCH
h2. Build and release
h3. blacktie windows binaries
CURRENT=<Version to release. e.g 5.0.0.M2>
On Windows:
rem You need to build the windows version separately as we don't support cross compile
git clone git(a)github.com (mailto:git@github.com):jbosstm/blacktie.git
build.bat install -DskipTests
scp blacktie/target/blacktie-$CURRENT-vc9x32-bin.zip <user>@<ipaddress>:
h3. Narayana upload
CURRENT=<Version to release. e.g 5.0.0.M2>
mkdir -p ~/narayana/filemgmt.jboss.org/
On Linux:
sshfs jbosstm(a)filemgmt.jboss.org (mailto:jbosstm@filemgmt.jboss.org): ~/narayana/filemgmt.jboss.org/
On MacOS:
sshfs -o defer_permissions jbosstm(a)filemgmt.jboss.org (mailto:jbosstm@filemgmt.jboss.org): ~/narayana/filemgmt.jboss.org/
git clone git(a)github.com (mailto:git@github.com):jbosstm/narayana.git
cd narayana
git checkout $CURRENT
On Linux:
ant -f build-release-pkgs.xml dist downloads docs magnolia -Drsync=false
On MacOS:
ant -f build-release-pkgs.xml dist downloads docs magnolia
h3. svn branches
#Make sure your checkout has no local changes
svn update
svn status
POINT_VERSION=5
NEXT_POINT_VERSION=6
#Update the version in text files
find . -name \*.java -o -name \*.xml -o -name \*.properties -o -name \*.ent -o -name \INSTALL -o -name \README | grep -v ".svn" | grep -v target | xargs grep -l "4[._]16" | xargs sed -i "s/4\([._]\)16\([._]\)${POINT_VERSION}\([._]\)Final-SNAPSHOT/4\116\2$POINT_VERSION\3Final/"
svn commit -m "Updated to version 4.16.$POINT_VERSION.Final"
#Tag the release:
svn cp https://svn.jboss.org/repos/labs/labs/jbosstm/branches/JBOSSTS_4_16 https://svn.jboss.org/repos/labs/labs/jbosstm/branches/JBOSSTS_4_16 https://svn.jboss.org/repos/labs/labs/jbosstm/tags/JBOSSTS_4_16_4_Final/ https://svn.jboss.org/repos/labs/labs/jbosstm/tags/JBOSSTS_4_16_${POINT_V... -m "4.16.$POINT_VERSION"
#Bump to next version using similar find to above
find . -name \*.java -o -name \*.xml -o -name \*.properties -o -name \*.ent -o -name \INSTALL -o -name \README | grep -v ".svn" | grep -v target | xargs grep -l "4[._]16" | xargs sed -i "s/4\([._]\)16\([._]\)${POINT_VERSION}\([._]\)Final/4\116\2${NEXT_POINT_VERSION}\3Final-SNAPSHOT/"
svn commit -m "Updated to version 4.16.${NEXT_POINT_VERSION}.Final-SNAPSHOT"
#Update the maven version of jbossts in our fork of JBossAS: https://github.com/jbosstm/jboss-as https://github.com/jbosstm/jboss-as
git checkout 4_16_BRANCH
git pull --rebase --ff-only
#Check no local changes
git status
sed -i "s/4.16.${POINT_VERSION}.Final-SNAPSHOT/4.16.${NEXT_POINT_VERSION}.Final-SNAPSHOT/g" pom.xml
git commit -am "Updated to 4.16.${NEXT_POINT_VERSION}.Final-SNAPSHOT"
git push
#Build and deploy the release to nexus staging:
mkdir ~/filemgmt.jboss.org/
sshfs -o defer_permissions mailto:jbosstm@filemgmt.jboss.org jbosstm(a)filemgmt.jboss.org: ~/filemgmt.jboss.org/
svn switch https://svn.jboss.org/repos/labs/labs/jbosstm/tags/JBOSSTS_4_16_$ https://svn.jboss.org/repos/labs/labs/jbosstm/tags/JBOSSTS_4_16_${NEXT_PO...
ant -f build-release-pkgs.xml dist mvn-repository downloads magnolia
h3.
h2. Release the artifact through Nexus
1. https://repository.jboss.org/nexus/index.html#welcome https://repository.jboss.org/nexus/index.html#welcome
2. login
3. "Staging Repositories"
4. Click tickbox for your repo
5. Click "Close"
6. Don't worry about a description, just click "Close"
7. Click tickbox after it is closed
8. Click "Release"
9. Again a description doesn't matter
h2. Push Upstream
Check that the pull request will work. *If it doesn't and it requires Narayana changes you *have* to rev the version number - DON'T attempt to re-release with the same version number:*
JIRA=AS7-5815
CURRENT=4.17.2.Final
git clone mailto:git@github.com git@github.com:jbosstm/jboss-as.git
cd jboss-as
git checkout "${JIRA}_Upgrading_Narayana_to_${CURRENT}"
rm -rf ~/.m2/repository/org/jboss/jbossts
rm -rf ~/.m2/repository/org/jboss/narayana
./build.sh clean install
1. Raise the pull request using our branch
2. Update http://172.17.131.2/view/Narayana+BlackTie-release/job/release-narayana-A... this job to run our CI over the PR. You need to re-run this every time you change the PR, top make sure it still works.1. Change "Branch Specifier"
2. Change branch name in script.
3. Once merged, resolve the AS7 Jira issue.
4. Once merged, rebase the jbosstm/jboss-as 5_BRANCH|4_BRANCH branch with the updated wildfly master branch
h2. JIRA Release
1. Close all issues for the release
2. Mark as released (Need admin permissions)
h2. Update Website
Update the Narayana community site:
* Login to Magnolia* https://www.jboss.org/author/.magnolia/pages/adminCentral.html https://www.jboss.org/author/.magnolia/pages/adminCentral.html
* Login with credentials: Tom and Paul know these, ask them.
* Documentation* Browse to 'jbosstm/documentation'
* right click on 'downloads' and select 'import'
* browse to the location of the 'website.jbosstm.documentation.4.16.5.Final.xml' file
* Long left click on the file name and replace the '.' with '_'.
* Right click on the new file and click 'move'
* Drag the file to the top of the documentation list.
* Right click on the new page and select 'open page...'
* Check that the page looks right and that the download links work
* Right click on the new page and select 'activate'
* You now need to wait for the page to be moderated before it will appear.
* Downloads* Browse to 'jbosstm/downloads'
* right click on 'downloads' and select 'import'
* browse to the location of the 'website.jbosstm.downloads.4.16.5.Final.xml' file
*
Long left click on the file name and replace the '.' with '_'.
* Right click on the new file and click 'move'
* Drag the file to the top of the downloads list.
* Right click on the new page and select 'open page...'
* Check that the page looks right and that the download links work
* Right click on the new page and select 'activate'
* You now need to wait for the page to be moderated before it will appear.
* Announcement* Right click on 'jbosstm' and select 'open page...'
* Click edit on the 'announcement' pane
* Update the announcement for this release.
* Right click on 'jbosstm' and select 'activate changes'
* You now need to wait for the page to be moderated before it will appear.
* Release notes* Right click on 'jbosstm' and select 'open page...'
* Click edit on the 'getting started' pane on the right-hand-side
* Edit the release notes url to point to the release notes for this version
* Click save
* Right click on 'jbosstm' and select 'activate changes'
* You now need to wait for the page to be moderated before it will appear.
h2. Update CI
Update jobs, to use the new Version (quickstarts, etc). Need a ful list of steps here.
h2. Checked the released Quickstarts
Make sure the released quickstarts run against the released Narayana. Do this by updating this job: http://172.17.131.2/view/Narayana+BlackTie-release/job/release-btny-naray... http://172.17.131.2/view/Narayana+BlackTie-release/job/release-btny-naray...
Need a ful list of steps here.
h2. Promote
NOTE: It is worth waiting for the merge of the pull request before advertising, or at least wait for the merge build notification first ;)
Promote the release through the following channels:
1. Email jbossts-announce(a)lists.jboss.org (mailto:jbossts-announce@lists.jboss.org)
2. Forum
3. Blog: project in (jbtm, blacktie) AND fixversion = "5.0.0.M2" AND priority >= major AND issuetype not in (Bug, task) AND resolution not in ("Duplicate Issue", Rejected, "Won't Fix", "Out of Date", "Cannot Reproduce Bug")
h2. JBoss Transaction SPI
These instructions apply to the maintainance SPI branch:
export CURRENT=7.0.1
export NEXT=7.0.2
git clone mailto:git@github.com git@github.com:jbosstm/jboss-transaction-spi.git
vi pom.xml # remove -SNAPSHOT from $CURRENT
git add pom.xml
git commit -m "Updated to $CURRENT.Final"
git tag $CURRENT
git checkout $CURRENT
mvn deploy
git checkout master
vi pom.xml # change version number to $NEXT.Final-SNAPSHOT
git commit -m "Updated to $NEXT.Final-SNAPSHOT"
git push origin
You then need to go to nexus and release the artifact.
--------------------------------------------------------------
Comment by going to Community
[https://community.jboss.org/docs/DOC-17433]
Create a new document in JBoss Transactions Development at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=102&c...]
11 years, 7 months
[jBPM Development] - Error completing task: An exception of type "org.jbpm.JbpmException" was thrown. The message is: couldn't get value for file 'classes/com/sample/action/UpdateErpAction.class'
by shaik hussain
shaik hussain [https://community.jboss.org/people/shaik09] created the discussion
"Error completing task: An exception of type "org.jbpm.JbpmException" was thrown. The message is: couldn't get value for file 'classes/com/sample/action/UpdateErpAction.class'"
To view the discussion, visit: https://community.jboss.org/message/820409#820409
--------------------------------------------------------------
*Hi Am new to jBPM, Im trying to exicute one of the example provided along with installation pakage, Having some truble with signaling one of the task, below is the full stack trac*
+2013-05-30 18:30:18,486 INFO [org.jboss.web.WebService] (main) Using RMI server codebase: http://127.0.0.1:8083/ http://127.0.0.1:8083/+
+2013-05-30 18:30:23,686 INFO [org.jboss.wsf.stack.jbws.NativeServerConfig] (main) JBoss Web Services - Stack Native Core+
+2013-05-30 18:30:23,686 INFO [org.jboss.wsf.stack.jbws.NativeServerConfig] (main) 3.1.2.SP10+
+2013-05-30 18:30:24,904 INFO [org.jboss.logbridge.LogNotificationListener] (main) Adding notification listener for logging mbean "jboss.system:service=Logging,type=Log4jService" to server mailto:org.jboss.mx.server.MBeanServerImpl@1ef3212 org.jboss.mx.server.MBeanServerImpl@1ef3212[ defaultDomain='jboss' ]+
+2013-05-30 18:30:32,196 INFO [org.jboss.deployment.dependency.ContainerDependencyMetaData] (main) addJndiDependency, https://community.jboss.org/mailto:JndiDependencyMetaData@12b644e{queue/DLQ JndiDependencyMetaData@12b644e{queue/DLQ}+
+2013-05-30 18:30:32,196 INFO [org.jboss.deployment.dependency.ContainerDependencyMetaData] (main) addJndiDependency, https://community.jboss.org/mailto:JndiDependencyMetaData@1c66162{queue/DLQ JndiDependencyMetaData@1c66162{queue/DLQ}+
+2013-05-30 18:30:32,617 INFO [org.jboss.deployment.dependency.ContainerDependencyMetaData] (main) addJndiDependency, https://community.jboss.org/mailto:JndiDependencyMetaData@1690d7a{java:jb... JndiDependencyMetaData@1690d7a{java:jbpm/TimerEntityBean}+
+2013-05-30 18:30:32,617 INFO [org.jboss.deployment.dependency.ContainerDependencyMetaData] (main) addJndiDependency, https://community.jboss.org/mailto:JndiDependencyMetaData@1f3f16b{queue/J... JndiDependencyMetaData@1f3f16b{queue/JbpmJobQueue}+
+2013-05-30 18:30:32,664 INFO [org.jboss.ejb3.deployers.Ejb3DependenciesDeployer] (main) Encountered deployment mailto:AbstractVFSDeploymentContext@21944951{vfszip:/D:/JBoss/NewJBoss/jboss-eap-5.1/jboss-as/server/default/deploy/ejb3.jar/ AbstractVFSDeploymentContext@21944951{vfszip:/D:/JBoss/NewJBoss/jboss-eap-5.1/jboss-as/server/default/deploy/ejb3.jar/}+
+2013-05-30 18:30:32,664 INFO [org.jboss.ejb3.deployers.Ejb3DependenciesDeployer] (main) Encountered deployment mailto:AbstractVFSDeploymentContext@21944951{vfszip:/D:/JBoss/NewJBoss/jboss-eap-5.1/jboss-as/server/default/deploy/ejb3.jar/ AbstractVFSDeploymentContext@21944951{vfszip:/D:/JBoss/NewJBoss/jboss-eap-5.1/jboss-as/server/default/deploy/ejb3.jar/}+
+2013-05-30 18:30:32,680 INFO [org.jboss.ejb3.deployers.Ejb3DependenciesDeployer] (main) Encountered deployment mailto:AbstractVFSDeploymentContext@21944951{vfszip:/D:/JBoss/NewJBoss/jboss-eap-5.1/jboss-as/server/default/deploy/ejb3.jar/ AbstractVFSDeploymentContext@21944951{vfszip:/D:/JBoss/NewJBoss/jboss-eap-5.1/jboss-as/server/default/deploy/ejb3.jar/}+
+2013-05-30 18:30:32,680 INFO [org.jboss.ejb3.deployers.Ejb3DependenciesDeployer] (main) Encountered deployment mailto:AbstractVFSDeploymentContext@21944951{vfszip:/D:/JBoss/NewJBoss/jboss-eap-5.1/jboss-as/server/default/deploy/ejb3.jar/ AbstractVFSDeploymentContext@21944951{vfszip:/D:/JBoss/NewJBoss/jboss-eap-5.1/jboss-as/server/default/deploy/ejb3.jar/}+
+2013-05-30 18:30:32,680 INFO [org.jboss.ejb3.deployers.Ejb3DependenciesDeployer] (main) Encountered deployment mailto:AbstractVFSDeploymentContext@9866744{vfsfile:/D:/JBoss/NewJBoss/jboss-eap-5.1/jboss-as/server/default/deploy/jbpm/jbpm-enterprise.jar/ AbstractVFSDeploymentContext@9866744{vfsfile:/D:/JBoss/NewJBoss/jboss-eap-5.1/jboss-as/server/default/deploy/jbpm/jbpm-enterprise.jar/}+
+2013-05-30 18:30:32,680 INFO [org.jboss.ejb3.deployers.Ejb3DependenciesDeployer] (main) Encountered deployment mailto:AbstractVFSDeploymentContext@9866744{vfsfile:/D:/JBoss/NewJBoss/jboss-eap-5.1/jboss-as/server/default/deploy/jbpm/jbpm-enterprise.jar/ AbstractVFSDeploymentContext@9866744{vfsfile:/D:/JBoss/NewJBoss/jboss-eap-5.1/jboss-as/server/default/deploy/jbpm/jbpm-enterprise.jar/}+
+2013-05-30 18:30:32,680 INFO [org.jboss.ejb3.deployers.Ejb3DependenciesDeployer] (main) Encountered deployment mailto:AbstractVFSDeploymentContext@9866744{vfsfile:/D:/JBoss/NewJBoss/jboss-eap-5.1/jboss-as/server/default/deploy/jbpm/jbpm-enterprise.jar/ AbstractVFSDeploymentContext@9866744{vfsfile:/D:/JBoss/NewJBoss/jboss-eap-5.1/jboss-as/server/default/deploy/jbpm/jbpm-enterprise.jar/}+
+2013-05-30 18:30:33,866 INFO [org.jboss.mail.MailService] (main) Mail Service bound to java:/Mail+
+2013-05-30 18:30:34,678 WARN [org.jboss.jms.server.jbosssx.JBossASSecurityMetadataStore] (main) WARNING! POTENTIAL SECURITY RISK. It has been detected that the MessageSucker component which sucks messages from one node to another has not had its password changed from the installation default. Please see the JBoss Messaging user guide for instructions on how to do this.+
+2013-05-30 18:30:35,896 INFO [com.arjuna.ats.jbossatx.jta.TransactionManagerService] (main) JBossTS Transaction Service (JTA version - tag:JBOSSTS_4_6_1_GA_CP11) - JBoss Inc.+
+2013-05-30 18:30:35,896 INFO [com.arjuna.ats.jbossatx.jta.TransactionManagerService] (main) Setting up property manager MBean and JMX layer+
+2013-05-30 18:30:36,177 INFO [com.arjuna.ats.jbossatx.jta.TransactionManagerService] (main) Initializing recovery manager+
+2013-05-30 18:30:36,333 INFO [com.arjuna.ats.jbossatx.jta.TransactionManagerService] (main) Recovery manager configured+
+2013-05-30 18:30:36,349 INFO [com.arjuna.ats.jbossatx.jta.TransactionManagerService] (main) Binding TransactionManager JNDI Reference+
+2013-05-30 18:30:36,380 INFO [com.arjuna.ats.jbossatx.jta.TransactionManagerService] (main) Starting transaction recovery manager+
+2013-05-30 18:30:36,802 INFO [org.apache.catalina.core.AprLifecycleListener] (main) The Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: C:\Program Files\Java\jdk1.6.0_13\bin;.;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\system32\WindowsPowerShell\v1.0;C:\jdk1.6.0_13\bin;D:\jboss-as\bin;;C:\Program Files\TortoiseSVN\bin;D:\SONAR_RUNNER_HOME\bin;C:\Program Files\Subversion\bin;C:\Program Files\TortoiseHg\;C:\Program Files\Windows Imaging\;C:\Program Files\Java\jdk1.6.0_13\bin;C:\j2sdkee1.3.1\bin;D:\apache-maven-3.0.4-bin\apache-maven-3.0.4\bin;+
+2013-05-30 18:30:36,864 INFO [org.apache.coyote.http11.Http11Protocol] (main) Initializing Coyote HTTP/1.1 on http-127.0.0.1-8080+
+2013-05-30 18:30:36,864 INFO [org.apache.coyote.ajp.AjpProtocol] (main) Initializing Coyote AJP/1.3 on ajp-127.0.0.1-8009+
+2013-05-30 18:30:36,896 INFO [org.apache.catalina.core.StandardService] (main) Starting service jboss.web+
+2013-05-30 18:30:36,896 INFO [org.apache.catalina.core.StandardEngine] (main) Starting Servlet Engine: JBoss Web/2.1.11.GA+
+2013-05-30 18:30:36,989 INFO [org.apache.catalina.startup.Catalina] (main) Server startup in 126 ms+
+2013-05-30 18:30:37,020 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/jbossws+
+2013-05-30 18:30:37,661 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/web-console+
+2013-05-30 18:30:37,957 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/invoker+
+2013-05-30 18:30:38,145 INFO [org.jboss.resource.deployers.RARDeployment] (main) Required license terms exist, view vfsfile:/D:/JBoss/NewJBoss/jboss-eap-5.1/jboss-as/server/default/deploy/jboss-local-jdbc.rar/META-INF/ra.xml+
+2013-05-30 18:30:38,160 INFO [org.jboss.resource.deployers.RARDeployment] (main) Required license terms exist, view vfsfile:/D:/JBoss/NewJBoss/jboss-eap-5.1/jboss-as/server/default/deploy/jboss-xa-jdbc.rar/META-INF/ra.xml+
+2013-05-30 18:30:38,176 INFO [org.jboss.resource.deployers.RARDeployment] (main) Required license terms exist, view vfsfile:/D:/JBoss/NewJBoss/jboss-eap-5.1/jboss-as/server/default/deploy/jms-ra.rar/META-INF/ra.xml+
+2013-05-30 18:30:38,192 INFO [org.jboss.resource.deployers.RARDeployment] (main) Required license terms exist, view vfsfile:/D:/JBoss/NewJBoss/jboss-eap-5.1/jboss-as/server/default/deploy/mail-ra.rar/META-INF/ra.xml+
+2013-05-30 18:30:38,207 INFO [org.jboss.resource.deployers.RARDeployment] (main) Required license terms exist, view vfsfile:/D:/JBoss/NewJBoss/jboss-eap-5.1/jboss-as/server/default/deploy/quartz-ra.rar/META-INF/ra.xml+
+2013-05-30 18:30:38,316 INFO [org.quartz.simpl.SimpleThreadPool] (main) Job execution threads will use class loader of thread: main+
+2013-05-30 18:30:38,348 INFO [org.quartz.core.QuartzScheduler] (main) Quartz Scheduler v.1.5.2 created.+
+2013-05-30 18:30:38,348 INFO [org.quartz.simpl.RAMJobStore] (main) RAMJobStore initialized.+
+2013-05-30 18:30:38,363 INFO [org.quartz.impl.StdSchedulerFactory] (main) Quartz scheduler 'DefaultQuartzScheduler' initialized from default resource file in Quartz package: 'quartz.properties'+
+2013-05-30 18:30:38,363 INFO [org.quartz.impl.StdSchedulerFactory] (main) Quartz scheduler version: 1.5.2+
+2013-05-30 18:30:38,363 INFO [org.quartz.core.QuartzScheduler] (main) Scheduler DefaultQuartzScheduler_$_NON_CLUSTERED started.+
+2013-05-30 18:30:38,925 INFO [org.jboss.resource.connectionmanager.ConnectionFactoryBindingService] (main) Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=DefaultDS' to JNDI name 'java:DefaultDS'+
+2013-05-30 18:30:39,425 INFO [org.jboss.jms.server.ServerPeer] (main) JBoss Messaging 1.4.8.SP1 server [0] started+
+2013-05-30 18:30:39,550 INFO [org.jboss.jms.server.destination.QueueService] (main) Queue[/queue/JbpmCommandQueue] started, fullSize=200000, pageSize=2000, downCacheSize=2000+
+2013-05-30 18:30:39,550 INFO [org.jboss.jms.server.connectionfactory.ConnectionFactoryJNDIMapper] (main) supportsFailover attribute is true on connection factory: jboss.messaging.connectionfactory:service=ClusteredConnectionFactory but post office is non clustered. So connection factory will *not* support failover+
+2013-05-30 18:30:39,550 INFO [org.jboss.jms.server.connectionfactory.ConnectionFactoryJNDIMapper] (main) supportsLoadBalancing attribute is true on connection factory: jboss.messaging.connectionfactory:service=ClusteredConnectionFactory but post office is non clustered. So connection factory will *not* support load balancing+
+2013-05-30 18:30:39,753 INFO [org.jboss.jms.server.connectionfactory.ConnectionFactory] (main) Connector bisocket://127.0.0.1:4457 has leasing enabled, lease period 10000 milliseconds+
+2013-05-30 18:30:39,753 INFO [org.jboss.jms.server.connectionfactory.ConnectionFactory] (main) mailto:org.jboss.jms.server.connectionfactory.ConnectionFactory@16b4ad8 org.jboss.jms.server.connectionfactory.ConnectionFactory@16b4ad8 started+
+2013-05-30 18:30:39,769 INFO [org.jboss.jms.server.destination.QueueService] (main) Queue[/queue/DLQ] started, fullSize=200000, pageSize=2000, downCacheSize=2000+
+2013-05-30 18:30:39,769 INFO [org.jboss.jms.server.destination.QueueService] (main) Queue[/queue/JbpmJobQueue] started, fullSize=200000, pageSize=2000, downCacheSize=2000+
+2013-05-30 18:30:39,769 INFO [org.jboss.jms.server.connectionfactory.ConnectionFactory] (main) Connector bisocket://127.0.0.1:4457 has leasing enabled, lease period 10000 milliseconds+
+2013-05-30 18:30:39,769 INFO [org.jboss.jms.server.connectionfactory.ConnectionFactory] (main) mailto:org.jboss.jms.server.connectionfactory.ConnectionFactory@11c1c90 org.jboss.jms.server.connectionfactory.ConnectionFactory@11c1c90 started+
+2013-05-30 18:30:39,769 INFO [org.jboss.jms.server.destination.QueueService] (main) Queue[/queue/ExpiryQueue] started, fullSize=200000, pageSize=2000, downCacheSize=2000+
+2013-05-30 18:30:39,769 INFO [org.jboss.jms.server.connectionfactory.ConnectionFactory] (main) Connector bisocket://127.0.0.1:4457 has leasing enabled, lease period 10000 milliseconds+
+2013-05-30 18:30:39,769 INFO [org.jboss.jms.server.connectionfactory.ConnectionFactory] (main) mailto:org.jboss.jms.server.connectionfactory.ConnectionFactory@10209be org.jboss.jms.server.connectionfactory.ConnectionFactory@10209be started+
+2013-05-30 18:30:39,847 INFO [org.jboss.resource.connectionmanager.ConnectionFactoryBindingService] (main) Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=JbpmDS' to JNDI name 'java:JbpmDS'+
+2013-05-30 18:30:39,909 INFO [org.jboss.resource.connectionmanager.ConnectionFactoryBindingService] (main) Bound ConnectionManager 'jboss.jca:service=ConnectionFactoryBinding,name=JmsXA' to JNDI name 'java:JmsXA'+
+2013-05-30 18:30:40,612 WARN [org.jboss.injection.EJBRemoteHandler] (main) EJBTHREE-1828: EJBInjectionContainer jboss.j2ee:jar=ejb3.jar,name=HelloWorldBean,service=EJB3 is unconfigured, using legacy resolve+
+2013-05-30 18:30:40,612 WARN [org.jboss.injection.EJBRemoteHandler] (main) EJBTHREE-1828: EJBInjectionContainer jboss.j2ee:jar=ejb3.jar,name=HelloWorldBean,service=EJB3 is unconfigured, using legacy resolve+
+2013-05-30 18:30:40,627 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) Created KernelDeployment for: ejb3.jar+
+2013-05-30 18:30:40,627 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) installing bean: jboss.j2ee:jar=ejb3.jar,name=PlaceBidBean,service=EJB3+
+2013-05-30 18:30:40,627 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) with dependencies:+
+2013-05-30 18:30:40,627 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) and demands:+
+2013-05-30 18:30:40,627 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) jboss.ejb:service=EJBTimerService+
+2013-05-30 18:30:40,627 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) and supplies:+
+2013-05-30 18:30:40,627 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) jndi:PlaceBidBean/remote+
+2013-05-30 18:30:40,627 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) Added bean(jboss.j2ee:jar=ejb3.jar,name=PlaceBidBean,service=EJB3) to KernelDeployment of: ejb3.jar+
+2013-05-30 18:30:40,627 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) installing bean: jboss.j2ee:jar=ejb3.jar,name=SearchFacade,service=EJB3+
+2013-05-30 18:30:40,627 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) with dependencies:+
+2013-05-30 18:30:40,627 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) and demands:+
+2013-05-30 18:30:40,627 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) jboss.ejb:service=EJBTimerService+
+2013-05-30 18:30:40,627 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) and supplies:+
+2013-05-30 18:30:40,627 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) jndi:SearchFacade/remote-com.test.SearchFacade+
+2013-05-30 18:30:40,627 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) Class:com.test.SearchFacadeBeanLocal+
+2013-05-30 18:30:40,627 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) Class:com.test.SearchFacade+
+2013-05-30 18:30:40,627 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) jndi:SearchFacade/local-com.test.SearchFacadeBeanLocal+
+2013-05-30 18:30:40,627 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) jndi:SearchFacade/local+
+2013-05-30 18:30:40,627 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) jndi:SearchFacade/remote+
+2013-05-30 18:30:40,659 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) Added bean(jboss.j2ee:jar=ejb3.jar,name=SearchFacade,service=EJB3) to KernelDeployment of: ejb3.jar+
+2013-05-30 18:30:40,659 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) installing bean: jboss.j2ee:jar=ejb3.jar,name=HelloWorldBean,service=EJB3+
+2013-05-30 18:30:40,659 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) with dependencies:+
+2013-05-30 18:30:40,659 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) and demands:+
+2013-05-30 18:30:40,659 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) jboss.ejb:service=EJBTimerService+
+2013-05-30 18:30:40,659 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) jndi:SearchFacade/remote-com.test.SearchFacade+
+2013-05-30 18:30:40,659 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) and supplies:+
+2013-05-30 18:30:40,659 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) jndi:HelloWorldBean/remote-com.test2.HelloWorld+
+2013-05-30 18:30:40,674 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) jndi:HelloWorldBean/local-com.test2.HelloWorldLocal+
+2013-05-30 18:30:40,674 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) Class:com.test2.HelloWorld+
+2013-05-30 18:30:40,674 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) jndi:HelloWorldBean/local+
+2013-05-30 18:30:40,674 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) Class:com.test2.HelloWorldLocal+
+2013-05-30 18:30:40,674 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) jndi:HelloWorldBean/remote+
+2013-05-30 18:30:40,674 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) Added bean(jboss.j2ee:jar=ejb3.jar,name=HelloWorldBean,service=EJB3) to KernelDeployment of: ejb3.jar+
+2013-05-30 18:30:40,705 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) installing bean: jboss.j2ee:jar=ejb3.jar,name=ShoppingCart,service=EJB3+
+2013-05-30 18:30:40,705 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) with dependencies:+
+2013-05-30 18:30:40,705 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) and demands:+
+2013-05-30 18:30:40,705 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) jboss.ejb:service=EJBTimerService+
+2013-05-30 18:30:40,705 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) and supplies:+
+2013-05-30 18:30:40,705 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) Class:com.test3.ShoppingCartLocal+
+2013-05-30 18:30:40,705 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) jndi:ShoppingCart/remote+
+2013-05-30 18:30:40,705 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) jndi:ShoppingCart/remote-com.test3.ShoppingCart+
+2013-05-30 18:30:40,705 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) jndi:ShoppingCart/local-com.test3.ShoppingCartLocal+
+2013-05-30 18:30:40,705 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) jndi:ShoppingCart/local+
+2013-05-30 18:30:40,721 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) Class:com.test3.ShoppingCart+
+2013-05-30 18:30:40,721 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) Added bean(jboss.j2ee:jar=ejb3.jar,name=ShoppingCart,service=EJB3) to KernelDeployment of: ejb3.jar+
+2013-05-30 18:30:40,721 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) installing bean: jboss.j2ee:jar=ejb3.jar,name=SessionDemoBean,service=EJB3+
+2013-05-30 18:30:40,721 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) with dependencies:+
+2013-05-30 18:30:40,721 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) and demands:+
+2013-05-30 18:30:40,721 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) jboss.ejb:service=EJBTimerService+
+2013-05-30 18:30:40,737 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) and supplies:+
+2013-05-30 18:30:40,737 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) jndi:SessionDemoBean/remote+
+2013-05-30 18:30:40,737 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) Added bean(jboss.j2ee:jar=ejb3.jar,name=SessionDemoBean,service=EJB3) to KernelDeployment of: ejb3.jar+
+2013-05-30 18:30:40,862 INFO [org.jboss.ejb3.session.SessionSpecContainer] (main) Starting jboss.j2ee:jar=ejb3.jar,name=PlaceBidBean,service=EJB3+
+2013-05-30 18:30:40,877 INFO [org.jboss.ejb3.EJBContainer] (main) STARTED EJB: com.actionbazaar.PlaceBidBean ejbName: PlaceBidBean+
+2013-05-30 18:30:40,893 INFO [org.jboss.ejb3.proxy.impl.jndiregistrar.JndiSessionRegistrarBase] (main) Binding the following Entries in Global JNDI:+
+2013-05-30 18:30:40,987 INFO [org.jboss.ejb3.session.SessionSpecContainer] (main) Starting jboss.j2ee:jar=ejb3.jar,name=SearchFacade,service=EJB3+
+2013-05-30 18:30:40,987 INFO [org.jboss.ejb3.EJBContainer] (main) STARTED EJB: com.test.SearchFacadeBean ejbName: SearchFacade+
+2013-05-30 18:30:41,065 INFO [org.jboss.ejb3.proxy.impl.jndiregistrar.JndiSessionRegistrarBase] (main) Binding the following Entries in Global JNDI:+
+SearchFacade/remote - EJB3.x Default Remote Business Interface+
+SearchFacade/remote-com.test.SearchFacade - EJB3.x Remote Business Interface+
+SearchFacade/local - EJB3.x Default Local Business Interface+
+SearchFacade/local-com.test.SearchFacadeBeanLocal - EJB3.x Local Business Interface+
+2013-05-30 18:30:41,111 INFO [org.jboss.ejb3.session.SessionSpecContainer] (main) Starting jboss.j2ee:jar=ejb3.jar,name=HelloWorldBean,service=EJB3+
+2013-05-30 18:30:41,111 INFO [org.jboss.ejb3.EJBContainer] (main) STARTED EJB: com.test2.HelloWorldBean ejbName: HelloWorldBean+
+2013-05-30 18:30:41,127 INFO [org.jboss.ejb3.proxy.impl.jndiregistrar.JndiSessionRegistrarBase] (main) Binding the following Entries in Global JNDI:+
+HelloWorldBean/remote - EJB3.x Default Remote Business Interface+
+HelloWorldBean/remote-com.test2.HelloWorld - EJB3.x Remote Business Interface+
+HelloWorldBean/local - EJB3.x Default Local Business Interface+
+HelloWorldBean/local-com.test2.HelloWorldLocal - EJB3.x Local Business Interface+
+2013-05-30 18:30:41,190 INFO [org.jboss.ejb3.session.SessionSpecContainer] (main) Starting jboss.j2ee:jar=ejb3.jar,name=ShoppingCart,service=EJB3+
+2013-05-30 18:30:41,190 INFO [org.jboss.ejb3.EJBContainer] (main) STARTED EJB: com.test3.ShoppingCartBean ejbName: ShoppingCart+
+2013-05-30 18:30:41,205 INFO [org.jboss.ejb3.proxy.impl.jndiregistrar.JndiSessionRegistrarBase] (main) Binding the following Entries in Global JNDI:+
+ShoppingCart/remote - EJB3.x Default Remote Business Interface+
+ShoppingCart/remote-com.test3.ShoppingCart - EJB3.x Remote Business Interface+
+ShoppingCart/local - EJB3.x Default Local Business Interface+
+ShoppingCart/local-com.test3.ShoppingCartLocal - EJB3.x Local Business Interface+
+2013-05-30 18:30:41,252 INFO [org.jboss.ejb3.session.SessionSpecContainer] (main) Starting jboss.j2ee:jar=ejb3.jar,name=SessionDemoBean,service=EJB3+
+2013-05-30 18:30:41,252 INFO [org.jboss.ejb3.EJBContainer] (main) STARTED EJB: com.test4.SessionDemoBean ejbName: SessionDemoBean+
+2013-05-30 18:30:41,268 INFO [org.jboss.ejb3.proxy.impl.jndiregistrar.JndiSessionRegistrarBase] (main) Binding the following Entries in Global JNDI:+
+2013-05-30 18:30:41,408 INFO [org.jboss.jpa.deployment.PersistenceUnitDeployment] (main) Starting persistence unit persistence.unit:unitName=#tempdb+
+2013-05-30 18:30:41,502 INFO [org.hibernate.cfg.annotations.Version] (main) Hibernate Annotations 3.4.0.GA_CP01+
+2013-05-30 18:30:41,517 INFO [org.hibernate.cfg.Environment] (main) Hibernate 3.3.2.GA_CP04+
+2013-05-30 18:30:41,517 INFO [org.hibernate.cfg.Environment] (main) hibernate.properties not found+
+2013-05-30 18:30:41,533 INFO [org.hibernate.cfg.Environment] (main) Bytecode provider name : javassist+
+2013-05-30 18:30:41,533 INFO [org.hibernate.cfg.Environment] (main) using JDK 1.4 java.sql.Timestamp handling+
+2013-05-30 18:30:41,674 INFO [org.hibernate.annotations.common.Version] (main) Hibernate Commons Annotations 3.1.0.GA+
+2013-05-30 18:30:41,689 INFO [org.hibernate.ejb.Version] (main) Hibernate EntityManager [WORKING]+
+2013-05-30 18:30:41,736 INFO [org.hibernate.ejb.Ejb3Configuration] (main) Processing PersistenceUnitInfo [+
+name: tempdb+
+...]+
+2013-05-30 18:30:41,767 WARN [org.hibernate.ejb.Ejb3Configuration] (main) Persistence provider caller does not implement the EJB3 spec correctly. PersistenceUnitInfo.getNewTempClassLoader() is null.+
+2013-05-30 18:30:41,861 INFO [org.hibernate.cfg.search.HibernateSearchEventListenerRegister] (main) Unable to find org.hibernate.search.event.FullTextIndexEventListener on the classpath. Hibernate Search is not enabled.+
+2013-05-30 18:30:41,861 INFO [org.hibernate.connection.ConnectionProviderFactory] (main) Initializing connection provider: org.hibernate.ejb.connection.InjectedDataSourceConnectionProvider+
+2013-05-30 18:30:41,861 INFO [org.hibernate.ejb.connection.InjectedDataSourceConnectionProvider] (main) Using provided datasource+
+2013-05-30 18:30:41,861 INFO [org.hibernate.cfg.SettingsFactory] (main) RDBMS: HSQL Database Engine, version: 1.8.0+
+2013-05-30 18:30:41,861 INFO [org.hibernate.cfg.SettingsFactory] (main) JDBC driver: HSQL Database Engine Driver, version: 1.8.0+
+2013-05-30 18:30:41,908 INFO [org.hibernate.dialect.Dialect] (main) Using dialect: org.hibernate.dialect.HSQLDialect+
+2013-05-30 18:30:41,970 INFO [org.hibernate.engine.jdbc.JdbcSupportLoader] (main) Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4+
+2013-05-30 18:30:41,970 INFO [org.hibernate.transaction.TransactionFactoryFactory] (main) Transaction strategy: org.hibernate.ejb.transaction.JoinableCMTTransactionFactory+
+2013-05-30 18:30:41,986 INFO [org.hibernate.transaction.TransactionManagerLookupFactory] (main) instantiating TransactionManagerLookup: org.hibernate.transaction.JBossTransactionManagerLookup+
+2013-05-30 18:30:41,986 INFO [org.hibernate.transaction.TransactionManagerLookupFactory] (main) instantiated TransactionManagerLookup+
+2013-05-30 18:30:41,986 INFO [org.hibernate.cfg.SettingsFactory] (main) Automatic flush during beforeCompletion(): disabled+
+2013-05-30 18:30:41,986 INFO [org.hibernate.cfg.SettingsFactory] (main) Automatic session close at end of transaction: disabled+
+2013-05-30 18:30:41,986 INFO [org.hibernate.cfg.SettingsFactory] (main) JDBC batch size: 15+
+2013-05-30 18:30:41,986 INFO [org.hibernate.cfg.SettingsFactory] (main) JDBC batch updates for versioned data: disabled+
+2013-05-30 18:30:41,986 INFO [org.hibernate.cfg.SettingsFactory] (main) Scrollable result sets: enabled+
+2013-05-30 18:30:41,986 INFO [org.hibernate.cfg.SettingsFactory] (main) JDBC3 getGeneratedKeys(): disabled+
+2013-05-30 18:30:41,986 INFO [org.hibernate.cfg.SettingsFactory] (main) Connection release mode: auto+
+2013-05-30 18:30:41,986 INFO [org.hibernate.cfg.SettingsFactory] (main) Default batch fetch size: 1+
+2013-05-30 18:30:41,986 INFO [org.hibernate.cfg.SettingsFactory] (main) Generate SQL with comments: disabled+
+2013-05-30 18:30:41,986 INFO [org.hibernate.cfg.SettingsFactory] (main) Order SQL updates by primary key: disabled+
+2013-05-30 18:30:41,986 INFO [org.hibernate.cfg.SettingsFactory] (main) Order SQL inserts for batching: disabled+
+2013-05-30 18:30:41,986 INFO [org.hibernate.cfg.SettingsFactory] (main) Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory+
+2013-05-30 18:30:41,986 INFO [org.hibernate.hql.ast.ASTQueryTranslatorFactory] (main) Using ASTQueryTranslatorFactory+
+2013-05-30 18:30:41,986 INFO [org.hibernate.cfg.SettingsFactory] (main) Query language substitutions: {}+
+2013-05-30 18:30:41,986 INFO [org.hibernate.cfg.SettingsFactory] (main) JPA-QL strict compliance: enabled+
+2013-05-30 18:30:41,986 INFO [org.hibernate.cfg.SettingsFactory] (main) Second-level cache: enabled+
+2013-05-30 18:30:41,986 INFO [org.hibernate.cfg.SettingsFactory] (main) Query cache: disabled+
+2013-05-30 18:30:41,986 INFO [org.hibernate.cfg.SettingsFactory] (main) Cache region factory : org.hibernate.cache.impl.bridge.RegionFactoryCacheProviderBridge+
+2013-05-30 18:30:42,001 INFO [org.hibernate.cache.impl.bridge.RegionFactoryCacheProviderBridge] (main) Cache provider: org.hibernate.cache.HashtableCacheProvider+
+2013-05-30 18:30:42,001 INFO [org.hibernate.cfg.SettingsFactory] (main) Optimize cache for minimal puts: disabled+
+2013-05-30 18:30:42,001 INFO [org.hibernate.cfg.SettingsFactory] (main) Cache region prefix: persistence.unit:unitName=#tempdb+
+2013-05-30 18:30:42,017 INFO [org.hibernate.cfg.SettingsFactory] (main) Structured second-level cache entries: disabled+
+2013-05-30 18:30:42,017 INFO [org.hibernate.cfg.SettingsFactory] (main) Statistics: disabled+
+2013-05-30 18:30:42,017 INFO [org.hibernate.cfg.SettingsFactory] (main) Deleted entity synthetic identifier rollback: disabled+
+2013-05-30 18:30:42,017 INFO [org.hibernate.cfg.SettingsFactory] (main) Default entity-mode: pojo+
+2013-05-30 18:30:42,017 INFO [org.hibernate.cfg.SettingsFactory] (main) Named query checking : enabled+
+2013-05-30 18:30:42,048 INFO [org.hibernate.impl.SessionFactoryImpl] (main) building session factory+
+2013-05-30 18:30:42,080 INFO [org.hibernate.impl.SessionFactoryObjectFactory] (main) Factory name: persistence.unit:unitName=#tempdb+
+2013-05-30 18:30:42,080 INFO [org.hibernate.util.NamingHelper] (main) JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}+
+2013-05-30 18:30:42,142 INFO [org.hibernate.impl.SessionFactoryObjectFactory] (main) Bound factory to JNDI name: persistence.unit:unitName=#tempdb+
+2013-05-30 18:30:42,142 WARN [org.hibernate.impl.SessionFactoryObjectFactory] (main) InitialContext did not implement EventContext+
+2013-05-30 18:30:42,158 INFO [org.hibernate.tool.hbm2ddl.SchemaExport] (main) Running hbm2ddl schema export+
+2013-05-30 18:30:42,158 INFO [org.hibernate.tool.hbm2ddl.SchemaExport] (main) exporting generated schema to database+
+2013-05-30 18:30:42,158 INFO [org.hibernate.tool.hbm2ddl.SchemaExport] (main) schema export complete+
+2013-05-30 18:30:42,158 INFO [org.hibernate.util.NamingHelper] (main) JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}+
+2013-05-30 18:30:42,283 INFO [org.jboss.ejb.deployers.EjbDeployer] (main) installing bean: ejb/#CommandServiceBean,uid1817647+
+2013-05-30 18:30:42,283 INFO [org.jboss.ejb.deployers.EjbDeployer] (main) with dependencies:+
+2013-05-30 18:30:42,283 INFO [org.jboss.ejb.deployers.EjbDeployer] (main) and supplies:+
+2013-05-30 18:30:42,283 INFO [org.jboss.ejb.deployers.EjbDeployer] (main) jndi:jbpm/CommandServiceBean+
+2013-05-30 18:30:42,283 INFO [org.jboss.ejb.deployers.EjbDeployer] (main) jndi:java:jbpm/CommandServiceBean+
+2013-05-30 18:30:42,283 INFO [org.jboss.ejb.deployers.EjbDeployer] (main) installing bean: ejb/#TimerEntityBean,uid17996170+
+2013-05-30 18:30:42,283 INFO [org.jboss.ejb.deployers.EjbDeployer] (main) with dependencies:+
+2013-05-30 18:30:42,283 INFO [org.jboss.ejb.deployers.EjbDeployer] (main) and supplies:+
+2013-05-30 18:30:42,283 INFO [org.jboss.ejb.deployers.EjbDeployer] (main) jndi:jbpm/TimerEntityBean+
+2013-05-30 18:30:42,283 INFO [org.jboss.ejb.deployers.EjbDeployer] (main) jndi:java:jbpm/TimerEntityBean+
+2013-05-30 18:30:42,283 INFO [org.jboss.ejb.deployers.EjbDeployer] (main) installing bean: ejb/#CommandListenerBean,uid1990575+
+2013-05-30 18:30:42,283 INFO [org.jboss.ejb.deployers.EjbDeployer] (main) with dependencies:+
+2013-05-30 18:30:42,283 INFO [org.jboss.ejb.deployers.EjbDeployer] (main) and supplies:+
+2013-05-30 18:30:42,283 INFO [org.jboss.ejb.deployers.EjbDeployer] (main) jndi:null+
+2013-05-30 18:30:42,283 INFO [org.jboss.ejb.deployers.EjbDeployer] (main) installing bean: ejb/#JobListenerBean,uid1826124+
+2013-05-30 18:30:42,283 INFO [org.jboss.ejb.deployers.EjbDeployer] (main) with dependencies:+
+2013-05-30 18:30:42,283 INFO [org.jboss.ejb.deployers.EjbDeployer] (main) and supplies:+
+2013-05-30 18:30:42,283 INFO [org.jboss.ejb.deployers.EjbDeployer] (main) jndi:null+
+2013-05-30 18:30:42,376 INFO [org.jboss.ejb.EjbModule] (main) Deploying CommandServiceBean+
+2013-05-30 18:30:42,454 INFO [org.jboss.ejb.EjbModule] (main) Deploying TimerEntityBean+
+2013-05-30 18:30:42,532 INFO [org.jboss.ejb.EjbModule] (main) Deploying CommandListenerBean+
+2013-05-30 18:30:42,564 INFO [org.jboss.ejb.EjbModule] (main) Deploying JobListenerBean+
+2013-05-30 18:30:44,187 INFO [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] (main) Bound EJB LocalHome 'CommandServiceBean' to jndi 'java:jbpm/CommandServiceBean'+
+2013-05-30 18:30:44,203 INFO [org.jboss.proxy.ejb.ProxyFactory] (main) Bound EJB Home 'CommandServiceBean' to jndi 'jbpm/CommandServiceBean'+
+2013-05-30 18:30:44,203 INFO [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] (main) Bound EJB LocalHome 'TimerEntityBean' to jndi 'java:jbpm/TimerEntityBean'+
+2013-05-30 18:30:44,203 INFO [org.jboss.proxy.ejb.ProxyFactory] (main) Bound EJB Home 'TimerEntityBean' to jndi 'jbpm/TimerEntityBean'+
+2013-05-30 18:30:44,672 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/admin-console+
+2013-05-30 18:30:44,953 INFO [javax.enterprise.resource.webcontainer.jsf.config] (main) Initializing Mojarra (1.2_13-b01-FCS) for context '/admin-console'+
+2013-05-30 18:30:47,826 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/+
+2013-05-30 18:30:47,888 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/jmx-console+
+2013-05-30 18:30:47,951 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/jbpm-console+
+2013-05-30 18:30:48,060 INFO [javax.enterprise.resource.webcontainer.jsf.config] (main) Initializing Mojarra (1.2_13-b01-FCS) for context '/jbpm-console'+
+2013-05-30 18:30:48,154 INFO [org.jbpm.JbpmConfiguration] (main) using configuration resource: jbpm.cfg.xml+
+2013-05-30 18:30:48,185 INFO [org.jbpm.persistence.db.StaleObjectLogConfigurer] (main) stale object exceptions will be hidden from logging+
+2013-05-30 18:30:48,232 INFO [org.jboss.system.server.profileservice.ProfileServiceBootstrap] (main) Loading profile: https://community.jboss.org/mailto:ProfileKey@124be4f[domain=default ProfileKey@124be4f[domain=default, server=default, name=default]+
+2013-05-30 18:30:48,247 INFO [org.apache.coyote.http11.Http11Protocol] (main) Starting Coyote HTTP/1.1 on http-127.0.0.1-8080+
+2013-05-30 18:30:48,263 INFO [org.apache.coyote.ajp.AjpProtocol] (main) Starting Coyote AJP/1.3 on ajp-127.0.0.1-8009+
+2013-05-30 18:30:48,294 INFO [org.jboss.bootstrap.microcontainer.ServerImpl] (main) JBoss (Microcontainer) [5.1.1 (build: SVNTag=JBPAPP_5_1_1 date=201105171607)] Started in 37s:834ms+
+2013-05-30 18:31:26,378 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) configuring from resource: hibernate.cfg.xml+
+2013-05-30 18:31:26,393 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Configuration resource: hibernate.cfg.xml+
+2013-05-30 18:31:26,424 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : hibernate.extra.hbm.xml+
+2013-05-30 18:31:26,487 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : hibernate.identity.hbm.xml+
+2013-05-30 18:31:26,534 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping class: org.jbpm.identity.User -> JBPM_ID_USER+
+2013-05-30 18:31:26,565 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.identity.User.permissions -> JBPM_ID_PERMISSIONS+
+2013-05-30 18:31:26,565 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping class: org.jbpm.identity.Group -> JBPM_ID_GROUP+
+2013-05-30 18:31:26,596 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.identity.Group.permissions -> JBPM_ID_PERMISSIONS+
+2013-05-30 18:31:26,596 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping class: org.jbpm.identity.Membership -> JBPM_ID_MEMBERSHIP+
+2013-05-30 18:31:26,596 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.identity.Membership.permissions -> JBPM_ID_PERMISSIONS+
+2013-05-30 18:31:26,596 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/db/hibernate.queries.hbm.xml+
+2013-05-30 18:31:26,659 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/graph/action/MailAction.hbm.xml+
+2013-05-30 18:31:26,705 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/graph/def/ProcessDefinition.hbm.xml+
+2013-05-30 18:31:26,737 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping class: org.jbpm.graph.def.ProcessDefinition -> JBPM_PROCESSDEFINITION+
+2013-05-30 18:31:26,784 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/graph/def/Node.hbm.xml+
+2013-05-30 18:31:26,799 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping class: org.jbpm.graph.def.Node -> JBPM_NODE+
+2013-05-30 18:31:26,830 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/graph/def/Transition.hbm.xml+
+2013-05-30 18:31:26,846 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping class: org.jbpm.graph.def.Transition -> JBPM_TRANSITION+
+2013-05-30 18:31:26,846 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/graph/def/Event.hbm.xml+
+2013-05-30 18:31:26,924 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping class: org.jbpm.graph.def.Event -> JBPM_EVENT+
+2013-05-30 18:31:26,924 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/graph/def/Action.hbm.xml+
+2013-05-30 18:31:26,940 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping class: org.jbpm.graph.def.Action -> JBPM_ACTION+
+2013-05-30 18:31:26,940 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/graph/def/SuperState.hbm.xml+
+2013-05-30 18:31:26,987 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.graph.def.SuperState -> JBPM_NODE+
+2013-05-30 18:31:26,987 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/graph/def/ExceptionHandler.hbm.xml+
+2013-05-30 18:31:27,002 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping class: org.jbpm.graph.def.ExceptionHandler -> JBPM_EXCEPTIONHANDLER+
+2013-05-30 18:31:27,002 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/instantiation/Delegation.hbm.xml+
+2013-05-30 18:31:27,111 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping class: org.jbpm.instantiation.Delegation -> JBPM_DELEGATION+
+2013-05-30 18:31:27,111 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/graph/action/Script.hbm.xml+
+2013-05-30 18:31:27,221 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.graph.action.Script -> JBPM_ACTION+
+2013-05-30 18:31:27,221 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/graph/node/StartState.hbm.xml+
+2013-05-30 18:31:27,236 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.graph.node.StartState -> JBPM_NODE+
+2013-05-30 18:31:27,236 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/graph/node/EndState.hbm.xml+
+2013-05-30 18:31:27,252 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.graph.node.EndState -> JBPM_NODE+
+2013-05-30 18:31:27,252 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/graph/node/ProcessState.hbm.xml+
+2013-05-30 18:31:27,283 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.graph.node.ProcessState -> JBPM_NODE+
+2013-05-30 18:31:27,299 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/graph/node/Decision.hbm.xml+
+2013-05-30 18:31:27,299 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.graph.node.Decision -> JBPM_NODE+
+2013-05-30 18:31:27,299 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.graph.node.Decision.decisionConditions -> JBPM_DECISIONCONDITIONS+
+2013-05-30 18:31:27,314 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/graph/node/Fork.hbm.xml+
+2013-05-30 18:31:27,314 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.graph.node.Fork -> JBPM_NODE+
+2013-05-30 18:31:27,346 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/graph/node/Join.hbm.xml+
+2013-05-30 18:31:27,361 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.graph.node.Join -> JBPM_NODE+
+2013-05-30 18:31:27,361 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/graph/node/MailNode.hbm.xml+
+2013-05-30 18:31:27,361 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.graph.node.MailNode -> JBPM_NODE+
+2013-05-30 18:31:27,377 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/graph/node/State.hbm.xml+
+2013-05-30 18:31:27,377 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.graph.node.State -> JBPM_NODE+
+2013-05-30 18:31:27,377 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/graph/node/TaskNode.hbm.xml+
+2013-05-30 18:31:27,393 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.graph.node.TaskNode -> JBPM_NODE+
+2013-05-30 18:31:27,408 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/context/def/ContextDefinition.hbm.xml+
+2013-05-30 18:31:27,408 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/context/def/VariableAccess.hbm.xml+
+2013-05-30 18:31:27,424 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping class: org.jbpm.context.def.VariableAccess -> JBPM_VARIABLEACCESS+
+2013-05-30 18:31:27,424 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/bytes/ByteArray.hbm.xml+
+2013-05-30 18:31:27,439 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping class: org.jbpm.bytes.ByteArray -> JBPM_BYTEARRAY+
+2013-05-30 18:31:27,439 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.bytes.ByteArray.byteBlocks -> JBPM_BYTEBLOCK+
+2013-05-30 18:31:27,439 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/module/def/ModuleDefinition.hbm.xml+
+2013-05-30 18:31:27,439 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping class: org.jbpm.module.def.ModuleDefinition -> JBPM_MODULEDEFINITION+
+2013-05-30 18:31:27,439 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/file/def/FileDefinition.hbm.xml+
+2013-05-30 18:31:27,486 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.file.def.FileDefinition -> JBPM_MODULEDEFINITION+
+2013-05-30 18:31:27,486 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/taskmgmt/def/TaskMgmtDefinition.hbm.xml+
+2013-05-30 18:31:27,502 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.taskmgmt.def.TaskMgmtDefinition -> JBPM_MODULEDEFINITION+
+2013-05-30 18:31:27,502 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/taskmgmt/def/Swimlane.hbm.xml+
+2013-05-30 18:31:27,517 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping class: org.jbpm.taskmgmt.def.Swimlane -> JBPM_SWIMLANE+
+2013-05-30 18:31:27,517 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/taskmgmt/def/Task.hbm.xml+
+2013-05-30 18:31:27,533 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping class: org.jbpm.taskmgmt.def.Task -> JBPM_TASK+
+2013-05-30 18:31:27,533 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/taskmgmt/def/TaskController.hbm.xml+
+2013-05-30 18:31:27,533 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping class: org.jbpm.taskmgmt.def.TaskController -> JBPM_TASKCONTROLLER+
+2013-05-30 18:31:27,549 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/scheduler/def/CreateTimerAction.hbm.xml+
+2013-05-30 18:31:27,549 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.scheduler.def.CreateTimerAction -> JBPM_ACTION+
+2013-05-30 18:31:27,549 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/scheduler/def/CancelTimerAction.hbm.xml+
+2013-05-30 18:31:27,564 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.scheduler.def.CancelTimerAction -> JBPM_ACTION+
+2013-05-30 18:31:27,564 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/graph/exe/Comment.hbm.xml+
+2013-05-30 18:31:27,580 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping class: org.jbpm.graph.exe.Comment -> JBPM_COMMENT+
+2013-05-30 18:31:27,596 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/graph/exe/ProcessInstance.hbm.xml+
+2013-05-30 18:31:27,596 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping class: org.jbpm.graph.exe.ProcessInstance -> JBPM_PROCESSINSTANCE+
+2013-05-30 18:31:27,611 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/graph/exe/Token.hbm.xml+
+2013-05-30 18:31:27,611 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping class: org.jbpm.graph.exe.Token -> JBPM_TOKEN+
+2013-05-30 18:31:27,627 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/graph/exe/RuntimeAction.hbm.xml+
+2013-05-30 18:31:27,627 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping class: org.jbpm.graph.exe.RuntimeAction -> JBPM_RUNTIMEACTION+
+2013-05-30 18:31:27,627 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/module/exe/ModuleInstance.hbm.xml+
+2013-05-30 18:31:27,642 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping class: org.jbpm.module.exe.ModuleInstance -> JBPM_MODULEINSTANCE+
+2013-05-30 18:31:27,642 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/context/exe/ContextInstance.hbm.xml+
+2013-05-30 18:31:27,658 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.context.exe.ContextInstance -> JBPM_MODULEINSTANCE+
+2013-05-30 18:31:27,658 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/context/exe/TokenVariableMap.hbm.xml+
+2013-05-30 18:31:27,658 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping class: org.jbpm.context.exe.TokenVariableMap -> JBPM_TOKENVARIABLEMAP+
+2013-05-30 18:31:27,674 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/context/exe/VariableInstance.hbm.xml+
+2013-05-30 18:31:27,674 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping class: org.jbpm.context.exe.VariableInstance -> JBPM_VARIABLEINSTANCE+
+2013-05-30 18:31:27,689 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/context/exe/variableinstance/ByteArrayInstance.hbm.xml+
+2013-05-30 18:31:27,689 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.context.exe.variableinstance.ByteArrayInstance -> JBPM_VARIABLEINSTANCE+
+2013-05-30 18:31:27,689 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/context/exe/variableinstance/DateInstance.hbm.xml+
+2013-05-30 18:31:27,705 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.context.exe.variableinstance.DateInstance -> JBPM_VARIABLEINSTANCE+
+2013-05-30 18:31:27,705 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/context/exe/variableinstance/DoubleInstance.hbm.xml+
+2013-05-30 18:31:27,705 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.context.exe.variableinstance.DoubleInstance -> JBPM_VARIABLEINSTANCE+
+2013-05-30 18:31:27,705 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/context/exe/variableinstance/HibernateLongInstance.hbm.xml+
+2013-05-30 18:31:27,705 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.context.exe.variableinstance.HibernateLongInstance -> JBPM_VARIABLEINSTANCE+
+2013-05-30 18:31:27,705 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/context/exe/variableinstance/HibernateStringInstance.hbm.xml+
+2013-05-30 18:31:27,720 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.context.exe.variableinstance.HibernateStringInstance -> JBPM_VARIABLEINSTANCE+
+2013-05-30 18:31:27,720 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/context/exe/variableinstance/LongInstance.hbm.xml+
+2013-05-30 18:31:27,720 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.context.exe.variableinstance.LongInstance -> JBPM_VARIABLEINSTANCE+
+2013-05-30 18:31:27,720 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/context/exe/variableinstance/NullInstance.hbm.xml+
+2013-05-30 18:31:27,736 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.context.exe.variableinstance.NullInstance -> JBPM_VARIABLEINSTANCE+
+2013-05-30 18:31:27,736 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/context/exe/variableinstance/StringInstance.hbm.xml+
+2013-05-30 18:31:27,736 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.context.exe.variableinstance.StringInstance -> JBPM_VARIABLEINSTANCE+
+2013-05-30 18:31:27,736 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/job/Job.hbm.xml+
+2013-05-30 18:31:27,752 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping class: org.jbpm.job.Job -> JBPM_JOB+
+2013-05-30 18:31:27,752 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/job/Timer.hbm.xml+
+2013-05-30 18:31:27,767 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.job.Timer -> JBPM_JOB+
+2013-05-30 18:31:27,767 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/job/ExecuteNodeJob.hbm.xml+
+2013-05-30 18:31:27,783 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.job.ExecuteNodeJob -> JBPM_JOB+
+2013-05-30 18:31:27,783 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/job/ExecuteActionJob.hbm.xml+
+2013-05-30 18:31:27,799 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.job.ExecuteActionJob -> JBPM_JOB+
+2013-05-30 18:31:27,799 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/job/CleanUpProcessJob.hbm.xml+
+2013-05-30 18:31:27,814 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.job.CleanUpProcessJob -> JBPM_JOB+
+2013-05-30 18:31:27,814 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/taskmgmt/exe/TaskMgmtInstance.hbm.xml+
+2013-05-30 18:31:27,845 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.taskmgmt.exe.TaskMgmtInstance -> JBPM_MODULEINSTANCE+
+2013-05-30 18:31:27,861 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/taskmgmt/exe/TaskInstance.hbm.xml+
+2013-05-30 18:31:27,861 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping class: org.jbpm.taskmgmt.exe.TaskInstance -> JBPM_TASKINSTANCE+
+2013-05-30 18:31:27,877 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.taskmgmt.exe.TaskInstance.pooledActors -> JBPM_TASKACTORPOOL+
+2013-05-30 18:31:27,877 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/taskmgmt/exe/PooledActor.hbm.xml+
+2013-05-30 18:31:27,892 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping class: org.jbpm.taskmgmt.exe.PooledActor -> JBPM_POOLEDACTOR+
+2013-05-30 18:31:27,892 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.taskmgmt.exe.PooledActor.taskInstances -> JBPM_TASKACTORPOOL+
+2013-05-30 18:31:27,892 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/taskmgmt/exe/SwimlaneInstance.hbm.xml+
+2013-05-30 18:31:27,908 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping class: org.jbpm.taskmgmt.exe.SwimlaneInstance -> JBPM_SWIMLANEINSTANCE+
+2013-05-30 18:31:27,908 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/logging/log/ProcessLog.hbm.xml+
+2013-05-30 18:31:27,908 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping class: org.jbpm.logging.log.ProcessLog -> JBPM_LOG+
+2013-05-30 18:31:27,923 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/logging/log/MessageLog.hbm.xml+
+2013-05-30 18:31:27,923 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.logging.log.MessageLog -> JBPM_LOG+
+2013-05-30 18:31:27,923 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/logging/log/CompositeLog.hbm.xml+
+2013-05-30 18:31:27,923 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.logging.log.CompositeLog -> JBPM_LOG+
+2013-05-30 18:31:27,923 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/graph/log/ActionLog.hbm.xml+
+2013-05-30 18:31:27,939 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.graph.log.ActionLog -> JBPM_LOG+
+2013-05-30 18:31:27,939 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/graph/log/NodeLog.hbm.xml+
+2013-05-30 18:31:27,939 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.graph.log.NodeLog -> JBPM_LOG+
+2013-05-30 18:31:27,939 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/graph/log/ProcessInstanceCreateLog.hbm.xml+
+2013-05-30 18:31:27,955 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.graph.log.ProcessInstanceCreateLog -> JBPM_LOG+
+2013-05-30 18:31:27,955 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/graph/log/ProcessInstanceEndLog.hbm.xml+
+2013-05-30 18:31:27,955 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.graph.log.ProcessInstanceEndLog -> JBPM_LOG+
+2013-05-30 18:31:27,955 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/graph/log/ProcessStateLog.hbm.xml+
+2013-05-30 18:31:27,955 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.graph.log.ProcessStateLog -> JBPM_LOG+
+2013-05-30 18:31:27,955 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/graph/log/SignalLog.hbm.xml+
+2013-05-30 18:31:27,970 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.graph.log.SignalLog -> JBPM_LOG+
+2013-05-30 18:31:27,970 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/graph/log/TokenCreateLog.hbm.xml+
+2013-05-30 18:31:27,970 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.graph.log.TokenCreateLog -> JBPM_LOG+
+2013-05-30 18:31:27,970 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/graph/log/TokenEndLog.hbm.xml+
+2013-05-30 18:31:27,970 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.graph.log.TokenEndLog -> JBPM_LOG+
+2013-05-30 18:31:27,970 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/graph/log/TransitionLog.hbm.xml+
+2013-05-30 18:31:27,986 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.graph.log.TransitionLog -> JBPM_LOG+
+2013-05-30 18:31:27,986 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/context/log/VariableLog.hbm.xml+
+2013-05-30 18:31:27,986 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.context.log.VariableLog -> JBPM_LOG+
+2013-05-30 18:31:27,986 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/context/log/VariableCreateLog.hbm.xml+
+2013-05-30 18:31:28,001 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.context.log.VariableCreateLog -> JBPM_LOG+
+2013-05-30 18:31:28,001 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/context/log/VariableDeleteLog.hbm.xml+
+2013-05-30 18:31:28,001 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.context.log.VariableDeleteLog -> JBPM_LOG+
+2013-05-30 18:31:28,001 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/context/log/VariableUpdateLog.hbm.xml+
+2013-05-30 18:31:28,017 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.context.log.VariableUpdateLog -> JBPM_LOG+
+2013-05-30 18:31:28,017 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/context/log/variableinstance/ByteArrayUpdateLog.hbm.xml+
+2013-05-30 18:31:28,033 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.context.log.variableinstance.ByteArrayUpdateLog -> JBPM_LOG+
+2013-05-30 18:31:28,033 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/context/log/variableinstance/DateUpdateLog.hbm.xml+
+2013-05-30 18:31:28,033 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.context.log.variableinstance.DateUpdateLog -> JBPM_LOG+
+2013-05-30 18:31:28,033 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/context/log/variableinstance/DoubleUpdateLog.hbm.xml+
+2013-05-30 18:31:28,033 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.context.log.variableinstance.DoubleUpdateLog -> JBPM_LOG+
+2013-05-30 18:31:28,033 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/context/log/variableinstance/HibernateLongUpdateLog.hbm.xml+
+2013-05-30 18:31:28,048 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.context.log.variableinstance.HibernateLongUpdateLog -> JBPM_LOG+
+2013-05-30 18:31:28,048 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/context/log/variableinstance/HibernateStringUpdateLog.hbm.xml+
+2013-05-30 18:31:28,048 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.context.log.variableinstance.HibernateStringUpdateLog -> JBPM_LOG+
+2013-05-30 18:31:28,048 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/context/log/variableinstance/LongUpdateLog.hbm.xml+
+2013-05-30 18:31:28,064 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.context.log.variableinstance.LongUpdateLog -> JBPM_LOG+
+2013-05-30 18:31:28,064 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/context/log/variableinstance/StringUpdateLog.hbm.xml+
+2013-05-30 18:31:28,064 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.context.log.variableinstance.StringUpdateLog -> JBPM_LOG+
+2013-05-30 18:31:28,064 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/taskmgmt/log/TaskLog.hbm.xml+
+2013-05-30 18:31:28,064 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.taskmgmt.log.TaskLog -> JBPM_LOG+
+2013-05-30 18:31:28,064 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/taskmgmt/log/TaskCreateLog.hbm.xml+
+2013-05-30 18:31:28,080 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.taskmgmt.log.TaskCreateLog -> JBPM_LOG+
+2013-05-30 18:31:28,080 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/taskmgmt/log/TaskAssignLog.hbm.xml+
+2013-05-30 18:31:28,080 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.taskmgmt.log.TaskAssignLog -> JBPM_LOG+
+2013-05-30 18:31:28,080 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/taskmgmt/log/TaskEndLog.hbm.xml+
+2013-05-30 18:31:28,095 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.taskmgmt.log.TaskEndLog -> JBPM_LOG+
+2013-05-30 18:31:28,095 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/taskmgmt/log/SwimlaneLog.hbm.xml+
+2013-05-30 18:31:28,095 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.taskmgmt.log.SwimlaneLog -> JBPM_LOG+
+2013-05-30 18:31:28,095 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/taskmgmt/log/SwimlaneCreateLog.hbm.xml+
+2013-05-30 18:31:28,095 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.taskmgmt.log.SwimlaneCreateLog -> JBPM_LOG+
+2013-05-30 18:31:28,111 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Reading mappings from resource : org/jbpm/taskmgmt/log/SwimlaneAssignLog.hbm.xml+
+2013-05-30 18:31:28,111 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.taskmgmt.log.SwimlaneAssignLog -> JBPM_LOG+
+2013-05-30 18:31:28,111 INFO [org.hibernate.cfg.Configuration] (http-127.0.0.1-8080-1) Configured SessionFactory: null+
+2013-05-30 18:31:28,111 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.context.def.ContextDefinition -> JBPM_MODULEDEFINITION+
+2013-05-30 18:31:28,111 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping subclass: org.jbpm.graph.action.MailAction -> JBPM_ACTION+
+2013-05-30 18:31:28,111 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.identity.User.memberships -> JBPM_ID_MEMBERSHIP+
+2013-05-30 18:31:28,111 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.identity.Group.children -> JBPM_ID_GROUP+
+2013-05-30 18:31:28,111 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.identity.Group.memberships -> JBPM_ID_MEMBERSHIP+
+2013-05-30 18:31:28,111 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.graph.def.ProcessDefinition.events -> JBPM_EVENT+
+2013-05-30 18:31:28,111 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.graph.def.ProcessDefinition.exceptionHandlers -> JBPM_EXCEPTIONHANDLER+
+2013-05-30 18:31:28,111 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.graph.def.ProcessDefinition.nodes -> JBPM_NODE+
+2013-05-30 18:31:28,111 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.graph.def.ProcessDefinition.actions -> JBPM_ACTION+
+2013-05-30 18:31:28,111 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.graph.def.ProcessDefinition.definitions -> JBPM_MODULEDEFINITION+
+2013-05-30 18:31:28,111 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.graph.def.Node.events -> JBPM_EVENT+
+2013-05-30 18:31:28,111 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.graph.def.Node.exceptionHandlers -> JBPM_EXCEPTIONHANDLER+
+2013-05-30 18:31:28,111 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.graph.def.Node.leavingTransitions -> JBPM_TRANSITION+
+2013-05-30 18:31:28,111 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.graph.def.Node.arrivingTransitions -> JBPM_TRANSITION+
+2013-05-30 18:31:28,111 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.graph.def.Transition.events -> JBPM_EVENT+
+2013-05-30 18:31:28,111 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.graph.def.Transition.exceptionHandlers -> JBPM_EXCEPTIONHANDLER+
+2013-05-30 18:31:28,111 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.graph.def.Event.actions -> JBPM_ACTION+
+2013-05-30 18:31:28,111 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.graph.def.SuperState.nodes -> JBPM_NODE+
+2013-05-30 18:31:28,111 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.graph.def.ExceptionHandler.actions -> JBPM_ACTION+
+2013-05-30 18:31:28,111 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.graph.action.Script.variableAccesses -> JBPM_VARIABLEACCESS+
+2013-05-30 18:31:28,111 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.graph.node.ProcessState.variableAccesses -> JBPM_VARIABLEACCESS+
+2013-05-30 18:31:28,126 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.graph.node.TaskNode.tasks -> JBPM_TASK+
+2013-05-30 18:31:28,126 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.file.def.FileDefinition.processFiles -> JBPM_BYTEARRAY+
+2013-05-30 18:31:28,142 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.taskmgmt.def.TaskMgmtDefinition.swimlanes -> JBPM_SWIMLANE+
+2013-05-30 18:31:28,142 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.taskmgmt.def.TaskMgmtDefinition.tasks -> JBPM_TASK+
+2013-05-30 18:31:28,142 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.taskmgmt.def.Swimlane.tasks -> JBPM_TASK+
+2013-05-30 18:31:28,142 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.taskmgmt.def.Task.events -> JBPM_EVENT+
+2013-05-30 18:31:28,142 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.taskmgmt.def.Task.exceptionHandlers -> JBPM_EXCEPTIONHANDLER+
+2013-05-30 18:31:28,142 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.taskmgmt.def.TaskController.variableAccesses -> JBPM_VARIABLEACCESS+
+2013-05-30 18:31:28,142 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.graph.exe.ProcessInstance.runtimeActions -> JBPM_RUNTIMEACTION+
+2013-05-30 18:31:28,142 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.graph.exe.ProcessInstance.instances -> JBPM_MODULEINSTANCE+
+2013-05-30 18:31:28,142 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.graph.exe.Token.children -> JBPM_TOKEN+
+2013-05-30 18:31:28,142 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.graph.exe.Token.comments -> JBPM_COMMENT+
+2013-05-30 18:31:28,142 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.context.exe.ContextInstance.tokenVariableMaps -> JBPM_TOKENVARIABLEMAP+
+2013-05-30 18:31:28,142 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.context.exe.TokenVariableMap.variableInstances -> JBPM_VARIABLEINSTANCE+
+2013-05-30 18:31:28,142 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.taskmgmt.exe.TaskMgmtInstance.swimlaneInstances -> JBPM_SWIMLANEINSTANCE+
+2013-05-30 18:31:28,142 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.taskmgmt.exe.TaskMgmtInstance.taskInstances -> JBPM_TASKINSTANCE+
+2013-05-30 18:31:28,142 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.taskmgmt.exe.TaskInstance.variableInstances -> JBPM_VARIABLEINSTANCE+
+2013-05-30 18:31:28,142 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.taskmgmt.exe.TaskInstance.comments -> JBPM_COMMENT+
+2013-05-30 18:31:28,142 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.taskmgmt.exe.SwimlaneInstance.pooledActors -> JBPM_POOLEDACTOR+
+2013-05-30 18:31:28,142 INFO [org.hibernate.cfg.HbmBinder] (http-127.0.0.1-8080-1) Mapping collection: org.jbpm.logging.log.CompositeLog.children -> JBPM_LOG+
+2013-05-30 18:31:28,204 INFO [org.hibernate.util.NamingHelper] (http-127.0.0.1-8080-1) JNDI InitialContext properties:{}+
+2013-05-30 18:31:28,204 INFO [org.hibernate.connection.DatasourceConnectionProvider] (http-127.0.0.1-8080-1) Using datasource: java:JbpmDS+
+2013-05-30 18:31:28,204 INFO [org.hibernate.cfg.SettingsFactory] (http-127.0.0.1-8080-1) RDBMS: MySQL, version: 5.1.59-community+
+2013-05-30 18:31:28,220 INFO [org.hibernate.cfg.SettingsFactory] (http-127.0.0.1-8080-1) JDBC driver: MySQL-AB JDBC Driver, version: mysql-connector-java-5.0.8 ( Revision: ${svn.Revision} )+
+2013-05-30 18:31:28,220 INFO [org.hibernate.dialect.Dialect] (http-127.0.0.1-8080-1) Using dialect: org.hibernate.dialect.MySQL5InnoDBDialect+
+2013-05-30 18:31:28,220 INFO [org.hibernate.engine.jdbc.JdbcSupportLoader] (http-127.0.0.1-8080-1) Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4+
+2013-05-30 18:31:28,220 INFO [org.hibernate.transaction.TransactionFactoryFactory] (http-127.0.0.1-8080-1) Transaction strategy: org.hibernate.transaction.JTATransactionFactory+
+2013-05-30 18:31:28,220 INFO [org.hibernate.util.NamingHelper] (http-127.0.0.1-8080-1) JNDI InitialContext properties:{}+
+2013-05-30 18:31:28,220 INFO [org.hibernate.transaction.TransactionManagerLookupFactory] (http-127.0.0.1-8080-1) instantiating TransactionManagerLookup: org.hibernate.transaction.JBossTransactionManagerLookup+
+2013-05-30 18:31:28,236 INFO [org.hibernate.transaction.TransactionManagerLookupFactory] (http-127.0.0.1-8080-1) instantiated TransactionManagerLookup+
+2013-05-30 18:31:28,236 INFO [org.hibernate.transaction.TransactionManagerLookupFactory] (http-127.0.0.1-8080-1) instantiating TransactionManagerLookup: org.hibernate.transaction.JBossTransactionManagerLookup+
+2013-05-30 18:31:28,236 INFO [org.hibernate.transaction.TransactionManagerLookupFactory] (http-127.0.0.1-8080-1) instantiated TransactionManagerLookup+
+2013-05-30 18:31:28,236 INFO [org.hibernate.cfg.SettingsFactory] (http-127.0.0.1-8080-1) Automatic flush during beforeCompletion(): disabled+
+2013-05-30 18:31:28,236 INFO [org.hibernate.cfg.SettingsFactory] (http-127.0.0.1-8080-1) Automatic session close at end of transaction: disabled+
+2013-05-30 18:31:28,236 INFO [org.hibernate.cfg.SettingsFactory] (http-127.0.0.1-8080-1) JDBC batch size: 15+
+2013-05-30 18:31:28,236 INFO [org.hibernate.cfg.SettingsFactory] (http-127.0.0.1-8080-1) JDBC batch updates for versioned data: disabled+
+2013-05-30 18:31:28,236 INFO [org.hibernate.cfg.SettingsFactory] (http-127.0.0.1-8080-1) Scrollable result sets: enabled+
+2013-05-30 18:31:28,236 INFO [org.hibernate.cfg.SettingsFactory] (http-127.0.0.1-8080-1) JDBC3 getGeneratedKeys(): enabled+
+2013-05-30 18:31:28,236 INFO [org.hibernate.cfg.SettingsFactory] (http-127.0.0.1-8080-1) Connection release mode: auto+
+2013-05-30 18:31:28,236 INFO [org.hibernate.cfg.SettingsFactory] (http-127.0.0.1-8080-1) Maximum outer join fetch depth: 2+
+2013-05-30 18:31:28,236 INFO [org.hibernate.cfg.SettingsFactory] (http-127.0.0.1-8080-1) Default batch fetch size: 1+
+2013-05-30 18:31:28,236 INFO [org.hibernate.cfg.SettingsFactory] (http-127.0.0.1-8080-1) Generate SQL with comments: enabled+
+2013-05-30 18:31:28,236 INFO [org.hibernate.cfg.SettingsFactory] (http-127.0.0.1-8080-1) Order SQL updates by primary key: disabled+
+2013-05-30 18:31:28,236 INFO [org.hibernate.cfg.SettingsFactory] (http-127.0.0.1-8080-1) Order SQL inserts for batching: disabled+
+2013-05-30 18:31:28,236 INFO [org.hibernate.cfg.SettingsFactory] (http-127.0.0.1-8080-1) Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory+
+2013-05-30 18:31:28,236 INFO [org.hibernate.hql.ast.ASTQueryTranslatorFactory] (http-127.0.0.1-8080-1) Using ASTQueryTranslatorFactory+
+2013-05-30 18:31:28,236 INFO [org.hibernate.cfg.SettingsFactory] (http-127.0.0.1-8080-1) Query language substitutions: {}+
+2013-05-30 18:31:28,236 INFO [org.hibernate.cfg.SettingsFactory] (http-127.0.0.1-8080-1) JPA-QL strict compliance: disabled+
+2013-05-30 18:31:28,236 INFO [org.hibernate.cfg.SettingsFactory] (http-127.0.0.1-8080-1) Second-level cache: enabled+
+2013-05-30 18:31:28,236 INFO [org.hibernate.cfg.SettingsFactory] (http-127.0.0.1-8080-1) Query cache: disabled+
+2013-05-30 18:31:28,236 INFO [org.hibernate.cfg.SettingsFactory] (http-127.0.0.1-8080-1) Cache region factory : org.hibernate.cache.impl.bridge.RegionFactoryCacheProviderBridge+
+2013-05-30 18:31:28,236 INFO [org.hibernate.cache.impl.bridge.RegionFactoryCacheProviderBridge] (http-127.0.0.1-8080-1) Cache provider: org.hibernate.cache.HashtableCacheProvider+
+2013-05-30 18:31:28,236 INFO [org.hibernate.cfg.SettingsFactory] (http-127.0.0.1-8080-1) Optimize cache for minimal puts: disabled+
+2013-05-30 18:31:28,236 INFO [org.hibernate.cfg.SettingsFactory] (http-127.0.0.1-8080-1) Structured second-level cache entries: disabled+
+2013-05-30 18:31:28,236 INFO [org.hibernate.cfg.SettingsFactory] (http-127.0.0.1-8080-1) Statistics: disabled+
+2013-05-30 18:31:28,236 INFO [org.hibernate.cfg.SettingsFactory] (http-127.0.0.1-8080-1) Deleted entity synthetic identifier rollback: disabled+
+2013-05-30 18:31:28,236 INFO [org.hibernate.cfg.SettingsFactory] (http-127.0.0.1-8080-1) Default entity-mode: pojo+
+2013-05-30 18:31:28,236 INFO [org.hibernate.cfg.SettingsFactory] (http-127.0.0.1-8080-1) Named query checking : enabled+
+2013-05-30 18:31:28,236 INFO [org.hibernate.impl.SessionFactoryImpl] (http-127.0.0.1-8080-1) building session factory+
+2013-05-30 18:31:29,469 INFO [org.hibernate.impl.SessionFactoryObjectFactory] (http-127.0.0.1-8080-1) Not binding factory to JNDI, no JNDI name configured+
+2013-05-30 18:31:29,485 INFO [org.hibernate.util.NamingHelper] (http-127.0.0.1-8080-1) JNDI InitialContext properties:{}+
+2013-05-30 18:31:33,857 WARN [org.hibernate.engine.StatefulPersistenceContext.ProxyWarnLog] (http-127.0.0.1-8080-1) Narrowing proxy to class org.jbpm.graph.node.StartState - this operation breaks ==+
+2013-05-30 18:31:37,917 WARN [org.hibernate.engine.StatefulPersistenceContext.ProxyWarnLog] (http-127.0.0.1-8080-1) Narrowing proxy to class org.jbpm.graph.node.TaskNode - this operation breaks ==+
+2013-05-30 18:31:42,336 WARN [org.hibernate.engine.StatefulPersistenceContext.ProxyWarnLog] (http-127.0.0.1-8080-1) Narrowing proxy to class org.jbpm.graph.node.StartState - this operation breaks ==+
+2013-05-30 18:31:42,367 WARN [org.hibernate.engine.StatefulPersistenceContext.ProxyWarnLog] (http-127.0.0.1-8080-1) Narrowing proxy to class org.jbpm.graph.node.TaskNode - this operation breaks ==+
+2013-05-30 18:31:42,414 ERROR [org.jbpm.graph.def.GraphElement] (http-127.0.0.1-8080-1) action threw exception: couldn't get value for file 'classes/com/sample/action/UpdateErpAction.class'+
+org.jbpm.JbpmException: couldn't get value for file 'classes/com/sample/action/UpdateErpAction.class'+
+at org.jbpm.file.def.FileDefinition.getBytes(FileDefinition.java:196)+
+at org.jbpm.instantiation.ProcessClassLoader.findClass(ProcessClassLoader.java:116)+
+at java.lang.ClassLoader.loadClass(ClassLoader.java:307)+
+at java.lang.ClassLoader.loadClass(ClassLoader.java:252)+
+at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)+
+at java.lang.Class.forName0(Native Method)+
+at java.lang.Class.forName(Class.java:247)+
+at org.jbpm.instantiation.Delegation.instantiate(Delegation.java:140)+
+at org.jbpm.instantiation.Delegation.getInstance(Delegation.java:124)+
+at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)+
+at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)+
+at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)+
+at java.lang.reflect.Method.invoke(Method.java:597)+
+at org.hibernate.proxy.pojo.javassist.JavassistLazyInitializer.invoke(JavassistLazyInitializer.java:197)+
+at org.jbpm.instantiation.Delegation_$$_javassist_11.getInstance(Delegation_$$_javassist_11.java)+
+at org.jbpm.graph.def.Action.execute(Action.java:124)+
+at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)+
+at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)+
+at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)+
+at java.lang.reflect.Method.invoke(Method.java:597)+
+at org.hibernate.proxy.pojo.javassist.JavassistLazyInitializer.invoke(JavassistLazyInitializer.java:197)+
+at org.jbpm.graph.def.Action_$$_javassist_34.execute(Action_$$_javassist_34.java)+
+at org.jbpm.graph.def.GraphElement.executeAction(GraphElement.java:281)+
+at org.jbpm.graph.def.Node.execute(Node.java:412)+
+at org.jbpm.graph.def.Node.enter(Node.java:388)+
+at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)+
+at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)+
+at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)+
+at java.lang.reflect.Method.invoke(Method.java:597)+
+at org.hibernate.proxy.pojo.javassist.JavassistLazyInitializer.invoke(JavassistLazyInitializer.java:197)+
+at org.jbpm.graph.def.Node_$$_javassist_81.enter(Node_$$_javassist_81.java)+
+at org.jbpm.graph.def.Transition.take(Transition.java:166)+
+at org.jbpm.graph.def.Node.leave(Node.java:477)+
+at org.jbpm.graph.def.Node.leave(Node.java:449)+
+at org.jbpm.graph.node.Fork.execute(Fork.java:136)+
+at org.jbpm.graph.def.Node.enter(Node.java:388)+
+at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)+
+at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)+
+at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)+
+at java.lang.reflect.Method.invoke(Method.java:597)+
+at org.hibernate.proxy.pojo.javassist.JavassistLazyInitializer.invoke(JavassistLazyInitializer.java:197)+
+at org.jbpm.graph.def.Node_$$_javassist_81.enter(Node_$$_javassist_81.java)+
+at org.jbpm.graph.def.Transition.take(Transition.java:166)+
+at org.jbpm.graph.def.Node.leave(Node.java:477)+
+at org.jbpm.graph.node.TaskNode.leave(TaskNode.java:219)+
+at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)+
+at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)+
+at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)+
+at java.lang.reflect.Method.invoke(Method.java:597)+
+at org.hibernate.proxy.pojo.javassist.JavassistLazyInitializer.invoke(JavassistLazyInitializer.java:197)+
+at org.jbpm.graph.node.TaskNode_$$_javassist_47.leave(TaskNode_$$_javassist_47.java)+
+at org.jbpm.graph.exe.Token.signal(Token.java:226)+
+at org.jbpm.graph.exe.Token.signal(Token.java:187)+
+at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)+
+at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)+
+at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)+
+at java.lang.reflect.Method.invoke(Method.java:597)+
+at org.hibernate.proxy.pojo.javassist.JavassistLazyInitializer.invoke(JavassistLazyInitializer.java:197)+
+at org.jbpm.graph.exe.Token_$$_javassist_14.signal(Token_$$_javassist_14.java)+
+at org.jbpm.taskmgmt.exe.TaskInstance.end(TaskInstance.java:447)+
+at org.jbpm.taskmgmt.exe.TaskInstance.end(TaskInstance.java:391)+
+at org.jbpm.jsf.core.action.CompleteTaskActionListener.handleAction(CompleteTaskActionListener.java:52)+
+at org.jbpm.jsf.core.impl.JbpmActionListenerWrapper.processAction(JbpmActionListenerWrapper.java:82)+
+at javax.faces.event.ActionEvent.processListener(ActionEvent.java:88)+
+at javax.faces.component.UIComponentBase.broadcast(UIComponentBase.java:771)+
+at javax.faces.component.UICommand.broadcast(UICommand.java:372)+
+at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:475)+
+at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:756)+
+at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:82)+
+at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100)+
+at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)+
+at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)+
+at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)+
+at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)+
+at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)+
+at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)+
+at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)+
+at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:235)+
+at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)+
+at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:183)+
+at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:525)+
+at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:95)+
+at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.process(SecurityContextEstablishmentValve.java:126)+
+at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.invoke(SecurityContextEstablishmentValve.java:70)+
+at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)+
+at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)+
+at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:158)+
+at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)+
+at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:330)+
+at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:829)+
+at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:599)+
+at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:451)+
+at java.lang.Thread.run(Thread.java:619)+
+Caused by: java.lang.NullPointerException+
+at org.jbpm.file.def.FileDefinition.getBytesFromDb(FileDefinition.java:213)+
+at org.jbpm.file.def.FileDefinition.getBytes(FileDefinition.java:193)+
+... 92 more+
+2013-05-30 18:31:42,460 WARN [org.hibernate.util.JDBCExceptionReporter] (http-127.0.0.1-8080-1) SQL Error: 0, SQLState: 22001+
+2013-05-30 18:31:42,460 ERROR [org.hibernate.util.JDBCExceptionReporter] (http-127.0.0.1-8080-1) Data truncation: Data too long for column 'EXCEPTION_' at row 1+
--------------------------------------------------------------
Reply to this message by going to Community
[https://community.jboss.org/message/820409#820409]
Start a new discussion in jBPM Development at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&con...]
11 years, 7 months
[JBoss Transactions Development] - Narayana Release Process
by Paul Robinson
Paul Robinson [https://community.jboss.org/people/paul.robinson] modified the document:
"Narayana Release Process"
To view the document, visit: https://community.jboss.org/docs/DOC-17433
--------------------------------------------------------------
This page provides a list of instructions that must be done *in order* when doing a release of Narayana.
h2. Check JIRA
1. Check all issues resolved.
2. Create next point release version if not exists - this is so you can push issues in step 3 below.
3. Unresolved issues should be resolved or pushed.
h2. Check Hudson
Ensure no test failures in the group of hudson tests, for the branch you intend to release.
h2. Raise AS7 component upgrade request in Jira
Prepare for a PR to update AS7.
1. https://issues.jboss.org/browse/WFLY https://issues.jboss.org/browse/WFLY
2. create a new 'component update' issue.1. Ensure the module is set to 'transactions'
2. select an appropriate 'fix for'.
3. Assign it to yourself.
h2. Do Release
h3. Git Branches (4.17 and 5 only)
Must be done first as the build-release-packages.xml relies on the tag being available
cd $NARAYANA_SRC/scripts
pre-release.sh <next version, e.g: 5.0.0.M3>
h3. Create the AS7 pull request branch and roll the jbosstm/jboss-as branch to next SNAPSHOT (UN-TESTED COMMANDS!!)
First rebase 5_BRANCH, to make the following commands run more smothly:
cd $NARAYANA_SRC/scripts
./rebase-jbossas-branch.sh
Now do this:
BRANCH=4_BRANCH
AS_BRANCH=master
JIRA=AS7-5815
CURRENT=4.17.2.Final
NEXT=4.17.3.Final
git clone git@github.com:jbosstm/jboss-as.git
cd jboss-as
git checkout $BRANCH
git remote add upstream git://github.com/wildfly/wildfly.git
git pull --rebase --ff-only upstream $AS_BRANCH
sed -i "s/$CURRENT-SNAPSHOT/$CURRENT/g" pom.xml
git commit -am "${JIRA} Upgrade Narayana to $CURRENT"
# should use git merge-base $BRANCH upstream/master
# You will need to resolve some merge conflicts. Most likely around version numbers.
git rebase -i HEAD~10
git checkout -b "${JIRA}_Upgrading_Narayana_to_${CURRENT}"
git checkout $BRANCH
sed -i "s/$CURRENT/$NEXT-SNAPSHOT/g" pom.xml
git commit -am "${JIRA} Upgrade Narayana to $NEXT-SNAPSHOT"
git push origin "${JIRA}_Upgrading_Narayana_to_${CURRENT}"
git push origin $BRANCH
h2. Build and release
h3. blacktie windows binaries
CURRENT=<Version to release. e.g 5.0.0.M2>
On Windows:
rem You need to build the windows version separately as we don't support cross compile
git clone git(a)github.com (mailto:git@github.com):jbosstm/blacktie.git
build.bat install -DskipTests
scp blacktie/target/blacktie-$CURRENT-vc9x32-bin.zip <user>@<ipaddress>:
h3. Narayana upload
CURRENT=<Version to release. e.g 5.0.0.M2>
mkdir -p ~/narayana/filemgmt.jboss.org/
On Linux:
sshfs jbosstm(a)filemgmt.jboss.org (mailto:jbosstm@filemgmt.jboss.org): ~/narayana/filemgmt.jboss.org/
On MacOS:
sshfs -o defer_permissions jbosstm(a)filemgmt.jboss.org (mailto:jbosstm@filemgmt.jboss.org): ~/narayana/filemgmt.jboss.org/
git clone git(a)github.com (mailto:git@github.com):jbosstm/narayana.git
cd narayana
git checkout $CURRENT
On Linux:
ant -f build-release-pkgs.xml dist downloads docs magnolia -Drsync=false
On MacOS:
ant -f build-release-pkgs.xml dist downloads docs magnolia
h3. svn branches
#Make sure your checkout has no local changes
svn update
svn status
POINT_VERSION=5
NEXT_POINT_VERSION=6
#Update the version in text files
find . -name \*.java -o -name \*.xml -o -name \*.properties -o -name \*.ent -o -name \INSTALL -o -name \README | grep -v ".svn" | grep -v target | xargs grep -l "4[._]16" | xargs sed -i "s/4\([._]\)16\([._]\)${POINT_VERSION}\([._]\)Final-SNAPSHOT/4\116\2$POINT_VERSION\3Final/"
svn commit -m "Updated to version 4.16.$POINT_VERSION.Final"
#Tag the release:
svn cp https://svn.jboss.org/repos/labs/labs/jbosstm/branches/JBOSSTS_4_16 https://svn.jboss.org/repos/labs/labs/jbosstm/branches/JBOSSTS_4_16 https://svn.jboss.org/repos/labs/labs/jbosstm/tags/JBOSSTS_4_16_4_Final/ https://svn.jboss.org/repos/labs/labs/jbosstm/tags/JBOSSTS_4_16_${POINT_V... -m "4.16.$POINT_VERSION"
#Bump to next version using similar find to above
find . -name \*.java -o -name \*.xml -o -name \*.properties -o -name \*.ent -o -name \INSTALL -o -name \README | grep -v ".svn" | grep -v target | xargs grep -l "4[._]16" | xargs sed -i "s/4\([._]\)16\([._]\)${POINT_VERSION}\([._]\)Final/4\116\2${NEXT_POINT_VERSION}\3Final-SNAPSHOT/"
svn commit -m "Updated to version 4.16.${NEXT_POINT_VERSION}.Final-SNAPSHOT"
#Update the maven version of jbossts in our fork of JBossAS: https://github.com/jbosstm/jboss-as https://github.com/jbosstm/jboss-as
git checkout 4_16_BRANCH
git pull --rebase --ff-only
#Check no local changes
git status
sed -i "s/4.16.${POINT_VERSION}.Final-SNAPSHOT/4.16.${NEXT_POINT_VERSION}.Final-SNAPSHOT/g" pom.xml
git commit -am "Updated to 4.16.${NEXT_POINT_VERSION}.Final-SNAPSHOT"
git push
#Build and deploy the release to nexus staging:
mkdir ~/filemgmt.jboss.org/
sshfs -o defer_permissions mailto:jbosstm@filemgmt.jboss.org jbosstm(a)filemgmt.jboss.org: ~/filemgmt.jboss.org/
svn switch https://svn.jboss.org/repos/labs/labs/jbosstm/tags/JBOSSTS_4_16_$ https://svn.jboss.org/repos/labs/labs/jbosstm/tags/JBOSSTS_4_16_${NEXT_PO...
ant -f build-release-pkgs.xml dist mvn-repository downloads magnolia
h3.
h2. Release the artifact through Nexus
1. https://repository.jboss.org/nexus/index.html#welcome https://repository.jboss.org/nexus/index.html#welcome
2. login
3. "Staging Repositories"
4. Click tickbox for your repo
5. Click "Close"
6. Don't worry about a description, just click "Close"
7. Click tickbox after it is closed
8. Click "Release"
9. Again a description doesn't matter
h2. Push Upstream
Check that the pull request will work. *If it doesn't and it requires Narayana changes you *have* to rev the version number - DON'T attempt to re-release with the same version number:*
JIRA=AS7-5815
CURRENT=4.17.2.Final
git clone mailto:git@github.com git@github.com:jbosstm/jboss-as.git
cd jboss-as
git checkout "${JIRA}_Upgrading_Narayana_to_${CURRENT}"
rm -rf ~/.m2/repository/org/jboss/jbossts
rm -rf ~/.m2/repository/org/jboss/narayana
./build.sh clean install
1. Raise the pull request using our branch
2. Update http://172.17.131.2/view/Narayana+BlackTie-release/job/release-narayana-A... this job to run our CI over the PR. You need to re-run this every time you change the PR, top make sure it still works.
3. Once merged, resolve the AS7 Jira issue.
4. Once merged, rebase the jbosstm/jboss-as 5_BRANCH|4_BRANCH branch with the updated wildfly master branch
h2. JIRA Release
1. Close all issues for the release
2. Mark as released (Need admin permissions)
h2. Update Website
Update the Narayana community site:
* Login to Magnolia* https://www.jboss.org/author/.magnolia/pages/adminCentral.html https://www.jboss.org/author/.magnolia/pages/adminCentral.html
* Login with credentials: Tom and Paul know these, ask them.
* Documentation* Browse to 'jbosstm/documentation'
* right click on 'downloads' and select 'import'
* browse to the location of the 'website.jbosstm.documentation.4.16.5.Final.xml' file
* Long left click on the file name and replace the '.' with '_'.
* Right click on the new file and click 'move'
* Drag the file to the top of the documentation list.
* Right click on the new page and select 'open page...'
* Check that the page looks right and that the download links work
* Right click on the new page and select 'activate'
* You now need to wait for the page to be moderated before it will appear.
* Downloads* Browse to 'jbosstm/downloads'
* right click on 'downloads' and select 'import'
* browse to the location of the 'website.jbosstm.downloads.4.16.5.Final.xml' file
*
Long left click on the file name and replace the '.' with '_'.
* Right click on the new file and click 'move'
* Drag the file to the top of the downloads list.
* Right click on the new page and select 'open page...'
* Check that the page looks right and that the download links work
* Right click on the new page and select 'activate'
* You now need to wait for the page to be moderated before it will appear.
* Announcement* Right click on 'jbosstm' and select 'open page...'
* Click edit on the 'announcement' pane
* Update the announcement for this release.
* Right click on 'jbosstm' and select 'activate changes'
* You now need to wait for the page to be moderated before it will appear.
* Release notes* Right click on 'jbosstm' and select 'open page...'
* Click edit on the 'getting started' pane on the right-hand-side
* Edit the release notes url to point to the release notes for this version
* Click save
* Right click on 'jbosstm' and select 'activate changes'
* You now need to wait for the page to be moderated before it will appear.
h2. Update CI
Update jobs, to use the new Version (quickstarts, etc). Need a ful list of steps here.
h2. Checked the released Quickstarts
Make sure the released quickstarts run against the released Narayana. Do this by updating this job: http://172.17.131.2/view/Narayana+BlackTie-release/job/release-btny-naray... http://172.17.131.2/view/Narayana+BlackTie-release/job/release-btny-naray...
Need a ful list of steps here.
h2. Promote
NOTE: It is worth waiting for the merge of the pull request before advertising, or at least wait for the merge build notification first ;)
Promote the release through the following channels:
1. Email jbossts-announce(a)lists.jboss.org (mailto:jbossts-announce@lists.jboss.org)
2. Forum
3. Blog: project in (jbtm, blacktie) AND fixversion = "5.0.0.M2" AND priority >= major AND issuetype not in (Bug, task) AND resolution not in ("Duplicate Issue", Rejected, "Won't Fix", "Out of Date", "Cannot Reproduce Bug")
h2. JBoss Transaction SPI
These instructions apply to the maintainance SPI branch:
export CURRENT=7.0.1
export NEXT=7.0.2
git clone mailto:git@github.com git@github.com:jbosstm/jboss-transaction-spi.git
vi pom.xml # remove -SNAPSHOT from $CURRENT
git add pom.xml
git commit -m "Updated to $CURRENT.Final"
git tag $CURRENT
git checkout $CURRENT
mvn deploy
git checkout master
vi pom.xml # change version number to $NEXT.Final-SNAPSHOT
git commit -m "Updated to $NEXT.Final-SNAPSHOT"
git push origin
You then need to go to nexus and release the artifact.
--------------------------------------------------------------
Comment by going to Community
[https://community.jboss.org/docs/DOC-17433]
Create a new document in JBoss Transactions Development at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=102&c...]
11 years, 7 months
[JBoss Transactions Development] - Narayana Release Process
by Paul Robinson
Paul Robinson [https://community.jboss.org/people/paul.robinson] modified the document:
"Narayana Release Process"
To view the document, visit: https://community.jboss.org/docs/DOC-17433
--------------------------------------------------------------
This page provides a list of instructions that must be done *in order* when doing a release of Narayana.
h2. Check JIRA
1. Check all issues resolved.
2. Create next point release version if not exists - this is so you can push issues in step 3 below.
3. Unresolved issues should be resolved or pushed.
h2. Check Hudson
Ensure no test failures in the group of hudson tests, for the branch you intend to release.
h2. Raise AS7 component upgrade request in Jira
Prepare for a PR to update AS7.
1. https://issues.jboss.org/browse/WFLY https://issues.jboss.org/browse/WFLY
2. create a new 'component update' issue.1. Ensure the module is set to 'transactions'
2. select an appropriate 'fix for'.
3. Assign it to yourself.
h2. Do Release
h3. Git Branches (4.17 and 5 only)
Must be done first as the build-release-packages.xml relies on the tag being available
cd $NARAYANA_SRC/scripts
pre-release.sh <next version, e.g: 5.0.0.M3>
h3. Create the AS7 pull request branch and roll the jbosstm/jboss-as branch to next SNAPSHOT (UN-TESTED COMMANDS!!)
BRANCH=4_BRANCH
AS_BRANCH=master
JIRA=AS7-5815
CURRENT=4.17.2.Final
NEXT=4.17.3.Final
git clone git@github.com:jbosstm/jboss-as.git
cd jboss-as
git checkout $BRANCH
git remote add upstream git://github.com/wildfly/wildfly.git
git pull --rebase --ff-only upstream $AS_BRANCH
sed -i "s/$CURRENT-SNAPSHOT/$CURRENT/g" pom.xml
git commit -am "$JIRA Upgrade Narayana to $CURRENT"
# should use git merge-base $BRANCH upstream/master
# You will need to resolve som merge conflicts. Most likely around version numbers.
git rebase -i HEAD~10
git checkout -b "${JIRA}_Upgrading_Narayana_to_${CURRENT}"
git checkout $BRANCH
sed -i "s/$CURRENT/$NEXT-SNAPSHOT/g" pom.xml
git commit -am "Upgrade Narayana to $NEXT-SNAPSHOT"
git push origin "${JIRA}_Upgrading_Narayana_to_${CURRENT}"
git push origin $BRANCH
h2. Build and release
h3. blacktie windows binaries
CURRENT=<Version to release. e.g 5.0.0.M2>
On Windows:
rem You need to build the windows version separately as we don't support cross compile
git clone git(a)github.com (mailto:git@github.com):jbosstm/blacktie.git
build.bat install -DskipTests
scp blacktie/target/blacktie-$CURRENT-vc9x32-bin.zip <user>@<ipaddress>:
h3. Narayana upload
CURRENT=<Version to release. e.g 5.0.0.M2>
mkdir -p ~/narayana/filemgmt.jboss.org/
On Linux:
sshfs jbosstm(a)filemgmt.jboss.org (mailto:jbosstm@filemgmt.jboss.org): ~/narayana/filemgmt.jboss.org/
On MacOS:
sshfs -o defer_permissions jbosstm(a)filemgmt.jboss.org (mailto:jbosstm@filemgmt.jboss.org): ~/narayana/filemgmt.jboss.org/
git clone git(a)github.com (mailto:git@github.com):jbosstm/narayana.git
cd narayana
git checkout $CURRENT
On Linux:
ant -f build-release-pkgs.xml dist downloads docs magnolia -Drsync=false
On MacOS:
ant -f build-release-pkgs.xml dist downloads docs magnolia
h3. svn branches
#Make sure your checkout has no local changes
svn update
svn status
POINT_VERSION=5
NEXT_POINT_VERSION=6
#Update the version in text files
find . -name \*.java -o -name \*.xml -o -name \*.properties -o -name \*.ent -o -name \INSTALL -o -name \README | grep -v ".svn" | grep -v target | xargs grep -l "4[._]16" | xargs sed -i "s/4\([._]\)16\([._]\)${POINT_VERSION}\([._]\)Final-SNAPSHOT/4\116\2$POINT_VERSION\3Final/"
svn commit -m "Updated to version 4.16.$POINT_VERSION.Final"
#Tag the release:
svn cp https://svn.jboss.org/repos/labs/labs/jbosstm/branches/JBOSSTS_4_16 https://svn.jboss.org/repos/labs/labs/jbosstm/branches/JBOSSTS_4_16 https://svn.jboss.org/repos/labs/labs/jbosstm/tags/JBOSSTS_4_16_4_Final/ https://svn.jboss.org/repos/labs/labs/jbosstm/tags/JBOSSTS_4_16_${POINT_V... -m "4.16.$POINT_VERSION"
#Bump to next version using similar find to above
find . -name \*.java -o -name \*.xml -o -name \*.properties -o -name \*.ent -o -name \INSTALL -o -name \README | grep -v ".svn" | grep -v target | xargs grep -l "4[._]16" | xargs sed -i "s/4\([._]\)16\([._]\)${POINT_VERSION}\([._]\)Final/4\116\2${NEXT_POINT_VERSION}\3Final-SNAPSHOT/"
svn commit -m "Updated to version 4.16.${NEXT_POINT_VERSION}.Final-SNAPSHOT"
#Update the maven version of jbossts in our fork of JBossAS: https://github.com/jbosstm/jboss-as https://github.com/jbosstm/jboss-as
git checkout 4_16_BRANCH
git pull --rebase --ff-only
#Check no local changes
git status
sed -i "s/4.16.${POINT_VERSION}.Final-SNAPSHOT/4.16.${NEXT_POINT_VERSION}.Final-SNAPSHOT/g" pom.xml
git commit -am "Updated to 4.16.${NEXT_POINT_VERSION}.Final-SNAPSHOT"
git push
#Build and deploy the release to nexus staging:
mkdir ~/filemgmt.jboss.org/
sshfs -o defer_permissions mailto:jbosstm@filemgmt.jboss.org jbosstm(a)filemgmt.jboss.org: ~/filemgmt.jboss.org/
svn switch https://svn.jboss.org/repos/labs/labs/jbosstm/tags/JBOSSTS_4_16_$ https://svn.jboss.org/repos/labs/labs/jbosstm/tags/JBOSSTS_4_16_${NEXT_PO...
ant -f build-release-pkgs.xml dist mvn-repository downloads magnolia
h3.
h2. Release the artifact through Nexus
1. https://repository.jboss.org/nexus/index.html#welcome https://repository.jboss.org/nexus/index.html#welcome
2. login
3. "Staging Repositories"
4. Click tickbox for your repo
5. Click "Close"
6. Don't worry about a description, just click "Close"
7. Click tickbox after it is closed
8. Click "Release"
9. Again a description doesn't matter
h2. Push Upstream
Check that the pull request will work. *If it doesn't and it requires Narayana changes you *have* to rev the version number - DON'T attempt to re-release with the same version number:*
JIRA=AS7-5815
CURRENT=4.17.2.Final
git clone mailto:git@github.com git@github.com:jbosstm/jboss-as.git
cd jboss-as
git checkout "${JIRA}_Upgrading_Narayana_to_${CURRENT}"
rm -rf ~/.m2/repository/org/jboss/jbossts
rm -rf ~/.m2/repository/org/jboss/narayana
./build.sh clean install
1. Raise the pull request using our branch
2. Update http://172.17.131.2/view/Narayana+BlackTie-release/job/release-narayana-A... this job to run our CI over the PR. You need to re-run this every time you change the PR, top make sure it still works.
3. Once merged, resolve the AS7 Jira issue.
4. Once merged, rebase the jbosstm/jboss-as 5_BRANCH|4_BRANCH branch with the updated wildfly master branch
h2. JIRA Release
1. Close all issues for the release
2. Mark as released (Need admin permissions)
h2. Update Website
Update the Narayana community site:
* Login to Magnolia* https://www.jboss.org/author/.magnolia/pages/adminCentral.html https://www.jboss.org/author/.magnolia/pages/adminCentral.html
* Login with credentials: Tom and Paul know these, ask them.
* Documentation* Browse to 'jbosstm/documentation'
* right click on 'downloads' and select 'import'
* browse to the location of the 'website.jbosstm.documentation.4.16.5.Final.xml' file
* Long left click on the file name and replace the '.' with '_'.
* Right click on the new file and click 'move'
* Drag the file to the top of the documentation list.
* Right click on the new page and select 'open page...'
* Check that the page looks right and that the download links work
* Right click on the new page and select 'activate'
* You now need to wait for the page to be moderated before it will appear.
* Downloads* Browse to 'jbosstm/downloads'
* right click on 'downloads' and select 'import'
* browse to the location of the 'website.jbosstm.downloads.4.16.5.Final.xml' file
*
Long left click on the file name and replace the '.' with '_'.
* Right click on the new file and click 'move'
* Drag the file to the top of the downloads list.
* Right click on the new page and select 'open page...'
* Check that the page looks right and that the download links work
* Right click on the new page and select 'activate'
* You now need to wait for the page to be moderated before it will appear.
* Announcement* Right click on 'jbosstm' and select 'open page...'
* Click edit on the 'announcement' pane
* Update the announcement for this release.
* Right click on 'jbosstm' and select 'activate changes'
* You now need to wait for the page to be moderated before it will appear.
* Release notes* Right click on 'jbosstm' and select 'open page...'
* Click edit on the 'getting started' pane on the right-hand-side
* Edit the release notes url to point to the release notes for this version
* Click save
* Right click on 'jbosstm' and select 'activate changes'
* You now need to wait for the page to be moderated before it will appear.
h2. Update CI
Update jobs, to use the new Version (quickstarts, etc). Need a ful list of steps here.
h2. Checked the released Quickstarts
Make sure the released quickstarts run against the released Narayana. Do this by updating this job: http://172.17.131.2/view/Narayana+BlackTie-release/job/release-btny-naray... http://172.17.131.2/view/Narayana+BlackTie-release/job/release-btny-naray...
Need a ful list of steps here.
h2. Promote
NOTE: It is worth waiting for the merge of the pull request before advertising, or at least wait for the merge build notification first ;)
Promote the release through the following channels:
1. Email jbossts-announce(a)lists.jboss.org (mailto:jbossts-announce@lists.jboss.org)
2. Forum
3. Blog: project in (jbtm, blacktie) AND fixversion = "5.0.0.M2" AND priority >= major AND issuetype not in (Bug, task) AND resolution not in ("Duplicate Issue", Rejected, "Won't Fix", "Out of Date", "Cannot Reproduce Bug")
h2. JBoss Transaction SPI
These instructions apply to the maintainance SPI branch:
export CURRENT=7.0.1
export NEXT=7.0.2
git clone mailto:git@github.com git@github.com:jbosstm/jboss-transaction-spi.git
vi pom.xml # remove -SNAPSHOT from $CURRENT
git add pom.xml
git commit -m "Updated to $CURRENT.Final"
git tag $CURRENT
git checkout $CURRENT
mvn deploy
git checkout master
vi pom.xml # change version number to $NEXT.Final-SNAPSHOT
git commit -m "Updated to $NEXT.Final-SNAPSHOT"
git push origin
You then need to go to nexus and release the artifact.
--------------------------------------------------------------
Comment by going to Community
[https://community.jboss.org/docs/DOC-17433]
Create a new document in JBoss Transactions Development at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=102&c...]
11 years, 7 months
[JBoss ESB Development] - How to get logical EPR from intercepted message?
by Martin Myslík
Martin Myslík [https://community.jboss.org/people/m.myslik] created the discussion
"How to get logical EPR from intercepted message?"
To view the discussion, visit: https://community.jboss.org/message/820312#820312
--------------------------------------------------------------
Hi, I am intercepting messages using pipeline interceptors and processing some information about them. I would like to get logicla EPR from the "to" and "from" parameter, however, I am able to get only physical EPR from it.
Do you have any idea how to do it?
I will post here one sample - this is my code for sending ESB messages:
public void sendMessage(String message) throws Exception {
// Create the delivery adapter for the target service (cache it)
System.setProperty("javax.xml.registry.ConnectionFactoryClass",
"org.apache.ws.scout.registry.ConnectionFactoryImpl");
// Create the delivery adapter for the target service (cache it)
ServiceInvoker deliveryAdapter = new ServiceInvoker("RedServiceESB",
"RedListener");
// Create and populate the request message...
Message requestMessage = MessageFactory.getInstance().getMessage(
MessageType.JBOSS_XML);
requestMessage.getBody().add(message);
requestMessage.getHeader().getCall().setFrom(new LogicalEPR("BlueServiceESB", "BlueListener")); //sender
// Deliver the request message synchronously - timeout after 20
// seconds...
deliveryAdapter.deliverAsync(requestMessage);
}
As you can see, I am sending a message from "blue" service to "red" service here. When I intercept the message and process the message parameters like this:
String sender = msg.getHeader().getCall().getFrom().getAddr().toString();
String receiver = msg.getHeader().getCall().getTo().getAddr().toString();
I get these results:
*From:* PortReference < logical:BlueServiceESB#BlueListener >
*To:* PortReference < jms:localhost:1099#queue/Red_Request_esb >
So the "sender" is logical EPR and the "receiver" is physical EPR. My question is why (I know that I am filling the "from" parameter manually, which could be the reason)?
How can I convert this into logical EPR. ALso, is there a way to get something like "BlueServiceESB#BlueListener" and "queue/Red_Request_esb" without all that "PortReference" stuff? I could do this in my java code using regular expression, but perhaps there is some more elegant way I havent found yet.
Thanks for answers!
--------------------------------------------------------------
Reply to this message by going to Community
[https://community.jboss.org/message/820312#820312]
Start a new discussion in JBoss ESB Development at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&con...]
11 years, 7 months