I tried to follow http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossSeamGettingStartedGuideStep6 . Everything works as being described but my attempt to publish to jboss AS yields the following message:
| org.jboss.deployment.DeploymentException: Failed to find module file: jboss-seam.jar
|
When I comment out the following line in application.xml:
| <module>
| <java>jboss-seam.jar</java>
| </module>
|
I get a corresponding message regarding the next missing module namely jbpm-3.1.1.jar which is also present in application.xml
I'm using callisto, jboss-seam-1.0.1.GA, jboss eclipse ide 2.0.0.Alpha1a (complete bundle installed) and jems-installer-1.2.0.BETA.jar
I tried to follow the tutorial as close as possible. Am I missing something?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3975617#3975617
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3975617
Also, lets talk a little about the web-console, and about jmx-console ...
Plz my brethren jboss folks, take a moment and look at your console design, maaaan ... you couldn't pay me to make such ugly azz stuff.
Its like you were hit over the head with a club as you coded up the page.
Or you were paid to make it as lame as possible by brilliant anti-aesthetes.
Or you're sense of style is so out there that only a cyclop with bifoculs would enjoy it.
Which one is it buddies?
I suppose the $250ML from redhat didn't acquire you a couple of mac guys in black tshirts that could do this stuff in their sleep...
lol
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3975614#3975614
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3975614
i just modified a little the code of startProcessInstance method in the HomeBean, i just put a decisions, but the code for to create the task instances is the same:
| // create a new process instance to run
| ProcessInstance processInstance = new ProcessInstance(processDefinition);
|
| // create a new taskinstance for the start task
| TaskInstance taskInstance = processInstance.getTaskMgmtInstance().createStartTaskInstance();
|
| // Save the process instance along with the task instance
| jbpmContext.save(processInstance);
|
| // Fill the task backing bean with useful information
| taskBean.initialize(taskInstance);
|
| return "task";
|
Thanx
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3975608#3975608
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3975608