In the released beta there should be a preference page (window -> preferences -> jboss ide -> jboss servers) in which you can select your server and set both its timeout duration and its action upon timeout.
JBoss IDE polls the jboss server using twiddle, a JMX-based executable that comes with jboss installations. If the twiddle results come back as the server being down for an extended length of time (the timeout), or if twiddle simply cannot be found, in the preferences you have two choices: abort the startup and set it as failed, or ignore the failure and set the server as started.
In the JBoss Servers View, you can also look at the event log (as well as open the properties view) to see what exactly is going on with the server startup / shutdown process. An example of this is here:
http://oxbeef.net/image/code/jbsv_w_properties_7_18_06.JPG
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3971014#3971014
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3971014
Hi,
Is it possible to use Interfaces for OneToOne relations?
For example (Pseudocode):
| Entity A implements MarkerInterface {}
| Entity B implements MarkerInterface {}
| Entity C {
| MarkerInterface something;
| }
|
I know that its possible to use Inheritance, but im unable to use the same BaseClass in A and B.
I just want to avoid this:
| Entity class C {
| A a;
| B b;
| }
|
Where its only allowed to set a or b instead.
thx for your help,
Bernhard
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3971009#3971009
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3971009
Hello All,
According to the documentation, one of the way I can install jboss 4.0.4GA that support is choose all profile in installation process. I want to install the configuration that is full J2EE 1.4 support plus EJB3, so I did chose the all profile but when deploying EJB 3.0, it throws an exception that says ejbe.deployer not found. I know it works if I installed jboss as ebj3 or ejb-clusted profile. but I want the full j2ee1.4 stacks to be installed. I even installed the ejb-clustered profile after I installed the all profile but that throws a lot of exception in the jboss startup. any suggestion as to how I can accoplish what I want?
| thanks.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3971007#3971007
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3971007
hello,
when I wrote this :
| System.out.println("test pour voir tasks");
| Collection tasks= (Collection) swimlane.getTasks();
| Iterator ittasks= tasks.iterator();
| while(ittasks.hasNext()){
| TaskInstance task=(TaskInstance)ittasks.next();
| System.out.println("tache de ernie: "+task.getName());
| }
I have a nullpointeur error (particularly on swimlane.getTasks())
have you some ideas why?
have i forgotten anything ??
thanks
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3971005#3971005
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3971005