[JBoss-user] Re: Hibernate or ejb

2003-03-13 Thread Kevin O'Neill
On Thu, 13 Mar 2003 18:52:39 +0100, Andreas Mecky wrote: > we are currently using hibernate in a web project. Very nice. We did some > additional code generation > and it is very handy. > > BUT: stay with your EJB-CMP. It will prevent a lot of headache. There are > certain "little things" > with

Re: [JBoss-user] Admin forced user logout

2003-03-07 Thread Kevin O'Neill
On Fri, 2003-03-07 at 21:10, KR+AME-LIK Vladim+AO0-r wrote: +AD4 Hello all, +AD4 +AD4I need give to admin possibility immediatly force logout any user +AD4 logged on JBOss. How can I do this ? Any idea ? Maybe you could call the JaasSecurityManager flushAuthenticationCache() passing the Princ

Re: [JBoss-user] Virtual machine problems

2003-02-28 Thread Kevin O'Neill
On Sat, 2003-03-01 at 06:33, Achilleus Mantzios wrote: > >> # Java VM: Java HotSpot(TM) Server VM (1.4.1_01-b01 mixed mode) > > Why dont you try blackdown's j2sdk1.4.1 and see if the problem > persists? 1.4.1_02 has also been released. > > ===

[JBoss-user] Limiting the number of MDBs

2003-02-22 Thread Kevin O'Neill
Hi, I'd like to be able to limit the number of MDB instances I have listening on a queue to one or two (the mdb's connect to the net and download largeish objects). Can anyone enlighten me on the configuration parameter I have to set (even better if there is a control from xdoclet :)) -k. -- If

Re: [JBoss-user] JBoss & Log4J

2003-02-12 Thread Kevin O'Neill
On Thu, 2003-02-13 at 01:27, Anders Engstr+APY-m wrote: +AD4 This question must have been asked a thousand times, but I still haven't +AD4 found a solution to the problem. +AD4 +AD4 We're developing an application that will be deployed on JBoss mostly, +AD4 but other application servers might be u

Re: [JBoss-user] [OS] JBoss/EJB build systems - Xdoclet with Ant,Maven, Centipede?

2003-02-10 Thread Kevin O'Neill
On Tue, 2003-02-11 at 04:53, David Jencks wrote: > On 2003.02.10 11:57 Darren Hartford wrote: > > Hi All, > > Been using Ant and Xdoclet, great tools, makes my life a LOT easier than > > good-ol' writing interfaces on my own :-) > > > > I have started migrating to the Maven build system, to suppor

Re: [JBoss-user] Performance JBOSS 2.4.x on JRE 1.3 or 1.4

2003-02-05 Thread Kevin O'Neill
On Wed, 2003-02-05 at 19:53, [EMAIL PROTECTED] wrote: > > Dear JBOSS Experts, > are there any experiences if there is a better performance of JBOSS > ejb apps running an Java engine 1.4.1 than on Java 1.3.1 In my experience, everything runs faster on 141. -k. > Thanks in Advance -- If you don'

Re: [JBoss-user] commons-http-client.jar in lib directory

2003-02-04 Thread Kevin O'Neill
; - Original Message - > From: "Kevin O'Neill" <[EMAIL PROTECTED]> > To: "JBoss User" <[EMAIL PROTECTED]> > Sent: Tuesday, February 04, 2003 3:12 AM > Subject: [JBoss-user] commons-http-client.jar in lib directory > > > > The l

Re: [JBoss-user] Sending and receiving Emails

2003-02-04 Thread Kevin O'Neill
On Tue, 2003-02-04 at 22:22, Brian McSweeney wrote: > Thanks Guy, > unfortunately I think you missed the point of my email. > I already have code that is similar to yours to send emails. > This was not my question. > > I wanted to know how to hook up JBoss to an actual > transfer-agent etc. I'

[JBoss-user] commons-http-client.jar in lib directory

2003-02-04 Thread Kevin O'Neill
The lastest 3.2 build include a copy of commons-http-client.jar into the lib directory. We use this in a couple of our applications so we were getting all osrts of class cast exceptions. The work around is to remove the version the server ships with and all is good. My concern is that being in t

Re: [JBoss-user] xactisolevel error: PostgreSQL-7.3 and JBOSS-3.0.4

2003-01-10 Thread Kevin O'Neill
On Fri, 2003-01-10 at 19:43, Allan Kamau wrote: > I am experiencing problems running JBoss-3.0.4 using > PostgreSQL-7.3 as the database for CMP. It appears > PostgreSQL-7.3 doesn't understand "show xactisolevel" > command (which is been sent to it by JBoss) unlike > PostgreSQL-7.2.x. I've deployed

Re: [JBoss-user] Eclipse project file for 3.2

2002-12-04 Thread Kevin O'Neill
On Thu, 2002-12-05 at 11:58, Jason Essington wrote: > hey Kevin > > have you taken a look at: > http://www.jboss.org/developers/guides/eclipse-howto/index.jsp This looks like it is for HEAD rather than 3.2 :( > > On Wednesday, December 4, 2002, at 04:35 PM, Kevin O'

[JBoss-user] Eclipse project file for 3.2

2002-12-04 Thread Kevin O'Neill
Hey, I was wondering if anyone had an eclipse project file for 3.2 that they might like to share :). -k. -- If you don't test then your code is only a collection of bugs which apparently behave like a working program. Website: http://www.rocketred.com.au/blogs/kevin/

Re: [JBoss-user] Re: Can an ejb function as a daemon?

2002-09-21 Thread Kevin O'Neill
> What I did to replace an rmi server for now is have session beans access a > singleton. It seems the safest way to set up a service right now and still > be somewhat portable... Isn't accessing threading facilities a no no in session beans? If you have a deamon like service then I assume that i

RE: [JBoss-user] Need more examples contributed by others

2001-08-07 Thread Kevin O'Neill
The jmoz (jmoz.sourceforge.net) project provides a complete sample application the use of Cocoon, JBOSS, Castor JDO and Lucene. Although documentation is a little light (ok none existent), id be willing to document the aspects of the system that people believe are useful. k. > -Original Mess

RE: [JBoss-user] URGENT: Monitoring data transfer

2001-07-12 Thread Kevin O'Neill
EJB's are not really designed for streaming. I believe that EJB methods are synchronous, if you required asynchronous operation you may want to have a look at JMS (though I'm still unsure if you can get the amount of data transferred etc). Your other choice would be to create a servlet (doesn't h

RE: [JBoss-user] Help: cross package EJB access problem how ?

2001-07-05 Thread Kevin O'Neill
> From the Session Bean B's code, I have already do 'import session A's > package name', then I have something like > SessionA sesA = new SessionA(); > String returnValue = sesA.somemethod(String someparameter); You should always get a reference to another EJB via its home int

RE: [JBoss-user] Help: cross package EJB access problem how ?

2001-07-05 Thread Kevin O'Neill
Make sure you have a references between the beans established in ejb-jar.xml. For example: I in my ejb-jar.xml I have several session and entity beans that reference each other. Topic jmoz.Topic org.rocketred.jmoz.model.TopicHome org.rocketred.jmoz.mo

RE: [JBoss-user] connection pooling JBOSS-mySQL

2001-07-04 Thread Kevin O'Neill
> Given that the SQL that was echoed had the table name in lowercase and > the error message was uppercase (and nobody complained about case > sensitive breakage with mySQL in 2.4 beta when I squashed case!) I don't > think that it's a case problem. (for the record, you're right, > relational data

[JBoss-user] Couple of quick newbie questions.

2001-06-28 Thread Kevin O'Neill
I've got a couple of quick what I'm sure are newbie questions that I hope somebody can help me with. One: When I deploy my ear I getting the following messages in the console (Sample): [Verifier] Bean : Topic Method : public abstract void removeSubTopic(Alias) Section: 9.2.7 Warning: The met

RE: [JBoss-user] E-mail vs. web vs news support

2001-06-25 Thread Kevin O'Neill
> I think a web-based system would be a disaster. It is far easier to take ... snip I have to agree with Mike for all the points he makes. I for one download the mail to my laptop and read during my train ride in. k. ___ JBoss-user mailing list [EMA

RE: [JBoss-user] again hypersonic

2001-06-24 Thread Kevin O'Neill
Boris, I've been using iSQLViewer (http://isql.sourceforge.net/index.html) to view the contents of both Hypersonic (including the one embedded in JBoss) and PostgreSQL databases. k. ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourcefor

RE: [JBoss-user] Integrating castor in JBoss

2001-06-23 Thread Kevin O'Neill
Eduardo, The jboss site has some documentation (http://www.jboss.org/jboss-castor.jsp). A complete example of use of CastorJDO in SessionBean (contributed by Terry Child) can be downloaded from http://www.jboss.org/castorjdo/rooms.zip. I'm also using jboss with castor in the jmoz project (http:/

RE: [JBoss-user] Tomcat/Jakarta Struts

2001-06-22 Thread Kevin O'Neill
Grim, I'm using some of the struts infrastructure (tag libs at the moment) in my jmoz application. You can get the latest version via cvs from sourceforge http://jmoz.sourceforge.net to see if I'm doing anything different. It deploys an ear file containing a war file that contains the relevant st