Re: [jBoss-User] IE v 5.50.4522.1800 - Session scope errors (jsp)

2001-03-15 Thread Luan O'Carroll
If the session ID is being stored with session cookies in the browser then you may get problems if a new window is opened. There is a setting "Launch browser windows in a new process" that affects the session cookies. Also the security settings include an option to disable session cookies. If

Re: [RE: [jBoss-User] Free/ Open Source IDE foe EJB]

2001-02-14 Thread Luan O'Carroll
Hurrah!! Three cheers for that. I agree totally. Sorry that I don't have time to contribute more but I learn alot from you the real JBoss players. I didn't know what to make of that guy's posts but I certainly found them annoying. Keep up the goo work Marc!!! Regards Luan - Original

Re: [jBoss-User] JBOSS T-SHIRTS: Who wants one?

2000-11-15 Thread Luan O'Carroll
I'll take 2 -Original Message- From: John D. McDonald [mailto:[EMAIL PROTECTED]] Sent: mercoledì 15 novembre 2000 2:55 To: jboss list Subject: [jBoss-User] JBOSS T-SHIRTS: Who wants one? Mark, Can you send me the logo that you had(for J1) on the t-shirts? I'll get them printed

Re: [jBoss-User] Tomcat Binary followup comment/question

2000-09-07 Thread Luan O'Carroll
Hi Greg In the CVS JNDIContext.java the initialContext is obtain with the following /** * Return the initial context * @return the JNDI initial context */ public InitialContext getInitialContext() { InitialContext ic = null; try { // Hashtable h = new Hashtable(); //

Re: [jBoss-User] PR_4 doesn't work..

2000-08-21 Thread Luan O'Carroll
- Original Message - From: "John D. McDonald" [EMAIL PROTECTED] To: "jBoss" [EMAIL PROTECTED] Sent: Monday, August 21, 2000 6:07 AM Subject: Re: [jBoss-User] PR_4 doesn't work.. Well, that's the wierd part, what I gave you is all the server spit out. That's the whole thing. I

Re: [jBoss-User] problem with create

2000-08-14 Thread Luan O'Carroll
From: "marc fleury" hey, send me your jar privately so I can test it, I suspect something silly:) marc Correct! It was something silly, I had a spelling mistake for an ejb-name in the assembly-descriptor. Fortunately the new meta-inf stuff threw an exception and enabled me to track it down.

Re: [jBoss-User] problem with create

2000-08-11 Thread Luan O'Carroll
manager] Stopped [Security manager] Destroying [Security manager] Destroyed [DataSource] Stopping Shutting done -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Luan O'Carroll Sent: Thursday, August 10, 2000 12:14 PM To: jBoss Subject: [jBoss-User

[jBoss-User] problem with create

2000-08-10 Thread Luan O'Carroll
I can run the TestBeans without problem but I'm still having problems with the latest cvs. I get the following when I call create(...) [Default] org.jboss.tm.TxManager@392814 [IndexSystem] java.lang.NullPointerException at

Re: [jBoss-User] column not found? (MORE INFO)

2000-08-10 Thread Luan O'Carroll
There's a database manager sort of thing shipped with hypersonic, just downloaded it yesterday, don't know how well it works. You can get it at http://hsql.oron.ch/ - Original Message - From: "Tim Drury" [EMAIL PROTECTED] To: "'jBoss'" [EMAIL PROTECTED] Sent: Thursday, August 10, 2000

Re: [jBoss-User] Tomcat Integration

2000-08-08 Thread Luan O'Carroll
I put the following in the run.bat file set CLASSPATH=%CLASSPATH%;%TOMCAT_HOME%\lib\jasper.jar;%TOMCAT_HOME%\lib\serlvet .jar;%TOMCAT_HOME%\lib\webserver.jar;%TOMCAT_HOME%\lib\xml.jar just after the line :gotTomcatHome - Original Message - From: "Ken Jenks" [EMAIL PROTECTED] To:

Re: [jBoss-User] Limiting the number of database connections

2000-08-02 Thread Luan O'Carroll
Thanks, I got the blocking to work... I checked the Minerva link as you suggested but the settings for the JCML file don't appear to be included. I did however find a file in the CVS "minerva.html" that contained some details. My problem was that the finder methods returned references to a

Re: [jBoss-User] Limiting the number of database connections

2000-08-02 Thread Luan O'Carroll
I was using the JDataConnect driver from Netdirect (www.softsyn.com I think?). AFAIK it's not an XA driver and I was using it via a URL. If you're using a JDBC1 or JDBC2 driver, then this is the bug where you should always get the same connection when you make multiple requests as part of

Re: [jBoss-User] database connection for BMP Entity Bean

2000-08-01 Thread Luan O'Carroll
Thanks for that... I had to do much of the jboss.xml setup manually but I've got most of the Webstore running with JBoss2 and SQL Server :-) I still have a problem with the finders and get the following exceptions, when ejbLoad is called for the second and subsequent times (it works OK the first

Re: [jBoss-User] Need Help with Monson-Haefel EJBBookTitanExamples

2000-07-31 Thread Luan O'Carroll
Does your jboss.xml contain an entry for the "Default EntityBean" configuration? - Original Message - From: "Ken Jenks" [EMAIL PROTECTED] To: "jBoss" [EMAIL PROTECTED] Sent: Monday, July 31, 2000 2:01 AM Subject: Re: [jBoss-User] Need Help with Monson-Haefel EJB BookTitanExamples Now

[jBoss-User] database connection for BMP Entity Bean

2000-07-31 Thread Luan O'Carroll
In the testbeans the BMP Entity Bean gets a connection as follows Connection connection = ((DataSource) namingContext.lookup("java:comp/env/jdbc/myDatabase")).getConnection(); and the ejb-jar.xml file contains resource-ref descriptionA jdbc connection for the BMP

RE: [jBoss-User] Stateful Session Bean Support

2000-07-27 Thread Luan O'Carroll
I did some further checking and it seems that if a (partial/incomplete) jboss.xml file is present then jboss uses onlythose configurations found in the jboss.xml file and fails to find the default configurations. org.jboss.ejb.ContainerFactory.java#381 conf =

Re: [jBoss-User] Stateful Session Bean Support

2000-07-27 Thread Luan O'Carroll
marc fleury wrote: mm just checked it on my installation with org.jboss.ejb.ContainerFactory.java#381 conf = jar.getContainerConfigurations().getContainerConfiguration(DEFAULT_STATEFUL_ CONFIGURATION); and System.out.println("The configuration is "+conf); and I get The

[jBoss-User] NameNotFoundException

2000-07-17 Thread Luan O'Carroll
I have a bean with the following descriptor entity descriptionCustomerBean/description ejb-nameCustomerBean/ejb-name homeasd.ejb.orders.interfaces.CustomerHome/home remoteasd.ejb.orders.interfaces.Customer/remote ejb-classasd.ejb.orders.server.CustomerBean/ejb-class