[Installation, Configuration & DEPLOYMENT] - Problem in deployment : MBeans waiting for other MBeans
by venuc_vgp
We are migrating our j2ee application from weblogic platform to Jboss4.0.1 for development purpose.
There is no problem in Jboss initial setup.
When i deploy my application its giving below error, and its failing.
MBeans waiting for other MBeans:
ObjectName: jboss.web.deployment:id=1284123126,war=MyApp.war
state: FAILED
I Depend On:
Depends On Me: org.jboss.deployment.DeploymentException: URL file:/D:/jboss-4.0.1sp1/server/default/tmp/deploy/tmp63326
MyApp-exp.war/ deployment failed
ObjectName: jboss.web.deployment:id=-616563590,war=Login.war
state: FAILED
I Depend On:
Depends On Me: org.jboss.deployment.DeploymentException: URL file:/D:/jboss-4.0.1sp1/server/default/tmp/deploy/tmp63327
Login-exp.war/ deployment failed
MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM:
ObjectName: jboss.web.deployment:id=1284123126,war=MyApp.war
state: FAILED
I Depend On:
Depends On Me: org.jboss.deployment.DeploymentException: URL file:/D:/jboss-4.0.1sp1/server/default/tmp/deploy/tmp63326
MyApp-exp.war/ deployment failed
ObjectName: jboss.web.deployment:id=-616563590,war=Login.war
state: FAILED
I Depend On:
Depends On Me: org.jboss.deployment.DeploymentException: URL file:/D:/jboss-4.0.1sp1/server/default/tmp/deploy/tmp63327
Login-exp.war/ deployment failed
Note: We have used EJB client call in our application.
Please help me to resolve this issue.
-V
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4085870#4085870
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4085870
18 years, 10 months
[JBoss Seam] - Re: Gavin King: Bad tools of Seam is kill its uses!!!
by ybxiang.wolf
"tony.herstell(a)gmail.com" wrote : This may not be what you require but I dont use Ant or Seam tools at all.
|
| I use
| MyEclipse
|
| Create an EJB3 project and Map the correct files to thew correct "sub" projects (Ear, Jar and War).
|
| I simply tell MyEclipse where the JBoss Server is and hit 1 button to run the server (the project is automgically deployed for me by MyEclipse using something called exploded deployment).
|
| The server output (console) is in a MyEclipse window and I can just add in breakpoints and step through the running code within MyEclipse.
|
| I could not be simpler.
|
|
| However; Ant is IDE Neutral so you are going to stuck with Ant from the Seam team as Ant makes sense (I even use it to build the demos to find which files to move where)!
|
| It Really COULD NOT be easier... I very rarely re-start the server either as any code cahnges are to the "running code"... so you just make a change to the code and carry on.. VERY useful with your JSF pages!
|
Thanks for your suggestive reply!
Yes, I can resolve all problems listed above through all kinds of methods.
But why cann't JBossTool do as well as netbeans about Seam-plugin???
How can i persuade those seam-freshers and my boss to use Seam?
They agree that Seam is good, but will not use it. They still use struts/JSF.
Netbeans 5.5' Seam-Plug in is really wonderful!!! But netbeans allways die without any reason. I give it enough memory! This plug-in cann't be used in NetBeans 6.0. And new seam-plugin for netbeans cann't be found.
And my team use Eclipse and refuses to use netbeans!!! And...my lovely seam cann't be accept by my boss!
Now, i use Seam combining Ant to develop little project for my friend. That's enough for me.
Maybe many months later, good seam-related tool will be developed for us. I will try to persuade my boss to use Seam again.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4085868#4085868
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4085868
18 years, 10 months
[JBoss Seam] - Noob conversation confusion
by nickarls
Hi,
Is there a way of ending a conversation and starting another at the same time? I have a case that looks like the hotel booking example where I have a page scoped list of orders and then selecting an order @Begin:s a long running conversation.
The problem is that I can't start a fresh conversation when selecting another order. I either have to join the existing (and manually refreshing all lists etc. that are order-specific) or nest it (which isn't really natural, haven't even tried it).
I tried ending and then starting the conversations through the API but still no go (@End and @Begin on the same method didn't seem to work, either). The conversations are "parallell", when you select another order the order-specific lists should be null and go through the normal factories).
Also in pages.xml I have
| <page view-id="/login.xhtml">
| <navigation>
| <rule if="#{identity.loggedIn}">
| <begin-conversation/>
| <redirect view-id="/order.xhtml"/>
| </rule>
| </navigation>
| </page>
|
So I thought I would enter the application in a new long running conversation but that doesn't seem to be the case. And the "order" object showing in the view hasn't gone through the @Factory("order") I have in my backing bean either.
There seems to be a learning curve with Seam (as with most things) but I think it will be worth the while to hang in there...
Thankful for any assistance/theories on the issues,
-Nik
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4085867#4085867
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4085867
18 years, 10 months