Re: [JBoss-user] Do I Not Understand Scoped ClassLoadingRepositories for EARs?

2002-05-29 Thread marius

Have you done any more bugfixing? My problem is a bit more complicated than your 
testcase. I have a .war and a jar with beans inside the ear. Without scoping it 
accesses the bean-jar in the ear. With scoping, it gived the errormessage I posted 
earlier (method not found). 


On Wed, May 29, 2002 at 03:39:27PM -0700, Scott M Stark wrote:
> Branch_3_0 is the correct branch. I tried running the testcase on a clean
> checkout and there were a couple of files that did not get checked in. These
> are in now a clean checkout runs correctly:
> 
> [starksm@banshee testsuite]$
> build.sh -Dtest=org.jboss.test.cts.test.CtsCmp2UnitTestCase one-test
> ...
> [junit] Running org.jboss.test.cts.test.CtsCmp2UnitTestCase
> [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 7.047 sec
> 
> The test deploys an ear containing a cmp2 bean, then deploys another ear
> containing
> a new version of the cmp2 bean with an additional cmp field. Both beans
> are accessed by a session bean to demonstrate simultaneous access of two
> versions of the same bean.
> 
> 
> Scott Stark
> Chief Technology Officer
> JBoss Group, LLC
> 
> - Original Message -
> From: "Hunter Hillegas" <[EMAIL PROTECTED]>
> To: "JBoss User" <[EMAIL PROTECTED]>; "Marius Kotsbak"
> <[EMAIL PROTECTED]>
> Sent: Wednesday, May 29, 2002 2:06 PM
> Subject: Re: [JBoss-user] Do I Not Understand Scoped
> ClassLoadingRepositories for EARs?
> 
> 
> What branch are you running off of? I'm running Branch_3_0... Which doesn't
> seem to be the right one?
> 
> Hunter
> 
> 
> 
> 
> ___
> 
> Don't miss the 2002 Sprint PCS Application Developer's Conference
> August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm
> 
> ___
> JBoss-user mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/jboss-user

-- 
MVH
Marius Kotsbak
Boost communications AS

___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] Do I Not Understand Scoped ClassLoadingRepositories for EARs?

2002-05-29 Thread Scott M Stark

Branch_3_0 is the correct branch. I tried running the testcase on a clean
checkout and there were a couple of files that did not get checked in. These
are in now a clean checkout runs correctly:

[starksm@banshee testsuite]$
build.sh -Dtest=org.jboss.test.cts.test.CtsCmp2UnitTestCase one-test
...
[junit] Running org.jboss.test.cts.test.CtsCmp2UnitTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 7.047 sec

The test deploys an ear containing a cmp2 bean, then deploys another ear
containing
a new version of the cmp2 bean with an additional cmp field. Both beans
are accessed by a session bean to demonstrate simultaneous access of two
versions of the same bean.


Scott Stark
Chief Technology Officer
JBoss Group, LLC

- Original Message -
From: "Hunter Hillegas" <[EMAIL PROTECTED]>
To: "JBoss User" <[EMAIL PROTECTED]>; "Marius Kotsbak"
<[EMAIL PROTECTED]>
Sent: Wednesday, May 29, 2002 2:06 PM
Subject: Re: [JBoss-user] Do I Not Understand Scoped
ClassLoadingRepositories for EARs?


What branch are you running off of? I'm running Branch_3_0... Which doesn't
seem to be the right one?

Hunter




___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] Do I Not Understand Scoped ClassLoadingRepositories for EARs?

2002-05-29 Thread Hunter Hillegas

What branch are you running off of? I'm running Branch_3_0... Which doesn't
seem to be the right one?

Hunter

> From: Marius Kotsbak <[EMAIL PROTECTED]>
> Reply-To: [EMAIL PROTECTED]
> Date: 29 May 2002 20:43:46 +0200
> To: [EMAIL PROTECTED]
> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class LoadingRepositories
> for EARs?
> 
> Are you sure jboss was built correctly with the bug fixed. (build
> clobber first maybe).
> 
> You can test with the testjars I uploaded to see if it works (
> http://sourceforge.net/tracker/?func=detail&atid=376685&aid=561546&group_id=22
> 866)
> 
> 
> On Wed, 2002-05-29 at 20:26, Hunter Hillegas wrote:
>> I'm getting the same error I got before...
>> 
>> When EAR2 is deployed, I get an exception that a CMP field doesn't exist in
>> the bean class... It does exist in the copy in EAR2, but not in the copy in
>> EAR1, thus it is still looking at the first copy of the bean class, not the
>> one that is co-located in the same EAR repository (EAR2).
>> 
>> Since it won't even deploy, I can't test much else.
>> 
>> Hunter
>> 
>>> From: Marius Kotsbak <[EMAIL PROTECTED]>
>>> Date: 29 May 2002 20:22:15 +0200
>>> To: Hunter Hillegas <[EMAIL PROTECTED]>
>>> Cc: JBoss User <[EMAIL PROTECTED]>
>>> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class
>>> LoadingRepositories
>>> for EARs?
>>> 
>>> On Wed, 2002-05-29 at 20:12, Hunter Hillegas wrote:
 Nope, my second EAR still throws the same exception.
 
 I am running on:
 
 JBoss Release: JBoss-3.0.0RC4 CVSTag=Branch_3_0
 
 Just updated a few minutes ago...
>>> OK
>>> 
 
 I didn¹t look at your test case. Did you try to deploy it on your new
 build?
>>> Yes. It works now
>>> 
 Did it work? If so, what is different between that testcase and the actual
 EARs you are using?
>>> It is maybe that I actually try to use my beans, but just deployed the
>>> testbeans. I have posted my error. Do you get a similar error? Could you
>>> post yours also?
>>> 
 Why would it work and the other not work?
 
> From CVS check-ins, it looks like Scott fixed an off-by-one error... But
 maybe there is another problem?
 
 Hunter
 
> From: Marius Kotsbak <[EMAIL PROTECTED]>
> Date: 29 May 2002 19:38:22 +0200
> To: Hunter Hillegas <[EMAIL PROTECTED]>
> Cc: JBoss User <[EMAIL PROTECTED]>
> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class
> LoadingRepositories
> for EARs?
> 
> It is supposed to be fixed now. It means it passes my simple testcase.
> But I get errors in my real case. Have you tried it on your case after
> the fix?
> 
> On Mon, 2002-05-27 at 22:44, Hunter Hillegas wrote:
>> I haven't had time to put together a test case yet. If you want to do
>> that,
>> I'm sure Scott, et al would be happy to look at it. If not, I'll be
>> working
>> on it sometime this week.
>> 
>> As far as this being default behavior, that was discussed previously and
>> it
>> sounds like they have some pretty good reasons to offer both sets of
>> functionality.
>> 
>> Hunter
>> 
>>> From: Marius Kotsbak <[EMAIL PROTECTED]>
>>> Reply-To: [EMAIL PROTECTED]
>>> Date: 27 May 2002 21:02:20 +0200
>>> To: Hunter Hillegas <[EMAIL PROTECTED]>
>>> Cc: JBoss User <[EMAIL PROTECTED]>
>>> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class
>>> LoadingRepositories
>>> for EARs?
>>> OK. The same case that I have. Tried to put the jboss-app.xml in
>>> META-INF in the .ears but I it does'n seem to solve the problem, so I
>>> think it is a bug.
>>> 
>>> I also think that it is a bug that the boss-app-file is needed. The
>>> default should be not to share classes between ear/jar/wars.
>>> 
>>> Have you submitted the files to demonstrate this problem?
> 
>>> 
>> 
>> 
>> ___
>> 
>> Don't miss the 2002 Sprint PCS Application Developer's Conference
>> August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm
>> 
>> ___
>> JBoss-user mailing list
>> [EMAIL PROTECTED]
>> https://lists.sourceforge.net/lists/listinfo/jboss-user
> 
> 
> 
> ___
> 
> Don't miss the 2002 Sprint PCS Application Developer's Conference
> August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm
> 
> ___
> JBoss-user mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/jboss-user


___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lis

Re: [JBoss-user] Do I Not Understand Scoped ClassLoadingRepositories for EARs?

2002-05-29 Thread Hunter Hillegas

When I deploy your tests on my updated build, I get this:

13:55:37,692 WARN  [CMPFieldMetaData] ERROR : Nested Field does not have a
get method
13:55:37,701 INFO  [JDBCInitCommand] Table 'CDBean' already exists

This, I assume, indicates that somehow I don't have the right code in my
build?

Anyway, my deployments fail with exceptions, whereas this is just a warning.

Hunter

> From: Marius Kotsbak <[EMAIL PROTECTED]>
> Reply-To: [EMAIL PROTECTED]
> Date: 29 May 2002 20:43:46 +0200
> To: [EMAIL PROTECTED]
> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class LoadingRepositories
> for EARs?
> 
> Are you sure jboss was built correctly with the bug fixed. (build
> clobber first maybe).
> 
> You can test with the testjars I uploaded to see if it works (
> http://sourceforge.net/tracker/?func=detail&atid=376685&aid=561546&group_id=22
> 866)
> 
> 
> On Wed, 2002-05-29 at 20:26, Hunter Hillegas wrote:
>> I'm getting the same error I got before...
>> 
>> When EAR2 is deployed, I get an exception that a CMP field doesn't exist in
>> the bean class... It does exist in the copy in EAR2, but not in the copy in
>> EAR1, thus it is still looking at the first copy of the bean class, not the
>> one that is co-located in the same EAR repository (EAR2).
>> 
>> Since it won't even deploy, I can't test much else.
>> 
>> Hunter
>> 
>>> From: Marius Kotsbak <[EMAIL PROTECTED]>
>>> Date: 29 May 2002 20:22:15 +0200
>>> To: Hunter Hillegas <[EMAIL PROTECTED]>
>>> Cc: JBoss User <[EMAIL PROTECTED]>
>>> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class
>>> LoadingRepositories
>>> for EARs?
>>> 
>>> On Wed, 2002-05-29 at 20:12, Hunter Hillegas wrote:
 Nope, my second EAR still throws the same exception.
 
 I am running on:
 
 JBoss Release: JBoss-3.0.0RC4 CVSTag=Branch_3_0
 
 Just updated a few minutes ago...
>>> OK
>>> 
 
 I didn¹t look at your test case. Did you try to deploy it on your new
 build?
>>> Yes. It works now
>>> 
 Did it work? If so, what is different between that testcase and the actual
 EARs you are using?
>>> It is maybe that I actually try to use my beans, but just deployed the
>>> testbeans. I have posted my error. Do you get a similar error? Could you
>>> post yours also?
>>> 
 Why would it work and the other not work?
 
> From CVS check-ins, it looks like Scott fixed an off-by-one error... But
 maybe there is another problem?
 
 Hunter
 
> From: Marius Kotsbak <[EMAIL PROTECTED]>
> Date: 29 May 2002 19:38:22 +0200
> To: Hunter Hillegas <[EMAIL PROTECTED]>
> Cc: JBoss User <[EMAIL PROTECTED]>
> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class
> LoadingRepositories
> for EARs?
> 
> It is supposed to be fixed now. It means it passes my simple testcase.
> But I get errors in my real case. Have you tried it on your case after
> the fix?
> 
> On Mon, 2002-05-27 at 22:44, Hunter Hillegas wrote:
>> I haven't had time to put together a test case yet. If you want to do
>> that,
>> I'm sure Scott, et al would be happy to look at it. If not, I'll be
>> working
>> on it sometime this week.
>> 
>> As far as this being default behavior, that was discussed previously and
>> it
>> sounds like they have some pretty good reasons to offer both sets of
>> functionality.
>> 
>> Hunter
>> 
>>> From: Marius Kotsbak <[EMAIL PROTECTED]>
>>> Reply-To: [EMAIL PROTECTED]
>>> Date: 27 May 2002 21:02:20 +0200
>>> To: Hunter Hillegas <[EMAIL PROTECTED]>
>>> Cc: JBoss User <[EMAIL PROTECTED]>
>>> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class
>>> LoadingRepositories
>>> for EARs?
>>> OK. The same case that I have. Tried to put the jboss-app.xml in
>>> META-INF in the .ears but I it does'n seem to solve the problem, so I
>>> think it is a bug.
>>> 
>>> I also think that it is a bug that the boss-app-file is needed. The
>>> default should be not to share classes between ear/jar/wars.
>>> 
>>> Have you submitted the files to demonstrate this problem?
> 
>>> 
>> 
>> 
>> ___
>> 
>> Don't miss the 2002 Sprint PCS Application Developer's Conference
>> August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm
>> 
>> ___
>> JBoss-user mailing list
>> [EMAIL PROTECTED]
>> https://lists.sourceforge.net/lists/listinfo/jboss-user
> 
> 
> 
> ___
> 
> Don't miss the 2002 Sprint PCS Application Developer's Conference
> August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm
> 
> ___
> JBoss-user mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/jboss-user


_

Re: [JBoss-user] Do I Not Understand Scoped ClassLoadingRepositories for EARs?

2002-05-29 Thread Hunter Hillegas

I will give your testjars a try...


> From: Marius Kotsbak <[EMAIL PROTECTED]>
> Reply-To: [EMAIL PROTECTED]
> Date: 29 May 2002 20:43:46 +0200
> To: [EMAIL PROTECTED]
> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class LoadingRepositories
> for EARs?
> 
> Are you sure jboss was built correctly with the bug fixed. (build
> clobber first maybe).
> 
> You can test with the testjars I uploaded to see if it works (
> http://sourceforge.net/tracker/?func=detail&atid=376685&aid=561546&group_id=22
> 866)
> 
> 
> On Wed, 2002-05-29 at 20:26, Hunter Hillegas wrote:
>> I'm getting the same error I got before...
>> 
>> When EAR2 is deployed, I get an exception that a CMP field doesn't exist in
>> the bean class... It does exist in the copy in EAR2, but not in the copy in
>> EAR1, thus it is still looking at the first copy of the bean class, not the
>> one that is co-located in the same EAR repository (EAR2).
>> 
>> Since it won't even deploy, I can't test much else.
>> 
>> Hunter
>> 
>>> From: Marius Kotsbak <[EMAIL PROTECTED]>
>>> Date: 29 May 2002 20:22:15 +0200
>>> To: Hunter Hillegas <[EMAIL PROTECTED]>
>>> Cc: JBoss User <[EMAIL PROTECTED]>
>>> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class
>>> LoadingRepositories
>>> for EARs?
>>> 
>>> On Wed, 2002-05-29 at 20:12, Hunter Hillegas wrote:
 Nope, my second EAR still throws the same exception.
 
 I am running on:
 
 JBoss Release: JBoss-3.0.0RC4 CVSTag=Branch_3_0
 
 Just updated a few minutes ago...
>>> OK
>>> 
 
 I didn¹t look at your test case. Did you try to deploy it on your new
 build?
>>> Yes. It works now
>>> 
 Did it work? If so, what is different between that testcase and the actual
 EARs you are using?
>>> It is maybe that I actually try to use my beans, but just deployed the
>>> testbeans. I have posted my error. Do you get a similar error? Could you
>>> post yours also?
>>> 
 Why would it work and the other not work?
 
> From CVS check-ins, it looks like Scott fixed an off-by-one error... But
 maybe there is another problem?
 
 Hunter
 
> From: Marius Kotsbak <[EMAIL PROTECTED]>
> Date: 29 May 2002 19:38:22 +0200
> To: Hunter Hillegas <[EMAIL PROTECTED]>
> Cc: JBoss User <[EMAIL PROTECTED]>
> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class
> LoadingRepositories
> for EARs?
> 
> It is supposed to be fixed now. It means it passes my simple testcase.
> But I get errors in my real case. Have you tried it on your case after
> the fix?
> 
> On Mon, 2002-05-27 at 22:44, Hunter Hillegas wrote:
>> I haven't had time to put together a test case yet. If you want to do
>> that,
>> I'm sure Scott, et al would be happy to look at it. If not, I'll be
>> working
>> on it sometime this week.
>> 
>> As far as this being default behavior, that was discussed previously and
>> it
>> sounds like they have some pretty good reasons to offer both sets of
>> functionality.
>> 
>> Hunter
>> 
>>> From: Marius Kotsbak <[EMAIL PROTECTED]>
>>> Reply-To: [EMAIL PROTECTED]
>>> Date: 27 May 2002 21:02:20 +0200
>>> To: Hunter Hillegas <[EMAIL PROTECTED]>
>>> Cc: JBoss User <[EMAIL PROTECTED]>
>>> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class
>>> LoadingRepositories
>>> for EARs?
>>> OK. The same case that I have. Tried to put the jboss-app.xml in
>>> META-INF in the .ears but I it does'n seem to solve the problem, so I
>>> think it is a bug.
>>> 
>>> I also think that it is a bug that the boss-app-file is needed. The
>>> default should be not to share classes between ear/jar/wars.
>>> 
>>> Have you submitted the files to demonstrate this problem?
> 
>>> 
>> 
>> 
>> ___
>> 
>> Don't miss the 2002 Sprint PCS Application Developer's Conference
>> August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm
>> 
>> ___
>> JBoss-user mailing list
>> [EMAIL PROTECTED]
>> https://lists.sourceforge.net/lists/listinfo/jboss-user
> 
> 
> 
> ___
> 
> Don't miss the 2002 Sprint PCS Application Developer's Conference
> August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm
> 
> ___
> JBoss-user mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/jboss-user


___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] Do I Not Understand Scoped ClassLoadingRepositories for EARs?

2002-05-29 Thread Marius Kotsbak

Are you sure jboss was built correctly with the bug fixed. (build
clobber first maybe).

You can test with the testjars I uploaded to see if it works ( 
http://sourceforge.net/tracker/?func=detail&atid=376685&aid=561546&group_id=22866)


On Wed, 2002-05-29 at 20:26, Hunter Hillegas wrote:
> I'm getting the same error I got before...
> 
> When EAR2 is deployed, I get an exception that a CMP field doesn't exist in
> the bean class... It does exist in the copy in EAR2, but not in the copy in
> EAR1, thus it is still looking at the first copy of the bean class, not the
> one that is co-located in the same EAR repository (EAR2).
> 
> Since it won't even deploy, I can't test much else.
> 
> Hunter
> 
> > From: Marius Kotsbak <[EMAIL PROTECTED]>
> > Date: 29 May 2002 20:22:15 +0200
> > To: Hunter Hillegas <[EMAIL PROTECTED]>
> > Cc: JBoss User <[EMAIL PROTECTED]>
> > Subject: Re: [JBoss-user] Do I Not Understand Scoped Class LoadingRepositories
> > for EARs?
> > 
> > On Wed, 2002-05-29 at 20:12, Hunter Hillegas wrote:
> >> Nope, my second EAR still throws the same exception.
> >> 
> >> I am running on:
> >> 
> >> JBoss Release: JBoss-3.0.0RC4 CVSTag=Branch_3_0
> >> 
> >> Just updated a few minutes ago...
> > OK
> > 
> >> 
> >> I didn¹t look at your test case. Did you try to deploy it on your new build?
> > Yes. It works now
> > 
> >> Did it work? If so, what is different between that testcase and the actual
> >> EARs you are using?
> > It is maybe that I actually try to use my beans, but just deployed the
> > testbeans. I have posted my error. Do you get a similar error? Could you
> > post yours also? 
> > 
> >> Why would it work and the other not work?
> >> 
> >>> From CVS check-ins, it looks like Scott fixed an off-by-one error... But
> >> maybe there is another problem?
> >> 
> >> Hunter
> >> 
> >>> From: Marius Kotsbak <[EMAIL PROTECTED]>
> >>> Date: 29 May 2002 19:38:22 +0200
> >>> To: Hunter Hillegas <[EMAIL PROTECTED]>
> >>> Cc: JBoss User <[EMAIL PROTECTED]>
> >>> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class
> >>> LoadingRepositories
> >>> for EARs?
> >>> 
> >>> It is supposed to be fixed now. It means it passes my simple testcase.
> >>> But I get errors in my real case. Have you tried it on your case after
> >>> the fix?
> >>> 
> >>> On Mon, 2002-05-27 at 22:44, Hunter Hillegas wrote:
>  I haven't had time to put together a test case yet. If you want to do that,
>  I'm sure Scott, et al would be happy to look at it. If not, I'll be working
>  on it sometime this week.
>  
>  As far as this being default behavior, that was discussed previously and it
>  sounds like they have some pretty good reasons to offer both sets of
>  functionality.
>  
>  Hunter
>  
> > From: Marius Kotsbak <[EMAIL PROTECTED]>
> > Reply-To: [EMAIL PROTECTED]
> > Date: 27 May 2002 21:02:20 +0200
> > To: Hunter Hillegas <[EMAIL PROTECTED]>
> > Cc: JBoss User <[EMAIL PROTECTED]>
> > Subject: Re: [JBoss-user] Do I Not Understand Scoped Class
> > LoadingRepositories
> > for EARs?
> > OK. The same case that I have. Tried to put the jboss-app.xml in
> > META-INF in the .ears but I it does'n seem to solve the problem, so I
> > think it is a bug.
> > 
> > I also think that it is a bug that the boss-app-file is needed. The
> > default should be not to share classes between ear/jar/wars.
> > 
> > Have you submitted the files to demonstrate this problem?
> >>> 
> > 
> 
> 
> ___
> 
> Don't miss the 2002 Sprint PCS Application Developer's Conference
> August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm
> 
> ___
> JBoss-user mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/jboss-user



___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] Do I Not Understand Scoped ClassLoadingRepositories for EARs?

2002-05-29 Thread Hunter Hillegas

I'm getting the same error I got before...

When EAR2 is deployed, I get an exception that a CMP field doesn't exist in
the bean class... It does exist in the copy in EAR2, but not in the copy in
EAR1, thus it is still looking at the first copy of the bean class, not the
one that is co-located in the same EAR repository (EAR2).

Since it won't even deploy, I can't test much else.

Hunter

> From: Marius Kotsbak <[EMAIL PROTECTED]>
> Date: 29 May 2002 20:22:15 +0200
> To: Hunter Hillegas <[EMAIL PROTECTED]>
> Cc: JBoss User <[EMAIL PROTECTED]>
> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class LoadingRepositories
> for EARs?
> 
> On Wed, 2002-05-29 at 20:12, Hunter Hillegas wrote:
>> Nope, my second EAR still throws the same exception.
>> 
>> I am running on:
>> 
>> JBoss Release: JBoss-3.0.0RC4 CVSTag=Branch_3_0
>> 
>> Just updated a few minutes ago...
> OK
> 
>> 
>> I didn¹t look at your test case. Did you try to deploy it on your new build?
> Yes. It works now
> 
>> Did it work? If so, what is different between that testcase and the actual
>> EARs you are using?
> It is maybe that I actually try to use my beans, but just deployed the
> testbeans. I have posted my error. Do you get a similar error? Could you
> post yours also? 
> 
>> Why would it work and the other not work?
>> 
>>> From CVS check-ins, it looks like Scott fixed an off-by-one error... But
>> maybe there is another problem?
>> 
>> Hunter
>> 
>>> From: Marius Kotsbak <[EMAIL PROTECTED]>
>>> Date: 29 May 2002 19:38:22 +0200
>>> To: Hunter Hillegas <[EMAIL PROTECTED]>
>>> Cc: JBoss User <[EMAIL PROTECTED]>
>>> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class
>>> LoadingRepositories
>>> for EARs?
>>> 
>>> It is supposed to be fixed now. It means it passes my simple testcase.
>>> But I get errors in my real case. Have you tried it on your case after
>>> the fix?
>>> 
>>> On Mon, 2002-05-27 at 22:44, Hunter Hillegas wrote:
 I haven't had time to put together a test case yet. If you want to do that,
 I'm sure Scott, et al would be happy to look at it. If not, I'll be working
 on it sometime this week.
 
 As far as this being default behavior, that was discussed previously and it
 sounds like they have some pretty good reasons to offer both sets of
 functionality.
 
 Hunter
 
> From: Marius Kotsbak <[EMAIL PROTECTED]>
> Reply-To: [EMAIL PROTECTED]
> Date: 27 May 2002 21:02:20 +0200
> To: Hunter Hillegas <[EMAIL PROTECTED]>
> Cc: JBoss User <[EMAIL PROTECTED]>
> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class
> LoadingRepositories
> for EARs?
> OK. The same case that I have. Tried to put the jboss-app.xml in
> META-INF in the .ears but I it does'n seem to solve the problem, so I
> think it is a bug.
> 
> I also think that it is a bug that the boss-app-file is needed. The
> default should be not to share classes between ear/jar/wars.
> 
> Have you submitted the files to demonstrate this problem?
>>> 
> 


___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] Do I Not Understand Scoped ClassLoadingRepositories for EARs?

2002-05-29 Thread Marius Kotsbak

On Wed, 2002-05-29 at 20:12, Hunter Hillegas wrote:
> Nope, my second EAR still throws the same exception.
> 
> I am running on:
> 
> JBoss Release: JBoss-3.0.0RC4 CVSTag=Branch_3_0
> 
> Just updated a few minutes ago...
OK

> 
> I didn¹t look at your test case. Did you try to deploy it on your new build?
Yes. It works now

> Did it work? If so, what is different between that testcase and the actual
> EARs you are using?
It is maybe that I actually try to use my beans, but just deployed the
testbeans. I have posted my error. Do you get a similar error? Could you
post yours also? 

>Why would it work and the other not work?
> 
> >From CVS check-ins, it looks like Scott fixed an off-by-one error... But
> maybe there is another problem?
> 
> Hunter
> 
> > From: Marius Kotsbak <[EMAIL PROTECTED]>
> > Date: 29 May 2002 19:38:22 +0200
> > To: Hunter Hillegas <[EMAIL PROTECTED]>
> > Cc: JBoss User <[EMAIL PROTECTED]>
> > Subject: Re: [JBoss-user] Do I Not Understand Scoped Class LoadingRepositories
> > for EARs?
> > 
> > It is supposed to be fixed now. It means it passes my simple testcase.
> > But I get errors in my real case. Have you tried it on your case after
> > the fix?
> > 
> > On Mon, 2002-05-27 at 22:44, Hunter Hillegas wrote:
> >> I haven't had time to put together a test case yet. If you want to do that,
> >> I'm sure Scott, et al would be happy to look at it. If not, I'll be working
> >> on it sometime this week.
> >> 
> >> As far as this being default behavior, that was discussed previously and it
> >> sounds like they have some pretty good reasons to offer both sets of
> >> functionality.
> >> 
> >> Hunter
> >> 
> >>> From: Marius Kotsbak <[EMAIL PROTECTED]>
> >>> Reply-To: [EMAIL PROTECTED]
> >>> Date: 27 May 2002 21:02:20 +0200
> >>> To: Hunter Hillegas <[EMAIL PROTECTED]>
> >>> Cc: JBoss User <[EMAIL PROTECTED]>
> >>> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class
> >>> LoadingRepositories
> >>> for EARs?
> >>> OK. The same case that I have. Tried to put the jboss-app.xml in
> >>> META-INF in the .ears but I it does'n seem to solve the problem, so I
> >>> think it is a bug.
> >>> 
> >>> I also think that it is a bug that the boss-app-file is needed. The
> >>> default should be not to share classes between ear/jar/wars.
> >>> 
> >>> Have you submitted the files to demonstrate this problem?
> > 



___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] Do I Not Understand Scoped ClassLoadingRepositories for EARs?

2002-05-29 Thread Hunter Hillegas

Nope, my second EAR still throws the same exception.

I am running on:

JBoss Release: JBoss-3.0.0RC4 CVSTag=Branch_3_0

Just updated a few minutes ago...

I didn¹t look at your test case. Did you try to deploy it on your new build?
Did it work? If so, what is different between that testcase and the actual
EARs you are using? Why would it work and the other not work?

>From CVS check-ins, it looks like Scott fixed an off-by-one error... But
maybe there is another problem?

Hunter

> From: Marius Kotsbak <[EMAIL PROTECTED]>
> Date: 29 May 2002 19:38:22 +0200
> To: Hunter Hillegas <[EMAIL PROTECTED]>
> Cc: JBoss User <[EMAIL PROTECTED]>
> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class LoadingRepositories
> for EARs?
> 
> It is supposed to be fixed now. It means it passes my simple testcase.
> But I get errors in my real case. Have you tried it on your case after
> the fix?
> 
> On Mon, 2002-05-27 at 22:44, Hunter Hillegas wrote:
>> I haven't had time to put together a test case yet. If you want to do that,
>> I'm sure Scott, et al would be happy to look at it. If not, I'll be working
>> on it sometime this week.
>> 
>> As far as this being default behavior, that was discussed previously and it
>> sounds like they have some pretty good reasons to offer both sets of
>> functionality.
>> 
>> Hunter
>> 
>>> From: Marius Kotsbak <[EMAIL PROTECTED]>
>>> Reply-To: [EMAIL PROTECTED]
>>> Date: 27 May 2002 21:02:20 +0200
>>> To: Hunter Hillegas <[EMAIL PROTECTED]>
>>> Cc: JBoss User <[EMAIL PROTECTED]>
>>> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class
>>> LoadingRepositories
>>> for EARs?
>>> OK. The same case that I have. Tried to put the jboss-app.xml in
>>> META-INF in the .ears but I it does'n seem to solve the problem, so I
>>> think it is a bug.
>>> 
>>> I also think that it is a bug that the boss-app-file is needed. The
>>> default should be not to share classes between ear/jar/wars.
>>> 
>>> Have you submitted the files to demonstrate this problem?
> 


___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] Do I Not Understand Scoped ClassLoadingRepositories for EARs?

2002-05-29 Thread Hunter Hillegas

I haven't yet, but I will try it today and see what I end up with.


> From: Marius Kotsbak <[EMAIL PROTECTED]>
> Date: 29 May 2002 19:38:22 +0200
> To: Hunter Hillegas <[EMAIL PROTECTED]>
> Cc: JBoss User <[EMAIL PROTECTED]>
> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class LoadingRepositories
> for EARs?
> 
> It is supposed to be fixed now. It means it passes my simple testcase.
> But I get errors in my real case. Have you tried it on your case after
> the fix?
> 
> On Mon, 2002-05-27 at 22:44, Hunter Hillegas wrote:
>> I haven't had time to put together a test case yet. If you want to do that,
>> I'm sure Scott, et al would be happy to look at it. If not, I'll be working
>> on it sometime this week.
>> 
>> As far as this being default behavior, that was discussed previously and it
>> sounds like they have some pretty good reasons to offer both sets of
>> functionality.
>> 
>> Hunter
>> 
>>> From: Marius Kotsbak <[EMAIL PROTECTED]>
>>> Reply-To: [EMAIL PROTECTED]
>>> Date: 27 May 2002 21:02:20 +0200
>>> To: Hunter Hillegas <[EMAIL PROTECTED]>
>>> Cc: JBoss User <[EMAIL PROTECTED]>
>>> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class
>>> LoadingRepositories
>>> for EARs?
>>> OK. The same case that I have. Tried to put the jboss-app.xml in
>>> META-INF in the .ears but I it does'n seem to solve the problem, so I
>>> think it is a bug.
>>> 
>>> I also think that it is a bug that the boss-app-file is needed. The
>>> default should be not to share classes between ear/jar/wars.
>>> 
>>> Have you submitted the files to demonstrate this problem?
> 


___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] Do I Not Understand Scoped ClassLoadingRepositories for EARs?

2002-05-29 Thread Marius Kotsbak

It is supposed to be fixed now. It means it passes my simple testcase.
But I get errors in my real case. Have you tried it on your case after
the fix?

On Mon, 2002-05-27 at 22:44, Hunter Hillegas wrote:
> I haven't had time to put together a test case yet. If you want to do that,
> I'm sure Scott, et al would be happy to look at it. If not, I'll be working
> on it sometime this week.
> 
> As far as this being default behavior, that was discussed previously and it
> sounds like they have some pretty good reasons to offer both sets of
> functionality.
> 
> Hunter
> 
> > From: Marius Kotsbak <[EMAIL PROTECTED]>
> > Reply-To: [EMAIL PROTECTED]
> > Date: 27 May 2002 21:02:20 +0200
> > To: Hunter Hillegas <[EMAIL PROTECTED]>
> > Cc: JBoss User <[EMAIL PROTECTED]>
> > Subject: Re: [JBoss-user] Do I Not Understand Scoped Class LoadingRepositories
> > for EARs?
> > OK. The same case that I have. Tried to put the jboss-app.xml in
> > META-INF in the .ears but I it does'n seem to solve the problem, so I
> > think it is a bug.
> > 
> > I also think that it is a bug that the boss-app-file is needed. The
> > default should be not to share classes between ear/jar/wars.
> > 
> > Have you submitted the files to demonstrate this problem?



___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] Do I Not Understand Scoped ClassLoadingRepositories for EARs?

2002-05-27 Thread Hunter Hillegas

I haven't had time to put together a test case yet. If you want to do that,
I'm sure Scott, et al would be happy to look at it. If not, I'll be working
on it sometime this week.

As far as this being default behavior, that was discussed previously and it
sounds like they have some pretty good reasons to offer both sets of
functionality.

Hunter

> From: Marius Kotsbak <[EMAIL PROTECTED]>
> Reply-To: [EMAIL PROTECTED]
> Date: 27 May 2002 21:02:20 +0200
> To: Hunter Hillegas <[EMAIL PROTECTED]>
> Cc: JBoss User <[EMAIL PROTECTED]>
> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class LoadingRepositories
> for EARs?
> OK. The same case that I have. Tried to put the jboss-app.xml in
> META-INF in the .ears but I it does'n seem to solve the problem, so I
> think it is a bug.
> 
> I also think that it is a bug that the boss-app-file is needed. The
> default should be not to share classes between ear/jar/wars.
> 
> Have you submitted the files to demonstrate this problem?


___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] Do I Not Understand Scoped ClassLoadingRepositories for EARs?

2002-05-27 Thread Marius Kotsbak

OK. The same case that I have. Tried to put the jboss-app.xml in
META-INF in the .ears but I it does'n seem to solve the problem, so I
think it is a bug.

I also think that it is a bug that the boss-app-file is needed. The
default should be not to share classes between ear/jar/wars.

Have you submitted the files to demonstrate this problem?

On Mon, 2002-05-27 at 01:04, Hunter Hillegas wrote:
> I have two ears that represent different versions of an application. They
> use the same class names and project hierarchy, and without the scoped
> classloading, JBoss sees confuses which class goes with which deployment
> descriptor.
> 
> 
> > From: Marius Kotsbak <[EMAIL PROTECTED]>
> > Reply-To: [EMAIL PROTECTED]
> > Date: 26 May 2002 23:48:29 +0200
> > To: Hunter Hillegas <[EMAIL PROTECTED]>
> > Cc: JBoss User <[EMAIL PROTECTED]>
> > Subject: Re: [JBoss-user] Do I Not Understand Scoped Class LoadingRepositories
> > for EARs?
> > 
> > I meant the reason that you need to use the scoped classloading.
> > 
> > On søn, 2002-05-26 at 23:24, Hunter Hillegas wrote:
> >> My problem is that it doesn't seem to work... I'm putting together a test
> >> case that exhibits the behavior I am seeing so the developers can take a
> >> look at it.
> >> 
> >> Hunter
> >> 
> >>> From: Marius Kotsbak <[EMAIL PROTECTED]>
> >>> Date: 26 May 2002 22:53:14 +0200
> >>> To: Hunter Hillegas <[EMAIL PROTECTED]>
> >>> Cc: JBoss User <[EMAIL PROTECTED]>
> >>> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class
> >>> LoadingRepositories
> >>> for EARs?
> >>> 
> >>> What kind of problem do you have then?
> >>> 
> >>> I don't understand the release-note fully.
> >>> 
> >>> Should META-INF/jboss-app.xml be placed inside the ear? Why do you need
> >>> to include the name of the ear in the xml then?
> >>> 
> >>> What is a valid JMX Objectname? Are users supposed to know the
> >>> JMX-standard?
> >>> 
> >>> Marius K
> >>> 
> >>> 
> >>> On søn, 2002-05-26 at 22:29, Hunter Hillegas wrote:
>  As I understand it, yes, the scoped classloading for EAR respositories is
>  what you need.
>  
>  Read the RC3 release notes on SourceForge for an explanation of how it
>  should work.
>  
>  Hunter
>  
> > From: Marius Kotsbak <[EMAIL PROTECTED]>
> > Reply-To: [EMAIL PROTECTED]
> > Date: 26 May 2002 22:08:03 +0200
> > To: [EMAIL PROTECTED]
> > Cc: Scott M Stark <[EMAIL PROTECTED]>
> > Subject: Re: [JBoss-user] Do I Not Understand Scoped Class
> > LoadingRepositories
> > for EARs?
> > 
> > I beleve I could have a need for this functionality.
> > 
> > I get this error:
> > 
> > Caused by: org.jboss.deployment.DeploymentException: Bean Person has PK
> > of type no.polardesign.boostcom.medlemsregister.PersonPK, so it should
> > have a cmp-field named personID
> > 
> > I have 2 versions of the Person-bean with the same class name/package.
> > This error would be correct if it is using the wrong version. But since
> > they are bound to different jndi-names, jboss should be able to
> > distinguish between the 2 instances. I think it works ok when only one
> > of the versions is deployed. Is this a bug or a feature? If it's a
> > feature, what is it for?
> > 
> > What is the scoped ear stuff for? Will it solve my problem (if it is
> > working!). Is there any doc for this setting? I couldn't even find a dtd
> > for the xml-file (jboss-app.xml) mentioned.
> > 
> > Is this option for having 2 versions of a bean with the same jndi-name?
> > 
> > Marius K
> > Boost Communications A/S
> > 
> > On søn, 2002-05-26 at 21:41, Hunter Hillegas wrote:
> >> Sorry, I should have phrased my question differently.
> >> 
> >> Do you mean I need to write a Junit test? I have never done anything like
> >> that... I poked around on the developer site and didn't find a HOWTO or
> >> any
> >> kind of instructions.
> >> 
> >> Is there any other place I should be looking for that info?
> >> 
> >> Hunter
> >> 
> >>> From: "Scott M Stark" <[EMAIL PROTECTED]>
> >>> Organization: JBoss Group
> >>> Reply-To: [EMAIL PROTECTED]
> >>> Date: Sat, 25 May 2002 21:20:25 -0700
> >>> To: <[EMAIL PROTECTED]>
> >>> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class
> >>> LoadingRepositories
> >>> for EARs?
> >>> 
> >>> The simplest one that demonstrates the problem you are having.
> >>> 
> >>> 
> >>> Scott Stark
> >>> Chief Technology Officer
> >>> JBoss Group, LLC
> >>> 
> >>> - Original Message -
> >>> From: "Hunter Hillegas" <[EMAIL PROTECTED]>
> >>> To: "JBoss User" <[EMAIL PROTECTED]>
> >>> Sent: Saturday, May 25, 2002 12:03 PM
> >>> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class
> >>> LoadingRepositories for EARs?
> >>> 
> >>

Re: [JBoss-user] Do I Not Understand Scoped ClassLoadingRepositories for EARs?

2002-05-26 Thread Hunter Hillegas

I have two ears that represent different versions of an application. They
use the same class names and project hierarchy, and without the scoped
classloading, JBoss sees confuses which class goes with which deployment
descriptor.


> From: Marius Kotsbak <[EMAIL PROTECTED]>
> Reply-To: [EMAIL PROTECTED]
> Date: 26 May 2002 23:48:29 +0200
> To: Hunter Hillegas <[EMAIL PROTECTED]>
> Cc: JBoss User <[EMAIL PROTECTED]>
> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class LoadingRepositories
> for EARs?
> 
> I meant the reason that you need to use the scoped classloading.
> 
> On søn, 2002-05-26 at 23:24, Hunter Hillegas wrote:
>> My problem is that it doesn't seem to work... I'm putting together a test
>> case that exhibits the behavior I am seeing so the developers can take a
>> look at it.
>> 
>> Hunter
>> 
>>> From: Marius Kotsbak <[EMAIL PROTECTED]>
>>> Date: 26 May 2002 22:53:14 +0200
>>> To: Hunter Hillegas <[EMAIL PROTECTED]>
>>> Cc: JBoss User <[EMAIL PROTECTED]>
>>> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class
>>> LoadingRepositories
>>> for EARs?
>>> 
>>> What kind of problem do you have then?
>>> 
>>> I don't understand the release-note fully.
>>> 
>>> Should META-INF/jboss-app.xml be placed inside the ear? Why do you need
>>> to include the name of the ear in the xml then?
>>> 
>>> What is a valid JMX Objectname? Are users supposed to know the
>>> JMX-standard?
>>> 
>>> Marius K
>>> 
>>> 
>>> On søn, 2002-05-26 at 22:29, Hunter Hillegas wrote:
 As I understand it, yes, the scoped classloading for EAR respositories is
 what you need.
 
 Read the RC3 release notes on SourceForge for an explanation of how it
 should work.
 
 Hunter
 
> From: Marius Kotsbak <[EMAIL PROTECTED]>
> Reply-To: [EMAIL PROTECTED]
> Date: 26 May 2002 22:08:03 +0200
> To: [EMAIL PROTECTED]
> Cc: Scott M Stark <[EMAIL PROTECTED]>
> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class
> LoadingRepositories
> for EARs?
> 
> I beleve I could have a need for this functionality.
> 
> I get this error:
> 
> Caused by: org.jboss.deployment.DeploymentException: Bean Person has PK
> of type no.polardesign.boostcom.medlemsregister.PersonPK, so it should
> have a cmp-field named personID
> 
> I have 2 versions of the Person-bean with the same class name/package.
> This error would be correct if it is using the wrong version. But since
> they are bound to different jndi-names, jboss should be able to
> distinguish between the 2 instances. I think it works ok when only one
> of the versions is deployed. Is this a bug or a feature? If it's a
> feature, what is it for?
> 
> What is the scoped ear stuff for? Will it solve my problem (if it is
> working!). Is there any doc for this setting? I couldn't even find a dtd
> for the xml-file (jboss-app.xml) mentioned.
> 
> Is this option for having 2 versions of a bean with the same jndi-name?
> 
> Marius K
> Boost Communications A/S
> 
> On søn, 2002-05-26 at 21:41, Hunter Hillegas wrote:
>> Sorry, I should have phrased my question differently.
>> 
>> Do you mean I need to write a Junit test? I have never done anything like
>> that... I poked around on the developer site and didn't find a HOWTO or
>> any
>> kind of instructions.
>> 
>> Is there any other place I should be looking for that info?
>> 
>> Hunter
>> 
>>> From: "Scott M Stark" <[EMAIL PROTECTED]>
>>> Organization: JBoss Group
>>> Reply-To: [EMAIL PROTECTED]
>>> Date: Sat, 25 May 2002 21:20:25 -0700
>>> To: <[EMAIL PROTECTED]>
>>> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class
>>> LoadingRepositories
>>> for EARs?
>>> 
>>> The simplest one that demonstrates the problem you are having.
>>> 
>>> 
>>> Scott Stark
>>> Chief Technology Officer
>>> JBoss Group, LLC
>>> 
>>> - Original Message -
>>> From: "Hunter Hillegas" <[EMAIL PROTECTED]>
>>> To: "JBoss User" <[EMAIL PROTECTED]>
>>> Sent: Saturday, May 25, 2002 12:03 PM
>>> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class
>>> LoadingRepositories for EARs?
>>> 
>>> 
 The same thing occurs if both EARs define unique repositories... The
 repositories show up in the JMX HTML console but the same type of
>>> exceptions
 occur.
 
 What kind of testcase do you want?
 
 Hunter
 
>>> 
>>> 
>>> 
>>> ___
>>> 
>>> Don't miss the 2002 Sprint PCS Application Developer's Conference
>>> August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm
>>> 
>>> ___
>>> JBoss-user mailing li

Re: [JBoss-user] Do I Not Understand Scoped ClassLoadingRepositories for EARs?

2002-05-26 Thread Marius Kotsbak

I meant the reason that you need to use the scoped classloading.

On søn, 2002-05-26 at 23:24, Hunter Hillegas wrote:
> My problem is that it doesn't seem to work... I'm putting together a test
> case that exhibits the behavior I am seeing so the developers can take a
> look at it.
> 
> Hunter
> 
> > From: Marius Kotsbak <[EMAIL PROTECTED]>
> > Date: 26 May 2002 22:53:14 +0200
> > To: Hunter Hillegas <[EMAIL PROTECTED]>
> > Cc: JBoss User <[EMAIL PROTECTED]>
> > Subject: Re: [JBoss-user] Do I Not Understand Scoped Class LoadingRepositories
> > for EARs?
> > 
> > What kind of problem do you have then?
> > 
> > I don't understand the release-note fully.
> > 
> > Should META-INF/jboss-app.xml be placed inside the ear? Why do you need
> > to include the name of the ear in the xml then?
> > 
> > What is a valid JMX Objectname? Are users supposed to know the
> > JMX-standard?
> > 
> > Marius K
> > 
> > 
> > On søn, 2002-05-26 at 22:29, Hunter Hillegas wrote:
> >> As I understand it, yes, the scoped classloading for EAR respositories is
> >> what you need.
> >> 
> >> Read the RC3 release notes on SourceForge for an explanation of how it
> >> should work.
> >> 
> >> Hunter
> >> 
> >>> From: Marius Kotsbak <[EMAIL PROTECTED]>
> >>> Reply-To: [EMAIL PROTECTED]
> >>> Date: 26 May 2002 22:08:03 +0200
> >>> To: [EMAIL PROTECTED]
> >>> Cc: Scott M Stark <[EMAIL PROTECTED]>
> >>> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class
> >>> LoadingRepositories
> >>> for EARs?
> >>> 
> >>> I beleve I could have a need for this functionality.
> >>> 
> >>> I get this error:
> >>> 
> >>> Caused by: org.jboss.deployment.DeploymentException: Bean Person has PK
> >>> of type no.polardesign.boostcom.medlemsregister.PersonPK, so it should
> >>> have a cmp-field named personID
> >>> 
> >>> I have 2 versions of the Person-bean with the same class name/package.
> >>> This error would be correct if it is using the wrong version. But since
> >>> they are bound to different jndi-names, jboss should be able to
> >>> distinguish between the 2 instances. I think it works ok when only one
> >>> of the versions is deployed. Is this a bug or a feature? If it's a
> >>> feature, what is it for?
> >>> 
> >>> What is the scoped ear stuff for? Will it solve my problem (if it is
> >>> working!). Is there any doc for this setting? I couldn't even find a dtd
> >>> for the xml-file (jboss-app.xml) mentioned.
> >>> 
> >>> Is this option for having 2 versions of a bean with the same jndi-name?
> >>> 
> >>> Marius K
> >>> Boost Communications A/S
> >>> 
> >>> On søn, 2002-05-26 at 21:41, Hunter Hillegas wrote:
>  Sorry, I should have phrased my question differently.
>  
>  Do you mean I need to write a Junit test? I have never done anything like
>  that... I poked around on the developer site and didn't find a HOWTO or any
>  kind of instructions.
>  
>  Is there any other place I should be looking for that info?
>  
>  Hunter
>  
> > From: "Scott M Stark" <[EMAIL PROTECTED]>
> > Organization: JBoss Group
> > Reply-To: [EMAIL PROTECTED]
> > Date: Sat, 25 May 2002 21:20:25 -0700
> > To: <[EMAIL PROTECTED]>
> > Subject: Re: [JBoss-user] Do I Not Understand Scoped Class
> > LoadingRepositories
> > for EARs?
> > 
> > The simplest one that demonstrates the problem you are having.
> > 
> > 
> > Scott Stark
> > Chief Technology Officer
> > JBoss Group, LLC
> > 
> > - Original Message -
> > From: "Hunter Hillegas" <[EMAIL PROTECTED]>
> > To: "JBoss User" <[EMAIL PROTECTED]>
> > Sent: Saturday, May 25, 2002 12:03 PM
> > Subject: Re: [JBoss-user] Do I Not Understand Scoped Class
> > LoadingRepositories for EARs?
> > 
> > 
> >> The same thing occurs if both EARs define unique repositories... The
> >> repositories show up in the JMX HTML console but the same type of
> > exceptions
> >> occur.
> >> 
> >> What kind of testcase do you want?
> >> 
> >> Hunter
> >> 
> > 
> > 
> > 
> > ___
> > 
> > Don't miss the 2002 Sprint PCS Application Developer's Conference
> > August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm
> > 
> > ___
> > JBoss-user mailing list
> > [EMAIL PROTECTED]
> > https://lists.sourceforge.net/lists/listinfo/jboss-user
>  
>  
>  ___
>  
>  Don't miss the 2002 Sprint PCS Application Developer's Conference
>  August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm
>  
>  ___
>  JBoss-user mailing list
>  [EMAIL PROTECTED]
>  https://lists.sourceforge.net/lists/listinfo/jboss-user
> >>> 
> >>> 
> >

Re: [JBoss-user] Do I Not Understand Scoped ClassLoadingRepositories for EARs?

2002-05-26 Thread Hunter Hillegas

My problem is that it doesn't seem to work... I'm putting together a test
case that exhibits the behavior I am seeing so the developers can take a
look at it.

Hunter

> From: Marius Kotsbak <[EMAIL PROTECTED]>
> Date: 26 May 2002 22:53:14 +0200
> To: Hunter Hillegas <[EMAIL PROTECTED]>
> Cc: JBoss User <[EMAIL PROTECTED]>
> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class LoadingRepositories
> for EARs?
> 
> What kind of problem do you have then?
> 
> I don't understand the release-note fully.
> 
> Should META-INF/jboss-app.xml be placed inside the ear? Why do you need
> to include the name of the ear in the xml then?
> 
> What is a valid JMX Objectname? Are users supposed to know the
> JMX-standard?
> 
> Marius K
> 
> 
> On søn, 2002-05-26 at 22:29, Hunter Hillegas wrote:
>> As I understand it, yes, the scoped classloading for EAR respositories is
>> what you need.
>> 
>> Read the RC3 release notes on SourceForge for an explanation of how it
>> should work.
>> 
>> Hunter
>> 
>>> From: Marius Kotsbak <[EMAIL PROTECTED]>
>>> Reply-To: [EMAIL PROTECTED]
>>> Date: 26 May 2002 22:08:03 +0200
>>> To: [EMAIL PROTECTED]
>>> Cc: Scott M Stark <[EMAIL PROTECTED]>
>>> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class
>>> LoadingRepositories
>>> for EARs?
>>> 
>>> I beleve I could have a need for this functionality.
>>> 
>>> I get this error:
>>> 
>>> Caused by: org.jboss.deployment.DeploymentException: Bean Person has PK
>>> of type no.polardesign.boostcom.medlemsregister.PersonPK, so it should
>>> have a cmp-field named personID
>>> 
>>> I have 2 versions of the Person-bean with the same class name/package.
>>> This error would be correct if it is using the wrong version. But since
>>> they are bound to different jndi-names, jboss should be able to
>>> distinguish between the 2 instances. I think it works ok when only one
>>> of the versions is deployed. Is this a bug or a feature? If it's a
>>> feature, what is it for?
>>> 
>>> What is the scoped ear stuff for? Will it solve my problem (if it is
>>> working!). Is there any doc for this setting? I couldn't even find a dtd
>>> for the xml-file (jboss-app.xml) mentioned.
>>> 
>>> Is this option for having 2 versions of a bean with the same jndi-name?
>>> 
>>> Marius K
>>> Boost Communications A/S
>>> 
>>> On søn, 2002-05-26 at 21:41, Hunter Hillegas wrote:
 Sorry, I should have phrased my question differently.
 
 Do you mean I need to write a Junit test? I have never done anything like
 that... I poked around on the developer site and didn't find a HOWTO or any
 kind of instructions.
 
 Is there any other place I should be looking for that info?
 
 Hunter
 
> From: "Scott M Stark" <[EMAIL PROTECTED]>
> Organization: JBoss Group
> Reply-To: [EMAIL PROTECTED]
> Date: Sat, 25 May 2002 21:20:25 -0700
> To: <[EMAIL PROTECTED]>
> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class
> LoadingRepositories
> for EARs?
> 
> The simplest one that demonstrates the problem you are having.
> 
> 
> Scott Stark
> Chief Technology Officer
> JBoss Group, LLC
> 
> - Original Message -
> From: "Hunter Hillegas" <[EMAIL PROTECTED]>
> To: "JBoss User" <[EMAIL PROTECTED]>
> Sent: Saturday, May 25, 2002 12:03 PM
> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class
> LoadingRepositories for EARs?
> 
> 
>> The same thing occurs if both EARs define unique repositories... The
>> repositories show up in the JMX HTML console but the same type of
> exceptions
>> occur.
>> 
>> What kind of testcase do you want?
>> 
>> Hunter
>> 
> 
> 
> 
> ___
> 
> Don't miss the 2002 Sprint PCS Application Developer's Conference
> August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm
> 
> ___
> JBoss-user mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/jboss-user
 
 
 ___
 
 Don't miss the 2002 Sprint PCS Application Developer's Conference
 August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm
 
 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/jboss-user
>>> 
>>> 
>>> 
>>> ___
>>> 
>>> Don't miss the 2002 Sprint PCS Application Developer's Conference
>>> August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm
>>> 
>>> ___
>>> JBoss-user mailing list
>>> [EMAIL PROTECTED]
>>> https://lists.sourceforge.net/lists/listinfo/jboss-user
> 



Re: [JBoss-user] Do I Not Understand Scoped ClassLoadingRepositories for EARs?

2002-05-26 Thread Marius Kotsbak

What kind of problem do you have then?

I don't understand the release-note fully.

Should META-INF/jboss-app.xml be placed inside the ear? Why do you need
to include the name of the ear in the xml then?

What is a valid JMX Objectname? Are users supposed to know the
JMX-standard?

Marius K


On søn, 2002-05-26 at 22:29, Hunter Hillegas wrote:
> As I understand it, yes, the scoped classloading for EAR respositories is
> what you need.
> 
> Read the RC3 release notes on SourceForge for an explanation of how it
> should work.
> 
> Hunter
> 
> > From: Marius Kotsbak <[EMAIL PROTECTED]>
> > Reply-To: [EMAIL PROTECTED]
> > Date: 26 May 2002 22:08:03 +0200
> > To: [EMAIL PROTECTED]
> > Cc: Scott M Stark <[EMAIL PROTECTED]>
> > Subject: Re: [JBoss-user] Do I Not Understand Scoped Class LoadingRepositories
> > for EARs?
> > 
> > I beleve I could have a need for this functionality.
> > 
> > I get this error:
> > 
> > Caused by: org.jboss.deployment.DeploymentException: Bean Person has PK
> > of type no.polardesign.boostcom.medlemsregister.PersonPK, so it should
> > have a cmp-field named personID
> > 
> > I have 2 versions of the Person-bean with the same class name/package.
> > This error would be correct if it is using the wrong version. But since
> > they are bound to different jndi-names, jboss should be able to
> > distinguish between the 2 instances. I think it works ok when only one
> > of the versions is deployed. Is this a bug or a feature? If it's a
> > feature, what is it for?
> > 
> > What is the scoped ear stuff for? Will it solve my problem (if it is
> > working!). Is there any doc for this setting? I couldn't even find a dtd
> > for the xml-file (jboss-app.xml) mentioned.
> > 
> > Is this option for having 2 versions of a bean with the same jndi-name?
> > 
> > Marius K
> > Boost Communications A/S
> > 
> > On søn, 2002-05-26 at 21:41, Hunter Hillegas wrote:
> >> Sorry, I should have phrased my question differently.
> >> 
> >> Do you mean I need to write a Junit test? I have never done anything like
> >> that... I poked around on the developer site and didn't find a HOWTO or any
> >> kind of instructions.
> >> 
> >> Is there any other place I should be looking for that info?
> >> 
> >> Hunter
> >> 
> >>> From: "Scott M Stark" <[EMAIL PROTECTED]>
> >>> Organization: JBoss Group
> >>> Reply-To: [EMAIL PROTECTED]
> >>> Date: Sat, 25 May 2002 21:20:25 -0700
> >>> To: <[EMAIL PROTECTED]>
> >>> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class
> >>> LoadingRepositories
> >>> for EARs?
> >>> 
> >>> The simplest one that demonstrates the problem you are having.
> >>> 
> >>> 
> >>> Scott Stark
> >>> Chief Technology Officer
> >>> JBoss Group, LLC
> >>> 
> >>> - Original Message -
> >>> From: "Hunter Hillegas" <[EMAIL PROTECTED]>
> >>> To: "JBoss User" <[EMAIL PROTECTED]>
> >>> Sent: Saturday, May 25, 2002 12:03 PM
> >>> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class
> >>> LoadingRepositories for EARs?
> >>> 
> >>> 
>  The same thing occurs if both EARs define unique repositories... The
>  repositories show up in the JMX HTML console but the same type of
> >>> exceptions
>  occur.
>  
>  What kind of testcase do you want?
>  
>  Hunter
>  
> >>> 
> >>> 
> >>> 
> >>> ___
> >>> 
> >>> Don't miss the 2002 Sprint PCS Application Developer's Conference
> >>> August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm
> >>> 
> >>> ___
> >>> JBoss-user mailing list
> >>> [EMAIL PROTECTED]
> >>> https://lists.sourceforge.net/lists/listinfo/jboss-user
> >> 
> >> 
> >> ___
> >> 
> >> Don't miss the 2002 Sprint PCS Application Developer's Conference
> >> August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm
> >> 
> >> ___
> >> JBoss-user mailing list
> >> [EMAIL PROTECTED]
> >> https://lists.sourceforge.net/lists/listinfo/jboss-user
> > 
> > 
> > 
> > ___
> > 
> > Don't miss the 2002 Sprint PCS Application Developer's Conference
> > August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm
> > 
> > ___
> > JBoss-user mailing list
> > [EMAIL PROTECTED]
> > https://lists.sourceforge.net/lists/listinfo/jboss-user



___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] Do I Not Understand Scoped ClassLoadingRepositories for EARs?

2002-05-26 Thread Hunter Hillegas

As I understand it, yes, the scoped classloading for EAR respositories is
what you need.

Read the RC3 release notes on SourceForge for an explanation of how it
should work.

Hunter

> From: Marius Kotsbak <[EMAIL PROTECTED]>
> Reply-To: [EMAIL PROTECTED]
> Date: 26 May 2002 22:08:03 +0200
> To: [EMAIL PROTECTED]
> Cc: Scott M Stark <[EMAIL PROTECTED]>
> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class LoadingRepositories
> for EARs?
> 
> I beleve I could have a need for this functionality.
> 
> I get this error:
> 
> Caused by: org.jboss.deployment.DeploymentException: Bean Person has PK
> of type no.polardesign.boostcom.medlemsregister.PersonPK, so it should
> have a cmp-field named personID
> 
> I have 2 versions of the Person-bean with the same class name/package.
> This error would be correct if it is using the wrong version. But since
> they are bound to different jndi-names, jboss should be able to
> distinguish between the 2 instances. I think it works ok when only one
> of the versions is deployed. Is this a bug or a feature? If it's a
> feature, what is it for?
> 
> What is the scoped ear stuff for? Will it solve my problem (if it is
> working!). Is there any doc for this setting? I couldn't even find a dtd
> for the xml-file (jboss-app.xml) mentioned.
> 
> Is this option for having 2 versions of a bean with the same jndi-name?
> 
> Marius K
> Boost Communications A/S
> 
> On søn, 2002-05-26 at 21:41, Hunter Hillegas wrote:
>> Sorry, I should have phrased my question differently.
>> 
>> Do you mean I need to write a Junit test? I have never done anything like
>> that... I poked around on the developer site and didn't find a HOWTO or any
>> kind of instructions.
>> 
>> Is there any other place I should be looking for that info?
>> 
>> Hunter
>> 
>>> From: "Scott M Stark" <[EMAIL PROTECTED]>
>>> Organization: JBoss Group
>>> Reply-To: [EMAIL PROTECTED]
>>> Date: Sat, 25 May 2002 21:20:25 -0700
>>> To: <[EMAIL PROTECTED]>
>>> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class
>>> LoadingRepositories
>>> for EARs?
>>> 
>>> The simplest one that demonstrates the problem you are having.
>>> 
>>> 
>>> Scott Stark
>>> Chief Technology Officer
>>> JBoss Group, LLC
>>> 
>>> - Original Message -
>>> From: "Hunter Hillegas" <[EMAIL PROTECTED]>
>>> To: "JBoss User" <[EMAIL PROTECTED]>
>>> Sent: Saturday, May 25, 2002 12:03 PM
>>> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class
>>> LoadingRepositories for EARs?
>>> 
>>> 
 The same thing occurs if both EARs define unique repositories... The
 repositories show up in the JMX HTML console but the same type of
>>> exceptions
 occur.
 
 What kind of testcase do you want?
 
 Hunter
 
>>> 
>>> 
>>> 
>>> ___
>>> 
>>> Don't miss the 2002 Sprint PCS Application Developer's Conference
>>> August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm
>>> 
>>> ___
>>> JBoss-user mailing list
>>> [EMAIL PROTECTED]
>>> https://lists.sourceforge.net/lists/listinfo/jboss-user
>> 
>> 
>> ___
>> 
>> Don't miss the 2002 Sprint PCS Application Developer's Conference
>> August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm
>> 
>> ___
>> JBoss-user mailing list
>> [EMAIL PROTECTED]
>> https://lists.sourceforge.net/lists/listinfo/jboss-user
> 
> 
> 
> ___
> 
> Don't miss the 2002 Sprint PCS Application Developer's Conference
> August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm
> 
> ___
> JBoss-user mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/jboss-user


___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] Do I Not Understand Scoped ClassLoadingRepositories for EARs?

2002-05-26 Thread Marius Kotsbak

I beleve I could have a need for this functionality. 

I get this error:

Caused by: org.jboss.deployment.DeploymentException: Bean Person has PK
of type no.polardesign.boostcom.medlemsregister.PersonPK, so it should
have a cmp-field named personID

I have 2 versions of the Person-bean with the same class name/package.
This error would be correct if it is using the wrong version. But since
they are bound to different jndi-names, jboss should be able to
distinguish between the 2 instances. I think it works ok when only one
of the versions is deployed. Is this a bug or a feature? If it's a
feature, what is it for?

What is the scoped ear stuff for? Will it solve my problem (if it is
working!). Is there any doc for this setting? I couldn't even find a dtd
for the xml-file (jboss-app.xml) mentioned.

Is this option for having 2 versions of a bean with the same jndi-name?

Marius K
Boost Communications A/S

On søn, 2002-05-26 at 21:41, Hunter Hillegas wrote:
> Sorry, I should have phrased my question differently.
> 
> Do you mean I need to write a Junit test? I have never done anything like
> that... I poked around on the developer site and didn't find a HOWTO or any
> kind of instructions.
> 
> Is there any other place I should be looking for that info?
> 
> Hunter
> 
> > From: "Scott M Stark" <[EMAIL PROTECTED]>
> > Organization: JBoss Group
> > Reply-To: [EMAIL PROTECTED]
> > Date: Sat, 25 May 2002 21:20:25 -0700
> > To: <[EMAIL PROTECTED]>
> > Subject: Re: [JBoss-user] Do I Not Understand Scoped Class LoadingRepositories
> > for EARs?
> > 
> > The simplest one that demonstrates the problem you are having.
> > 
> > 
> > Scott Stark
> > Chief Technology Officer
> > JBoss Group, LLC
> > 
> > - Original Message -
> > From: "Hunter Hillegas" <[EMAIL PROTECTED]>
> > To: "JBoss User" <[EMAIL PROTECTED]>
> > Sent: Saturday, May 25, 2002 12:03 PM
> > Subject: Re: [JBoss-user] Do I Not Understand Scoped Class
> > LoadingRepositories for EARs?
> > 
> > 
> >> The same thing occurs if both EARs define unique repositories... The
> >> repositories show up in the JMX HTML console but the same type of
> > exceptions
> >> occur.
> >> 
> >> What kind of testcase do you want?
> >> 
> >> Hunter
> >> 
> > 
> > 
> > 
> > ___
> > 
> > Don't miss the 2002 Sprint PCS Application Developer's Conference
> > August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm
> > 
> > ___
> > JBoss-user mailing list
> > [EMAIL PROTECTED]
> > https://lists.sourceforge.net/lists/listinfo/jboss-user
> 
> 
> ___
> 
> Don't miss the 2002 Sprint PCS Application Developer's Conference
> August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm
> 
> ___
> JBoss-user mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/jboss-user



___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] Do I Not Understand Scoped ClassLoadingRepositories for EARs?

2002-05-26 Thread Scott M Stark

No, create two ears that demonstrate the problem when deployed
against a standard JBoss distribution.


Scott Stark
Chief Technology Officer
JBoss Group, LLC

- Original Message -
From: "Hunter Hillegas" <[EMAIL PROTECTED]>
To: "JBoss User" <[EMAIL PROTECTED]>
Sent: Sunday, May 26, 2002 12:41 PM
Subject: Re: [JBoss-user] Do I Not Understand Scoped
ClassLoadingRepositories for EARs?


> Sorry, I should have phrased my question differently.
>
> Do you mean I need to write a Junit test? I have never done anything like
> that... I poked around on the developer site and didn't find a HOWTO or
any
> kind of instructions.
>
> Is there any other place I should be looking for that info?
>
> Hunter
>



___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] Do I Not Understand Scoped ClassLoadingRepositories for EARs?

2002-05-26 Thread Hunter Hillegas

Sorry, I should have phrased my question differently.

Do you mean I need to write a Junit test? I have never done anything like
that... I poked around on the developer site and didn't find a HOWTO or any
kind of instructions.

Is there any other place I should be looking for that info?

Hunter

> From: "Scott M Stark" <[EMAIL PROTECTED]>
> Organization: JBoss Group
> Reply-To: [EMAIL PROTECTED]
> Date: Sat, 25 May 2002 21:20:25 -0700
> To: <[EMAIL PROTECTED]>
> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class LoadingRepositories
> for EARs?
> 
> The simplest one that demonstrates the problem you are having.
> 
> 
> Scott Stark
> Chief Technology Officer
> JBoss Group, LLC
> 
> - Original Message -
> From: "Hunter Hillegas" <[EMAIL PROTECTED]>
> To: "JBoss User" <[EMAIL PROTECTED]>
> Sent: Saturday, May 25, 2002 12:03 PM
> Subject: Re: [JBoss-user] Do I Not Understand Scoped Class
> LoadingRepositories for EARs?
> 
> 
>> The same thing occurs if both EARs define unique repositories... The
>> repositories show up in the JMX HTML console but the same type of
> exceptions
>> occur.
>> 
>> What kind of testcase do you want?
>> 
>> Hunter
>> 
> 
> 
> 
> ___
> 
> Don't miss the 2002 Sprint PCS Application Developer's Conference
> August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm
> 
> ___
> JBoss-user mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/jboss-user


___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user