[JBoss jBPM] - Re: Is jBPM-BPEL GA backward compatible to beta 3?
by meghanai_99
Hello Alex,
After making the necessary changes to bpel-definition.xml and bpel-deployment.xml [renamed and changed namespace etc.] in our deployment module, when I tried to deploy same BPEL process again on updated JBPM database, I get following error -
| 13:50:23,654 INFO [STDOUT] Retrieving document at 'D:\Program Files\Serena\Business Mashups\Common\jboss405\server\defa
| ult\work\jboss.web\localhost\mashupmgr\alf\78740638-9c44-4da2-b182-8a50503206fd\feb5\src/main/bpel\resources/xml/feb5.ws
| dl'.
| 13:50:23,674 INFO [STDOUT] Retrieving document at 'D:\Program Files\Serena\Business Mashups\Common\jboss405\server\defa
| ult\work\jboss.web\localhost\mashupmgr\alf\78740638-9c44-4da2-b182-8a50503206fd\feb5\src/main/bpel\resources/xml/Convert
| Temperature.wsdl'.
| 13:50:24,155 INFO [STDOUT] deploying process definition: file=feb5-feb5-process.zip
| 13:50:25,307 WARN [JDBCExceptionReporter] SQL Error: 547, SQLState: 23000
| 13:50:25,307 ERROR [JDBCExceptionReporter] The INSERT statement conflicted with the FOREIGN KEY constraint "FK_TO_QUERY"
| . The conflict occurred in database "OldJbpm", table "dbo.BPEL_SCRIPT", column 'ID_'.
| 13:50:25,307 INFO [STDOUT] could not deploy process definition: feb5 could not insert: [org.jbpm.bpel.graph.basic.assig
| n.ToVariable]
| 13:50:25,317 ERROR [STDERR] D:\Program Files\Serena\Business Mashups\Common\jboss405\server\default\work\jboss.web\local
| host\mashupmgr\alf\78740638-9c44-4da2-b182-8a50503206fd\feb5\build.xml:358: ERROR: Axis fault - Transport error: 400 Err
| or: Bad Request
| 13:50:25,317 ERROR [STDERR] at org.jbpm.bpel.ant.DeployProcessTask.execute(DeployProcessTask.java:125)
| 13:50:25,317 ERROR [STDERR] at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
| 13:50:25,317 ERROR [STDERR] at org.apache.tools.ant.Task.perform(Task.java:364)
| 13:50:25,317 ERROR [STDERR] at org.apache.tools.ant.Target.execute(Target.java:341)
|
Any idea about what could be causing this error?
Thank you,
Meghana
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4126778#4126778
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4126778
18 years, 2 months
[Installation, Configuration & DEPLOYMENT] - Re: Deploying MyApp as default application on JBoss server
by PeterJ
Two things.
First, use the -b run option to bind the app server to your IP address. For example (assuming your IP address is 123.123.123.123):
./run.sh -b 123.123.123.123
Note that only URLs for that IP address will work (that is, localhost will no longer work). If you want localhost to work also, use 0.0.0.0 as the IP address:
./run.sh -b 0.0.0.0
Second, to change the context name (get rid of the MyApp in the URL), for your application add a jboss-web.xml file to the WEB-INF directory of your war file and set the following:
<jboss-web>
| <context-root>/</context-root>
| </jboss-web>
Or if you have an ear with an application.xml, you could set the context there.
In addition, remove the existing root application, you can find it at server/xxx/deploy/jboss-web.deployer/ROOT.war. Either remove that whole directory, or change its context root to something other than "/".
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4126769#4126769
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4126769
18 years, 2 months