Re: wm=no[JBoss-user] Jboss web site

2001-09-19 Thread Jim Downing
Yep, but the forums still work. jim - Original Message - From: "Kemp Randy-W18971" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, September 19, 2001 6:09 PM Subject: wm=no[JBoss-user] Jboss web site > Anyone besides me having trouble getting to www.jboss.org today? > >

Re: wm=no[JBoss-user] JW JAAS article;JB-2.4.1_TC_3.2.3: auth. process not quite right

2001-09-14 Thread Jim Downing
Hi David, I had the same problem. I think that the cause was a rogue space on the end of the line 'java=echoman ' in users.properties. jim - Original Message - From: "David M. Karr" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, September 14, 2001 3:23 AM Subject: wm=no[JBoss-

[JBoss-user] ejbFindByPrimaryKey intercepted?

2001-08-09 Thread Jim Downing
Hi all, hopefully a quick question: - Are calls to an entity bean's ejbFindByPrimaryKey method intercepted by JBoss for cached beans? My ejb code (PersonEJB.java): - ... public String ejbFindByPrimaryKey(String key) throws FinderException { System.out.println("In ejbFindByPK(string)");

Re: wm=noRe: [JBoss-user] Stand alone tomcat

2001-08-07 Thread Jim Downing
Hi, I copied the jndi.properties into TOMCAT_HOME/classes and the lookup now works. This presumably means that JBOSS is now the default naming context for all webapps on Tomcat (unless they explicitly define one or manage to get their webapps to read the jndi.properties in WEB-INF/classes). This i

[JBoss-user] Stand alone tomcat

2001-08-06 Thread Jim Downing
Hi all, I'd really appreciate some help understanding how to make jndi.properties in a webapp point at the jboss naming service. I have a web app that deploys and runs fine on the integrated JBoss/tomcat stack. I'm trying to reconfigure this so that tomcat runs independently. My problem is in ob

Re: [JBoss-user] ClassNotFoundException

2001-06-27 Thread Jim Downing
et.findClass(MLet.java:800) > > is the JBoss server class loader. > > - Original Message - > From: "Jim Downing" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Tuesday, June 26, 2001 4:08 AM > Subject: [JBoss-user] ClassNotFoundException &

Re: [JBoss-user] ClassNotFoundException

2001-06-26 Thread Jim Downing
> >Hi all, > > [snip] > >This is packaged in a WAR file that includes WEB-INF/lib/interfaces.jar > >containing PersonHome.class. > >I'm running with tomcat embedded, so the war file is packaged with the EJB > >jars into an ear file. The ear file deploys fine. > > > Do you have it in the classpath

[JBoss-user] ClassNotFoundException

2001-06-26 Thread Jim Downing
Hi all, I'm having problems hunting down the source of a ClassNotFoundException thrown while running a web app that uses EJBs. First off the client code (edited for the sake of brevity): - package com.paribus.hemlatta.clients.people; ... import com.paribus.hemlatta.interfaces.data.*; public fin

[JBoss-user] Deployment config

2001-06-06 Thread Jim Downing
the client running in an embedded servlet engine? If so, is there a good way for the client code to determine whether it is running embedded or not, or to use a properties file to achieve the same thing? Is there a way to configure tomcat to point at an external naming service? thanks, jim Jim D

Re: [JBoss-user] tools for ear

2001-05-23 Thread Jim Downing
D]> Sent: Wednesday, May 23, 2001 12:32 PM Subject: Re: [JBoss-user] tools for ear > > On Wed, 23 May 2001, Jim Downing wrote: > > > Yes, Ant can. The ejbjar task is one of the optional tasks. > > AFAIK that task only produces ejb jars and not ear files. An ear file is >

Re: [JBoss-user] tools for ear

2001-05-23 Thread Jim Downing
Yes, Ant can. The ejbjar task is one of the optional tasks. jim - Original Message - From: "ALex Loubyansky" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, May 23, 2001 11:24 AM Subject: [JBoss-user] tools for ear > Hello! > > can anyone suggest me a tool for creating e

[JBoss-user] ejbLoad difference between Sun RI and JBOSS

2001-05-21 Thread Jim Downing
Hi, We recently had a problem with a finder method that we thought was a really stupid error, but turned out not to be. The ejbLoad method of one of our BMP Entity beans was written using the Sun tutorial 'AccountEJB' bean as an example. This example doesn't call context.getPrimaryKey(), but our

Re: [JBoss-user] ejbFinder problem

2001-05-17 Thread Jim Downing
Yes, exactly so. I should have made it clear, sorry. The naming convention is XXXHome and XXX are the home and remote interfaces, and XXXBean is a value object that conforms to the JavaBean spec (required further on in the app). The id field is constrained as a primary key - I was under the impre

Re: [JBoss-user] ejbFinder problem

2001-05-16 Thread Jim Downing
To: <[EMAIL PROTECTED]> Sent: Wednesday, May 16, 2001 6:12 PM Subject: RE: [JBoss-user] ejbFinder problem > I believe you are suppose to use PortableRemoteObject narrow on items in a > collection. > > > -Original Message- > > From: [EMAIL PROTECTED] > &

[JBoss-user] ejbFinder problem

2001-05-16 Thread Jim Downing
Hi all, I'm trying to implement a findAll method for my BMP entity bean. Sometimes it works fine, sometimes a FinderException is thrown when calling business methods on the Remote interfaces in the returned collection: e.g. Collection all = home.findAll(); Iterator i = all.iterator();

Re: [JBoss-user] Postgres woes: solution

2001-05-11 Thread Jim Downing
I found the solution to my problem. It raises a minor database portability issue. The root of the problem turned out to be a NullPointerException that the PGSQL driver threw in ejbStore. It turns out that although Oracle is OK with: PreparedStatement.setObject(x, null, Types.TYPE); PostgreSQL

[JBoss-user] Postgres woes

2001-05-09 Thread Jim Downing
Hi, I'm trying to port our J2EE app from NT/Oracle to Debian/Postgresql. The postgres datasource is connecting fine on startup, but when any ejbCreate method is called (i.e. an INSERT is called) postgresql throws this: java.lang.reflect.UndeclaredThrowableException: javax.transaction.RollbackExc

Re: [JBoss-user] EJB question

2001-05-04 Thread Jim Downing
Check out www.activescript.co.uk for a non-free ($99) component to generate unique ids. The author has also posted the pattern on theserverside.com, so you have something to work to if you want to implement it yourself. jim - Original Message - From: "Ralph Jensen" <[EMAIL PROTECTED]> To

Re: [JBoss-user] choosing a database

2001-05-03 Thread Jim Downing
Is there a web resource with the results of this test? If so could you post the url please? jim >>> Interbase : www.interbase.com They came in 2. on a major German source test. (Right after Oracle - but ahead of MySQL and MSSQL) JBoss won 2. place in open-source (after Tomcat!) <<<

Re: [JBoss-user] STRUTS-Examples problems under integrated Tomcat3.2.1

2001-05-02 Thread Jim Downing
If you had the same problem as me it's because your classpath doesn't include JAVA_HOME/lib/tools.jar; javac is needed to compile the jsps in the example. The startup script for stand-alone tomcat probably sets this classpath for you. jim - Original Message - From: "Chris Seldon" <[EMAIL

Re: [JBoss-user] Build-up of INACTIVE oracle connections

2001-04-20 Thread Jim Downing
When do your beans connect? I had the same problem when connecting in setEntityContext (possibly due to beans caching? I don't know!). Connecting in the bean methods cured it. jim - Original Message - From: "Richard Conway" <[EMAIL PROTECTED]> To: "JBoss User List" <[EMAIL PROTECTED]> S

Re: [JBoss-user] EjbStudio

2001-04-18 Thread Jim Downing
A genuine (if naive) question: Apart from the GUI, why is this better than (or different to) Ant? Jim - Original Message - From: "Peter Routtier-Wone" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, April 18, 2001 2:37 PM Subject: [JBoss-user] EjbStudio > I've already moot

Fw: [JBoss-user] Deployment problem - can't find resource manager

2001-04-17 Thread Jim Downing
Repost - can anybody help? thanks, Jim - Original Message - From: "Jim Downing" <[EMAIL PROTECTED]> To: "jboss-user" <[EMAIL PROTECTED]> Sent: Thursday, April 12, 2001 1:07 PM Subject: [JBoss-user] Deployment problem - can't find resource manager &g

[JBoss-user] Deployment problem - can't find resource manager

2001-04-12 Thread Jim Downing
jboss.xml: false AccountEJB MyAccount jdbc/OracleDS java:/OracleDS Thanks in advance, Jim Jim Downing [EMAIL PROTECTED] ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourc

[JBoss-user] Library functions in JBoss

2001-04-10 Thread Jim Downing
Hi, The app I'm working on requires a library jar (JUnitCore.jar, a jar of junit classes, incidentally). When I package it as an ear file with JUnitCore.jar in the library directory it deploys fine under the Sun reference implementation. The only way I can get it to work under jboss is to copy JUn