[JBoss-user] HOWTO: Configure Windows 2000 Server for high-end JBoss-Tomcat

2003-09-01 Thread Sheldon Hearn
As promised, here are my notes on getting a serious JBoss-Tomcat deployment functional on Windows 2000 Server, assuming you aren't in a position to use a real operating system. So I've finally managed to get JBoss-Tomcat working on a dual-Xeon 4GB Windows 2000 server. The problems were: 1) Use o

Re: [JBoss-user] HOWTO: Call an EJB from an Oracle Java Stored Procedure

2003-06-14 Thread Guy Rouillier
Sure, I'd be willing to help with this, since I'm benefiting from it. Two additional thoughts came to mind after I sent my last message: (1) Your steps said to load the EJB into Oracle. Technically, you just want to load the home and remote interfaces, and not the bean class. With versions 2.

Re: [JBoss-user] HOWTO: Call an EJB from an Oracle Java Stored Procedure

2003-06-14 Thread Nicholas
I wrote the OracleLoadJava task. I just have not got around to submitting it. I wanted to write a whole set of PL/SQL-JBoss services so I figured I would just load the whole JBoss client dir, but I also noticed a large number of invalid classes. I think we just have to ramp up the complexity of

Re: [JBoss-user] HOWTO: Call an EJB from an Oracle Java Stored Procedure

2003-06-12 Thread Guy Rouillier
Nicholas, I finally got around to trying this, and it works - thanks! I struggled with this for about 6 months and got nowhere (including working with someone inside Oracle!) I had to go through several iterations and fix missing permissions identified in udump. I really should delete all Ja

Re: [JBoss-user] HOWTO: Call an EJB from an Oracle Java Stored Procedure

2003-06-10 Thread Stefano Maestri
Cool! It works. Thanks a lot On Monday 09 June 2003 12:10, Nicholas wrote: > I went back to reproducs this, and the process was > this using > Windows XP Professional > JBoss jboss-3.2.0_tomcat-4.1.24 > Oracle Enterprise Version 9.2.0.1.0 > > 1. LoadJava the entire JBoss Client Jar colle

[JBoss-user] HOWTO: Call an EJB from an Oracle Java Stored Procedure

2003-06-09 Thread Nicholas
I went back to reproducs this, and the process was this using Windows XP Professional JBoss jboss-3.2.0_tomcat-4.1.24 Oracle Enterprise Version 9.2.0.1.0 1. LoadJava the entire JBoss Client Jar collection into SCOTT.

Re: [JBoss-user] Howto get server/container (real) name/id ? request.getServerName()does not...

2002-12-06 Thread David Ward
Joao, Because IP_LIB fronts the actual servers, it is correct behavior that request.getServerName() returns IP_LIB. This way, you can use the request to build URLs to forward with that the client will actually be able to access. Now, if you want to know the *actual* server the app is running

[JBoss-user] Howto get server/container (real) name/id ? request.getServerName() does not...

2002-12-06 Thread jpcl
I think this is server specific, and not java standart so.. forgive me if I'm wrong: I would like to report the server name in my servle output, something like "request receive by 'server1'" I tried to use the "request.getServerName()" but this reports the name of the server asked in the request.

[JBoss-user] howto layout mbeans and ejb's in template

2002-10-19 Thread Marco Dubbeld
How should I use the template when developing a package with EJB's and MBeans together. Should I build all the classes for MBeans and EJB's under src/main/ in org..yyy etc? Or should I make subtree: src/main/ejb and org..yyy for all ejb's and src/main/jmx and org..yyy for all mbeans a

Re: [JBoss-user] Howto handle Alternate keys in EJB 2.0 CMP

2002-07-28 Thread Asif Ahmed
> Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] Howto handle Alternate keys in EJB 2.0 CMP Date: Sat, 27 Jul 2002 18:59:29 -0500 What is an Alternate key? -dain Asif R. Ahmed wrote: >All: > Has anybody an Idea how to handle the Alternate keys ele

Re: [JBoss-user] Howto handle Alternate keys in EJB 2.0 CMP

2002-07-27 Thread Dain Sundstrom
What is an Alternate key? -dain Asif R. Ahmed wrote: > All: > > Has anybody an Idea how to handle the Alternate keys elegantly as the > Primary Keys are handles in ejb2.0. > > What is an elegant solution to handle alternate keys in ejb2.0 using > cmp. When I set a CMP field which represent

[JBoss-user] Howto handle Alternate keys in EJB 2.0 CMP

2002-07-26 Thread Asif R. Ahmed
All:   Has anybody an Idea how to handle the Alternate keys elegantly as the Primary Keys are handles in ejb2.0.   What is an elegant solution to handle alternate keys in ejb2.0 using cmp. When I set a CMP field which represents an alternate key to a already existing value I get javax.ejb.E

Re: [JBoss-user] HOWTO: Castor 0.9.3.9 with JBoss 2.4.4

2002-02-02 Thread Oleg Nitz
Thanks Emil, Information for those who want to save time: Patrick van Kann provided the binary dowload http://www.arcsin.co.uk/downloads/castorjdoplugin.jar Oleg On Friday 01 February 2002 20:27, you wrote: > Hi, > > I wrote to the list a couple of weeks ago with problems getting the > latest

[JBoss-user] HOWTO: Castor 0.9.3.9 with JBoss 2.4.4

2002-02-01 Thread Emil Eifrem
Hi, I wrote to the list a couple of weeks ago with problems getting the latest stable Castor (0.9.3.9) to work with JBoss 2.4.4. Well, I sorted it out eventually but didn't find any time to write down the procedure and send it off to the list. The basic procedure involves getting the latest know

[JBoss-user] howto readonly particular cmp fields

2001-09-17 Thread David Ward
I have a CMP 1.1 Entity with some fields who have both set and get methods, and some with just gets (both in the remote interface and bean class). However, on create, jboss still includes those fields when it does an insert. How do I make JBoss not include those fields in the PreparedStatement

Re: [JBoss-user] [HOWTO] Autoincrementing Primary Key with CMP

2001-06-28 Thread Konstantin Priblouda
--- Nicolai P Guba <[EMAIL PROTECTED]> wrote: > Hello Folks > > This question comes up again and again and I must > admit that it was a > pretty awkward thing for myself to figure out. > > Big hand to Danch for pointing me in the right > direction. What he > suggested works very well, so I've

[JBoss-user] [HOWTO] Autoincrementing Primary Key with CMP

2001-06-28 Thread Nicolai P Guba
Hello Folks This question comes up again and again and I must admit that it was a pretty awkward thing for myself to figure out. Big hand to Danch for pointing me in the right direction. What he suggested works very well, so I've knocked up a quick Test CMP bean for proof of concept. I reckon

RE: [JBoss-user] howto for a webapp.

2001-06-11 Thread Allen Fogleson
AIL PROTECTED]]On Behalf Of mroosendaal Sent: Monday, June 11, 2001 8:21 AM To: [EMAIL PROTECTED] Subject: [JBoss-user] howto for a webapp. You should not use WEB-INF for your JSP's, as that directory is for private resources... the public resources (protected by security or not should go in th

[JBoss-user] howto for a webapp.

2001-06-11 Thread mroosendaal
Hi   I'm trying to create a small webapp which uses an EJB and MySQL, but i'm not really sure on how the directory structure should look (where to put the servlet). Is there a way to create an .ear file at once or do you have to do this in stages. This is the dir-structure i've got now: root

Re: [JBoss-user] HOWTO get web app relative file system path from a JSP (was (no subject))

2001-05-07 Thread Steve Swing
- Original Message - From: "Felix Munoz" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, May 07, 2001 4:25 am Subject: [JBoss-user] (no subject) > Hello: > > I am having a problem running a JSP and I was hoping for some advice. I am > running embedded Tomcat. > > I have the fo

Re: [JBoss-user] howto

2001-04-02 Thread Ian McCallion
t; HTH, > > Chris > > > > > -Original Message- > > > From: Ian McCallion [mailto:[EMAIL PROTECTED]] > > > Sent: Monday, 02 April 2001 14:20 > > > To: [EMAIL PROTECTED] > > > Subject: [JBoss-user] howto > > > > > > &g

Re: [JBoss-user] howto

2001-04-02 Thread Christopher Albert
From: Ian McCallion [mailto:[EMAIL PROTECTED]] > > Sent: Monday, 02 April 2001 14:20 > > To: [EMAIL PROTECTED] > > Subject: [JBoss-user] howto > > > > > > I'm trying to use jboss 2.1 for a small project. How do I > > create a database > > using Instant

RE: [JBoss-user] howto

2001-04-02 Thread Kimpton,C (Chris)
D] > Subject: [JBoss-user] howto > > > I'm trying to use jboss 2.1 for a small project. How do I > create a database > using InstantDB or Hypersonic? Are there instructions I've > missed? Apologies if > so. > >

[JBoss-user] howto

2001-04-02 Thread Ian McCallion
I'm trying to use jboss 2.1 for a small project. How do I create a database using InstantDB or Hypersonic? Are there instructions I've missed? Apologies if so. Ian McCallion Alexis Systems Limited Romsey, UK ___ JBoss-user mailing list [EMAIL PROTECTED