[JBoss-dev] [JBoss JIRA] Commented: (JBAS-167) Entity Creation Problem

2004-12-10 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/JBAS-167?page=comments#action_12310984 
]
 
Bill Burke commented on JBAS-167:
-

Logged In: YES 
user_id=176497

Is this a readonly bean you're creating?  If so, this isn't allowed.  
You cannot create a read-only entity bean.  You must use DB 
scripts to insert, or provide a different write entity bean that 
maps to the same interfaces, bean class and table, except that it 
is not marked as read-only.

 Entity Creation Problem
 ---

  Key: JBAS-167
  URL: http://jira.jboss.com/jira/browse/JBAS-167
  Project: JBoss Application Server
 Type: Patch
 Reporter: SourceForge User
 Assignee: Bill Burke



 SourceForge Submitter: objectwiz .
 When I used the CVS tree build of JBoss as is I got
 the following error when I created Entity Beans:
 java.lang.IllegalStateException: do not call
 nextTransaction while not synched!
 at
 org.jboss.ejb.plugins.lock.QueuedPessimisticEJBLock.nextTransaction(QueuedPessimisticEJBLock.java:400)
 at
 org.jboss.ejb.plugins.lock.QueuedPessimisticEJBLock.endTransaction(QueuedPessimisticEJBLock.java:430)
 at
 org.jboss.ejb.plugins.lock.QueuedPessimisticEJBLock.endInvocation(QueuedPessimisticEJBLock.java:454)
 at
 org.jboss.ejb.plugins.EntitySynchronizationInterceptor.invokeHome(EntitySynchronizationInterceptor.java:246)
 at
 org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invokeHome(CachedConnectionInterceptor.java:176)
 at
 org.jboss.ejb.plugins.EntityInstanceInterceptor.invokeHome(EntityInstanceInterceptor.java:134)
 at
 org.jboss.ejb.plugins.EntityLockInterceptor.invokeHome(EntityLockInterceptor.java:79)
 at
 org.jboss.ejb.plugins.EntityCreationInterceptor.invokeHome(EntityCreationInterceptor.java:44)
 at
 org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:98)
 at
 org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:273)
 at
 org.jboss.ejb.plugins.TxInterceptorCMT.invokeHome(TxInterceptorCMT.java:52)
 at
 org.jboss.ejb.plugins.SecurityInterceptor.invokeHome(SecurityInterceptor.java:104)
 at
 org.jboss.ejb.plugins.LogInterceptor.invokeHome(LogInterceptor.java:109)
 at
 org.jboss.ejb.EntityContainer.invokeHome(EntityContainer.java:487)
 at
 org.jboss.ejb.Container.invoke(Container.java:727)
 at
 org.jboss.ejb.EntityContainer.invoke(EntityContainer.java:1055)
 at
 org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:492)
 at
 org.jboss.invocation.jrmp.server.JRMPInvoker.invoke(JRMPInvoker.java:364)
 at java.lang.reflect.Method.invoke(Native Method)
 at
 sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:241)
 at
 sun.rmi.transport.Transport$1.run(Transport.java:152)
 at
 java.security.AccessController.doPrivileged(Native Method)
 at
 sun.rmi.transport.Transport.serviceCall(Transport.java:148)
 at
 sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:465)
 at
 sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:706)
 at java.lang.Thread.run(Thread.java:484)
 So I wrote a patch for it and it seems to work. There
 may be many good reasons why this isn't a good idea,
 but here it is anyway in unified diff. I left my
 System.outs in as it will allow the person viewing the
 patch to see the behaviour:
 Index:
 server/src/main/org/jboss/ejb/plugins/lock/QueuedPessimisticEJBLock.java
 ===
 RCS file:
 /cvsroot/jboss/jboss/src/main/org/jboss/ejb/plugins/lock/QueuedPessimisticEJBLock.java,v
 retrieving revision 1.9
 diff -u -r1.9 QueuedPessimisticEJBLock.java
 ---
 server/src/main/org/jboss/ejb/plugins/lock/QueuedPessimisticEJBLock.java
10 Apr 2002 05:44:03 -  1.9
 +++
 server/src/main/org/jboss/ejb/plugins/lock/QueuedPessimisticEJBLock.java
24 Apr 2002 08:12:19 -
 @@ -427,7 +427,43 @@
 public void endTransaction(Transaction transaction)
 {
 -  nextTransaction();
 +  System.out.println(
 [QueuedPessimisticEJBLock.endTransaction()] START  );
 +
 +  boolean releaseSync = false;
 +
 +  try
 +  {
 +if( !synched )
 +{
 +  this.sync();
 +  releaseSync = true;
 +
 +  System.out.println(
 [QueuedPessimisticEJBLock.endTransaction()] called
 sync() );
 +}
 +else
 +{
 +  System.out.println(
 [QueuedPessimisticEJBLock.endTransaction()] already
 synched );
 +}
 +
 +System.out.println(
 [QueuedPessimisticEJBLock.endTransaction()] \tnext
 trans  );
 +nextTransaction();
 +System.out.println(
 [QueuedPessimisticEJBLock.endTransaction()] \tnext
 trans  );
 +  }
 +  finally
 +  {
 +if( releaseSync )
 +{
 

[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-4) Is local check not being performed

2004-12-13 Thread Bill Burke (JIRA)
Is local check not being performed
--

 Key: EJBTHREE-4
 URL: http://jira.jboss.com/jira/browse/EJBTHREE-4
 Project: EJB 3.0
Type: Bug
Versions: Preview 3
Reporter: Bill Burke
 Assigned to: Bill Burke 
 Fix For: Preview 3


Remote invocations on EJB 3.0 SLSB and SFSB did not do an IsLocal check.  This 
caused exceptions to be thrown like TX propagation errors.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-5) EJB 3.0 Spec interceptors

2004-12-13 Thread Bill Burke (JIRA)
EJB 3.0 Spec interceptors
-

 Key: EJBTHREE-5
 URL: http://jira.jboss.com/jira/browse/EJBTHREE-5
 Project: EJB 3.0
Type: Feature Request
Versions: Preview 3
Reporter: Bill Burke
 Assigned to: Bill Burke 
 Fix For: Preview 3


EJB 3.0 specification now has Interceptors defined.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-10) EntityManager needs to be serializable

2004-12-13 Thread Bill Burke (JIRA)
EntityManager needs to be serializable
--

 Key: EJBTHREE-10
 URL: http://jira.jboss.com/jira/browse/EJBTHREE-10
 Project: EJB 3.0
Type: Bug
Versions: Preview 3
Reporter: Bill Burke
 Assigned to: Bill Burke 
 Fix For: Preview 3


EntityManager needs to be serializable because it may be injected into a SFSB 
and the SFSB may be passivated.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-12) EJB ENC must be java:comp/env currently it is java.ejb/comp/env

2004-12-13 Thread Bill Burke (JIRA)
EJB ENC must be java:comp/env  currently it is java.ejb/comp/env


 Key: EJBTHREE-12
 URL: http://jira.jboss.com/jira/browse/EJBTHREE-12
 Project: EJB 3.0
Type: Feature Request
Versions: Preview 3
Reporter: Bill Burke
 Assigned to: Bill Burke 
 Fix For: Preview 3




-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-16) StrictMaxPool for SLSB and MDB

2004-12-13 Thread Bill Burke (JIRA)
StrictMaxPool for SLSB and MDB
--

 Key: EJBTHREE-16
 URL: http://jira.jboss.com/jira/browse/EJBTHREE-16
 Project: EJB 3.0
Type: Feature Request
Versions: Preview 3
Reporter: Bill Burke
 Assigned to: Bill Burke 
 Fix For: Preview 3


same feature as in JBoss's EJB 2.1.  A user has asked for this feature.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-28) @Timeout support

2004-12-13 Thread Bill Burke (JIRA)
@Timeout support


 Key: EJBTHREE-28
 URL: http://jira.jboss.com/jira/browse/EJBTHREE-28
 Project: EJB 3.0
Type: Feature Request
Versions: Preview 3
Reporter: Bill Burke
 Assigned to: Kabir Khan 
 Fix For: Preview 3


Add an annotation to ejb3x module @Timeout.  It will be used like any other 
callback but in the context of the EJB TimerService.  @Timeout will replace the 
old mechanism for EJB Timer Service callback (ejbTimeout).  @Timeout can also 
be used in Callback Listeners.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-26) Web services support

2004-12-13 Thread Bill Burke (JIRA)
Web services support


 Key: EJBTHREE-26
 URL: http://jira.jboss.com/jira/browse/EJBTHREE-26
 Project: EJB 3.0
Type: Feature Request
Versions: Preview 4
Reporter: Bill Burke
 Assigned to: Bill Burke 
 Fix For: Preview 4


J2EE 1.5 will define this.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAOP-6) Compile time reweaving

2004-12-13 Thread Bill Burke (JIRA)
Compile time reweaving
--

 Key: JBAOP-6
 URL: http://jira.jboss.com/jira/browse/JBAOP-6
 Project: JBoss AOP
Type: Feature Request
Versions: 1.1
Reporter: Bill Burke
 Assigned to: Bill Burke 
 Fix For: 1.1


Support for compile time reweaving.  Currently AOPC ignores a class that 
implements Advised

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAOP-8) Remotable Asynchronous aspect

2004-12-13 Thread Bill Burke (JIRA)
Remotable Asynchronous aspect
-

 Key: JBAOP-8
 URL: http://jira.jboss.com/jira/browse/JBAOP-8
 Project: JBoss AOP
Type: Feature Request
Versions: 1.1
Reporter: Bill Burke
 Assigned to: Bill Burke 
 Fix For: 1.1




-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAOP-10) PerInstance Aspect bug

2004-12-13 Thread Bill Burke (JIRA)
PerInstance Aspect bug
--

 Key: JBAOP-10
 URL: http://jira.jboss.com/jira/browse/JBAOP-10
 Project: JBoss AOP
Type: Bug
Versions: 1.1
Reporter: Bill Burke
 Assigned to: Kabir Khan 
 Fix For: 1.1


http://www.jboss.org/index.html?module=bbop=viewtopicp=3853778#3853778

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAOP-11) Javassist 3.0 dependency

2004-12-13 Thread Bill Burke (JIRA)
Javassist 3.0 dependency


 Key: JBAOP-11
 URL: http://jira.jboss.com/jira/browse/JBAOP-11
 Project: JBoss AOP
Type: Feature Request
Versions: 1.1
Reporter: Bill Burke
 Assigned to: Bill Burke 
 Fix For: 1.1


1.1 release depends on Javassist 3.0 Final

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAOP-13) Refactor Tx interceptor

2004-12-13 Thread Bill Burke (JIRA)
Refactor Tx interceptor
---

 Key: JBAOP-13
 URL: http://jira.jboss.com/jira/browse/JBAOP-13
 Project: JBoss AOP
Type: Feature Request
Versions: 1.1
Reporter: Bill Burke
 Assigned to: Bill Burke 
 Fix For: 1.1


Refactor TxInterceptor so that it puts the TxType as the an interceptor so that 
there is no hash lookup and things are faster.  Use PER_CLASS_JOINPOINT.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (JBAOP-35) Remotable Asynchronous Aspect

2004-12-13 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/JBAOP-35?page=history ]
 
Bill Burke closed JBAOP-35:
---

Resolution: Done

 Remotable Asynchronous Aspect
 -

  Key: JBAOP-35
  URL: http://jira.jboss.com/jira/browse/JBAOP-35
  Project: JBoss AOP
 Type: Feature Request
 Versions: 1.1
 Reporter: Bill Burke
 Assignee: Bill Burke
  Fix For: 1.1





-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAOP-36) tx/security propagation for remoting

2004-12-13 Thread Bill Burke (JIRA)
tx/security propagation for remoting


 Key: JBAOP-36
 URL: http://jira.jboss.com/jira/browse/JBAOP-36
 Project: JBoss AOP
Type: Feature Request
Versions: 1.1
Reporter: Bill Burke
 Assigned to: Bill Burke 
 Fix For: 1.1




-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (JBAOP-36) tx/security propagation for remoting

2004-12-13 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/JBAOP-36?page=history ]
 
Bill Burke closed JBAOP-36:
---

Resolution: Done

 tx/security propagation for remoting
 

  Key: JBAOP-36
  URL: http://jira.jboss.com/jira/browse/JBAOP-36
  Project: JBoss AOP
 Type: Feature Request
 Versions: 1.1
 Reporter: Bill Burke
 Assignee: Bill Burke
  Fix For: 1.1





-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Updated: (EJBTHREE-31) Depend on AOP 1.1 release

2004-12-13 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-31?page=history ]

Bill Burke updated EJBTHREE-31:
---

Priority: Blocker  (was: Major)

 Depend on AOP 1.1 release
 -

  Key: EJBTHREE-31
  URL: http://jira.jboss.com/jira/browse/EJBTHREE-31
  Project: EJB 3.0
 Type: Feature Request
 Versions: Preview 3
 Reporter: Bill Burke
 Assignee: Bill Burke
 Priority: Blocker
  Fix For: Preview 3





-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAOP-37) Before, After, After Throwing support

2004-12-13 Thread Bill Burke (JIRA)
Before, After, After Throwing support
-

 Key: JBAOP-37
 URL: http://jira.jboss.com/jira/browse/JBAOP-37
 Project: JBoss AOP
Type: Feature Request
Versions: 2.0
Reporter: Bill Burke
 Assigned to: Bill Burke 
 Fix For: 2.0


This should be optimized as well.  I've done a non-CVS-checked-in prototype of 
this.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-34) JBoss 4.0.2RC1 release dependency

2004-12-13 Thread Bill Burke (JIRA)
JBoss 4.0.2RC1 release dependency
-

 Key: EJBTHREE-34
 URL: http://jira.jboss.com/jira/browse/EJBTHREE-34
 Project: EJB 3.0
Type: Feature Request
Versions: Preview 3
Reporter: Bill Burke
 Assigned to: Bill Burke 
Priority: Blocker
 Fix For: Preview 3




-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAOP-41) Inject JMX ObjectNames

2004-12-13 Thread Bill Burke (JIRA)
Inject JMX ObjectNames
--

 Key: JBAOP-41
 URL: http://jira.jboss.com/jira/browse/JBAOP-41
 Project: JBoss AOP
Type: Feature Request
Versions: 2.0
Reporter: Bill Burke
 Assigned to: Bill Burke 
 Fix For: 2.0


Annotation for injection JMX beans with automatic proxy generation.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAOP-40) EJB 3.0 injection types

2004-12-13 Thread Bill Burke (JIRA)
EJB 3.0 injection types
---

 Key: JBAOP-40
 URL: http://jira.jboss.com/jira/browse/JBAOP-40
 Project: JBoss AOP
Type: Feature Request
Versions: 2.0
Reporter: Bill Burke
 Assigned to: Bill Burke 
 Fix For: 2.0


All EJB 3.0 injection annotations hsould be available to any POJO.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Updated: (JBAOP-41) Inject JMX ObjectNames

2004-12-13 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/JBAOP-41?page=history ]

Bill Burke updated JBAOP-41:


Version: 2.0
Fix Version: 2.0

 Inject JMX ObjectNames
 --

  Key: JBAOP-41
  URL: http://jira.jboss.com/jira/browse/JBAOP-41
  Project: JBoss AOP
 Type: Feature Request
 Versions: 2.0
 Reporter: Bill Burke
 Assignee: Bill Burke
  Fix For: 2.0



 Annotation for injection JMX beans with automatic proxy generation.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAOP-4) Precendence

2004-12-13 Thread Bill Burke (JIRA)
Precendence
---

 Key: JBAOP-4
 URL: http://jira.jboss.com/jira/browse/JBAOP-4
 Project: JBoss AOP
Type: Feature Request
Versions: 1.1
Reporter: Bill Burke
 Assigned to: Kabir Khan 
 Fix For: 1.1


XML and annotation for defining aspect precedenc rules

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (JBAOP-31) instanceof{} allows the use of wildcards and annotations

2004-12-13 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/JBAOP-31?page=history ]
 
Bill Burke closed JBAOP-31:
---

Resolution: Done

 instanceof{} allows the use of wildcards and annotations
 

  Key: JBAOP-31
  URL: http://jira.jboss.com/jira/browse/JBAOP-31
  Project: JBoss AOP
 Type: Feature Request
 Versions: 1.1
 Reporter: Bill Burke
 Assignee: Kabir Khan
  Fix For: 1.1





-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAOP-50) support for parameter annotations in pointcut language

2004-12-13 Thread Bill Burke (JIRA)
support for parameter annotations in pointcut language
--

 Key: JBAOP-50
 URL: http://jira.jboss.com/jira/browse/JBAOP-50
 Project: JBoss AOP
Type: Feature Request
Versions: 2.0
Reporter: Bill Burke
 Assigned to: Kabir Khan 
 Fix For: 2.0




-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAOP-51) support for local variable annotations in pointcut language

2004-12-13 Thread Bill Burke (JIRA)
support for local variable annotations in pointcut language
---

 Key: JBAOP-51
 URL: http://jira.jboss.com/jira/browse/JBAOP-51
 Project: JBoss AOP
Type: Feature Request
Versions: 2.0
Reporter: Bill Burke
 Assigned to: Bill Burke 
 Fix For: 2.0


You should be able to intercept field access for local variables that are 
annotated.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAOP-17) Update JBoss AOP IDE support

2004-12-13 Thread Bill Burke (JIRA)
Update JBoss AOP IDE support


 Key: JBAOP-17
 URL: http://jira.jboss.com/jira/browse/JBAOP-17
 Project: JBoss AOP
Type: Feature Request
Versions: 1.1
Reporter: Bill Burke
 Assigned to: Kabir Khan 
 Fix For: 1.1


Make sure JBoss AOP IDE is released and working with JBoss AOP 1.1

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-33) JBoss Remoting dependency

2004-12-13 Thread Bill Burke (JIRA)
JBoss Remoting dependency
-

 Key: EJBTHREE-33
 URL: http://jira.jboss.com/jira/browse/EJBTHREE-33
 Project: EJB 3.0
Type: Feature Request
Versions: Preview 3
Reporter: Bill Burke
 Assigned to: Bill Burke 
Priority: Blocker
 Fix For: Preview 3




-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-23) Clustering refactor

2004-12-13 Thread Bill Burke (JIRA)
Clustering refactor
---

 Key: EJBTHREE-23
 URL: http://jira.jboss.com/jira/browse/EJBTHREE-23
 Project: EJB 3.0
Type: Feature Request
Versions: Preview 4
Reporter: Bill Burke
 Assigned to: Bill Burke 
 Fix For: Preview 4


Clustering support should be rewritten so that remote UserTransactions are 
sticky.  The View ID of the proxy should be set to -1 so that it gets 
re-updated on next request.  Things like this.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBMICROCONT-3) Usa JBoss AOP as underlying aspect engine

2004-12-13 Thread Bill Burke (JIRA)
Usa JBoss AOP as underlying aspect engine
-

 Key: JBMICROCONT-3
 URL: http://jira.jboss.com/jira/browse/JBMICROCONT-3
 Project: JBoss MicroContainer
Type: Feature Request
Versions: JBossMC_1_0_0M2
Reporter: Bill Burke
 Fix For: JBossMC_1_0_0M2


Work with JBoss AOP team to make JBoss AOP underlying aspect engine.  Filter 
requirements to JBoss AOP team.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAOP-52) Resolve Adrian's requirements for JBoss 5.0

2004-12-13 Thread Bill Burke (JIRA)
Resolve Adrian's requirements for JBoss 5.0
---

 Key: JBAOP-52
 URL: http://jira.jboss.com/jira/browse/JBAOP-52
 Project: JBoss AOP
Type: Feature Request
Versions: 2.0
Reporter: Bill Burke
 Assigned to: Bill Burke 
 Fix For: 2.0


Adrian has some specific requirements for AOP for the microkernel and other 
services.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAOP-31) instanceof{} allows the use of wildcards and annotations

2004-12-13 Thread Bill Burke (JIRA)
instanceof{} allows the use of wildcards and annotations


 Key: JBAOP-31
 URL: http://jira.jboss.com/jira/browse/JBAOP-31
 Project: JBoss AOP
Type: Feature Request
Versions: 1.1
Reporter: Bill Burke
 Assigned to: Kabir Khan 
 Fix For: 1.1




-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (JBAOP-25) Proxy types should support mixins

2004-12-13 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/JBAOP-25?page=history ]
 
Bill Burke closed JBAOP-25:
---

Resolution: Done

 Proxy types should support mixins
 -

  Key: JBAOP-25
  URL: http://jira.jboss.com/jira/browse/JBAOP-25
  Project: JBoss AOP
 Type: Feature Request
 Versions: 1.1
 Reporter: Bill Burke
 Assignee: Bill Burke
  Fix For: 1.1





-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-32) Depend on JBoss Cache release

2004-12-13 Thread Bill Burke (JIRA)
Depend on JBoss Cache release
-

 Key: EJBTHREE-32
 URL: http://jira.jboss.com/jira/browse/EJBTHREE-32
 Project: EJB 3.0
Type: Feature Request
Versions: Preview 3
Reporter: Bill Burke
 Assigned to: Bill Burke 
Priority: Blocker
 Fix For: Preview 3




-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAOP-47) Expand Instance API

2004-12-13 Thread Bill Burke (JIRA)
Expand Instance API
---

 Key: JBAOP-47
 URL: http://jira.jboss.com/jira/browse/JBAOP-47
 Project: JBoss AOP
Type: Feature Request
Versions: 2.0
Reporter: Bill Burke
 Assigned to: Bill Burke 
 Fix For: 2.0


Expand Instance API so that it can support pointcuts.  Only get/set/execution 
though.  Also, so that instance API can support attaching of aspects with SCOPE.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-8) Support for mappedBy in relationship code

2004-12-13 Thread Bill Burke (JIRA)
Support for mappedBy in relationship code
-

 Key: EJBTHREE-8
 URL: http://jira.jboss.com/jira/browse/EJBTHREE-8
 Project: EJB 3.0
Type: Feature Request
Versions: Preview 3
Reporter: Bill Burke
 Assigned to: Bill Burke 
 Fix For: Preview 3


EJB 3.0 spec draft II now allows you to specify bi-directionality.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (JBAOP-24) proxy factory for interfaces

2004-12-13 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/JBAOP-24?page=history ]
 
Bill Burke closed JBAOP-24:
---

Resolution: Done

 proxy factory for interfaces
 

  Key: JBAOP-24
  URL: http://jira.jboss.com/jira/browse/JBAOP-24
  Project: JBoss AOP
 Type: Feature Request
 Versions: 1.1
 Reporter: Bill Burke
 Assignee: Bill Burke
  Fix For: 1.1



 Wrote a ProxyFactory that can generate optimized AOP proxies based on 
 interfaces only

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-3) Ejbname is ignored and FQN of classname must be used in queries

2004-12-13 Thread Bill Burke (JIRA)
Ejbname is ignored and FQN of classname must be used in queries
---

 Key: EJBTHREE-3
 URL: http://jira.jboss.com/jira/browse/EJBTHREE-3
 Project: EJB 3.0
Type: Bug
Versions: Preview 3
Reporter: Bill Burke
 Assigned to: Bill Burke 
 Fix For: Preview 3


You should use the EJB name as the name of the mapped object so that EJBQL can 
reference the EJBNAME directly.  Currently the @Entity's name is being ignored.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAOP-15) optimization for no interceptors

2004-12-13 Thread Bill Burke (JIRA)
optimization for no interceptors


 Key: JBAOP-15
 URL: http://jira.jboss.com/jira/browse/JBAOP-15
 Project: JBoss AOP
Type: Feature Request
Versions: 1.1
Reporter: Bill Burke
 Assigned to: Kabir Khan 
Priority: Minor
 Fix For: 1.1


* Use MethodInfo.interceptors to determine whether or not interception should 
happen so that we can have more
  fine-grained optimizations.

Also, do the same for fields, constructors, and callers.


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAOP-7) JMX Aspect

2004-12-13 Thread Bill Burke (JIRA)
JMX Aspect
--

 Key: JBAOP-7
 URL: http://jira.jboss.com/jira/browse/JBAOP-7
 Project: JBoss AOP
Type: Feature Request
Versions: 1.1
Reporter: Bill Burke
 Assigned to: Bill Burke 
 Fix For: 1.1


Implement an @Mbean annotation 

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAOP-46) Repackage AOP webconsole as a separately deployed package

2004-12-13 Thread Bill Burke (JIRA)
Repackage AOP webconsole as a separately deployed package
-

 Key: JBAOP-46
 URL: http://jira.jboss.com/jira/browse/JBAOP-46
 Project: JBoss AOP
Type: Feature Request
Versions: 2.0
Reporter: Bill Burke
 Assigned to: Kabir Khan 
 Fix For: 2.0




-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-19) Subselects for EJB3QL

2004-12-13 Thread Bill Burke (JIRA)
Subselects for EJB3QL
-

 Key: EJBTHREE-19
 URL: http://jira.jboss.com/jira/browse/EJBTHREE-19
 Project: EJB 3.0
Type: Feature Request
Versions: Preview 3
Reporter: Bill Burke
 Assigned to: Gavin King 
 Fix For: Preview 3


Please reassign task as needed and point to relevent Hibernate JIRA task.  
Thanks.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAOP-24) proxy factory for interfaces

2004-12-13 Thread Bill Burke (JIRA)
proxy factory for interfaces 
-

 Key: JBAOP-24
 URL: http://jira.jboss.com/jira/browse/JBAOP-24
 Project: JBoss AOP
Type: Feature Request
Versions: 1.1
Reporter: Bill Burke
 Assigned to: Bill Burke 
 Fix For: 1.1


Wrote a ProxyFactory that can generate optimized AOP proxies based on 
interfaces only

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (JBAOP-21) Typed parameters/argument access

2004-12-13 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/JBAOP-21?page=history ]
 
Bill Burke closed JBAOP-21:
---

Resolution: Done

 Typed parameters/argument access
 

  Key: JBAOP-21
  URL: http://jira.jboss.com/jira/browse/JBAOP-21
  Project: JBoss AOP
 Type: Feature Request
 Versions: 1.1
 Reporter: Bill Burke
 Assignee: Bill Burke
  Fix For: 1.1



 Added ability to specify typed parameters in advice

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-9) Proper exception handling

2004-12-13 Thread Bill Burke (JIRA)
Proper exception handling
-

 Key: EJBTHREE-9
 URL: http://jira.jboss.com/jira/browse/EJBTHREE-9
 Project: EJB 3.0
Type: Feature Request
Versions: Preview 3
Reporter: Bill Burke
 Assigned to: Bill Burke 
 Fix For: Preview 3


Need to review all the exception handling that will be in the specification.  
All the cases needed to be documentented, implemented, and tested.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBCACHE-14) Stable version merged with JBoss 4.0 branch

2004-12-13 Thread Bill Burke (JIRA)
Stable version merged with JBoss 4.0 branch
---

 Key: JBCACHE-14
 URL: http://jira.jboss.com/jira/browse/JBCACHE-14
 Project: JBoss Cache
Type: Feature Request
Reporter: Bill Burke
 Assigned to: Ben Wang 


EJB 3.0 requires JBoss Cache now and we are working against HEAD.  The next EJB 
3.0 release is tentively scheduled for January 31st.  EJB 3.0 will need a 
stable JBoss Cache version (currently in HEAD as of December 12) merged into 
the JBoss 4.0 branch.



-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-6) Callback and Callback Listeners

2004-12-13 Thread Bill Burke (JIRA)
Callback and Callback Listeners
---

 Key: EJBTHREE-6
 URL: http://jira.jboss.com/jira/browse/EJBTHREE-6
 Project: EJB 3.0
Type: Feature Request
Versions: Preview 3
Reporter: Bill Burke
 Assigned to: Bill Burke 
 Fix For: Preview 3


EJB 3.0 specification draft II has changed callbacks from magic methods to 
annotated.  There is also interceptors for callbacks called Callback 
listeners.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAOP-27) add domain concept

2004-12-13 Thread Bill Burke (JIRA)
add domain concept
--

 Key: JBAOP-27
 URL: http://jira.jboss.com/jira/browse/JBAOP-27
 Project: JBoss AOP
Type: Feature Request
Versions: 1.1
Reporter: Bill Burke
 Assigned to: Bill Burke 
 Fix For: 1.1


* Added concept of a domain.  This is a sub AspectManager that has its own 
set of bindings, etc...


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-36) Full Support for @Embeddable

2004-12-14 Thread Bill Burke (JIRA)
Full Support for @Embeddable


 Key: EJBTHREE-36
 URL: http://jira.jboss.com/jira/browse/EJBTHREE-36
 Project: EJB 3.0
Type: Feature Request
Versions: Preview 3
Reporter: Bill Burke
 Assigned to: Bill Burke 
 Fix For: Preview 3


I forgot to implement the case where @Embedddable classes can define @Column's 
@Table, etc.. on themselves.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAOP-30) allow annotations, instanceof in parameters

2004-12-14 Thread Bill Burke (JIRA)
allow annotations, instanceof in parameters
---

 Key: JBAOP-30
 URL: http://jira.jboss.com/jira/browse/JBAOP-30
 Project: JBoss AOP
Type: Feature Request
Versions: 1.1
Reporter: Bill Burke
 Assigned to: Kabir Khan 
 Fix For: 1.1


$instanceof{} and $typedef can be used for field types, constructor parameters, 
and method parameters and return 
types in pointcut expressions and type expressions

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAOP-26) get calling object from a caller joinopint

2004-12-14 Thread Bill Burke (JIRA)
get calling object from a caller joinopint
--

 Key: JBAOP-26
 URL: http://jira.jboss.com/jira/browse/JBAOP-26
 Project: JBoss AOP
Type: Feature Request
Versions: 1.1
Reporter: Bill Burke
 Assigned to: Bill Burke 
 Fix For: 1.1


Added getCallingObject to CalledByMethodInvocation classes.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAOP-54) Declare error/warning

2004-12-14 Thread Bill Burke (JIRA)
Declare error/warning
-

 Key: JBAOP-54
 URL: http://jira.jboss.com/jira/browse/JBAOP-54
 Project: JBoss AOP
Type: Feature Request
Versions: 1.1
Reporter: Bill Burke
 Assigned to: Bill Burke 
 Fix For: 1.1


This is like AspectJ's declare error/warning.  I think this should be part of a 
more generic service that can return joinpoints based on a pointcut query.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAOP-14) annotations and inheritance

2004-12-14 Thread Bill Burke (JIRA)
annotations and inheritance
---

 Key: JBAOP-14
 URL: http://jira.jboss.com/jira/browse/JBAOP-14
 Project: JBoss AOP
Type: Bug
Versions: 1.1
Reporter: Bill Burke
 Assigned to: Bill Burke 
 Fix For: 1.1


* Pointcut annotation resolving for methods @ann-method should use the actual 
class rather than the method.getDeclaredClass because the correct thing might 
not be used.
* Annotation Overrides should be applied to the entire class, see the 
inheritance point above.


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (JBAOP-34) type expressions can now match on throws clauses

2004-12-15 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/JBAOP-34?page=history ]
 
Bill Burke closed JBAOP-34:
---

Resolution: Done

 type expressions can now match on throws clauses
 

  Key: JBAOP-34
  URL: http://jira.jboss.com/jira/browse/JBAOP-34
  Project: JBoss AOP
 Type: Feature Request
 Versions: 1.1
 Reporter: Bill Burke
 Assignee: Kabir Khan
  Fix For: 1.1





-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-29) Update timer tutorial

2004-12-15 Thread Bill Burke (JIRA)
Update timer tutorial
-

 Key: EJBTHREE-29
 URL: http://jira.jboss.com/jira/browse/EJBTHREE-29
 Project: EJB 3.0
Type: Feature Request
Versions: Preview 3
Reporter: Bill Burke
 Assigned to: Kabir Khan 
 Fix For: Preview 3


Update the timer tutorial to reflect new @Timeout annotation

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-37) Support for @Column(columnDefinition)

2004-12-15 Thread Bill Burke (JIRA)
Support for @Column(columnDefinition)
-

 Key: EJBTHREE-37
 URL: http://jira.jboss.com/jira/browse/EJBTHREE-37
 Project: EJB 3.0
Type: Feature Request
Versions: Preview 4
Reporter: Bill Burke
 Assigned to: Bill Burke 
Priority: Minor
 Fix For: Preview 4


I think this will require Hibernate 3.0 changes.

http://opensource.atlassian.com/projects/hibernate/browse/HHH-61

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Assigned: (JBAOP-20) JDK 1.4 and JDK 5.0 agent support with JBoss

2004-12-16 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/JBAOP-20?page=history ]

Bill Burke reassigned JBAOP-20:
---

Assign To: Bill Burke  (was: Kabir Khan)

 JDK 1.4 and JDK 5.0 agent support with JBoss
 

  Key: JBAOP-20
  URL: http://jira.jboss.com/jira/browse/JBAOP-20
  Project: JBoss AOP
 Type: Feature Request
 Versions: 1.1
 Reporter: Bill Burke
 Assignee: Bill Burke
 Priority: Optional
  Fix For: 1.1



 Get JBoss application server to work with JDK 5.0 java.lang.instrument agent 
 plugin

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (JBAOP-30) allow annotations, instanceof in parameters

2004-12-16 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/JBAOP-30?page=history ]
 
Bill Burke closed JBAOP-30:
---

Resolution: Done

 allow annotations, instanceof in parameters
 ---

  Key: JBAOP-30
  URL: http://jira.jboss.com/jira/browse/JBAOP-30
  Project: JBoss AOP
 Type: Feature Request
 Versions: 1.1
 Reporter: Bill Burke
 Assignee: Kabir Khan
  Fix For: 1.1



 $instanceof{} and $typedef can be used for field types, constructor 
 parameters, and method parameters and return 
 types in pointcut expressions and type expressions

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Assigned: (EJBTHREE-16) StrictMaxPool for SLSB and MDB

2004-12-16 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-16?page=history ]

Bill Burke reassigned EJBTHREE-16:
--

Assign To: Kabir Khan  (was: Bill Burke)

 StrictMaxPool for SLSB and MDB
 --

  Key: EJBTHREE-16
  URL: http://jira.jboss.com/jira/browse/EJBTHREE-16
  Project: EJB 3.0
 Type: Feature Request
 Versions: Preview 3
 Reporter: Bill Burke
 Assignee: Kabir Khan
  Fix For: Preview 3


 Original Estimate: 4 hours
 Remaining: 4 hours

 same feature as in JBoss's EJB 2.1.  A user has asked for this feature.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (EJBTHREE-4) Is local check not being performed

2004-12-16 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-4?page=history ]
 
Bill Burke closed EJBTHREE-4:
-

Resolution: Done

 Is local check not being performed
 --

  Key: EJBTHREE-4
  URL: http://jira.jboss.com/jira/browse/EJBTHREE-4
  Project: EJB 3.0
 Type: Bug
 Versions: Preview 3
 Reporter: Bill Burke
 Assignee: Bill Burke
  Fix For: Preview 3


 Original Estimate: 1 hour
 Remaining: 1 hour

 Remote invocations on EJB 3.0 SLSB and SFSB did not do an IsLocal check.  
 This caused exceptions to be thrown like TX propagation errors.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Updated: (JBAOP-53) XML includes don't seem to work in jboss-aop.xml file

2004-12-16 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/JBAOP-53?page=history ]

Bill Burke updated JBAOP-53:


Assign To: Kabir Khan  (was: Bill Burke)
 Priority: Minor  (was: Major)

 XML includes don't seem to work in jboss-aop.xml file
 -

  Key: JBAOP-53
  URL: http://jira.jboss.com/jira/browse/JBAOP-53
  Project: JBoss AOP
 Type: Bug
 Versions: 1.1
 Reporter: Bill Burke
 Assignee: Kabir Khan
 Priority: Minor
  Fix For: 1.1



 http://www.jboss.org/index.html?module=bbop=viewtopicp=3858572

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Updated: (EJBTHREE-2) @Lob support

2004-12-16 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-2?page=history ]

Bill Burke updated EJBTHREE-2:
--

Version: Preview 3
Fix Version: Preview 3

 @Lob support
 

  Key: EJBTHREE-2
  URL: http://jira.jboss.com/jira/browse/EJBTHREE-2
  Project: EJB 3.0
 Type: Feature Request
 Versions: Preview 3
 Reporter: Bill Burke
 Assignee: Bill Burke
  Fix For: Preview 3


 Original Estimate: 2 days
 Remaining: 2 days

 EJB 3.0 spec draft II has support for BLOB and CLOB

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (JBAOP-15) optimization for no interceptors

2004-12-16 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/JBAOP-15?page=history ]
 
Bill Burke closed JBAOP-15:
---

Resolution: Done

 optimization for no interceptors
 

  Key: JBAOP-15
  URL: http://jira.jboss.com/jira/browse/JBAOP-15
  Project: JBoss AOP
 Type: Feature Request
 Versions: 1.1
 Reporter: Bill Burke
 Assignee: Bill Burke
 Priority: Minor
  Fix For: 1.1



 * Use MethodInfo.interceptors to determine whether or not interception should 
 happen so that we can have more
   fine-grained optimizations.
 Also, do the same for fields, constructors, and callers.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (EJBTHREE-6) Callback and Callback Listeners

2004-12-16 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-6?page=history ]
 
Bill Burke closed EJBTHREE-6:
-

Resolution: Done

 Callback and Callback Listeners
 ---

  Key: EJBTHREE-6
  URL: http://jira.jboss.com/jira/browse/EJBTHREE-6
  Project: EJB 3.0
 Type: Feature Request
 Versions: Preview 3
 Reporter: Bill Burke
 Assignee: Bill Burke
  Fix For: Preview 3


 Original Estimate: 2 days
 Remaining: 2 days

 EJB 3.0 specification draft II has changed callbacks from magic methods to 
 annotated.  There is also interceptors for callbacks called Callback 
 listeners.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (EJBTHREE-7) Clustering support for session beans

2004-12-16 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-7?page=history ]
 
Bill Burke closed EJBTHREE-7:
-

Resolution: Done

 Clustering support for session beans
 

  Key: EJBTHREE-7
  URL: http://jira.jboss.com/jira/browse/EJBTHREE-7
  Project: EJB 3.0
 Type: Feature Request
 Versions: Preview 3
 Reporter: Bill Burke
 Assignee: Bill Burke
  Fix For: Preview 3


 Original Estimate: 1 week
 Remaining: 1 week

 Clustering support for session beans.  request failover as well as using 
 JBoss cache for SFSB replication.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (JBAOP-26) get calling object from a caller joinopint

2004-12-16 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/JBAOP-26?page=history ]
 
Bill Burke closed JBAOP-26:
---

Resolution: Done

 get calling object from a caller joinopint
 --

  Key: JBAOP-26
  URL: http://jira.jboss.com/jira/browse/JBAOP-26
  Project: JBoss AOP
 Type: Feature Request
 Versions: 1.1
 Reporter: Bill Burke
 Assignee: Bill Burke
  Fix For: 1.1



 Added getCallingObject to CalledByMethodInvocation classes.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Moved: (JBAS-53) Rewrite of ENC for Web, EJB 2.1, and EJB 3.0

2004-12-16 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/JBAS-53?page=history ]

Bill Burke moved EJBTHREE-11 to JBAS-53:


Project: JBoss Application Server  (was: EJB 3.0)
Key: JBAS-53  (was: EJBTHREE-11)
Version: JBossAS-4.0.2 Final
 (was: Preview 3)
Fix Version: JBossAS-4.0.2 Final
 (was: Preview 3)

 Rewrite of ENC for Web, EJB 2.1, and EJB 3.0
 

  Key: JBAS-53
  URL: http://jira.jboss.com/jira/browse/JBAS-53
  Project: JBoss Application Server
 Type: Feature Request
 Versions: JBossAS-4.0.2 Final
 Reporter: Bill Burke
 Assignee: Bill Burke
  Fix For: JBossAS-4.0.2 Final


 Original Estimate: 1 day
 Remaining: 1 day

 Make the ENC be threadlocal based rather than classloader based as 
 classloader based can give incorrect behavior.  This task will be dependent 
 on a JBoss 4.0 point release.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (JBAOP-12) don't introduce synchronzied methods

2004-12-16 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/JBAOP-12?page=history ]
 
Bill Burke closed JBAOP-12:
---

Resolution: Done

 don't introduce synchronzied methods
 

  Key: JBAOP-12
  URL: http://jira.jboss.com/jira/browse/JBAOP-12
  Project: JBoss AOP
 Type: Bug
 Versions: 1.1
 Reporter: Bill Burke
 Assignee: Bill Burke
  Fix For: 1.1



  don't have any synchronized methods from Advised because it causes
   weblogic to fail on deployment

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Assigned: (JBAOP-15) optimization for no interceptors

2004-12-16 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/JBAOP-15?page=history ]

Bill Burke reassigned JBAOP-15:
---

Assign To: Bill Burke  (was: Kabir Khan)

 optimization for no interceptors
 

  Key: JBAOP-15
  URL: http://jira.jboss.com/jira/browse/JBAOP-15
  Project: JBoss AOP
 Type: Feature Request
 Versions: 1.1
 Reporter: Bill Burke
 Assignee: Bill Burke
 Priority: Minor
  Fix For: 1.1



 * Use MethodInfo.interceptors to determine whether or not interception should 
 happen so that we can have more
   fine-grained optimizations.
 Also, do the same for fields, constructors, and callers.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-17) EJBQL Syntax update

2004-12-16 Thread Bill Burke (JIRA)
EJBQL Syntax update
---

 Key: EJBTHREE-17
 URL: http://jira.jboss.com/jira/browse/EJBTHREE-17
 Project: EJB 3.0
Type: Feature Request
Versions: Preview 3
Reporter: Bill Burke
 Assigned to: Alex Loubyansky 
 Fix For: Preview 3


 Original Message 
Subject: missing EJBQL stuff
Date: Fri, 05 Nov 2004 10:38:18 -0500
From: Gavin King [EMAIL PROTECTED]
To: [EMAIL PROTECTED], Scott M Stark [EMAIL PROTECTED]

I created JIRA issue:

http://opensource.atlassian.com/projects/hibernate/browse/TODO-131

you guys will need to register and then have permissions to be able to
view the issue.

The missing syntax are:

SELECT OBJECT(c) FROM Customer c, IN(c.orders) o WHERE ...
c.orders IS EMPTY
c.orders IS NOT EMPTY
c MEMBER OF s.customers
c NOT MEMBER OF s.customers

CONCAT('x', 'y')
SUBSTRING('xyz', 1, 2)
TRIM(' abcd ')
TRIM(LEADING ' ' FROM ' abcd ')
TRIM(TRAILING ' ' FROM ' abcd ')
TRIM(BOTH ' ' FROM ' abcd ')
LOWER('ABC')
UPPER('abc')
LENGTH('abc')
LOCATE('abc', 'a')
LOCATE('abc', 'a', 1)
ABS(-1)
SQRT(9)
MOD(5,2)
POSITION('a' IN 'abc')
CHARACTER_LENGTH('xyz')
CHAR_LENGTH('xyz')
BIT_LENGTH('zyx')
CURRENT_DATE
CURRENT_TIME
CURRENT_TIMESTAMP
'asddsfs' LIKE '%a%' ESCAPE '%' 

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (JBAOP-23) Remove RMI classloading dependency from ClassProxy

2004-12-16 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/JBAOP-23?page=history ]
 
Bill Burke closed JBAOP-23:
---

Resolution: Done

 Remove RMI classloading dependency from ClassProxy
 --

  Key: JBAOP-23
  URL: http://jira.jboss.com/jira/browse/JBAOP-23
  Project: JBoss AOP
 Type: Feature Request
 Versions: 1.1
 Reporter: Bill Burke
 Assignee: Bill Burke
  Fix For: 1.1



 Rewrote ClassProxyFactory so that proxies created don't require RMI remote 
 classloading on creation

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (EJBTHREE-35) Support field declared annotations

2004-12-16 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-35?page=history ]
 
Bill Burke closed EJBTHREE-35:
--

Resolution: Done

 Support field declared annotations
 --

  Key: EJBTHREE-35
  URL: http://jira.jboss.com/jira/browse/EJBTHREE-35
  Project: EJB 3.0
 Type: Feature Request
 Versions: Preview 3
 Reporter: Bill Burke
 Assignee: Bill Burke
  Fix For: Preview 3



 Spec allows you to annotate get methods or put the persistence annotations on 
 fields.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-24) Migrate to Hibernate's EJB3 annotation facility

2004-12-16 Thread Bill Burke (JIRA)
Migrate to Hibernate's EJB3 annotation facility
---

 Key: EJBTHREE-24
 URL: http://jira.jboss.com/jira/browse/EJBTHREE-24
 Project: EJB 3.0
Type: Feature Request
Versions: Preview 4
Reporter: Bill Burke
 Assigned to: Bill Burke 
 Fix For: Preview 4


The Hibernate team is currently adding ability to support EJB 3 annotations.  
JBoss EJB3 impl currently creates an Hibernate XML mapping file to do this.  
Migrate to the annotation support in Hibernate.


FYI:  An annotation resolver interface will need to be added because there may 
be a mix of XML and annotations in the EJB3 deployment.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Updated: (JBAOP-22) PER_CLASS_JOINPOINT

2004-12-16 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/JBAOP-22?page=history ]

Bill Burke updated JBAOP-22:


Version: 1.1
Fix Version: 1.1

 PER_CLASS_JOINPOINT
 ---

  Key: JBAOP-22
  URL: http://jira.jboss.com/jira/browse/JBAOP-22
  Project: JBoss AOP
 Type: Feature Request
 Versions: 1.1
 Reporter: Bill Burke
 Assignee: Bill Burke
  Fix For: 1.1



 Same as PER_JOINPOINT accept that the aspect is not created per instance on a 
 non-static joinpoint, but rather per class.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (EJBTHREE-5) EJB 3.0 Spec interceptors

2004-12-16 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-5?page=history ]
 
Bill Burke closed EJBTHREE-5:
-

Resolution: Done

 EJB 3.0 Spec interceptors
 -

  Key: EJBTHREE-5
  URL: http://jira.jboss.com/jira/browse/EJBTHREE-5
  Project: EJB 3.0
 Type: Feature Request
 Versions: Preview 3
 Reporter: Bill Burke
 Assignee: Bill Burke
  Fix For: Preview 3


 Original Estimate: 2 days
 Remaining: 2 days

 EJB 3.0 specification now has Interceptors defined.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Updated: (JBAOP-51) support for local variable annotations in pointcut language

2004-12-16 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/JBAOP-51?page=history ]

Bill Burke updated JBAOP-51:


Assign To: Kabir Khan  (was: Bill Burke)

 support for local variable annotations in pointcut language
 ---

  Key: JBAOP-51
  URL: http://jira.jboss.com/jira/browse/JBAOP-51
  Project: JBoss AOP
 Type: Feature Request
 Versions: 2.0
 Reporter: Bill Burke
 Assignee: Kabir Khan
  Fix For: 2.0



 You should be able to intercept field access for local variables that are 
 annotated.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Updated: (JBAOP-6) Compile time reweaving

2004-12-16 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/JBAOP-6?page=history ]

Bill Burke updated JBAOP-6:
---

Version: 2.0
 (was: 1.1)
Fix Version: 2.0
 (was: 1.1)

 Compile time reweaving
 --

  Key: JBAOP-6
  URL: http://jira.jboss.com/jira/browse/JBAOP-6
  Project: JBoss AOP
 Type: Feature Request
 Versions: 2.0
 Reporter: Bill Burke
 Assignee: Bill Burke
  Fix For: 2.0



 Support for compile time reweaving.  Currently AOPC ignores a class that 
 implements Advised

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (EJBTHREE-3) Ejbname is ignored and FQN of classname must be used in queries

2004-12-16 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-3?page=history ]
 
Bill Burke closed EJBTHREE-3:
-

Resolution: Done

 Ejbname is ignored and FQN of classname must be used in queries
 ---

  Key: EJBTHREE-3
  URL: http://jira.jboss.com/jira/browse/EJBTHREE-3
  Project: EJB 3.0
 Type: Bug
 Versions: Preview 3
 Reporter: Bill Burke
 Assignee: Bill Burke
  Fix For: Preview 3


 Original Estimate: 1 hour
 Remaining: 1 hour

 You should use the EJB name as the name of the mapped object so that EJBQL 
 can reference the EJBNAME directly.  Currently the @Entity's name is being 
 ignored.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Updated: (JBAOP-43) ThreadMetadata serialization

2004-12-16 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/JBAOP-43?page=history ]

Bill Burke updated JBAOP-43:


Version: 2.0
Fix Version: 2.0

 ThreadMetadata serialization
 

  Key: JBAOP-43
  URL: http://jira.jboss.com/jira/browse/JBAOP-43
  Project: JBoss AOP
 Type: Feature Request
 Versions: 2.0
 Reporter: Bill Burke
 Assignee: Bill Burke
  Fix For: 2.0



 ThreadMetadata should be serialized separately and merged with remote 
 ThreadMetaData.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (JBAOP-1) VersionedObjectUnitTestCase fails under java5

2004-12-17 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/JBAOP-1?page=history ]
 
Bill Burke closed JBAOP-1:
--

Resolution: Done

org.jboss.util.id.GUID was not Comparable and Versioned aspect was sorting a 
list of them.  Not sure how this EVER worked.

 VersionedObjectUnitTestCase fails under java5
 -

  Key: JBAOP-1
  URL: http://jira.jboss.com/jira/browse/JBAOP-1
  Project: JBoss AOP
 Type: Bug
  Environment: 13:35:08,406 INFO  [Server] Starting JBoss (MX MicroKernel)...
 13:35:08,406 INFO  [Server] Release ID: JBoss [Zion] 4.0.1RC2 (build: 
 CVSTag=Branch_4_0 date=200411271821)
 13:35:08,406 INFO  [Server] Home Dir: 
 C:\cvs\JBoss4.0\jboss-4.0\build\output\jboss-4.0.1RC2
 13:35:08,406 INFO  [Server] Home URL: 
 file:/C:/cvs/JBoss4.0/jboss-4.0/build/output/jboss-4.0.1RC2/
 13:35:08,406 INFO  [Server] Library URL: 
 file:/C:/cvs/JBoss4.0/jboss-4.0/build/output/jboss-4.0.1RC2/lib/
 13:35:08,406 INFO  [Server] Patch URL: null
 13:35:08,406 INFO  [Server] Server Name: all
 13:35:08,406 INFO  [Server] Server Home Dir: 
 C:\cvs\JBoss4.0\jboss-4.0\build\output\jboss-4.0.1RC2\server\all
 13:35:08,421 INFO  [Server] Server Home URL: 
 file:/C:/cvs/JBoss4.0/jboss-4.0/build/output/jboss-4.0.1RC2/server/all/
 13:35:08,421 INFO  [Server] Server Data Dir: 
 C:\cvs\JBoss4.0\jboss-4.0\build\output\jboss-4.0.1RC2\server\all\data
 13:35:08,421 INFO  [Server] Server Temp Dir: 
 C:\cvs\JBoss4.0\jboss-4.0\build\output\jboss-4.0.1RC2\server\all\tmp
 13:35:08,421 INFO  [Server] Server Config URL: 
 file:/C:/cvs/JBoss4.0/jboss-4.0/build/output/jboss-4.0.1RC2/server/all/conf/
 13:35:08,421 INFO  [Server] Server Library URL: 
 file:/C:/cvs/JBoss4.0/jboss-4.0/build/output/jboss-4.0.1RC2/server/all/lib/
 13:35:08,421 INFO  [Server] Root Deployment Filename: jboss-service.xml
 13:35:08,421 INFO  [Server] Starting General Purpose Architecture (GPA)...
 13:35:08,937 INFO  [ServerInfo] Java version: 1.5.0,Sun Microsystems Inc.
 13:35:08,937 INFO  [ServerInfo] Java VM: Java HotSpot(TM) Server VM 
 1.5.0-b64,Sun Microsystems Inc.
 13:35:08,937 INFO  [ServerInfo] OS-System: Windows XP 5.1,x86
 Reporter: Scott M Stark
 Assignee: Bill Burke



 The org.jboss.test.aop.test.VersionedObjectUnitTestCase is failing with the 
 following exception when jboss is running under java5. The same test runs 
 fine when running under jdk1.4.2_05.
 13:36:14,531 INFO  [VersionedObjectTester] test optimistic lock
 13:36:14,578 INFO  [VersionedObjectTester] caught exception correctly: Unable 
 to commit, tx=TransactionImpl:XidImpl[FormatId=257, GlobalId=banshee9100/94, 
 Branc
 hQual=, localId=94] status=STATUS_NO_TRANSACTION; - nested throwable: 
 (java.lang.ClassCastException: org.jboss.util.id.GUID) exception type: 
 javax.transaction.T
 ransactionRolledbackException
 13:36:14,578 ERROR [VersionedObjectTester] failed
 java.lang.Exception: optimistic lock failed, field was changed
 at 
 org.jboss.test.aop.bean.VersionedObjectTester.org$jboss$test$aop$bean$VersionedObjectTester$testPerField$aop(VersionedObjectTester.java:85)
 at 
 org.jboss.test.aop.bean.VersionedObjectTester.testPerField(VersionedObjectTester.java)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
 at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
 at java.lang.reflect.Method.invoke(Method.java:585)
 at 
 org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:144)
 at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
 at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
 at 
 org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
 at 
 org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
 at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
 at java.lang.reflect.Method.invoke(Method.java:585)
 at 
 org.jboss.jmx.connector.invoker.InvokerAdaptorService.invoke(InvokerAdaptorService.java:257)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
 at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
 at java.lang.reflect.Method.invoke(Method.java:585)
 at 
 org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:144)
 at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
 at 
 org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:122)
   

[JBoss-dev] [JBoss JIRA] Commented: (JBAS-219) Out-of-memory Exception

2004-12-10 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/JBAS-219?page=comments#action_12311142 
]
 
Bill Burke commented on JBAS-219:
-

Logged In: YES 
user_id=176497

I hope this isn't a braindead answer, but have you tried 
increasing the heap size?  I think the default entity cache size is 
very large and you may be hitting the default heap maz of 64Meg.

-Xmx512M

is the java switch to increase heap.

 Out-of-memory Exception
 ---

  Key: JBAS-219
  URL: http://jira.jboss.com/jira/browse/JBAS-219
  Project: JBoss Application Server
 Type: Bug
 Reporter: SourceForge User
 Assignee: Scott M Stark



 SourceForge Submitter: jsimone .
 OS:  WinXP Pro
 JDK ver: 1.3.1_04-b02
 This occurs in Both 3.0.0 final and 3.0.1RC1. Each 
 iteration creates 10 CMP 2.0 entity beans and returns. 
 So we get the memory exception after creating about 
 14,510 entities.
 Below is the relevant client code and its result:
 int totalPasses = 1;
 for (int pass=1; pass = totalPasses; pass++) {
 // Create a bunch of sample data using the event 
 manager interface ...
 messageBox(CREATE SAMPLE 
 EVENTS, Pass +pass+ of +totalPasses,  );
 eventIds = eventManager.createSampleEvents(10);
 }
 [java] --
 [java] --- CREATE SAMPLE EVENTS
 [java] --- Pass 1451 of 1
 [java] --- Current Time: Sun Jul 28 18:14:18 EDT 2002
 [java] --
 [java] java.rmi.ServerException: RemoteException 
 occurred in server thread; nested exception is:
 [java] java.rmi.ServerException: null; nested exception 
 is:
 [java] java.lang.OutOfMemoryError
 [java] Embedded Exception
 [java] null; nested exception is:
 [java] java.lang.OutOfMemoryError; nested exception is:
 [java] javax.ejb.TransactionRolledbackLocalException: 
 null; nested exception is:
 [java] java.lang.OutOfMemoryError
 [java] Embedded Exception
 [java] null; nested exception is:
 [java] java.lang.OutOfMemoryError
 [java] java.rmi.ServerException: null; nested exception 
 is:
 [java] java.lang.OutOfMemoryError
 [java] Embedded Exception
 [java] null; nested exception is:
 [java] java.lang.OutOfMemoryError; nested exception is:
 [java] javax.ejb.TransactionRolledbackLocalException: 
 null; nested exception is:
 [java] java.lang.OutOfMemoryError
 [java] Embedded Exception
 [java] null; nested exception is:
 [java] java.lang.OutOfMemoryError
 [java] javax.ejb.TransactionRolledbackLocalException: 
 null; nested exception is:
 [java] java.lang.OutOfMemoryError
 [java] Embedded Exception
 [java] null; nested exception is:
 [java] java.lang.OutOfMemoryError
 [java] at 
 sun.rmi.transport.StreamRemoteCall.exceptionReceived
 FromServer(StreamRemoteCall.java:240)
 [java] at 
 sun.rmi.transport.StreamRemoteCall.executeCall
 (StreamRemoteCall.java:215)
 [java] at sun.rmi.server.UnicastRef.invoke
 (UnicastRef.java:117)
 [java] at 
 org.jboss.invocation.jrmp.server.JRMPInvoker_Stub.invok
 e(Unknown Source)
 [java] at 
 org.jboss.invocation.jrmp.interfaces.JRMPInvokerProxy.i
 nvoke(JRMPInvokerProxy.java:128)
 [java] at org.jboss.invocation.InvokerInterceptor.invoke
 (InvokerInterceptor.java:108)
 [java] at org.jboss.proxy.TransactionInterceptor.invoke
 (TransactionInterceptor.java:73)
 [java] at org.jboss.proxy.SecurityInterceptor.invoke
 (SecurityInterceptor.java:76)
 [java] at 
 org.jboss.proxy.ejb.StatelessSessionInterceptor.invoke
 (StatelessSessionInterceptor.java:111)
 [java] at org.jboss.proxy.ClientContainer.invoke
 (ClientContainer.java:76)
 [java] at $Proxy1.createSampleEvents(Unknown Source)
 [java] at com.highnotes.ebu.client.test.Stress_2.main
 (Stress_2.java:91)
 [java] 
 javax.transaction.TransactionRolledbackException: null; 
 nested exception is:
 [java] java.lang.OutOfMemoryError
 [java] java.lang.OutOfMemoryError
 [java] no stack trace available
 An additional point is that if the entities are immediately 
 removed after creation, NO memory exception occurs. 
 In fact, I have had this test case running for almost 36 
 hours straight with no signs of distress.
 Below is the relevant code from the client and its result:
 int totalPasses = 1;
 for (int pass=1; pass = totalPasses; pass++) {
 // Create a bunch of sample data using the event 
 manager interface ...
 messageBox(CREATE SAMPLE 
 EVENTS, Pass +pass+ of +totalPasses,  );
 eventIds = eventManager.createSampleEvents(10);
 Iterator iter = eventIds.iterator();
 while (iter.hasNext()) {
 eventManager.removeEvent((String) iter.next());
 }
 }
 [java] --
 [java] --- TEST COMPLETE
 [java] --- Pass 1 of 1, Total elapsed time: 0 
 days 0 hrs 26 mins 32 secs
 [java] --- Current Time: Sun Jul 28 18:53:08 EDT 2002
 [java] --
 The session facade has RequiresNew as the 
 transaction attribute and each of the entity bean 
 methods has Required.
 My 

[JBoss-dev] [JBoss JIRA] Commented: (JBAS-219) Out-of-memory Exception

2004-12-10 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/JBAS-219?page=comments#action_12311144 
]
 
Bill Burke commented on JBAS-219:
-

Logged In: YES 
user_id=176497

The default max cache size for entity beans is 10, yes, 1 
million.  Try decreasing it, look in standardjboss.xml.  If 
decreasing doesn't work, then there is a memory leak either in 
JBoss or your application.  Let us know what you find.

cache-policy-conf   
   min-capacity50/min-capacity   
   max-capacity100/max-capacity   
/cache-policy-conf 


 Out-of-memory Exception
 ---

  Key: JBAS-219
  URL: http://jira.jboss.com/jira/browse/JBAS-219
  Project: JBoss Application Server
 Type: Bug
 Reporter: SourceForge User
 Assignee: Scott M Stark



 SourceForge Submitter: jsimone .
 OS:  WinXP Pro
 JDK ver: 1.3.1_04-b02
 This occurs in Both 3.0.0 final and 3.0.1RC1. Each 
 iteration creates 10 CMP 2.0 entity beans and returns. 
 So we get the memory exception after creating about 
 14,510 entities.
 Below is the relevant client code and its result:
 int totalPasses = 1;
 for (int pass=1; pass = totalPasses; pass++) {
 // Create a bunch of sample data using the event 
 manager interface ...
 messageBox(CREATE SAMPLE 
 EVENTS, Pass +pass+ of +totalPasses,  );
 eventIds = eventManager.createSampleEvents(10);
 }
 [java] --
 [java] --- CREATE SAMPLE EVENTS
 [java] --- Pass 1451 of 1
 [java] --- Current Time: Sun Jul 28 18:14:18 EDT 2002
 [java] --
 [java] java.rmi.ServerException: RemoteException 
 occurred in server thread; nested exception is:
 [java] java.rmi.ServerException: null; nested exception 
 is:
 [java] java.lang.OutOfMemoryError
 [java] Embedded Exception
 [java] null; nested exception is:
 [java] java.lang.OutOfMemoryError; nested exception is:
 [java] javax.ejb.TransactionRolledbackLocalException: 
 null; nested exception is:
 [java] java.lang.OutOfMemoryError
 [java] Embedded Exception
 [java] null; nested exception is:
 [java] java.lang.OutOfMemoryError
 [java] java.rmi.ServerException: null; nested exception 
 is:
 [java] java.lang.OutOfMemoryError
 [java] Embedded Exception
 [java] null; nested exception is:
 [java] java.lang.OutOfMemoryError; nested exception is:
 [java] javax.ejb.TransactionRolledbackLocalException: 
 null; nested exception is:
 [java] java.lang.OutOfMemoryError
 [java] Embedded Exception
 [java] null; nested exception is:
 [java] java.lang.OutOfMemoryError
 [java] javax.ejb.TransactionRolledbackLocalException: 
 null; nested exception is:
 [java] java.lang.OutOfMemoryError
 [java] Embedded Exception
 [java] null; nested exception is:
 [java] java.lang.OutOfMemoryError
 [java] at 
 sun.rmi.transport.StreamRemoteCall.exceptionReceived
 FromServer(StreamRemoteCall.java:240)
 [java] at 
 sun.rmi.transport.StreamRemoteCall.executeCall
 (StreamRemoteCall.java:215)
 [java] at sun.rmi.server.UnicastRef.invoke
 (UnicastRef.java:117)
 [java] at 
 org.jboss.invocation.jrmp.server.JRMPInvoker_Stub.invok
 e(Unknown Source)
 [java] at 
 org.jboss.invocation.jrmp.interfaces.JRMPInvokerProxy.i
 nvoke(JRMPInvokerProxy.java:128)
 [java] at org.jboss.invocation.InvokerInterceptor.invoke
 (InvokerInterceptor.java:108)
 [java] at org.jboss.proxy.TransactionInterceptor.invoke
 (TransactionInterceptor.java:73)
 [java] at org.jboss.proxy.SecurityInterceptor.invoke
 (SecurityInterceptor.java:76)
 [java] at 
 org.jboss.proxy.ejb.StatelessSessionInterceptor.invoke
 (StatelessSessionInterceptor.java:111)
 [java] at org.jboss.proxy.ClientContainer.invoke
 (ClientContainer.java:76)
 [java] at $Proxy1.createSampleEvents(Unknown Source)
 [java] at com.highnotes.ebu.client.test.Stress_2.main
 (Stress_2.java:91)
 [java] 
 javax.transaction.TransactionRolledbackException: null; 
 nested exception is:
 [java] java.lang.OutOfMemoryError
 [java] java.lang.OutOfMemoryError
 [java] no stack trace available
 An additional point is that if the entities are immediately 
 removed after creation, NO memory exception occurs. 
 In fact, I have had this test case running for almost 36 
 hours straight with no signs of distress.
 Below is the relevant code from the client and its result:
 int totalPasses = 1;
 for (int pass=1; pass = totalPasses; pass++) {
 // Create a bunch of sample data using the event 
 manager interface ...
 messageBox(CREATE SAMPLE 
 EVENTS, Pass +pass+ of +totalPasses,  );
 eventIds = eventManager.createSampleEvents(10);
 Iterator iter = eventIds.iterator();
 while (iter.hasNext()) {
 eventManager.removeEvent((String) iter.next());
 }
 }
 [java] --
 [java] --- TEST COMPLETE
 [java] --- Pass 1 of 1, Total elapsed time: 0 
 days 0 hrs 26 mins 32 secs
 [java] --- Current Time: Sun Jul 28 18:53:08 EDT 2002
 [java] --
 

[JBoss-dev] [JBoss JIRA] Deleted: (EJBTHREE-1) Add @Lob support

2004-12-13 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-1?page=history ]
 
Bill Burke deleted EJBTHREE-1:
--


 Add @Lob support
 

  Key: EJBTHREE-1
  URL: http://jira.jboss.com/jira/browse/EJBTHREE-1
  Project: EJB 3.0
 Type: Task
 Reporter: Bill Burke
 Assignee: Bill Burke


 Original Estimate: 3 days
 Remaining: 3 days

 EJB 3.0 draft 2 has BLOB and CLOB support.  Map this to Hibernate.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-2) @Lob support

2004-12-13 Thread Bill Burke (JIRA)
@Lob support


 Key: EJBTHREE-2
 URL: http://jira.jboss.com/jira/browse/EJBTHREE-2
 Project: EJB 3.0
Type: Feature Request
Reporter: Bill Burke
 Assigned to: Bill Burke 


EJB 3.0 spec draft II has support for BLOB and CLOB

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-13) proxies must be castable to EJBObject/EJBLocalObject

2004-12-13 Thread Bill Burke (JIRA)
proxies must be castable to EJBObject/EJBLocalObject


 Key: EJBTHREE-13
 URL: http://jira.jboss.com/jira/browse/EJBTHREE-13
 Project: EJB 3.0
Type: Feature Request
Versions: Preview 3
Reporter: Bill Burke
 Assigned to: Bill Burke 
 Fix For: Preview 3


This should be reviewed because there is talk of removing it from the 
specification.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-14) DLQ config support for MDBs

2004-12-13 Thread Bill Burke (JIRA)
DLQ config support for MDBs
---

 Key: EJBTHREE-14
 URL: http://jira.jboss.com/jira/browse/EJBTHREE-14
 Project: EJB 3.0
Type: Feature Request
Versions: Preview 3
Reporter: Bill Burke
 Assigned to: Bill Burke 
 Fix For: Preview 3




-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-15) SequenceGenerator and TableGenerator support

2004-12-13 Thread Bill Burke (JIRA)
SequenceGenerator and TableGenerator support


 Key: EJBTHREE-15
 URL: http://jira.jboss.com/jira/browse/EJBTHREE-15
 Project: EJB 3.0
Type: Feature Request
Versions: Preview 3
Reporter: Bill Burke
 Assigned to: Bill Burke 
 Fix For: Preview 3




-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-18) Bulk update/delete for EJBQL

2004-12-13 Thread Bill Burke (JIRA)
Bulk update/delete for EJBQL


 Key: EJBTHREE-18
 URL: http://jira.jboss.com/jira/browse/EJBTHREE-18
 Project: EJB 3.0
Type: Feature Request
Versions: Preview 3
Reporter: Bill Burke
 Assigned to: Gavin King 
 Fix For: Preview 3


Please add a comment to this pointing to related Hibernate JIRA task.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-21) MDB, Session Bean XML support

2004-12-13 Thread Bill Burke (JIRA)
MDB, Session Bean XML support
-

 Key: EJBTHREE-21
 URL: http://jira.jboss.com/jira/browse/EJBTHREE-21
 Project: EJB 3.0
Type: Feature Request
Versions: Preview 4
Reporter: Bill Burke
 Assigned to: Bill Burke 
 Fix For: Preview 4


Support EJB 3 spec mandated XML deployment descriptors.  This has yet to be 
defined in the EJB 3 specification though.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-22) Unique Constraints

2004-12-13 Thread Bill Burke (JIRA)
Unique Constraints
--

 Key: EJBTHREE-22
 URL: http://jira.jboss.com/jira/browse/EJBTHREE-22
 Project: EJB 3.0
Type: Feature Request
Versions: Preview 4
Reporter: Bill Burke
 Assigned to: Bill Burke 
 Fix For: Preview 4




-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-1) Add @Lob support

2004-12-13 Thread Bill Burke (JIRA)
Add @Lob support


 Key: EJBTHREE-1
 URL: http://jira.jboss.com/jira/browse/EJBTHREE-1
 Project: EJB 3.0
Type: Task
Reporter: Bill Burke
 Assigned to: Bill Burke 


EJB 3.0 draft 2 has BLOB and CLOB support.  Map this to Hibernate.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAOP-22) PER_CLASS_JOINPOINT

2004-12-13 Thread Bill Burke (JIRA)
PER_CLASS_JOINPOINT
---

 Key: JBAOP-22
 URL: http://jira.jboss.com/jira/browse/JBAOP-22
 Project: JBoss AOP
Type: Feature Request
Versions: 1.1
Reporter: Bill Burke
 Assigned to: Bill Burke 
 Fix For: 1.1


Same as PER_JOINPOINT accept that the aspect is not created per instance on a 
non-static joinpoint, but rather per class.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAOP-23) Remove RMI classloading dependency from ClassProxy

2004-12-13 Thread Bill Burke (JIRA)
Remove RMI classloading dependency from ClassProxy
--

 Key: JBAOP-23
 URL: http://jira.jboss.com/jira/browse/JBAOP-23
 Project: JBoss AOP
Type: Feature Request
Versions: 1.1
Reporter: Bill Burke
 Assigned to: Bill Burke 
 Fix For: 1.1


Rewrote ClassProxyFactory so that proxies created don't require RMI remote 
classloading on creation

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (JBAOP-22) PER_CLASS_JOINPOINT

2004-12-13 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/JBAOP-22?page=history ]
 
Bill Burke closed JBAOP-22:
---

Resolution: Done

 PER_CLASS_JOINPOINT
 ---

  Key: JBAOP-22
  URL: http://jira.jboss.com/jira/browse/JBAOP-22
  Project: JBoss AOP
 Type: Feature Request
 Versions: 1.1
 Reporter: Bill Burke
 Assignee: Bill Burke
  Fix For: 1.1



 Same as PER_JOINPOINT accept that the aspect is not created per instance on a 
 non-static joinpoint, but rather per class.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (JBAOP-32) ability to annotation POJOs for preparation

2004-12-13 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/JBAOP-32?page=history ]
 
Bill Burke closed JBAOP-32:
---

Resolution: Done

 ability to annotation POJOs for preparation
 ---

  Key: JBAOP-32
  URL: http://jira.jboss.com/jira/browse/JBAOP-32
  Project: JBoss AOP
 Type: Feature Request
 Versions: 1.1
 Reporter: Bill Burke
 Assignee: Kabir Khan
  Fix For: 1.1



 Basic support for annotating POJOs with Prepare

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAOP-32) ability to annotation POJOs for preparation

2004-12-13 Thread Bill Burke (JIRA)
ability to annotation POJOs for preparation
---

 Key: JBAOP-32
 URL: http://jira.jboss.com/jira/browse/JBAOP-32
 Project: JBoss AOP
Type: Feature Request
Versions: 1.1
Reporter: Bill Burke
 Assigned to: Kabir Khan 
 Fix For: 1.1


Basic support for annotating POJOs with Prepare

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAOP-34) type expressions can now match on throws clauses

2004-12-13 Thread Bill Burke (JIRA)
type expressions can now match on throws clauses


 Key: JBAOP-34
 URL: http://jira.jboss.com/jira/browse/JBAOP-34
 Project: JBoss AOP
Type: Feature Request
Versions: 1.1
Reporter: Bill Burke
 Assigned to: Kabir Khan 
 Fix For: 1.1




-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAOP-35) Remotable Asynchronous Aspect

2004-12-13 Thread Bill Burke (JIRA)
Remotable Asynchronous Aspect
-

 Key: JBAOP-35
 URL: http://jira.jboss.com/jira/browse/JBAOP-35
 Project: JBoss AOP
Type: Feature Request
Versions: 1.1
Reporter: Bill Burke
 Assigned to: Bill Burke 
 Fix For: 1.1




-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAOP-38) annotations for read/write lock

2004-12-13 Thread Bill Burke (JIRA)
annotations for read/write lock
---

 Key: JBAOP-38
 URL: http://jira.jboss.com/jira/browse/JBAOP-38
 Project: JBoss AOP
Type: Feature Request
Versions: 2.0
Reporter: Bill Burke
 Assigned to: Bill Burke 
 Fix For: 2.0


Also use JDK 5.0 read/write locks as well.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAOP-49) Parallel annotation tutorial

2004-12-13 Thread Bill Burke (JIRA)
Parallel annotation tutorial


 Key: JBAOP-49
 URL: http://jira.jboss.com/jira/browse/JBAOP-49
 Project: JBoss AOP
Type: Feature Request
Versions: 1.1
Reporter: Bill Burke
 Assigned to: Kabir Khan 
 Fix For: 1.1


Write a parallel tutorial that uses all annotations instead of XML.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


  1   2   3   4   5   >