RE: [JBoss-dev] Bad cross module dependency

2004-02-05 Thread Adrian Brock
Sent: Wednesday, February 04, 2004 6:34 AM To: [EMAIL PROTECTED] Subject: RE: [JBoss-dev] Bad cross module dependency Because the server is compiled before the connector and JCA's WrappedStatement can't be used in CMP. --- The SF.Net

RE: [JBoss-dev] Bad cross module dependency

2004-02-04 Thread Alexey Loubyansky
-dev] Bad cross module dependency Why does the jca WrappedStatement implement an interface from the cmp module? package org.jboss.resource.adapter.jdbc; public class WrappedStatement implements Statement, org.jboss.ejb.plugins.cmp.jdbc.WrappedStatement { ... } This cmp

RE: [JBoss-dev] Bad cross module dependency

2004-02-04 Thread Scott M Stark
: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Alexey Loubyansky Sent: Wednesday, February 04, 2004 6:34 AM To: [EMAIL PROTECTED] Subject: RE: [JBoss-dev] Bad cross module dependency Because the server is compiled before the connector and JCA's WrappedStatement can't be used in CMP

[JBoss-dev] Bad cross module dependency

2004-02-03 Thread Scott M Stark
Why does the jca WrappedStatement implement an interface from the cmp module? package org.jboss.resource.adapter.jdbc; public class WrappedStatement implements Statement, org.jboss.ejb.plugins.cmp.jdbc.WrappedStatement { ... } This cmp version of the WrappedStatement is just

Re: [JBoss-dev] Bad cross module dependency

2004-02-03 Thread Adrian Brock
According to cvs it was a temporary solution that has never been fixed. http://cvs.sourceforge.net/viewcvs.py/jboss/jbosscx/src/main/org/jboss/resource/adapter/jdbc/Attic/WrappedStatement.jpp?hideattic=0 I guess the problem is that connector depends upon server for things like the security

RE: [JBoss-dev] Bad cross module dependency

2004-02-03 Thread Scott M Stark
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Adrian Brock Sent: Tuesday, February 03, 2004 6:54 PM To: [EMAIL PROTECTED] Subject: Re: [JBoss-dev] Bad cross module dependency According to cvs it was a temporary solution that has never been fixed