RE: [JBoss-dev] Unassigned for 4.0.4

2006-04-07 Thread Scott Marlow
Thanks to everyone that responded.  I understand now.

On Fri, 2006-04-07 at 08:07 -0500, Steve Ebersole wrote:
> Just so it is perfectly clear:
> 
> Hibernate does not use its cache providers in any way, shape or form for
> implementing the "first level cache".  As Max mentioned, the "first
> level cache" is really just a particular aspect of the role fulfilled by
> the org.hibernate.engine.PersistenceContext implementation which
> internally uses a series of maps.
> 
> Thus, no need to bundle ehcache at all unless a user wants to use that
> as their second level cache.
> 
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of
> Scott Marlow
> Sent: Tuesday, April 04, 2006 10:12 AM
> To: jboss-development@lists.sourceforge.net
> Subject: Re: [JBoss-dev] Unassigned for 4.0.4
> 
> On Tue, 2006-04-04 at 15:56 +0200, Max Rydahl Andersen wrote:
> > On Tue, 04 Apr 2006 15:44:51 +0200, Scott Marlow  
> > <[EMAIL PROTECTED]> wrote:
> > 
> > > Sounds good to me.  My next question is how do we tell Hibernate to
> use
> > > JBoss Cache as the first level cache?
> > 
> > *first* level cache ? Why would you ever want that ?
> > 
> > You mean second level cache, right ?
> I mean first level cache, which by default is using ehcache-1.1.jar
> (jira JBAS-2868).  We don't include ehcache-1.1.jar with the 4.0.4 as
> release which is why it cannot be resolved.  I would like to use jboss
> cache instead as the first level cache but am not sure if Hibernate
> allows that.
> 
> 
> 
> 
> 
> ---
> This SF.Net email is sponsored by xPML, a groundbreaking scripting
> language
> that extends applications into web and mobile media. Attend the live
> webcast
> and join the prime developer group breaking into this new coding
> territory!
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
> ___
> JBoss-Development mailing list
> JBoss-Development@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jboss-development
> 
> 
> ---
> This SF.Net email is sponsored by xPML, a groundbreaking scripting language
> that extends applications into web and mobile media. Attend the live webcast
> and join the prime developer group breaking into this new coding territory!
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid0944&bid$1720&dat1642
> ___
> JBoss-Development mailing list
> JBoss-Development@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jboss-development



---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


RE: [JBoss-dev] Unassigned for 4.0.4

2006-04-07 Thread Steve Ebersole
Just so it is perfectly clear:

Hibernate does not use its cache providers in any way, shape or form for
implementing the "first level cache".  As Max mentioned, the "first
level cache" is really just a particular aspect of the role fulfilled by
the org.hibernate.engine.PersistenceContext implementation which
internally uses a series of maps.

Thus, no need to bundle ehcache at all unless a user wants to use that
as their second level cache.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
Scott Marlow
Sent: Tuesday, April 04, 2006 10:12 AM
To: jboss-development@lists.sourceforge.net
Subject: Re: [JBoss-dev] Unassigned for 4.0.4

On Tue, 2006-04-04 at 15:56 +0200, Max Rydahl Andersen wrote:
> On Tue, 04 Apr 2006 15:44:51 +0200, Scott Marlow  
> <[EMAIL PROTECTED]> wrote:
> 
> > Sounds good to me.  My next question is how do we tell Hibernate to
use
> > JBoss Cache as the first level cache?
> 
> *first* level cache ? Why would you ever want that ?
> 
> You mean second level cache, right ?
I mean first level cache, which by default is using ehcache-1.1.jar
(jira JBAS-2868).  We don't include ehcache-1.1.jar with the 4.0.4 as
release which is why it cannot be resolved.  I would like to use jboss
cache instead as the first level cache but am not sure if Hibernate
allows that.





---
This SF.Net email is sponsored by xPML, a groundbreaking scripting
language
that extends applications into web and mobile media. Attend the live
webcast
and join the prime developer group breaking into this new coding
territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid0944&bid$1720&dat1642
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


Re: [JBoss-dev] Unassigned for 4.0.4

2006-04-04 Thread Max Rydahl Andersen

Can I ask a dumb question:

Why?


Why - as in why the first-level cache in Hibernate is not pluggable ?

Then the answer is:

The first-level cache is a very specialized context that is very crucial  
for Hibernate
to work.  "first-level cache" is also generic term used to explain people  
*one* of the

primary functions of the Session.

The first level cache in Hibernate is basically the Session (or more  
precise the PersistenceContext)
and this "beast" is more than just a basic "cache" and even considering  
having

this stuff in a cache such as ehcache, jbosscache etc. does not make sense.

For one thing it has to ensure session scope identity of objects and thus  
these objects
are in no way "shareable" with others. Something that sets it apart from  
what a normal

cache is actually used for.

I can very much recommend Chapter 5 (especially 5.3.2) in HiA about this  
particular subject.


(In theory we could provide pluggability for the  
Session/PersistenceContext but no

practical need have been presented...)

/max


-Andy

Max Rydahl Andersen wrote:


> Sounds good to me.  My next question is how do we tell Hibernate to  
use

> JBoss Cache as the first level cache?

*first* level cache ? Why would you ever want that ?

You mean second level cache, right ?
I mean first level cache, which by default is using ehcache-1.1.jar  
(jira JBAS-2868).  We don't include ehcache-1.1.jar with the 4.0.4 as
 Again - Hibernate does not support pluggable first level cache; only  
the
second level cache is pluggable. and yes ehcache is the default  
*second* level
cache as currently that is the best available default singleprocess  
cache.

 Mannik is the one who has the details about the current state of having
JBossCache work as an efficient single process cache with hibernate.
  /max





---
This SF.Net email is sponsored by xPML, a groundbreaking scripting  
language
that extends applications into web and mobile media. Attend the live  
webcast
and join the prime developer group breaking into this new coding  
territory!

http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development

   
Max Rydahl Andersen
callto://max.rydahl.andersen
 Hibernate
[EMAIL PROTECTED]
http://hibernate.org
 JBoss Inc
[EMAIL PROTECTED]
  ---
This SF.Net email is sponsored by xPML, a groundbreaking scripting  
language
that extends applications into web and mobile media. Attend the live  
webcast
and join the prime developer group breaking into this new coding  
territory!

http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development






---
This SF.Net email is sponsored by xPML, a groundbreaking scripting  
language
that extends applications into web and mobile media. Attend the live  
webcast
and join the prime developer group breaking into this new coding  
territory!

http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development




--
--
Max Rydahl Andersen
callto://max.rydahl.andersen

Hibernate
[EMAIL PROTECTED]
http://hibernate.org

JBoss Inc
[EMAIL PROTECTED]


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


Re: [JBoss-dev] Unassigned for 4.0.4

2006-04-04 Thread Andrew Oliver

Can I ask a dumb question:

Why?

-Andy

Max Rydahl Andersen wrote:


> Sounds good to me.  My next question is how do we tell Hibernate to 
use

> JBoss Cache as the first level cache?

*first* level cache ? Why would you ever want that ?

You mean second level cache, right ?
I mean first level cache, which by default is using ehcache-1.1.jar 
(jira JBAS-2868).  We don't include ehcache-1.1.jar with the 4.0.4 as


Again - Hibernate does not support pluggable first level cache; only the
second level cache is pluggable. and yes ehcache is the default *second* 
level

cache as currently that is the best available default singleprocess cache.

Mannik is the one who has the details about the current state of having
JBossCache work as an efficient single process cache with hibernate.


/max





---
This SF.Net email is sponsored by xPML, a groundbreaking scripting 
language
that extends applications into web and mobile media. Attend the live 
webcast
and join the prime developer group breaking into this new coding 
territory!

http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development





Max Rydahl Andersen
callto://max.rydahl.andersen

Hibernate
[EMAIL PROTECTED]
http://hibernate.org

JBoss Inc
[EMAIL PROTECTED]


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live 
webcast

and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development






---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


Re: [JBoss-dev] Unassigned for 4.0.4

2006-04-04 Thread Max Rydahl Andersen


> Sounds good to me.  My next question is how do we tell Hibernate to  
use

> JBoss Cache as the first level cache?

*first* level cache ? Why would you ever want that ?

You mean second level cache, right ?
I mean first level cache, which by default is using ehcache-1.1.jar  
(jira JBAS-2868).  We don't include ehcache-1.1.jar with the 4.0.4 as


Again - Hibernate does not support pluggable first level cache; only the
second level cache is pluggable. and yes ehcache is the default *second*  
level

cache as currently that is the best available default singleprocess cache.

Mannik is the one who has the details about the current state of having
JBossCache work as an efficient single process cache with hibernate.


/max





---
This SF.Net email is sponsored by xPML, a groundbreaking scripting  
language
that extends applications into web and mobile media. Attend the live  
webcast
and join the prime developer group breaking into this new coding  
territory!

http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development




--
--
Max Rydahl Andersen
callto://max.rydahl.andersen

Hibernate
[EMAIL PROTECTED]
http://hibernate.org

JBoss Inc
[EMAIL PROTECTED]


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


Re: [JBoss-dev] Unassigned for 4.0.4

2006-04-04 Thread Scott Marlow
On Tue, 2006-04-04 at 15:56 +0200, Max Rydahl Andersen wrote:
> On Tue, 04 Apr 2006 15:44:51 +0200, Scott Marlow  
> <[EMAIL PROTECTED]> wrote:
> 
> > Sounds good to me.  My next question is how do we tell Hibernate to use
> > JBoss Cache as the first level cache?
> 
> *first* level cache ? Why would you ever want that ?
> 
> You mean second level cache, right ?
I mean first level cache, which by default is using ehcache-1.1.jar (jira 
JBAS-2868).  We don't include ehcache-1.1.jar with the 4.0.4 as release which 
is why it cannot be resolved.  I would like to use jboss cache instead as the 
first level cache but am not sure if Hibernate allows that.





---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


Re: [JBoss-dev] Unassigned for 4.0.4

2006-04-04 Thread Max Rydahl Andersen
On Tue, 04 Apr 2006 15:44:51 +0200, Scott Marlow  
<[EMAIL PROTECTED]> wrote:



Sounds good to me.  My next question is how do we tell Hibernate to use
JBoss Cache as the first level cache?


*first* level cache ? Why would you ever want that ?

You mean second level cache, right ?

AFAIK, Steve and Mannik are/were working on this.
Mannik, any status on this ?

/max



On Mon, 2006-04-03 at 17:13 -0500, Scott M Stark wrote:

Yes, we should be defaulting to a single node, unclustered jboss cache
rather than having to supply yet another thirdparty jar to handle the
baseline cache.

> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On
> Behalf Of Scott Marlow
> Sent: Monday, April 03, 2006 2:05 PM
> To: jboss-development@lists.sourceforge.net
> Subject: RE: [JBoss-dev] Unassigned for 4.0.4
>
> Does anyone reading this understand how "JBAS-2868 Missing
> jar ehcache-1.1.jar for Hibernate support" should be fixed?
>
> It is only of the few unassigned issues left.  I'm wondering
> if Hibernate could use JBossCache for the level one cache
> instead of ehCache (easy hibernate cache).  This might be a
> nice alternative to adding the ehCache jar to the 4.0.4 as release.
>


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting  
language
that extends applications into web and mobile media. Attend the live  
webcast
and join the prime developer group breaking into this new coding  
territory!

http://sel.as-us.falkag.net/sel?cmd=lnk&kid0944&bid$1720&dat1642
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting  
language
that extends applications into web and mobile media. Attend the live  
webcast
and join the prime developer group breaking into this new coding  
territory!

http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development




--
--
Max Rydahl Andersen
callto://max.rydahl.andersen

Hibernate
[EMAIL PROTECTED]
http://hibernate.org

JBoss Inc
[EMAIL PROTECTED]


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


RE: [JBoss-dev] Unassigned for 4.0.4

2006-04-04 Thread Scott Marlow
Sounds good to me.  My next question is how do we tell Hibernate to use
JBoss Cache as the first level cache?

On Mon, 2006-04-03 at 17:13 -0500, Scott M Stark wrote:
> Yes, we should be defaulting to a single node, unclustered jboss cache
> rather than having to supply yet another thirdparty jar to handle the
> baseline cache. 
> 
> > -Original Message-
> > From: [EMAIL PROTECTED] 
> > [mailto:[EMAIL PROTECTED] On 
> > Behalf Of Scott Marlow
> > Sent: Monday, April 03, 2006 2:05 PM
> > To: jboss-development@lists.sourceforge.net
> > Subject: RE: [JBoss-dev] Unassigned for 4.0.4
> > 
> > Does anyone reading this understand how "JBAS-2868 Missing 
> > jar ehcache-1.1.jar for Hibernate support" should be fixed?
> > 
> > It is only of the few unassigned issues left.  I'm wondering 
> > if Hibernate could use JBossCache for the level one cache 
> > instead of ehCache (easy hibernate cache).  This might be a 
> > nice alternative to adding the ehCache jar to the 4.0.4 as release.
> > 
> 
> 
> ---
> This SF.Net email is sponsored by xPML, a groundbreaking scripting language
> that extends applications into web and mobile media. Attend the live webcast
> and join the prime developer group breaking into this new coding territory!
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid0944&bid$1720&dat1642
> ___
> JBoss-Development mailing list
> JBoss-Development@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jboss-development



---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


RE: [JBoss-dev] Unassigned for 4.0.4

2006-04-03 Thread Adrian Brock
On Mon, 2006-04-03 at 17:15 -0500, Dimitris Andreadis wrote:
> Nice. How you indicate in the filter "next release" ? 


I just change it after each release :-)

> 
> > -Original Message-
> > From: [EMAIL PROTECTED] 
> > [mailto:[EMAIL PROTECTED] On 
> > Behalf Of Adrian Brock
> > Sent: 04 April, 2006 00:38
> > To: jboss-development@lists.sourceforge.net
> > Subject: RE: [JBoss-dev] Unassigned for 4.0.4
> > 
> > I already created a more generic version of this:
> > http://jira.jboss.com/jira/secure/IssueNavigator.jspa?mode=hid
> > e&requestId=12310181
> > 
> > On Mon, 2006-04-03 at 16:20 -0500, Dimitris Andreadis wrote:
> > > This filter should show the open 4.0.4.GA issues left for 
> > every user 
> > > (i.e. the current user), so you can see what's assigned to you.
> > > 
> > > 
> > http://jira.jboss.com/jira/secure/IssueNavigator.jspa?mode=hide&reques
> > > tI
> > > d=12310484
> > > 
> > > > -Original Message-
> > > > From: [EMAIL PROTECTED]
> > > > [mailto:[EMAIL PROTECTED] On 
> > Behalf Of 
> > > > Adrian Brock
> > > > Sent: 03 April, 2006 22:26
> > > > To: jboss-development
> > > > Subject: [JBoss-dev] Unassigned for 4.0.4
> > > > 
> > > > There are still 19 tasks unassigned for 4.0.4 
> > > > http://jira.jboss.com/jira/secure/IssueNavigator.jspa?mode=hid
> > > > e&requestId=12310482
> > > > 
> > > > We should get these assigned or deferred, so there isn't 
> > a mad rush 
> > > > come release time. :-)
> > > > --
> > > > 
> > > > Adrian Brock
> > > > Chief Scientist
> > > > JBoss Inc.
> > > > 
> > > > 
> > > > 
> > > > 
> > > > ---
> > > > This SF.Net email is sponsored by xPML, a groundbreaking 
> > scripting 
> > > > language that extends applications into web and mobile 
> > media. Attend 
> > > > the live webcast and join the prime developer group breaking into 
> > > > this new coding territory!
> > > > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&;
> > > > dat=121642
> > > > ___
> > > > JBoss-Development mailing list
> > > > JBoss-Development@lists.sourceforge.net
> > > > https://lists.sourceforge.net/lists/listinfo/jboss-development
> > > > 
> > > 
> > > 
> > > ---
> > > This SF.Net email is sponsored by xPML, a groundbreaking scripting 
> > > language that extends applications into web and mobile 
> > media. Attend 
> > > the live webcast and join the prime developer group 
> > breaking into this new coding territory!
> > > http://sel.as-us.falkag.net/sel?cmd=lnk&kid0944&bid$1720&dat1642
> > > ___
> > > JBoss-Development mailing list
> > > JBoss-Development@lists.sourceforge.net
> > > https://lists.sourceforge.net/lists/listinfo/jboss-development
> > --
> > 
> > Adrian Brock
> > Chief Scientist
> > JBoss Inc.
> > 
> > 
> > 
> > 
> > ---
> > This SF.Net email is sponsored by xPML, a groundbreaking 
> > scripting language
> > that extends applications into web and mobile media. Attend 
> > the live webcast
> > and join the prime developer group breaking into this new 
> > coding territory!
> > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&;
> > dat=121642
> > ___
> > JBoss-Development mailing list
> > JBoss-Development@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/jboss-development
> > 
> 
> 
> ---
> This SF.Net email is sponsored by xPML, a groundbreaking scripting language
> that extends applications into web and mobile media. Attend the live webcast
> and join the prime developer group breaking into this new coding territory!
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid0944&bid$1720&dat1642
> ___
> JBoss-Development mailing list
> JBoss-Development@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jboss-development
-- 

Adrian Brock
Chief Scientist
JBoss Inc.




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


RE: [JBoss-dev] Unassigned for 4.0.4

2006-04-03 Thread Scott M Stark
Yes, we should be defaulting to a single node, unclustered jboss cache
rather than having to supply yet another thirdparty jar to handle the
baseline cache. 

> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On 
> Behalf Of Scott Marlow
> Sent: Monday, April 03, 2006 2:05 PM
> To: jboss-development@lists.sourceforge.net
> Subject: RE: [JBoss-dev] Unassigned for 4.0.4
> 
> Does anyone reading this understand how "JBAS-2868 Missing 
> jar ehcache-1.1.jar for Hibernate support" should be fixed?
> 
> It is only of the few unassigned issues left.  I'm wondering 
> if Hibernate could use JBossCache for the level one cache 
> instead of ehCache (easy hibernate cache).  This might be a 
> nice alternative to adding the ehCache jar to the 4.0.4 as release.
> 


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid0944&bid$1720&dat1642
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


RE: [JBoss-dev] Unassigned for 4.0.4

2006-04-03 Thread Dimitris Andreadis

Nice. How you indicate in the filter "next release" ? 

> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On 
> Behalf Of Adrian Brock
> Sent: 04 April, 2006 00:38
> To: jboss-development@lists.sourceforge.net
> Subject: RE: [JBoss-dev] Unassigned for 4.0.4
> 
> I already created a more generic version of this:
> http://jira.jboss.com/jira/secure/IssueNavigator.jspa?mode=hid
> e&requestId=12310181
> 
> On Mon, 2006-04-03 at 16:20 -0500, Dimitris Andreadis wrote:
> > This filter should show the open 4.0.4.GA issues left for 
> every user 
> > (i.e. the current user), so you can see what's assigned to you.
> > 
> > 
> http://jira.jboss.com/jira/secure/IssueNavigator.jspa?mode=hide&reques
> > tI
> > d=12310484
> > 
> > > -Original Message-
> > > From: [EMAIL PROTECTED]
> > > [mailto:[EMAIL PROTECTED] On 
> Behalf Of 
> > > Adrian Brock
> > > Sent: 03 April, 2006 22:26
> > > To: jboss-development
> > > Subject: [JBoss-dev] Unassigned for 4.0.4
> > > 
> > > There are still 19 tasks unassigned for 4.0.4 
> > > http://jira.jboss.com/jira/secure/IssueNavigator.jspa?mode=hid
> > > e&requestId=12310482
> > > 
> > > We should get these assigned or deferred, so there isn't 
> a mad rush 
> > > come release time. :-)
> > > --
> > > 
> > > Adrian Brock
> > > Chief Scientist
> > > JBoss Inc.
> > > 
> > > 
> > > 
> > > 
> > > ---
> > > This SF.Net email is sponsored by xPML, a groundbreaking 
> scripting 
> > > language that extends applications into web and mobile 
> media. Attend 
> > > the live webcast and join the prime developer group breaking into 
> > > this new coding territory!
> > > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&;
> > > dat=121642
> > > ___
> > > JBoss-Development mailing list
> > > JBoss-Development@lists.sourceforge.net
> > > https://lists.sourceforge.net/lists/listinfo/jboss-development
> > > 
> > 
> > 
> > ---
> > This SF.Net email is sponsored by xPML, a groundbreaking scripting 
> > language that extends applications into web and mobile 
> media. Attend 
> > the live webcast and join the prime developer group 
> breaking into this new coding territory!
> > http://sel.as-us.falkag.net/sel?cmd=lnk&kid0944&bid$1720&dat1642
> > ___
> > JBoss-Development mailing list
> > JBoss-Development@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/jboss-development
> --
> 
> Adrian Brock
> Chief Scientist
> JBoss Inc.
> 
> 
> 
> 
> ---
> This SF.Net email is sponsored by xPML, a groundbreaking 
> scripting language
> that extends applications into web and mobile media. Attend 
> the live webcast
> and join the prime developer group breaking into this new 
> coding territory!
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&;
> dat=121642
> ___
> JBoss-Development mailing list
> JBoss-Development@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jboss-development
> 


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid0944&bid$1720&dat1642
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


RE: [JBoss-dev] Unassigned for 4.0.4

2006-04-03 Thread Adrian Brock
I already created a more generic version of this:
http://jira.jboss.com/jira/secure/IssueNavigator.jspa?mode=hide&requestId=12310181

On Mon, 2006-04-03 at 16:20 -0500, Dimitris Andreadis wrote:
> This filter should show the open 4.0.4.GA issues left for every user
> (i.e. the current user), so you can see what's assigned to you.
> 
> http://jira.jboss.com/jira/secure/IssueNavigator.jspa?mode=hide&requestI
> d=12310484 
> 
> > -Original Message-
> > From: [EMAIL PROTECTED] 
> > [mailto:[EMAIL PROTECTED] On 
> > Behalf Of Adrian Brock
> > Sent: 03 April, 2006 22:26
> > To: jboss-development
> > Subject: [JBoss-dev] Unassigned for 4.0.4
> > 
> > There are still 19 tasks unassigned for 4.0.4
> > http://jira.jboss.com/jira/secure/IssueNavigator.jspa?mode=hid
> > e&requestId=12310482
> > 
> > We should get these assigned or deferred, so there isn't a 
> > mad rush come release time. :-)
> > --
> > 
> > Adrian Brock
> > Chief Scientist
> > JBoss Inc.
> > 
> > 
> > 
> > 
> > ---
> > This SF.Net email is sponsored by xPML, a groundbreaking 
> > scripting language
> > that extends applications into web and mobile media. Attend 
> > the live webcast
> > and join the prime developer group breaking into this new 
> > coding territory!
> > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&;
> > dat=121642
> > ___
> > JBoss-Development mailing list
> > JBoss-Development@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/jboss-development
> > 
> 
> 
> ---
> This SF.Net email is sponsored by xPML, a groundbreaking scripting language
> that extends applications into web and mobile media. Attend the live webcast
> and join the prime developer group breaking into this new coding territory!
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid0944&bid$1720&dat1642
> ___
> JBoss-Development mailing list
> JBoss-Development@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jboss-development
-- 

Adrian Brock
Chief Scientist
JBoss Inc.




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


RE: [JBoss-dev] Unassigned for 4.0.4

2006-04-03 Thread Dimitris Andreadis

This filter should show the open 4.0.4.GA issues left for every user
(i.e. the current user), so you can see what's assigned to you.

http://jira.jboss.com/jira/secure/IssueNavigator.jspa?mode=hide&requestI
d=12310484 

> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On 
> Behalf Of Adrian Brock
> Sent: 03 April, 2006 22:26
> To: jboss-development
> Subject: [JBoss-dev] Unassigned for 4.0.4
> 
> There are still 19 tasks unassigned for 4.0.4
> http://jira.jboss.com/jira/secure/IssueNavigator.jspa?mode=hid
> e&requestId=12310482
> 
> We should get these assigned or deferred, so there isn't a 
> mad rush come release time. :-)
> --
> 
> Adrian Brock
> Chief Scientist
> JBoss Inc.
> 
> 
> 
> 
> ---
> This SF.Net email is sponsored by xPML, a groundbreaking 
> scripting language
> that extends applications into web and mobile media. Attend 
> the live webcast
> and join the prime developer group breaking into this new 
> coding territory!
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&;
> dat=121642
> ___
> JBoss-Development mailing list
> JBoss-Development@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jboss-development
> 


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid0944&bid$1720&dat1642
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


RE: [JBoss-dev] Unassigned for 4.0.4

2006-04-03 Thread Scott Marlow
Does anyone reading this understand how "JBAS-2868 Missing jar
ehcache-1.1.jar for Hibernate support" should be fixed?

It is only of the few unassigned issues left.  I'm wondering if
Hibernate could use JBossCache for the level one cache instead of
ehCache (easy hibernate cache).  This might be a nice alternative to
adding the ehCache jar to the 4.0.4 as release.

On Mon, 2006-04-03 at 15:25 -0500, Dimitris Andreadis wrote:
> Works for me! 
> 
> > -Original Message-
> > From: [EMAIL PROTECTED] 
> > [mailto:[EMAIL PROTECTED] On 
> > Behalf Of Adrian Brock
> > Sent: 03 April, 2006 22:51
> > To: jboss-development@lists.sourceforge.net
> > Subject: RE: [JBoss-dev] Unassigned for 4.0.4
> > 
> > Try again.
> > 
> > On Mon, 2006-04-03 at 14:31 -0500, Ryan Campbell wrote:
> > > Adrian, it doesn't look like this filter is public.
> > > 
> > > Errors
> > > 
> > > * Could not getRequest search with this id.
> > > 
> > > 
> > > 
> > > -Original Message-
> > > From: [EMAIL PROTECTED]
> > > [mailto:[EMAIL PROTECTED] On Behalf Of 
> > > Adrian Brock
> > > Sent: Monday, April 03, 2006 2:26 PM
> > > To: jboss-development
> > > Subject: [JBoss-dev] Unassigned for 4.0.4
> > > 
> > > There are still 19 tasks unassigned for 4.0.4 
> > > 
> > http://jira.jboss.com/jira/secure/IssueNavigator.jspa?mode=hide&reques
> > > tI
> > > d=12310482
> > > 
> > > We should get these assigned or deferred, so there isn't a mad rush 
> > > come release time. :-)
> > --
> > 
> > Adrian Brock
> > Chief Scientist
> > JBoss Inc.
> > 
> > 
> > 
> > 
> > ---
> > This SF.Net email is sponsored by xPML, a groundbreaking 
> > scripting language
> > that extends applications into web and mobile media. Attend 
> > the live webcast
> > and join the prime developer group breaking into this new 
> > coding territory!
> > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&;
> dat=121642
> > ___
> > JBoss-Development mailing list
> > JBoss-Development@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/jboss-development
> > 
> 
> 
> ---
> This SF.Net email is sponsored by xPML, a groundbreaking scripting language
> that extends applications into web and mobile media. Attend the live webcast
> and join the prime developer group breaking into this new coding territory!
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid0944&bid$1720&dat1642
> ___
> JBoss-Development mailing list
> JBoss-Development@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jboss-development



---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


RE: [JBoss-dev] Unassigned for 4.0.4

2006-04-03 Thread Dimitris Andreadis

Works for me! 

> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On 
> Behalf Of Adrian Brock
> Sent: 03 April, 2006 22:51
> To: jboss-development@lists.sourceforge.net
> Subject: RE: [JBoss-dev] Unassigned for 4.0.4
> 
> Try again.
> 
> On Mon, 2006-04-03 at 14:31 -0500, Ryan Campbell wrote:
> > Adrian, it doesn't look like this filter is public.
> > 
> > Errors
> > 
> > * Could not getRequest search with this id.
> > 
> > 
> > 
> > -Original Message-
> > From: [EMAIL PROTECTED]
> > [mailto:[EMAIL PROTECTED] On Behalf Of 
> > Adrian Brock
> > Sent: Monday, April 03, 2006 2:26 PM
> > To: jboss-development
> > Subject: [JBoss-dev] Unassigned for 4.0.4
> > 
> > There are still 19 tasks unassigned for 4.0.4 
> > 
> http://jira.jboss.com/jira/secure/IssueNavigator.jspa?mode=hide&reques
> > tI
> > d=12310482
> > 
> > We should get these assigned or deferred, so there isn't a mad rush 
> > come release time. :-)
> --
> 
> Adrian Brock
> Chief Scientist
> JBoss Inc.
> 
> 
> 
> 
> ---
> This SF.Net email is sponsored by xPML, a groundbreaking 
> scripting language
> that extends applications into web and mobile media. Attend 
> the live webcast
> and join the prime developer group breaking into this new 
> coding territory!
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&;
dat=121642
> ___
> JBoss-Development mailing list
> JBoss-Development@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jboss-development
> 


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid0944&bid$1720&dat1642
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


RE: [JBoss-dev] Unassigned for 4.0.4

2006-04-03 Thread Adrian Brock
Try again.

On Mon, 2006-04-03 at 14:31 -0500, Ryan Campbell wrote:
> Adrian, it doesn't look like this filter is public.
> 
> Errors
> 
> * Could not getRequest search with this id.
> 
> 
> 
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of
> Adrian Brock
> Sent: Monday, April 03, 2006 2:26 PM
> To: jboss-development
> Subject: [JBoss-dev] Unassigned for 4.0.4
> 
> There are still 19 tasks unassigned for 4.0.4
> http://jira.jboss.com/jira/secure/IssueNavigator.jspa?mode=hide&requestI
> d=12310482
> 
> We should get these assigned or deferred,
> so there isn't a mad rush come release time. :-)
-- 

Adrian Brock
Chief Scientist
JBoss Inc.




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


RE: [JBoss-dev] Unassigned for 4.0.4

2006-04-03 Thread Ryan Campbell
Adrian, it doesn't look like this filter is public.

Errors

* Could not getRequest search with this id.



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
Adrian Brock
Sent: Monday, April 03, 2006 2:26 PM
To: jboss-development
Subject: [JBoss-dev] Unassigned for 4.0.4

There are still 19 tasks unassigned for 4.0.4
http://jira.jboss.com/jira/secure/IssueNavigator.jspa?mode=hide&requestI
d=12310482

We should get these assigned or deferred,
so there isn't a mad rush come release time. :-)
-- 

Adrian Brock
Chief Scientist
JBoss Inc.




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting
language
that extends applications into web and mobile media. Attend the live
webcast
and join the prime developer group breaking into this new coding
territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid0944&bid$1720&dat1642
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development