RE: [JBoss-user] Passing an InputStream to an EJB

2002-02-19 Thread Ivan Bolcina
Title: RE: [JBoss-user] Passing an InputStream to an EJB Doesn't the whole InputStream get serializated before send - I mean in array? Why dont you just send array,maybe compressed? For large files, I would use either ftp or oreilly com package. By -Original Message- From: Andrea

Re: [JBoss-user] Passing an InputStream to an EJB

2002-02-19 Thread Peter Levart
See the discussion in the thread with subject Streams on this list (from about a week ago). It might be related to your problem... Peter On Monday 18 February 2002 15:10, Andrea Cervellati wrote: Hi, I'm using JBoss 2.4.3-Tomcat 4.0 and I have a web app that allows users to upload files

Re: [JBoss-user] logging and admininstration

2002-02-19 Thread Adrian Brock
2) Log4j The best way to do logging for a bean (at the moment) private static final Category log = Category.newInstance(MyClass.class); The following accomplishes the same thing, and can be cut and pasted from one source to the next. private static final Category log =

RE: [JBoss-user] logging and admininstration

2002-02-19 Thread Adrian Brock
You can create a classpath extension for a directory in jboss.conf. Just put a '/' on the end of the url and don't put any jars or zips in the directory. Regards, Adrian From: Eric Kaplan [EMAIL PROTECTED] To: [EMAIL PROTECTED] CC: [EMAIL PROTECTED] Subject: RE: [JBoss-user] logging and

RE: [JBoss-user] logging and admininstration

2002-02-19 Thread Eric Kaplan
log4.jar is in lib/ext, not lib4j-core.ext. perhaps this is the time to upgrade to 2.4.4. thanks for your help eric -Original Message- From: Adrian Brock [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 19, 2002 6:02 AM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: RE:

RE: [JBoss-user] logging and admininstration

2002-02-19 Thread Adrian Brock
I'm not sure. I've been thinking about writing a PropertyService for setting properties. This would allow them to be configured in jboss.jcml and also allow them to be changed at runtime through the JMX interface. But it is about priority 145 on my to-do list :-) Note: This won't work for all

[JBoss-user] Deployment Failure JBoss 3.0beta

2002-02-19 Thread Stephen Davidson
Greetings. I am trying to port an application from Orion to JBoss v3.0Beta. The Ear file is being read, and so far as I can tell, deployed (for more evidence, read on). The War file contained in the Ear file is definately being deployed, as the static webpages and at least one of the servlets

RE: [JBoss-user] Deployment Failure JBoss 3.0beta

2002-02-19 Thread Coetmeur, Alain
are ther some error messages while deploying ? are EJB references declared in web.xml do you have a jboss-web.xml in the webapp with EJB JNDI references properly set same for the EJB themselves between the ejb-jar.xml and jboss.xml the syntax is not the same , or at least the file name and

Re: [JBoss-user] Deployment Failure JBoss 3.0beta

2002-02-19 Thread David Jencks
On 2002.02.19 11:23:32 -0500 Stephen Davidson wrote: Greetings. I am trying to port an application from Orion to JBoss v3.0Beta. The Ear file is being read, and so far as I can tell, deployed (for more evidence, read on). The War file contained in the Ear file is definately being

Re: [JBoss-user] Deployment Failure JBoss 3.0beta

2002-02-19 Thread Stephen Davidson
Additional Details; When I shut JBoss down and restarted, Ilots of errors occurred. I have a couple of Jars that either have common base classes, or everything else uses (or for some of the EJB-Jar files, both). For instance, I have a HRXBaseEJB class that most of the EJB's in all of the jars

Re: [JBoss-user] Deployment Failure JBoss 3.0beta

2002-02-19 Thread Adrian Brock
Hi, There's still some problems reported by WebIntegrationUnitTestCase in JBoss3.0.0DR1 due to the deployer rewrite. You might want to monitor this link. http://lubega.com/testarchive/?M=D Hopefully, this will be fixed soon :-) Regards, Adrian From: Stephen Davidson [EMAIL PROTECTED] To:

Re: [JBoss-user] Deployment Failure JBoss 3.0beta

2002-02-19 Thread Stephen Davidson
Structure of Ear file; Ear | - War file | - HRXCommon.jar (Uses some classes from HRXSecurity, and has an EJB) | - HRXSecurity.jar (Extends some classes from HRXCommon, and has several EJBs) | - HRXAdmin.jar (Extends some classes from HRXCommon, | uses some classes from

[JBoss-user] Shutdown hangs

2002-02-19 Thread Eric Jain
Whenever I shut down JBoss (3.0.0 alpha), it remains hanging at the following point: [18:40:08] INFO naming.NamingService : Stopping Any ideas why this could be happening? -- Eric Jain ___ JBoss-user mailing list [EMAIL PROTECTED]

Re: [JBoss-user] Deployment Failure JBoss 3.0beta

2002-02-19 Thread David Jencks
On 2002.02.19 12:27:01 -0500 Stephen Davidson wrote: Additional Details; When I shut JBoss down and restarted, Ilots of errors occurred. Does this mean that JBoss is acting inconsistently or that the first time you started jboss and then deployed your app? I have a couple of Jars that either

[JBoss-user] Deploying Jetspeed

2002-02-19 Thread Eric Anderson
I'm running into a problem deploying Jetspeed under both JBoss-Jetty and JBoss-Catalina. The Jetspeed webapp appears to be deploying correctly, but I get Error fetching pane messages in the Jetspeed web UI, and I see the following errors in the Jetspeed logs: [Tue Feb 19 11:19:56 PST 2002] --

Re[2]: [JBoss-user] home.create throws an IllegalStateException

2002-02-19 Thread Mikhail Akopov
Hello all Friday, May 25, 2001, 6:35:04 PM, you wrote: dDC Does your bean's ejbCreate return a proper primary key? dDC Richard Conway wrote: I too am experiencing this problem. I get... [DelegateAccountEJBean] java.lang.IllegalStateException: INSERTING AN ALREADY EXISTING BEAN, ID = o18 a0

[JBoss-user] About jaws.xml

2002-02-19 Thread Christine
Hi, I am trying to create a jaws.xml for my CMP beans. But i didn't find any documentation about how to write findByPrimaryKey and findAll method. Could anyone help? Thanks regards, -- Jia (Christine) Li 524N ICT Building Department of Computer Science University of Calgary

Re: [JBoss-user] About jaws.xml

2002-02-19 Thread Dmitri Colebatch
Have a look at XDoclet - http://sf.net/projects/xdoclet - it'll do it all for you. very easy. btw - findByPrimaryKey and findAll dont need any jaws.xml configuration afaik. cheers dim - Original Message - From: Christine [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday,

[JBoss-user] Jboss3.0 build problem

2002-02-19 Thread Vishwas Raman
Hi all, I am having an issue with building the nightly snapshot of jboss3.0 that I downloaded from jboss.org. First up, I downloaded the tgz version of the src and encountered an error( a checksum error, but that was after it extracted the entire source) while untarring the src I