Re: [JBoss-user] CMR Problem: Chicken and Egg

2002-10-09 Thread Peter Shillan
Hi Alex, > Currently, CMR fields must be nullable Is this a JBoss (*cough*) feature? I don't believe the spec mandates this. --peter E-mail is an informal method of communication and may be subject to data corruption,

[JBoss-user] help

2002-10-09 Thread Marcos Oliva
  Marcos Oliva Sr. Software Engineer 404 E. Huntington Drive Monrovia, CA 91016ph: (626) 471-6091 [EMAIL PROTECTED]   Marcos Oliva.vcf Description: Binary data

RE: [JBoss-user] security_check

2002-10-09 Thread Emily Short
Figured it out:  jboss-web.xml was not in the right place   -Original Message- From: Emily Short Sent: Wednesday, October 09, 2002 1:36 PM To: [EMAIL PROTECTED] Subject: RE: [JBoss-user] security_check   More info about this problem: I am using JBoss 3.0.3/Jetty and can’t see

RE: [JBoss-user] JBoss 3.0.3 & tomcat 4.1.12 Can't Deploy Web Application

2002-10-09 Thread Liam Magee
Hi Theo, Could you describe your environment? I've had struts working with no problem for some time. Regards, Liam. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Theo Harper Sent: Wednesday, October 09, 2002 8:41 PM To: '[EMAIL PROTECTED]' Subject:

Re: [JBoss-user] Jboss3.02 ejbDepolyer stop/start

2002-10-09 Thread David Jencks
This is fixed in head and as I recall in 3.2. It's kind of a major rewriting of ejb startup code, so I don't really want to put it in branch 3.0. You can avoid the problem by undeploying and redeploying your app. david jencks On 2002.10.09 16:35:50 -0400 Mikhail Akopov wrote: > Hello jboss-use

RE: [JBoss-user] security_check

2002-10-09 Thread Emily Short
More info about this problem: I am using JBoss 3.0.3/Jetty and can’t see java:/jaas/testAppSecurity in my JNDIView.  I must be missing an obvious step somewhere.   Emily   -Original Message- From: Emily Short Sent: Wednesday, October 09, 2002 12:20 PM To: [EMAIL PROTECTED] Sub

[JBoss-user] Jboss3.02 ejbDepolyer stop/start

2002-10-09 Thread Mikhail Akopov
Hello jboss-user, I use jboss 3.0.2 (bundled with jetty) from jboss-3.0.2.zip (files date is 08.27.02) When I start configuration 'all', enter http://localhost:8080/jmx-console/HtmlAdaptor?action=inspectMBean&name=jboss.ejb%3Aservice%3DEJBDeployer and invoke operation stop() everything stops OK.

[JBoss-user] security_check

2002-10-09 Thread Emily Short
I am trying to get j_security_check working but for some reason I am allowed to login no matter what bogus username and password I enter (or if I enter none at all).  I want to use the DefaultDB (Hypersonic) in order to authenticate, but I haven’t modified the DB at all yet so it seems to m

RE: [JBoss-user] CMR with Maps

2002-10-09 Thread Eric Kaplan
Greg Yes, it is a dependent value class, but as it is a Map, there does not seem to be support for mapping between the keys in the map directly to columns in the database (or relationships to other beans through primary key). Eric -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAI

Re: [JBoss-user] (no subject)

2002-10-09 Thread Scott M Stark
Yes, all you have enabled is the lookup of JNDI over HTTP. You still need to configure your EJBs to use RMI/HTTP. See the testsuite/src/resources/hello descriptors for an example.   Scott StarkChief Technology OfficerJBoss Group, LLC - O

Re: [JBoss-user] Extremely slow transaction

2002-10-09 Thread Marius Kotsbak
Jon Haugsand wrote: >We have a table with approx 1500 rows and a finder that picks one or >two rows during each query like this: > >for (id=0;id++;id<1000) { > // Start transaction > Collection c=findByStatus(id,status); > for(i=c.iterator();i.hasNext();) { >((EntityLocal) (i.next())) . se

RE: [JBoss-user] CMR with Maps

2002-10-09 Thread Eric Kaplan
Thanks greg, all i needed was a pointer in the right direction. Eric -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Greg Turner Sent: Wednesday, October 09, 2002 1:40 PM To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] CMR with Maps These are known as

[JBoss-user] (no subject)

2002-10-09 Thread Vincent Wong
Im trying to get a remote client to connect thru a firewall.  so far i have the firewall opening port 8080 and forwarding to an internal host.  heres what im doing.public static Context getHTTPClientInitialContext() throws javax.naming.NamingException {Properties p = new Properties();p.put(javax.

Re: [JBoss-user] CMR with Maps

2002-10-09 Thread Greg Turner
These are known as Dependent Value Classes (DVC). which JBoss supports. the only requirement is that whatever you put into the Map must be serializable. Read the J2EE 1.3 spec on DVC and Get hold of the for pay CMP doc for JBoss where there is some info on it. It should be possible, although I'v

Re: [JBoss-user] Initializing JDBC Connection II

2002-10-09 Thread David Jencks
On 2002.10.09 10:56:42 -0400 [EMAIL PROTECTED] wrote: > > OK. > > I use this on JBoss 2.4 and WebSphere : > > //Restoring connection from pool > dataSource = (DataSource)ServiceLocator.getServiceLocator > ().getJndiService(jndiDataSourceName); > connection = dataSource.getConnection(); > > //S

[JBoss-user] CMR with Maps

2002-10-09 Thread Eric Kaplan
We have a framework in which all of the data inside each entity bean is modeled as a Map. We then use BMP and basically map each key corresponding to a data field to a column in the database. All of this code is generated. We don't, however, get much more sophisticated. Relationships between EJ

[JBoss-user] problem using an destination in an application

2002-10-09 Thread Julien Viet
Hi,    I am working on an application that uses a JMS destination specified in jboss-app.xml   Deploying is fine :   creates destination (in jboss-app.xml) creates another service (in jboss-app.xml) creates beans (in jars)   starts destination starts another service starts beans   Undeployi

Re[2]: [JBoss-user] Value Objects...

2002-10-09 Thread Alex Loubyansky
JBoss-3.2 supports also unknown primary keys. And generation of primary keys with: UUIDKeyGenerator, custom sql to fetch next pk value, mysql specific code to generate primary keys and JDBC-3.0 getGeneratedKeys. Also auto-increment supported for MySQL db (for unknown pk and "known" ones :)). DC>

Re[2]: [JBoss-user] Exception

2002-10-09 Thread Alex Loubyansky
Home's remove method takes a primary key as a parameter, not local interface. (Remote home iterface has overloaded remove that takes Handle) alex Wednesday, October 09, 2002, 6:13:23 PM, you wrote: FM> Thx for answer: FM> I'm trying do remove an object from a CMR Collection (1:n). FM> Here i

Re: [JBoss-user] Value Objects...

2002-10-09 Thread Dan Christopherson
Markus Garscha wrote: > Hi, > > * Jon Haugsand <[EMAIL PROTECTED]> [2002-10-09 14:48]: > > ok, i understand. but where to place business methods? in NameBean.java? yes > are there any problems with method-based security? e.g. user admin is > allowd to use setId() but user1 not... no, that wil

Re: [JBoss-user] Exception

2002-10-09 Thread Francesco Marsoni
Thx for answer: I'm trying do remove an object from a CMR Collection (1:n). Here is the code I use. Maybe here is the problem: public void removeSubFolder(CesatiFolderLocal folder) javax.ejb.EJBException { this.getFolders().remove(folder); try { ((CesatiFolderLocalHome)this._entityCo

Re: [JBoss-user] Value Objects...

2002-10-09 Thread Dan Christopherson
Jon Haugsand wrote: > * Markus Garscha > >>Hi! >> >>i started to play with xdoclet. xdoclet generates "value" classes which >>implement serialize. what are they good for? examples? >>is this a workaround for relations which are accessed over remote >>interfaces? > > > You are supposed to use t

Re: [JBoss-user] jetty & ldap

2002-10-09 Thread Dan Christopherson
Yes Stefan Groschupf wrote: > Hi, > is it possible to use ldap users to secure jetty contexts? > Thanks > Stefan > > > > > --- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _

Re: [JBoss-user] EJB-QL to SQL Translation Problem

2002-10-09 Thread Alex Loubyansky
How does the correct sql look like? Wednesday, October 09, 2002, 5:14:56 PM, you wrote: PS> Hi Folks, PS> Having deployed a bean with an EJB-QL query in ejb-jar.xml, I was very PS> surprised to find the following in the logs: PS> 2002-10-09 14:45:12,508 DEBUG PS> [org.jboss.ejb.plugins.cmp.jdb

Re: [JBoss-user] CMR Problem: Chicken and Egg

2002-10-09 Thread Alex Loubyansky
Hello Peter, Currently, CMR fields must be nullable. alex Wednesday, October 09, 2002, 4:36:15 PM, you wrote: PS> Hi Folks, PS> I've recently been implementing Brett McLaughlin's "Building Java PS> Enterprise Architecture" examples on JBoss 3.0.3 and I'm having great PS> (if frustrating!) fun

Re: [JBoss-user] Exception

2002-10-09 Thread Alex Loubyansky
Hello Francesco, Could you provide more info on what you are trying to do? It works for me. alex Wednesday, October 09, 2002, 4:35:26 PM, you wrote: FM> I got this exception trying to remove an object with home.remove(). FM> I'm using mysql, CMP and java.lang.Integer as PrimaryKey. FM> Any i

Re: [JBoss-user] Initializing JDBC Connection II

2002-10-09 Thread MSedliak
OK. I use this on JBoss 2.4 and WebSphere : //Restoring connection from pool dataSource = (DataSource)ServiceLocator.getServiceLocator ().getJndiService(jndiDataSourceName); connection = dataSource.getConnection(); //Setting NLS ... setConnectionParams(connection); where : dataSource is inst

Re: [JBoss-user] Exception

2002-10-09 Thread Francesco Marsoni
Here is the exception from jboss logs. java.sql.SQLException: Cannot convert class $Proxy48 to SQL type requested at org.gjt.mm.mysql.PreparedStatement.setObject(Unknown Source) at org.gjt.mm.mysql.PreparedStatement.setObject(Unknown Source) at org.jboss.resource.adapter.jdbc.local.LocalPrepar

Re: [JBoss-user] CMR Problem: Chicken and Egg

2002-10-09 Thread David Ward
Currently in JBoss, you have to have your cmr foreign keys nullable since they can only be set in ejbPostCreate(). From what I understand, Dain Sundstrom ("the" JBossCMP guy) is very aware of this and is looking at supporting setting cmrs in ejbCreate() (so you can have NOT NULL foreign keys)

[JBoss-user] EJB-QL to SQL Translation Problem *IGNORE*

2002-10-09 Thread Peter Shillan
This was a mistake on my part ... I've fixed this ... plz ignore. Thanks if you tried to help already! --peter E-mail is an informal method of communication and may be subject to data corruption, interception and unauth

[JBoss-user] Re: JBoss-user digest, Vol 1 #3182 - 11 msgs

2002-10-09 Thread Vittorio Ballestra
Alle 13:38, mercoledì 9 ottobre 2002, [EMAIL PROTECTED] ha scritto: > We had/have big problems with 3.2, some of which should be present in > 3.0.x also. > See (still unfixed) bug report 614313 (TxManager memory leak), which > costs us 1.6kb per transaction. THAT'S very interesing has our batch

Re: [JBoss-user] I am confused with JAAS

2002-10-09 Thread Jaime Gomez
Ok, i find the url for 2.4.4, the URL is : http://localhost:8082/ViewObjectRes//Security%3Aname%3DJaasSecurityManager   Thanks Scott for your pacience, I suppose that there is some way to flushAuthenticationCache throught code   Jaime - Original Message - From: Scott M Sta

[JBoss-user] EJB-QL to SQL Translation Problem

2002-10-09 Thread Peter Shillan
Hi Folks, Having deployed a bean with an EJB-QL query in ejb-jar.xml, I was very surprised to find the following in the logs: 2002-10-09 14:45:12,508 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.JDBCEJBQLQuery.UserTypeBean.findByType] EJB-QL: SELECT OBJECT(a) FROM USER_TYPES AS a WHERE a.type = ?1 200

Re: [JBoss-user] access a local file from an application running in JBoss

2002-10-09 Thread Greg Turner
First of all, the JBoss absolute paths are not hard coded. Perhaps the paths relative to JBoss home is hard coded, but not the absolute paths. Now, the best place to read a file is in an MBean. So I would write an MBean to read the file, and pass the path relative to jboss home in an attribute o

[JBoss-user] MQSeries and MessageDriveBeans

2002-10-09 Thread Bekkum, Odd Rune
Title: MQSeries and MessageDriveBeans I have finally manage to integrate MQSeries and JBoss so that MQSeries can drive my MDB's. So far I can only do this if I specify false in my jboss.xml. I don't get any errors if I don't turn off XA, but no messages are delivered and I get problems if I tr

[JBoss-user] Re: Automatic Detection of JBoss Service

2002-10-09 Thread Mike Savage
I typically will put together some type of monitoring script that will use wget, curl, or nc (netcat) depending on what I am trying to accomplish. I typically use this script on a Linux Virtual Server load-balancer to take individual nodes out of the cluster if they are not responding and then r

RE: [JBoss-user] CMR Problem: Chicken and Egg

2002-10-09 Thread Rupp,Heiko
> But is this possible? I mean, JBoss wants to run a SQL INSERT after > ejbCreate() but it can't because of the foreign key constraints. I can Why is this happening anyway? Can this be prevented? --- This sf.net email is sponsored by:ThinkGeek

[JBoss-user] CMR Problem: Chicken and Egg

2002-10-09 Thread Peter Shillan
Hi Folks, I've recently been implementing Brett McLaughlin's "Building Java Enterprise Architecture" examples on JBoss 3.0.3 and I'm having great (if frustrating!) fun doing it :-D. I have a problem regarding CMR fields though ... - CMR fields must be assigned in ejbPostCreate() - It makes sense

Re: [JBoss-user] I am confused with JAAS

2002-10-09 Thread Jaime Gomez
Hi Scott It's OK, but i am working with JBoss-2.4.4_Tomcat-3.2.3 and don't find this url in my application or by default in JBOss Regards Jaime >From: "Scott M Stark" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: <[EMAIL PROTECTED]> >Subject: Re: [JBoss-user] I am confused with JAAS >D

Re: [JBoss-user] Memory Leaks

2002-10-09 Thread Michael Bartmann
It wasn't me :-) so I don't have all details present. As far as I remember (a collegue has all the details) it was a problem with the clients bringing up a new TopicConnection when one did fail and the JMS server used a lot of new threads to publish its messages and did not get rid of the exis

[JBoss-user] Exception

2002-10-09 Thread Francesco Marsoni
I got this exception trying to remove an object with home.remove(). I'm using mysql, CMP and java.lang.Integer as PrimaryKey. Any idea? thx Francesco java.rmi.ServerException: RemoteException occurred in server thread; nested exception is: java.rmi.ServerException: EJBException:; nested ex

RE: [JBoss-user] Memory Leaks

2002-10-09 Thread Eric Kaplan
This is interesting. We have several SSBs that create a JMS publisher. We do not currently do anything on ejbRemove to cleanly close the jms topics cleanly (they are just garbage collected). I take it we should? What exactly is the culprit for the memory leak on garbage collection with the topic

RE: [JBoss-user] How do i Mention the welcome page

2002-10-09 Thread Randahl Fink Isaksen
Hi Gangadhar     To make that work I would complete the following two (or three) steps…   Step 1:   Mount your web application under the root rather than under a certain name. This is done as follows (in application.xml):          

RE: [JBoss-user] JBossMQ Fails to Commit/Rollback

2002-10-09 Thread Barlow, Dustin
Are you running the cvs tip version of JBoss3.2beta? I was also having the same issue that you describe with a very simple test MDB. The problem has now disappeared. I presume that there was a fix in one of the many cvs updates i've done in the last week or so. Try that and see if it helps yo

RE: [JBoss-user] NullPointerException with Jetty's deployer when is set

2002-10-09 Thread Barlow, Dustin
And the 3.2.0beta2 is also screwed as well. I'll give the 3.0 Branch a try. Dustin > -Original Message- > From: Jules Gosnell [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, October 08, 2002 8:07 PM > To: [EMAIL PROTECTED] > Subject: Re: [JBoss-user] NullPointerException with Jetty's deploy

Re: [JBoss-user] Value Objects...

2002-10-09 Thread Markus Garscha
Hi, * Jon Haugsand <[EMAIL PROTECTED]> [2002-10-09 14:48]: > * Markus Garscha > > Hi! > > > > i started to play with xdoclet. xdoclet generates "value" classes which > > implement serialize. what are they good for? examples? > > is this a workaround for relations which are accessed over remote

Re: [JBoss-user] How do i put a class in cron job

2002-10-09 Thread kiuma
You can create an mbean Gangadhar wrote: > Hi All, > > Can anybody tell me, how do i put a class file in the cron job of JBOSS > > > > Thanks in Advance > > Gangadhar > >DISCLAIMER > --- > This email message and any attach

Re: [JBoss-user] Initializing JDBC Connection II

2002-10-09 Thread David Jencks
On 2002.10.09 04:22:26 -0400 [EMAIL PROTECTED] wrote: > > Hi David, > > thank you for you're helping me. I have tried to do this : > > org.jboss.resource.adapter.jdbc.local.LocalConnection loJBossConnection > = (org.jboss.resource.adapter.jdbc.local.LocalConnection)aoConnection; > oracle.jdbc.d

[JBoss-user] jetty & ldap

2002-10-09 Thread Stefan Groschupf
Hi, is it possible to use ldap users to secure jetty contexts? Thanks Stefan --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ___ JBoss-user mailing l

Re[2]: [JBoss-user] mysterious slowness on entity bean update FIXED

2002-10-09 Thread Alex Loubyansky
read-ahead is defined in: - standardjbosscmp-jdbc.xml in defaults (for all entities and queries); - jbosscmp-jdbc.xml in defaults (entities and queries in the enterprise-beans element); - jbosscmp-jdbc.xml in entity element (for all queries defined for the entity); - jbosscmp-jdbc.xml in query ele

[JBoss-user] How do i put a class in cron job

2002-10-09 Thread Gangadhar
Hi All, Can anybody tell me, how do i put a class file in the cron job of JBOSS   Thanks in Advance Gangadhar DISCLAIMER --- This email message and any attachments is confidential and intended only for the use of an ind

[JBoss-user] How do i Mention the welcome page

2002-10-09 Thread Gangadhar
Hi All, I would like to mention the welcome page as http://gangs.com instead of my http://localhost:8080/warfile/login.jsp   How do i map it in JBOSS     Can anybody tell me how do i do it.     Thanks in Advance Gangadhar     DISCLAIMER --

Re: [JBoss-user] Value Objects...

2002-10-09 Thread Jon Haugsand
* Markus Garscha > Hi! > > i started to play with xdoclet. xdoclet generates "value" classes which > implement serialize. what are they good for? examples? > is this a workaround for relations which are accessed over remote > interfaces? You are supposed to use them to transport all data from a

[JBoss-user] Value Objects...

2002-10-09 Thread Markus Garscha
Hi! i started to play with xdoclet. xdoclet generates "value" classes which implement serialize. what are they good for? examples? is this a workaround for relations which are accessed over remote interfaces? the second thing i noticed is that a NamePK.java class for the primary key is generate

Re: [JBoss-user] mysterious slowness on entity bean update FIXED

2002-10-09 Thread Jon Haugsand
* Dain Sundstrom > If you are interested, the read-ahead strategies are covered in detain > in the JBossCMP Documentation ($10 flashline.com). What it does not cover is how to do this with EJB-QL. (Or did I misunderstand?) -- Jon Haugsand, <[EMAIL PROTECTED]> Norges Bank,

SV: [JBoss-user] Caching of Bean

2002-10-09 Thread Bekkum, Odd Rune
Title: Melding In standardjboss.xml you can set the commit-option to A, B or C. Option C causes the data to be read from the database before a transaction is started, and also passivates the bean after a commit on the bean. I think that should solve your problem.   Odd-Rune Bekkum -

RE: [JBoss-user] JBoss 3.0.3 & tomcat 4.1.12 Can't Deploy Web Application

2002-10-09 Thread Theo Harper
I have tried using jakarta-struts-1.1-b2-blank.war from the Struts site, and this deploys fine win JBoss-3.0.2_Tomcat-4.0.4 but not with JBoss-3.0.3_Tomcat-4.1.12 . It gives the same ClassNotFoundException for XmlDefinition. Theo -Original Message- From: Theo Harper Sent: 09 October 2

SV: [JBoss-user] Jboss and MQSeries.

2002-10-09 Thread Bekkum, Odd Rune
Looks like the problem was with JBoss expecting a XAQueueConnectionFactory and I was using a QueueConnectionFactory Odd-Rune Bekkum --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ___

Re: [JBoss-user] access a local file from an application running in JBoss

2002-10-09 Thread Andreas Mecky
Hi, the conf directory is in the classpath so you can use the classloader and do a getResoureAsStream(fileName) to grab your file. HTH Andreas - Original Message - From: "Jerome Lacoste (Frisurf)" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: "Michail Bikoulis" <[EMAIL PROTECTED]> Se

[JBoss-user] access a local file from an application running in JBoss

2002-10-09 Thread Lacoste (Frisurf)
Hei, I would like one of our program to read a local file that I plan to deploy under the conf directory. I am searching for the best way to do so. If I hardcode the path of the file, and make it relative to the "user.dir", I have to take into account that JBoss runs from within the jboss/bin di

Re: [JBoss-user] Memory Leaks

2002-10-09 Thread Michael Bartmann
We had/have big problems with 3.2, some of which should be present in 3.0.x also. See (still unfixed) bug report 614313 (TxManager memory leak), which costs us 1.6kb per transaction. Beside that 1.4.0 itself has compilation leak which kicks in when (re-)deploying. I heard 1.4.1 fixes this issue

[JBoss-user] Caching of Bean

2002-10-09 Thread John Y C Lee
Hi All,   whenever I update my database thru isql, the data get reverted whenever the entity beans passivate? i think this could be due to jboss caching setting. how do i configure it so that the beans synchronize with the database?   thanks, John

[JBoss-user] Extremely slow transaction

2002-10-09 Thread Jon Haugsand
We have a table with approx 1500 rows and a finder that picks one or two rows during each query like this: for (id=0;id++;id<1000) { // Start transaction Collection c=findByStatus(id,status); for(i=c.iterator();i.hasNext();) { ((EntityLocal) (i.next())) . setStatus(newStatus); } //

Re: [JBoss-user] Memory Leaks

2002-10-09 Thread marius
We also experience the same problems using JB 3.0.2 and JDK 1.4.0 from sun. On Wed, Oct 09, 2002 at 09:31:49AM +0200, Vittorio Ballestra wrote: > I'm experiencing BIG problems with JB3.0.2/3 due to memory leaks. As nobody > else seams affected by these, judging from this mainling list, I'm askin

Re: [JBoss-user] Initializing JDBC Connection II

2002-10-09 Thread MSedliak
Hi David, thank you for you're helping me. I have tried to do this : org.jboss.resource.adapter.jdbc.local.LocalConnection loJBossConnection = (org.jboss.resource.adapter.jdbc.local.LocalConnection)aoConnection; oracle.jdbc.driver.OracleConnection oraConn = (oracle.jdbc.driver.OracleConnection)

SV: [JBoss-user] Jboss and MQSeries.

2002-10-09 Thread Bekkum, Odd Rune
I've now made an MBean that reads of the same MQSeries queue and it works fine. Any ideas what else might cause this ClassCastException. Odd-Rune. -Opprinnelig melding- Fra: Geer, Benjamin Bekkum, Odd Rune wrote: > When I deploy an MDB I get the following error: Did you test MQSeries

Re: AW: [JBoss-user] Bidirectional 1:n relation

2002-10-09 Thread Alex Loubyansky
DB> if you say 'only for local interfaces' you mean that the Home interface is DB> Local (LocalHomeEmployee) ?! Don't understand. Look at generated file and see whether it's local home (it must extend EJBLocalHome to be local home). Relationships are istablished between local interfaces (not loca

[JBoss-user] JBoss 3.0.3 & tomcat 4.1.12 Can't Deploy Web Application

2002-10-09 Thread Theo Harper
Hi, I am having problems using struts (and tiles) with JBoss-3.0.3_Tomcat-4.1.12. My application uses the following in the struts-config.xml file. The tiles-defs.xml file contains the following (cut down): I have traced the error down to the class loader being used by commo

[JBoss-user] Memory Leaks

2002-10-09 Thread Vittorio Ballestra
I'm experiencing BIG problems with JB3.0.2/3 due to memory leaks. As nobody else seams affected by these, judging from this mainling list, I'm asking the question explicitly : - does anyone else experience memory leaks with jb3.0.2/3 ? The reason I'm asking this is that the answer can g