[JBoss-user] database schema error

2003-12-08 Thread forge
Hello, everyone I developed a J2EE project by jbuilder9 + jboss 3.2.2, The deployment has succeeded but when I tested, it reported SQL: DB2ADMIN.user undefined name error. The user table has been created but its schema name is employee, I am using DB2 as my database and account is

RE: [JBoss-user] Multihome JBoss Issue

2003-12-08 Thread Rod Macpherson
I have a third-party tool that runs as a stand-alone Java application that uses the JNDI port although it's not accessing or supplying JNDI connections. This is not related to the problem with non-no-arg InitialContexts because it has not been running while JBoss is running. It's a known issue

Re: [JBoss-user] database schema error

2003-12-08 Thread Alexey Loubyansky
This is a known issue. No way, at the moment. forge wrote: Hello, everyone I developed a J2EE project by jbuilder9 + jboss 3.2.2, The deployment has succeeded but when I tested, it reported SQL: DB2ADMIN.user undefined name error. The user table has been created but its schema name is

Re: [JBoss-user] database schema error

2003-12-08 Thread Adrian Brock
Try adding the following to your db2-ds.xml new-connection-sqlset schema whatever/new-connection-sql Regards, Adrian On Mon, 2003-12-08 at 07:56, forge wrote: Hello, everyone I developed a J2EE project by jbuilder9 + jboss 3.2.2, The deployment has succeeded but when I tested, it

[JBoss-user] Sybase Enterprise Portal

2003-12-08 Thread Willem Kip
Hello, Is there someone who's working with Sybase EnterprisePortal on jboss-tomcat. I've tried to get it worked, but no result. http is no problem, but when I want to use https, no more than 'page cannot be displayed'. I've set all ports to 4040 and 4443 in all xml-files. Did I

[JBoss-user] Multiple deploy of ear, how to steps

2003-12-08 Thread Brian Styles
Hi all, This list has been very helpful to me so I thought I'd write some notes on things I experienced in order to get the same application deployed and virtual hosted multiple times on jboss-3.2.2. This has been a common enough query on the lists and the forums. The application was a

[JBoss-user] NamingExceptions

2003-12-08 Thread Christofer Dutz
Hi, I am having some trouble with my ejb's. In my application I have one package peloyed which contains some entity-beans. In another package I am providing a stateless session bean. The entities and session beans are bound under the java:comp/env/ejb/ namespace. If the Xbean I wrote tries to

[JBoss-user] AWT and XServer connection issues

2003-12-08 Thread Michael Ukpong
Hi people, I have a chart drawing application running on jboss_3.2.1-tomcat_4.1.24. It runs on windows, but on Linux I get this error: Cant connect to X11 window server using ;0.0 as the value of the DISPLAY variable. The Appserver is running as ROOT on a Redhat 9 box with

[JBoss-user] jboss database schema problem

2003-12-08 Thread forge
Hello, everyone I asked a question about database schema, and Alexey Loubyansky and Adrian Brock gave me replies. Thank you very much. But the mail from sourceforge.net looked like uncomplete because I cant read the mail content, but only title. Will you please send your mail direcly to

Re: [JBoss-user] AWT and XServer connection issues

2003-12-08 Thread Simone Milani
Do you have a video card installed in the box? Simone - Original Message - From: Michael Ukpong To: [EMAIL PROTECTED] Sent: Monday, December 08, 2003 10:58 AM Subject: [JBoss-user] AWT and XServer connection issues Hi people, I have a

RE: [JBoss-user] AWT and XServer connection issues

2003-12-08 Thread Rupp, Heiko
You might try to put -Djava.awt.headless=true in your JAVA_OPTS -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]On Behalf Of Michael UkpongSent: Monday, December 08, 2003 11:58 AMTo: [EMAIL PROTECTED]Subject: [JBoss-user] AWT and XServer connection

[JBoss-user] performing tasks on application startup

2003-12-08 Thread stscit04
Hi, Is there a elegant way to perform tasks in an application after the application is deployed an started. I think of tasks such as registering objects for timer notifications Thanks in advance Stefan --- This SF.net email is sponsored

RE: [JBoss-user] performing tasks on application startup

2003-12-08 Thread Brian Styles
If your app has a web component to it you can use a listener that will notify you when the servlet context gets created. For example: public class MyListener implements ServletContextListener { private static Logger log = Logger.getLogger( MyListener .class); /** Constructs a new

Re: [JBoss-user] AWT and XServer connection issues

2003-12-08 Thread Bob Cotton
Rupp, Heiko [EMAIL PROTECTED] writes: Link: File-List You might try to put -Djava.awt.headless=true in your JAVA_OPTS If that does not work, you will need to set a DISPLAY environment variable so that swing can connect to a DISPLAY. We run VNC as a service in linux to provide a display to

RE: [JBoss-user] JMS Clustering

2003-12-08 Thread Ivelin Ivanov
See this document for a detailed description: http://www.cocoonhive.org/articles/jboss/20031125/JBoss32-hajms.html The code is simple and solid. If you describe your use case I may be able to advise whether it will work for you. Regards, Ivelin --- Sacha Labourey [EMAIL PROTECTED] wrote: I

RE: [JBoss-user] performing tasks on application startup

2003-12-08 Thread stscit04
First of all: Thank you ! Unfourtunately, my app doesn't have an web-component, so I have to find some way to do this with ejbs. I thought of doing this in the ejbCreate method, but this method doesn't get call until the first client connects If your app has a web component to it you can

[JBoss-user] Timer MBean cant handle notification dates in the past

2003-12-08 Thread stscit04
Hi, I am trying to use the Timer MBean to notify parts of my application. Sun tells me about the expected behaviour: If the timer notification to be inserted has a date that is before the current date, the method behaves as if the specified date were the current date. The first notification is

Re: [JBoss-user] Timer MBean cant handle notification dates in the past

2003-12-08 Thread Adrian Brock
jboss-3.2 implements jmx1.1 where this is not allowed. It is on the list of things to change for jboss-4/jmx1.2 http://sourceforge.net/pm/task.php?func=detailtaskproject_task_id=69394group_id=22866group_project_id=16850 Regards, Adrian On Mon, 2003-12-08 at 15:01, [EMAIL PROTECTED] wrote: Hi,

Re: [JBoss-user] AWT and XServer connection issues

2003-12-08 Thread Phil Cornelius
If you don't have (or don't want to) have an xserver running you can start up Xvfb a virtual frame buffer and then set your DISPLAY env accordingly.. this will handle the graphical context for you.. do a search for Xvfb Yours Phil On Mon, 2003-12-08 at 14:01, Bob Cotton wrote: Rupp, Heiko

RE: [JBoss-user] performing tasks on application startup

2003-12-08 Thread Rupp, Heiko
Unfourtunately, my app doesn't have an web-component, so I have to find some way to do this with Why don't you just add a simple web app that only does the init()? Heiko P.S.: www.jugs.org --- This SF.net email is sponsored by: IBM Linux

RE: [JBoss-user] performing tasks on application startup

2003-12-08 Thread stscit04
You are right, I just doesn't look elegant to me :-) I was hoping for another more elegant solution, but I will probably go for the suggested one. Thanks, Stefan Unfourtunately, my app doesn't have an web-component, so I have to find some way to do this with Why don't you just add a simple

Re: [JBoss-user] getParameterValues

2003-12-08 Thread Stephen Davidson
Greetings. I was hoping I would not need to find an alternative to JBoss. It seems my hope was in vain. But this childness has gone too far. And JBoss is not the only game in town. Marc, if and when you decide to grow up, I will be happy to look at JBoss again. At the moment, I am doing some

Re: [JBoss-user] getParameterValues

2003-12-08 Thread Juha Lindfors
ROFL!!! Poor Stefan (hello from me too btw ;-) -- Juha On Fri, 5 Dec 2003, Stephen Davidson wrote: Greetings. I was hoping I would not need to find an alternative to JBoss. It seems my hope was in vain. But this childness has gone too far. And JBoss is not the only game in town.

RE: [JBoss-user] getParameterValues

2003-12-08 Thread Rod Macpherson
Yikes! I think Marc was making a joke: pussy, tomcat. In any event if you are making business decisions based on your personal opinion of how others should behave that is your business, but, I find the support given on this thread to be second only to the quality of the product they are

Re: [JBoss-user] getParameterValues

2003-12-08 Thread Remy Maucherat
Rod Macpherson wrote: Yikes! I think Marc was making a joke: pussy, tomcat. I think James picked a great product name :) -- x Rmy Maucherat Senior Developer Consultant JBoss Group (Europe) SRL x

JBoss still at war (was Re: [JBoss-user] getParameterValues

2003-12-08 Thread Stephen Davidson
Remy Maucherat wrote: Rod Macpherson wrote: Yikes! I think Marc was making a joke: pussy, tomcat. I think James picked a great product name :) While I agree with the humor, I have noticed that the Jetty developers still have not had their access reinstated. And that is where the child like

RE: [JBoss-user] Multiple deploy of ear, how to steps

2003-12-08 Thread Rod Macpherson
How about just making a copy of your configuration and launching it bound to a different host? That way you do not have to change anything provide you are using the no-arg InitialContext. Example: 1. Create copies of your configuration folder: /jboss/server/orginal - /jboss/server/foo and

Re: [JBoss-user] JMS Clustering

2003-12-08 Thread Bruce Slawson
Ivelin, Thanks, that explains a lot. All I want to do right now is load balance my MDBs which looks like it should work fine. I will be using a shared database to persist the queues. What do I need to configure to use the JMS clustering and load balanced MDBs? Its not very clear. Also,

[JBoss-user] (no subject)

2003-12-08 Thread Lazyboy
--http://www.eyou.com --Îȶ¨¿É¿¿µÄµç×ÓÐÅÏä ÓïÒôÓʼþ Òƶ¯ÊéÇ© ÈÕÀú·þÎñ ÍøÂç´æ´¢...ÒÚÓÊδ¾¡ --http://vip.eyou.com --¿ì¿ìµÇ¼ÒÚÓÊVIPÐÅÏä ×¢²áÄúÖÐÒâµÄÓû§Ãû --- This SF.net email is sponsored by: IBM Linux Tutorials. Become an expert

[JBoss-user] RMI OVER HTTPS

2003-12-08 Thread Jeremy Rempel
Hi, I've asked this before a few months ago but no one knew. I'm gonna ask again because possibly someone will know. I cannot find it in the pay-for-docs. Which ports does jboss RMI use? Can I force it to use certain ports? I've tried using netstat to monitor ports but JBOSS keeps using random