[Installation, Configuration & DEPLOYMENT] - Re: mvn Jboss:deploy plugin issue
by PeterJ
Look at this file name:
/usr/etc/jboss/jboss-4.2.2.GA/bin/C:\mysystems-app\collaboration\trunk\mysystems-earapp\target/mysystems-earapp-1.0.ear
Notice that a Windows path got appended to a Linux path.
I do not think that the plugin is behaving in the way you want. You think that the plugin will transfer the ear file to the app server and then the app server will deploy it. Instead, what the plugin is doing is passing the path of the ear to the app server, and then the app sever is attempting to deploy the ear based on that path.
Because the path passed to the app server is not recognized as an absolute path (on Linux, absolute paths start with "/"), the app server is appending the path to the working directory, which is jboss_home/bin. Of course, the resulting file does not exists on the file server.
Other people have asked the question "how can I deploy an application to a remote server" in the forums. You might want to look up those discussions.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4179848#4179848
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4179848
17 years, 6 months
[JBoss jBPM] - Re: At end of task, return to
by woo37830
More,
In task.xhtml we have a section in an <h:form>
where <j4j:taskForm transitionTarget="#{transition}" which will cause the transition to occur and assign the task to the next actor. Then there is a <j4j:loadTask to cause the loading of the task unless the button pressed was 'cancel', Next follows the applyVariableMap, and then a mysterious <j4j:addComment. Now if I remove this, a comment is still added! It would appear as if that was the purpose of this statement, but alas!
The a <j4j:completeTask. Now here is where I think something might be altered, but I don't know how. What does navigate="false" mean? what are the <n:nav outcome="cancel" redirect="true" storeMessages="true" statements doing?
Is there a place where this is explained? I'd be glad to RTFM if I could locate one that had this translated in it!
Thanks,
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4179835#4179835
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4179835
17 years, 6 months
[JBoss Cache: Core Edition] - Re: Problems deploying POJO cache to JBoss AS 4.2.2.GA
by skaffman
The JBossCacheAsCompatibility wiki page is a bit confusing, in that it provides a sample deployable WAR file that uses JBC 2.x, but without the relevant JAR files, and does not list which JAR files from the JBC distro should be included, and which are unnecessary.
I'm trying to deploy an EAR containing JBC 2.2.0 within EAP 4.2, and when I include jboss-common-core.jar, I get ClassDefNotFoundErrors for ThreadPoolMBean, which is likely because jboss-common-core.jar eclipses some classes from JBossAS but not others, so the classloader gets into a spin.
If I omit jboss-common-core.jar, then it instead it can't find MarshalledValueInputStream, which is present in JBossAS but in a different package.
No combination of JARs from the 2.2.0, 2.1.0 or 2.0.0 distro seems to work in my EAP 4.2 when packed in an EAR.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4179834#4179834
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4179834
17 years, 6 months