[JBoss-user] [Beginners Corner] - Maven 2

2006-06-03 Thread pledge
I am trying to move my web projects from Ant over to Maven 2. Before I would just include the contents of the JBoss AS lib folder on my Ant classpath and everything was fine. The problem I am having is with setting up this JBoss dependency in my Maven 2 POM. There seem to be numerous entries

[JBoss-user] [Installation, Configuration & Deployment] - Re: application specific configuration data. Where is best

2005-08-22 Thread pledge
I found them on the JBoss wiki. http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossProperties You can see them printed out as some of the first lines when JBoss starts up. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3891012#3891012 Reply to the post : http://ww

[JBoss-user] [Installation, Configuration & Deployment] - Re: application specific configuration data. Where is best

2005-08-22 Thread pledge
Henrik, I have found the following system properties that will help you do what you ask. Use System.getProperty("key"); to get the required property | A second string paramater can be used to specify a default value if the key cannot be found or if it has no value e.g. System.getProperty("key",

[JBoss-user] [JBossWS] - Re: Timeout in connecting WS

2005-07-28 Thread pledge
I had this problem recently. Go to http://ip:8080/ws4ee/services When you hover over the wsdl link see if it pointing to the correct ip address or its internal hostname. If it is not the ip address go to deploy/jboss-ws4ee.sar/META-INF/jboss-service.xml Edit to be the external IP address. View

[JBoss-user] [JBossWS] - Re: xml encription and signature in JBossWS

2005-07-28 Thread pledge
Is there a guide to using the new xml security? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3887073#3887073 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3887073 -

[JBoss-user] [Beginners Corner] - Re: Schedulable MBeans

2005-07-25 Thread pledge
Another problem that I am having is if I try to have the scheduler startup on server startup. The constructor of my MBean is getting a database connection from a JNDI pool, but it is starting before the JNDI database pools have been set up. Can I change the startup order so schedules start aft

[JBoss-user] [Beginners Corner] - Schedulable MBeans

2005-07-25 Thread pledge
I have written a schedulable mbean based on the documention in the JBoss AS guide. It is a basic mailbox checker and pgp decrypter. I have the mbean up and running. My question is about my constructor. In it I am reading an xml properties file and exceptions are thrown if it is malformed. O