Re: [JBoss-dev] Some integration holes in JBAS4.x

2006-01-25 Thread Bill Burke



[EMAIL PROTECTED] wrote:
Having the dependency information will make things work a lot more 
smoothly for us, we will still not be able to use service beans 
without at least deploytime dependency injection.  We will have to 
continue to kludge around these holes in the near future but one day 
5.0 will fix all of our problems (and hopefully brew a find cup of 
java)...




Again, service beans should support XML injection of  
, etc... from XML in jboss.xml




I guess that could workits extremely undesireable, but technically 
feasible.  It would be rather unpleasent to look up ever independent 
attribute as a seperate JNDI lookup and forcibly inject it.  For the 
moment dealing with the drawbacks of XMBeans and the integration issues 
is less unpleasant.




EJB 3.0 spec supports injection through XML via the  
element.  Service beans *should* support this, if not I'm going to 
bitchslap BillD.


Bill


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


Re: [JBoss-dev] Some integration holes in JBAS4.x

2006-01-25 Thread Bill Burke



[EMAIL PROTECTED] wrote:

Bill Burke wrote:




[EMAIL PROTECTED] wrote:


1. @Tx tags can only be used on classes but not interfaces (in the case
of MBeans)
a. reason this would be handled by the MBean deployer adding a
transaction interceptor rather than AOP proper.
b. there is no framework within jboss for XMBeans using attribute
tags to specify interception




Use EJBs.



I cannot use service beans due to mentioned issues.




2. There is no way to depend upon the creation of entity managers
(meaning a xxx.par file results in no mbean being created less its
deployment which is created before the entities inside are deployed and
before its EntityManagers.xxx is bound to jndi) which makes it difficult
to use them outside of service beans.



This has been fixed in next release.  There is an MBean created for 
each persistence unit.  You can either depend on it, or...if you are 
using EJBs, the dependency will be automatically figured out.  
 is now available in jboss.xml for ejbs



And this is now done *after* the thing is completely deployed rather 
than before?





3. Service Beans have no way to declare multiple instances (such as
through XML) and must be statically defined on a 1-1 basis with classes



Fixed in next release.  jboss.xml will support service bean declaration.



Meaning the release that will be part of JBoss 4.0.4?


4. Service beans have no way to declare configurable dependency
injection.  (AOP does not provide a way to get a services name if it
were to very other than reflection upon attribute tags which leads back
to #3)



 etc. will work in next release.  No optional-attribute> yet though.




Having no way to support dynamic configuration after compile-time 
precludes the use of service beans for me.



5. unwrapped deployment of par files appears to be non-functional



you mean, exploded pars?



obviously.




6. dynamic load time weaving appears to be too course grained (on/off
with include/exclude patterns rather than deployable pattern 
definitions)


Reason I bring this up:

I'm attempting to reorganize JBMS to use the latest JBoss tech, however
service beans are not suited to the task which requires using
traditional xmbeans and mbeans.  However, doing this requires looking up
the EntityMangers.xxx and doing a manual injection.  However it is
difficult to time startup properly on a coarse deployment (ear/sar/etc
rather than using prefix and seperate deployments) because the depends
tag cannot be used.

Suggestions:

1. XMBean framework should integrate more with the AOP framework at
least in the use of annotations such that interceptors/etc can be used
in the method level intercepts, patterns should be analyzed and proxy
type interceptors deployed for beans with annotations.



In the works for JBoss 5 in conjunction with MC.



(see title of mail)


2. EJB3 deployer should create an MBean for each entity manager bound to
JNDI and possibly for each entity bean deployed



yes on entity manager (already there) no for each entity bean (doesn't 
make sense)




acceptable.




3. A more comprehensive framework with regards to service beans should
emerge which allows base definitions to be described through attributes
and instance/dependency infromation through XML.



done.



not for 4.x (the scope of this email)


4. unwrapped par/ejb3 deployments should be supported.



Bizarre, probably just a simple bug.



possibly, ran into that a few months ago.


In summary:

1. There is still no way to support dynamic dependency injection for 
service beans in the 4.x releases or branch. (which makes them a 
unusable for JBMS)


2. entity managers will now have mbeans created to represent them

3. There will in 4.0.4 be a way to dynamically configure multiple 
instances of a service with different service names.


4. There will be no way in 4.x to properly support transactions via 
attributes with XMBeans (via the interface)...we can work around this 
but it is really unfortunate as 5.x/MC is unlikely to be released before 
September or October (I'm guessing based on my estimate of its velocity 
and probable impact site not based on any stated plan).


5. exploded pars should be supported if they are not it is likely a 
bug..  I'll investigate this further after the M4 release as it is more 
of an annoyance than critical issue.


Having the dependency information will make things work a lot more 
smoothly for us, we will still not be able to use service beans without 
at least deploytime dependency injection.  We will have to continue to 
kludge around these holes in the near future but one day 5.0 will fix 
all of our problems (and hopefully brew a find cup of java)...




Again, service beans should support XML injection of  
, etc... from XML in jboss.xml


Bill


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new 

Re: [JBoss-dev] Some integration holes in JBAS4.x

2006-01-25 Thread Bill Burke



[EMAIL PROTECTED] wrote:

1. @Tx tags can only be used on classes but not interfaces (in the case
of MBeans)
a. reason this would be handled by the MBean deployer adding a
transaction interceptor rather than AOP proper.
b. there is no framework within jboss for XMBeans using attribute
tags to specify interception


Use EJBs.


2. There is no way to depend upon the creation of entity managers
(meaning a xxx.par file results in no mbean being created less its
deployment which is created before the entities inside are deployed and
before its EntityManagers.xxx is bound to jndi) which makes it difficult
to use them outside of service beans.



This has been fixed in next release.  There is an MBean created for each 
persistence unit.  You can either depend on it, or...if you are using 
EJBs, the dependency will be automatically figured out.   is 
now available in jboss.xml for ejbs



3. Service Beans have no way to declare multiple instances (such as
through XML) and must be statically defined on a 1-1 basis with classes



Fixed in next release.  jboss.xml will support service bean declaration.


4. Service beans have no way to declare configurable dependency
injection.  (AOP does not provide a way to get a services name if it
were to very other than reflection upon attribute tags which leads back
to #3)



 etc. will work in next release.  No optional-attribute> yet though.



5. unwrapped deployment of par files appears to be non-functional



you mean, exploded pars?



6. dynamic load time weaving appears to be too course grained (on/off
with include/exclude patterns rather than deployable pattern definitions)

Reason I bring this up:

I'm attempting to reorganize JBMS to use the latest JBoss tech, however
service beans are not suited to the task which requires using
traditional xmbeans and mbeans.  However, doing this requires looking up
the EntityMangers.xxx and doing a manual injection.  However it is
difficult to time startup properly on a coarse deployment (ear/sar/etc
rather than using prefix and seperate deployments) because the depends
tag cannot be used.

Suggestions:

1. XMBean framework should integrate more with the AOP framework at
least in the use of annotations such that interceptors/etc can be used
in the method level intercepts, patterns should be analyzed and proxy
type interceptors deployed for beans with annotations.



In the works for JBoss 5 in conjunction with MC.


2. EJB3 deployer should create an MBean for each entity manager bound to
JNDI and possibly for each entity bean deployed



yes on entity manager (already there) no for each entity bean (doesn't 
make sense)




3. A more comprehensive framework with regards to service beans should
emerge which allows base definitions to be described through attributes
and instance/dependency infromation through XML.



done.


4. unwrapped par/ejb3 deployments should be supported.



Bizarre, probably just a simple bug.

Bill


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


Re: [JBoss-dev] RE: ejb3-4.0-testsuite Build Failed

2006-01-22 Thread Bill Burke

java.util.Timer's is a PIECE OF POOP!

Adrian Brock wrote:

On Sun, 2006-01-22 at 08:30, Tom Elrod wrote:

So how should the be addressed when using 1.4?  I just added used of 
Timer for client side leases within remoting.





I think we should reinstate the old code for TimeoutFactory
and add a shutdown method.

Avoid using java.util.Timer
Even that purge() method has poor performance semantics.
It scans all the registrations everytime.



Adrian Brock wrote:


1.5 added a  java.util.Timer.purge()

I didn't realise Elias had changed TimeoutFactory to use a Timer.
He said he was just changing it so it can be used as something
other than a singleton:
http://jira.jboss.com/jira/browse/JBAS-2205


From the cvs commit, it looks like he did this because the

old implementation didn't have a "shutdown" method:
http://anoncvs.forge.jboss.com/viewrep/JBoss/jboss-common/src/main/org/jboss/util/timeout/TimeoutFactory.java
See version 1.4

On Sun, 2006-01-22 at 03:18, Scott M Stark wrote:



The issue is that the cancelation of the timer is not removing its
association from the java.util.Timer as the TimerTask.cancel just marks
the TimerTask.state as cancelled, but its not removed until the timer
actually expires. This was leading to a huge list of transaction timeout
objects and the associated object graph. Clearing the TimeoutImpl refs
in cancel restricts the transient buildup to just the TimeoutImpl. I
don't see a way to immeadiate disassociate the TimeoutImpl from the
java.util.Timer internals.




-Original Message-
From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On 
Behalf Of Scott M Stark

Sent: Saturday, January 21, 2006 10:12 PM
To: jboss-development@lists.sourceforge.net; Bill Burke
Subject: RE: [JBoss-dev] RE: ejb3-4.0-testsuite Build Failed

So after profiling this the problem looks to be recent 
changes in org.jboss.util.timeout.TimeoutFactory as the leaks 
are related to transaction timeouts. By clearing the 
TimeoutFactory$TimeoutImpl references the test gets past the 
OME, but there are 73k TimeoutFactory$TimeoutImpl left after 
the test has completed and has been undeployed. One gc root 
is the java.util.TimerThread task queue.





-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of 
Scott M Stark

Sent: Saturday, January 21, 2006 2:17 PM
To: Bill Burke
Cc: jboss-development@lists.sourceforge.net
Subject: [JBoss-dev] RE: ejb3-4.0-testsuite Build Failed

This is just the 


org.jboss.ejb3.test.microbench.unit.BenchUnitTestCase


requiring too much memory. Memory usage during this test 


goes from 40m 



to 130m even using the default config so the memory usage of this 
needs to be looked at.



---
This SF.net email is sponsored by: Splunk Inc. Do you grep 
through log files for problems?  Stop!  Download the new AJAX 
search engine that makes searching your log files as easy as 
surfing the  web.  DOWNLOAD SPLUNK!

http://sel.as-us.falkag.net/sel?cmd=k&kid3432&bid#0486&dat1642
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development




---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid3432&bid#0486&dat1642
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development




---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


--
Bill Burke
Chief Architect
JBoss Inc.


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] Re: ejb3-4.0-testsuite Build Failed

2006-01-15 Thread Bill Burke
I should restate.  The HA-JNDI multicast crap seems to leak memory and I 
have problems with it with a low heap space.  The build-test.xml is 
looking for a node0.jndi.url and it is not set by default in 
local.properties.  This is QA's crap.  Ask them about it.


Bill Burke wrote:
Looks like the tests are using HA-JNDI's multicast crap.  I also have 
trouble running on 64MB.


Scott M Stark wrote:

The tests are failing at the point of shutting down the server and I'm 
seeing this

test-with-jvmargs:
   [delete] Deleting: 
/services/cruisecontrol/work/checkout/ejb3-4.0-testsuite/ejb3/output/log/test.log 


[junit] Running org.jboss.ejb3.test.microbench.unit.BenchUnitTestCase
[junit] Tests run: 2, Failures: 0, Errors: 3, Time elapsed: 
412.146 sec
[junit] Test org.jboss.ejb3.test.microbench.unit.BenchUnitTestCase 
FAILED

 [echo] Will stop the jboss instance at url jnp://127.0.0.1:1099
 [java] Exception in thread "main" 
javax.naming.CommunicationException [Root exception is 
java.rmi.UnmarshalException: Error unmarshaling return header; nested 
exception is:  [java] java.io.EOFException]
 [java] at 
org.jnp.interfaces.NamingContext.lookup(NamingContext.java:722)
 [java] at 
org.jnp.interfaces.NamingContext.lookup(NamingContext.java:587)
 [java] at 
javax.naming.InitialContext.lookup(InitialContext.java:351)

 [java] at org.jboss.Shutdown.main(Shutdown.java:214)
 [java] Caused by: java.rmi.UnmarshalException: Error unmarshaling 
return header; nested exception is:  [java] java.io.EOFException
 [java] at 
sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:203)

 [java] at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:126)
 [java] at org.jnp.server.NamingServer_Stub.lookup(Unknown 
Source)
 [java] at 
org.jnp.interfaces.NamingContext.lookup(NamingContext.java:625)

 [java] ... 3 more
 [java] Caused by: java.io.EOFException
 [java] at 
java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2232) 

 [java] at 
java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:2698) 

 [java] at 
java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:750)
 [java] at 
java.io.ObjectInputStream.(ObjectInputStream.java:268)
 [java] at 
sun.rmi.server.MarshalInputStream.(MarshalInputStream.java:107)
 [java] at 
sun.rmi.transport.ConnectionInputStream.(ConnectionInputStream.java:38) 

 [java] at 
sun.rmi.transport.StreamRemoteCall.getInputStream(StreamRemoteCall.java:111) 

 [java] at 
sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:197)

 [java] ... 6 more
 [java] Java Result: 1
 [echo] Waiting for 'all' server to stop...

BUILD FAILED
/services/cruisecontrol/work/checkout/ejb3-4.0-testsuite/ejb3/build-test.xml:1987: 
The following error occurred while executing this line:
/services/cruisecontrol/work/checkout/ejb3-4.0-testsuite/ejb3/build-test.xml:2008: 
The following error occurred while executing this line:
/services/cruisecontrol/work/checkout/ejb3-4.0-testsuite/ejb3/build-test.xml:100: 
Timeout waiting for 'all' server to shutdown.


Total time: 16 minutes 18 seconds

The problem is that the server is out of memory:

2006-01-14 09:36:52,881 WARN  [org.jgroups.stack.DownHandler] 
DownHandler (UDP) exception is java.lang.OutOfMemoryError: Java heap 
space
2006-01-14 09:36:52,881 ERROR [STDERR] java.lang.OutOfMemoryError: 
Java heap space
2006-01-14 09:36:55,303 WARN  [org.jgroups.stack.DownHandler] 
DownHandler (UDP) exception is java.lang.OutOfMemoryError: Java heap 
space
2006-01-14 09:36:55,303 ERROR [STDERR] java.lang.OutOfMemoryError: 
Java heap space
2006-01-14 09:36:59,084 WARN  [org.jgroups.stack.DownHandler] 
DownHandler (UDP) exception is java.lang.OutOfMemoryError: Java heap 
space
2006-01-14 09:36:59,084 ERROR [STDERR] java.lang.OutOfMemoryError: 
Java heap space


Its being run with 64mb.





*From:* [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
*Sent:* Saturday, January 14, 2006 5:46 AM
    *To:* Adrian Brock; Bill Decoste; Bill Burke;
jboss-development@lists.sourceforge.net; Kabir Khan; QA; Ruel Loehr;
Scott M Stark; Thomas Diesler
*Subject:* ejb3-4.0-testsuite Build Failed
*Importance:* High

View results here ->

http://cruisecontrol.jboss.com/cc/buildresults/ejb3-4.0-testsuite?log=log20060114082307 




BUILD FAILED
Ant Error
Message: 
/services/cruisecontrol/work/scripts/build-ejb3-4.0-testsuite.xml:82:

Exit code: 1 See tests.log in Build Artifacts for details.
Date of build: 01/14/2006 08:23:07
Time to build: 21 minutes 32 seconds
Last changed: 12/31/2005 16:46:08
Last log entry: call isOpen() when obtaining sess

[JBoss-dev] Re: ejb3-4.0-testsuite Build Failed

2006-01-15 Thread Bill Burke
Looks like the tests are using HA-JNDI's multicast crap.  I also have 
trouble running on 64MB.


Scott M Stark wrote:
The tests are failing at the point of shutting down the server and I'm seeing this 


test-with-jvmargs:
   [delete] Deleting: 
/services/cruisecontrol/work/checkout/ejb3-4.0-testsuite/ejb3/output/log/test.log
[junit] Running org.jboss.ejb3.test.microbench.unit.BenchUnitTestCase
[junit] Tests run: 2, Failures: 0, Errors: 3, Time elapsed: 412.146 sec
[junit] Test org.jboss.ejb3.test.microbench.unit.BenchUnitTestCase FAILED
 [echo] Will stop the jboss instance at url jnp://127.0.0.1:1099
 [java] Exception in thread "main" javax.naming.CommunicationException [Root exception is java.rmi.UnmarshalException: Error unmarshaling return header; nested exception is: 
 [java] 	java.io.EOFException]

 [java] at 
org.jnp.interfaces.NamingContext.lookup(NamingContext.java:722)
 [java] at 
org.jnp.interfaces.NamingContext.lookup(NamingContext.java:587)
 [java] at javax.naming.InitialContext.lookup(InitialContext.java:351)
 [java] at org.jboss.Shutdown.main(Shutdown.java:214)
 [java] Caused by: java.rmi.UnmarshalException: Error unmarshaling return header; nested exception is: 
 [java] 	java.io.EOFException

 [java] at 
sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:203)
 [java] at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:126)
 [java] at org.jnp.server.NamingServer_Stub.lookup(Unknown Source)
 [java] at 
org.jnp.interfaces.NamingContext.lookup(NamingContext.java:625)
 [java] ... 3 more
 [java] Caused by: java.io.EOFException
 [java] at 
java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2232)
 [java] at 
java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:2698)
 [java] at 
java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:750)
 [java] at java.io.ObjectInputStream.(ObjectInputStream.java:268)
 [java] at 
sun.rmi.server.MarshalInputStream.(MarshalInputStream.java:107)
 [java] at 
sun.rmi.transport.ConnectionInputStream.(ConnectionInputStream.java:38)
 [java] at 
sun.rmi.transport.StreamRemoteCall.getInputStream(StreamRemoteCall.java:111)
 [java] at 
sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:197)
 [java] ... 6 more
 [java] Java Result: 1
 [echo] Waiting for 'all' server to stop...

BUILD FAILED
/services/cruisecontrol/work/checkout/ejb3-4.0-testsuite/ejb3/build-test.xml:1987:
 The following error occurred while executing this line:
/services/cruisecontrol/work/checkout/ejb3-4.0-testsuite/ejb3/build-test.xml:2008:
 The following error occurred while executing this line:
/services/cruisecontrol/work/checkout/ejb3-4.0-testsuite/ejb3/build-test.xml:100:
 Timeout waiting for 'all' server to shutdown.

Total time: 16 minutes 18 seconds

The problem is that the server is out of memory:

2006-01-14 09:36:52,881 WARN  [org.jgroups.stack.DownHandler] DownHandler (UDP) 
exception is java.lang.OutOfMemoryError: Java heap space
2006-01-14 09:36:52,881 ERROR [STDERR] java.lang.OutOfMemoryError: Java heap 
space
2006-01-14 09:36:55,303 WARN  [org.jgroups.stack.DownHandler] DownHandler (UDP) 
exception is java.lang.OutOfMemoryError: Java heap space
2006-01-14 09:36:55,303 ERROR [STDERR] java.lang.OutOfMemoryError: Java heap 
space
2006-01-14 09:36:59,084 WARN  [org.jgroups.stack.DownHandler] DownHandler (UDP) 
exception is java.lang.OutOfMemoryError: Java heap space
2006-01-14 09:36:59,084 ERROR [STDERR] java.lang.OutOfMemoryError: Java heap 
space

Its being run with 64mb.



*From:* [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
*Sent:* Saturday, January 14, 2006 5:46 AM
    *To:* Adrian Brock; Bill Decoste; Bill Burke;
jboss-development@lists.sourceforge.net; Kabir Khan; QA; Ruel Loehr;
Scott M Stark; Thomas Diesler
*Subject:* ejb3-4.0-testsuite Build Failed
*Importance:* High

View results here ->

http://cruisecontrol.jboss.com/cc/buildresults/ejb3-4.0-testsuite?log=log20060114082307


BUILD FAILED
Ant Error
Message: 
/services/cruisecontrol/work/scripts/build-ejb3-4.0-testsuite.xml:82:
Exit code: 1 See tests.log in Build Artifacts for details.
Date of build: 01/14/2006 08:23:07
Time to build: 21 minutes 32 seconds
Last changed: 12/31/2005 16:46:08
Last log entry: call isOpen() when obtaining session so that HEM
registers with EM with TXset cglib_use_reflection flag to false

 Unit Tests: (0)  Total Errors and Failures: (0)

 


 Modifications since last builds:  (first 50 of 2834)
1.3 modifiedbill
src/test/org/jboss/ejb3/test/strictpool/unit/StrictPoolUnitTestCase.java
EJBs and Persis

[JBoss-dev] Re: EJB 3 release slipping

2006-01-06 Thread Bill Burke

HEM and annotations?

Gavin King wrote:

I am running JBoss AS 4.0.3SP1 with the latest Hibernate jars every day,
and it works smoothly.

-Original Message-
From: Bill Burke 




Can the hibernate jars be updated in the 4.0 branch without breaking 
the

ejb3 tests and seam?



annotations ans HEM cannot be updated, I think Hibernate can, not sure. 
  Ask EMmanuel.





--
Bill Burke
Chief Architect
JBoss Inc.


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] Re: EJB 3 release slipping

2006-01-06 Thread Bill Burke



Scott M Stark wrote:

I have assigned the installer issue to myself and will work on them this
weekend. I need a stable ejb3/hibernate set of binaries that can go into
4.0 to be able to produce a release, but these are not needed to fix the
installer issues.

The question is, can you have an ejb3 drop for 4.0 that works with seam
next week? 



I can try...synch up with me on Wed-Thurs.




-Original Message-
From: Bill Burke 
Sent: Friday, January 06, 2006 8:57 AM

To: Scott M Stark
Cc: Gavin King; jboss-development@lists.sourceforge.net; dev-ejb3
Subject: Re: EJB 3 release slipping



Scott M Stark wrote:

So which of these ejb3 tasks in the 404RC1 roadmap can be done? 





http://jira.jboss.com/jira/secure/IssueNavigator.jspa?reset=true&mode=

hi 



de&sorter/order=DESC&sorter/field=priority&resolutionIds=-1&pid=10030&


fi
xfor=12310378

Task   	 JBAS-2603   	 EJB3 update  	  
Task 	JBAS-2604 	Update the remoting version to 


a stable release


Bug 	JBAS-2606 	Default JBoss+EJB3 boostrap 


very slow due to

TreeCache	 


Didn't see this, but EJB3 can be used in 'default' 
installation.  You just need to remove the sfsb cache service xml.




Bug JBAS-2551   Wrong subjects returned by
PolicyContext.getPolicyContext() in JACC provider	 


nobody is using JACC that I can see, so we can defer this.


Task 	JBAS-2613 	Allow EJB 3.0 tutorials to be 


installable with

IZPack	 
Task 	JBAS-2620 	install 


jboss-aop-jdk50.deployer with ejb3


ezpack installation



Was hoping the izpack expert would do these.


Can the hibernate jars be updated in the 4.0 branch without 


breaking 


the
ejb3 tests and seam?


annotations ans HEM cannot be updated, I think Hibernate can, 
not sure. 
 Ask EMmanuel.


 If its been tested can I take the head versions of

the ejb3 dependencies listed in JBAS-2603? If it has not 


been, please 


do so to put out a 404RC1 release this weekend.



Can Gavin wait until the 16th?  I can defer a bunch of tasks 
til after then to make the date and help Emmanuel out with 
the HEM PFD tasks that are easy for me to do.


The problem is that we're very close to having a full PFD version of
EJB3 from EJB to Persistence.

Bill






--
Bill Burke
Chief Architect
JBoss Inc.


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] Re: EJB 3 release slipping

2006-01-06 Thread Bill Burke



Scott M Stark wrote:
So which of these ejb3 tasks in the 404RC1 roadmap can be done? 


http://jira.jboss.com/jira/secure/IssueNavigator.jspa?reset=true&mode=hi
de&sorter/order=DESC&sorter/field=priority&resolutionIds=-1&pid=10030&fi
xfor=12310378 

Task   	 JBAS-2603   	 EJB3 update  	  
Task 	JBAS-2604 	Update the remoting version to a stable release






Bug JBAS-2606   Default JBoss+EJB3 boostrap very slow due to
TreeCache	 


Didn't see this, but EJB3 can be used in 'default' installation.  You 
just need to remove the sfsb cache service xml.



Bug JBAS-2551   Wrong subjects returned by
PolicyContext.getPolicyContext() in JACC provider	 


nobody is using JACC that I can see, so we can defer this.


TaskJBAS-2613   Allow EJB 3.0 tutorials to be installable with
IZPack	 
Task 	JBAS-2620 	install jboss-aop-jdk50.deployer with ejb3

ezpack installation



Was hoping the izpack expert would do these.


Can the hibernate jars be updated in the 4.0 branch without breaking the
ejb3 tests and seam?


annotations ans HEM cannot be updated, I think Hibernate can, not sure. 
 Ask EMmanuel.


 If its been tested can I take the head versions of

the ejb3 dependencies listed in JBAS-2603? If it has not been, please do
so to put out a 404RC1 release this weekend.



Can Gavin wait until the 16th?  I can defer a bunch of tasks til after 
then to make the date and help Emmanuel out with the HEM PFD tasks that 
are easy for me to do.


The problem is that we're very close to having a full PFD version of 
EJB3 from EJB to Persistence.


Bill


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] Re: EJB 3 release slipping

2006-01-06 Thread Bill Burke
I think you should wait until we get a full PFD released of EJB3. 
Emmanuel still has a bunch of work to do, as do Bill and I.  Also, the 
new Hibernate jars will not work with what EJB3 is in CVS.


Gavin King wrote:

OK, so. I am doing a tour in the second half of this month, speaking
about Seam and demoing all the new stuff in Seam beta 2.

I need to get a release of the appserver that Seam 1.0 beta 2 will work
on before I leave.

This means at least doing a build of 4.0.3SP1 that

(1) Upgrades all three Hibernate jars
(2) Includes the missing jboss-jaxrpc.jar that was causing so much
problems.

Scott, what would it take to make this happen?

Thanks,
Gavin


-Original Message-
From: Bill Burke 
Sent: Friday, January 06, 2006 5:04 AM

To: jboss-development@lists.sourceforge.net; dev-ejb3
Subject: EJB 3 release slipping

We're moving the next EJB 3 release to January 31st.  Emmanuel, Bill,
and I all have trainings, vacation, and other meetings this month.

--
Bill Burke
Chief Architect
JBoss Inc.



--
Bill Burke
Chief Architect
JBoss Inc.


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] EJB 3 release slipping

2006-01-05 Thread Bill Burke
We're moving the next EJB 3 release to January 31st.  Emmanuel, Bill, 
and I all have trainings, vacation, and other meetings this month.


--
Bill Burke
Chief Architect
JBoss Inc.


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] EJB3 dependency on deployer ordering

2005-12-29 Thread Bill Burke
I just implemented being able to deploy ejb3 archives in a .jar.  To 
make this work, I have to guarantee that the EJB3 deployer runs 
accepts() before the old EJB2.1 deployer.  It seems, whoever is added to 
the MainDeployer last, runs first when accepts is called.  So, I added 
an EJBDeployer dependency to the EJB3Deployer.


SO DON'T CHANGE THIS BEHAVIOR IN BRANCH 4.0 PLEASE

--
Bill Burke
Chief Architect
JBoss Inc.


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] local repository.jboss.com

2005-12-28 Thread Bill Burke
I've modified the build-thirdparty.xml so that if you have a local copy 
of repository.jboss.com you can point to it by setting the environment 
variable JBOSS_REPOSITORY to the URL where it lives.


--
Bill Burke
Chief Architect
JBoss Inc.


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


Re: [JBoss-dev] EJB3 question

2005-09-01 Thread Bill Burke
I think you have to do jndi lookups for other ejbs, no?  I don't think 
the specifications define how to reference remote EJBs.


Francisco Reverbel wrote:

Can an EJB3 have ejb-refs that refer to EJB3 components deployed in
other servers? 


I am migrating some DTM recovery tests to EJB3. These are the relevant
DD elements:


   
  
 StatelessFooCallerBean
 org.jboss.test.recover.interfaces.StatelessFooCaller
 org.jboss.test.recover.bean.StatelessFooCallerBean
 Stateless
 Container
 
ejb/Foo1
Session
org.jboss.test.recover.interfaces.StatelessFoo
foo1
 
 
ejb/Foo2
Session
org.jboss.test.recover.interfaces.StatelessFoo
foo2
 
 ...
  
   



   
  
 StatelessFooCallerBean
 StatelessFooCaller
 
ejb/Foo1
jnp://@HOST2@:1099/StatelessFoo
 
 
ejb/Foo2
jnp://@HOST3@:1099/StatelessFoo
 
  
   


I get an incomplete deployment for the referencing EJB3 because JBoss
expects Foo1 and Foo2 to be deployed in the same server as the referencing
EJB3. It sets up a dependency from the referencing EJB3 to Foo1/Foo2:

--- MBeans waiting for other MBeans ---
ObjectName: jboss.j2ee:service=EJB3,name=StatelessFooCallerBean
  State: NOTYETINSTALLED
  I Depend On:
jboss.j2ee:service=EJB3,name=ejb/Foo1
jboss.j2ee:service=EJB3,name=ejb/Foo2

--- MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM ---
ObjectName: jboss.j2ee:service=EJB3,name=ejb/Foo1
  State: NOTYETINSTALLED
  Depends On Me:
jboss.j2ee:service=EJB3,name=StatelessFooCallerBean

Regards,

Francisco


---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development



--
Bill Burke
Chief Architect
JBoss Inc.


---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


Re: [JBoss-dev] RE: jboss-head-jdk-matrix Build Failed

2005-08-30 Thread Bill Burke

yes there are plans to fix it.  No we haven't gotten to it yet.

Adrian Brock wrote:

This EJB3 tutorial is still broken, are there any plans to fix it?
Maybe it just needs updating to the latest JBossCache in jboss-head?

On Mon, 2005-08-22 at 19:10, Adrian Brock wrote:

jboss-head builds now, 
but the tutorial mentioned below is still broken.


On Mon, 2005-08-22 at 13:42, Adrian Brock wrote:


On Mon, 2005-08-22 at 12:50, Steve Ebersole wrote:


BTW, this fails for me even with the source checked out …



Looking at the code that doesn't compile, it also suggests
the hibernate integration is broken?

org.jboss.tutorial.clusteredentity.bean.EntityTestBean

  private boolean isInCache(TreeCache cache, Node node, String key)
throws CacheException
  {
 //Not the best way to look up the cache entry, but how hibernate
creates the cache entry
 //and fqn seems to be buried deep deep down inside hibernate...

 if (node == null)
 {
node = cache.get("/");
 }

//THIS AND SOME OTHER CODE IN THIS METHOD DOES NOT COMPILE:
 Map map = node.getChildren();



  
__


From:[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
Ben Wang
Sent: Monday, August 22, 2005 11:13 AM
To: Ryan Campbell; jboss-development@lists.sourceforge.net; QA
Subject: [JBoss-dev] RE: jboss-head-jdk-matrix Build Failed




No, it should since it is not a major release branch. :-) This api
just got lost during the refactoring in the TreeCache module.



BTW, this is only 1.2.4Alpha build. I have commented it in the
component.xml as well.



-Ben



  
__


From: Ryan Campbell 
Sent: Monday, August 22, 2005 8:59 AM

To: Ben Wang; 'jboss-development@lists.sourceforge.net'; QA
Subject: RE: jboss-head-jdk-matrix Build Failed

So JBossCache 1.2.4’s API is not backwards-compatible with 1.2.3?



  
__


From: Ben Wang 
Sent: Monday, August 22, 2005 10:39 AM

To: Ryan Campbell; 'jboss-development@lists.sourceforge.net'; QA
Subject: RE: jboss-head-jdk-matrix Build Failed




Sorry about this. I forgot to compile it with JDK1.5 on ejb3. I will
fix it soon.



-Ben


--
Bill Burke
Chief Architect
JBoss Inc.



---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


Re: [JBoss-dev] 4.0.3RC2

2005-08-15 Thread Bill Burke
d.java:239) 

   at  
org.jboss.remoting.transport.socket.ServerThread.dorun(ServerThread.java:277) 

   at  
org.jboss.remoting.transport.socket.ServerThread.run(ServerThread.java:168) 


Caused by: java.sql.BatchUpdateException: failed batch
   at org.hsqldb.jdbc.jdbcStatement.executeBatch(Unknown Source)
   at 
org.hsqldb.jdbc.jdbcPreparedStatement.executeBatch(Unknown  Source)
   at  
org.jboss.resource.adapter.jdbc.WrappedStatement.executeBatch(WrappedStatement.java:484) 

   at  
org.hibernate.jdbc.BatchingBatcher.doExecuteBatch(BatchingBatcher.java:57) 

   at  
org.hibernate.jdbc.AbstractBatcher.executeBatch(AbstractBatcher.java:175) 


   ... 37 more
2005-08-15 01:34:21,700 DEBUG  
[org.jboss.ejb3.entity.ManagedEntityManagerFactory] **  
closing entity managersession **
2005-08-15 01:34:21,700 DEBUG [org.hibernate.impl.SessionImpl] 
closing  session
2005-08-15 01:34:21,701 DEBUG  
[org.hibernate.transaction.CacheSynchronization] transaction after  
completion callback, status: 4
2005-08-15 01:34:21,702 DEBUG [org.hibernate.jdbc.JDBCContext] after  
transaction completion
2005-08-15 01:34:21,703 DEBUG [org.hibernate.impl.SessionImpl] after  
transaction completion
2005-08-15 01:34:21,975 DEBUG  
[org.jboss.remoting.transport.socket.ServerThread] failed

java.io.EOFException
   at  
java.io.ObjectInputStream$BlockDataInputStream.readByte(ObjectInputStream.java:2670) 

   at 
java.io.ObjectInputStream.readByte(ObjectInputStream.java:864)
   at  
org.jboss.remoting.transport.socket.ServerSocketWrapper.checkConnection(ServerSocketWrapper.java:54) 

   at  
org.jboss.remoting.transport.socket.ServerThread.acknowledge(ServerThread.java:214) 

   at  
org.jboss.remoting.transport.socket.ServerThread.dorun(ServerThread.java:290) 

   at  
org.jboss.remoting.transport.socket.ServerThread.run(ServerThread.java:168) 

2005-08-15 01:34:21,976 DEBUG  
[org.jboss.remoting.transport.socket.ServerThread] begin thread wait
2005-08-15 01:35:06,769 DEBUG [org.hibernate.jdbc.ConnectionManager]  
running Session.finalize()






---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle  
Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing 
&  QA
Security * Process Improvement & Measurement * 
http://www.sqe.com/bsce5sf

___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development






---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle 
Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing 
& QA

Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development






---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


--
Bill Burke
Chief Architect
JBoss Inc.


---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] how do I update thirdparty libs in Branch_4_0?

2005-08-01 Thread Bill Burke

Has it changes?  Looks like the repository stuff is there.

Thanks,

Bill

--
Bill Burke
Chief Architect
JBoss Inc.


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


Re: [JBoss-dev] Is an jboss-4.0.3RC2 doable next week?

2005-07-27 Thread Bill Burke

EJB3 can be ready for a release if you give me an exact day.

Scott M Stark wrote:

Is the 4.0 codebase looking stable enough for a RC2 release next week?
I'll get a better idea tomorrow as I go through the testsuite again, but
I'm not sure where we stand with the bean deployer and ejb3.
 


Scott Stark
Chief Technology Officer
JBoss Inc.
 
 



---
SF.Net email is Sponsored by the Better Software Conference & EXPO September
19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development



--
Bill Burke
Chief Architect
JBoss Inc.


---
SF.Net email is Sponsored by the Better Software Conference & EXPO September
19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JAR Urls and URLClassLoader

2005-07-21 Thread Bill Burke

I'm trying to create a URLClassLoader with the following URL:

jar:file:/home/wburke/fragments/foo.jar!/jboss-ejb3x.jar

It doesn't seem to be able to load classes from this URL.

--
Bill Burke
Chief Architect
JBoss Inc.


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


Re: [JBoss-dev] Head boot is hanging...

2005-06-17 Thread Bill Burke

I'm getting fresh from CVS just to make sure...

Adrian Brock wrote:

I'm just testing it at the moment.
I committed the code such that Dimitris can also work/test on it.

Actually I'm testing in 4.0.x, but trying to keep the two
codebases in step. Maybe I didn't port something correctly,
let me check...

On Fri, 2005-06-17 at 11:36, Bill Burke wrote:


It is hanging in JDBCStateManager:

"main" prio=1 tid=0x08129510 nid=0x2d18 in Object.wait() 
[0x526a1000..0x526a3e20]

at java.lang.Object.wait(Native Method)
- waiting on <0x45e51380> (a org.jboss.tm.TransactionImpl)
at java.lang.Object.wait(Object.java:474)
at org.jboss.tm.TransactionImpl.lock(TransactionImpl.java:1374)
- locked <0x45e51380> (a org.jboss.tm.TransactionImpl)
at 
org.jboss.tm.TransactionImpl.registerSynchronization(TransactionImpl.java:749)
at 
org.jboss.resource.connectionmanager.TransactionSynchronizer.getRegisteredSynchronizer(TransactionSynchronizer.java:237)
at 
org.jboss.resource.connectionmanager.TransactionSynchronizer.registerTxRemoverSynchronization(TransactionSynchronizer.java:71)
at 
org.jboss.resource.connectionmanager.TxConnectionManager$TxConnectionEventListener.enlist(TxConnectionManager.java:457)
at 
org.jboss.resource.connectionmanager.TxConnectionManager.managedConnectionReconnected(TxConnectionManager.java:326)
at 
org.jboss.resource.connectionmanager.BaseConnectionManager2.allocateConnection(BaseConnectionManager2.java:456)
at 
org.jboss.resource.connectionmanager.BaseConnectionManager2$ConnectionManagerProxy.allocateConnection(BaseConnectionManager2.ja

va:859)
at 
org.jboss.resource.adapter.jdbc.WrapperDataSource.getConnection(WrapperDataSource.java:102)
at 
org.jboss.mq.sm.jdbc.JDBCStateManager$JDBCSession.(JDBCStateManager.java:524)
at 
org.jboss.mq.sm.jdbc.JDBCStateManager.initDB(JDBCStateManager.java:438)
at 
org.jboss.mq.sm.jdbc.JDBCStateManager.startService(JDBCStateManager.java:399)



---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


--
Bill Burke
Chief Architect
JBoss Inc.


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] Head boot is hanging...

2005-06-17 Thread Bill Burke

It is hanging in JDBCStateManager:

"main" prio=1 tid=0x08129510 nid=0x2d18 in Object.wait() 
[0x526a1000..0x526a3e20]

at java.lang.Object.wait(Native Method)
- waiting on <0x45e51380> (a org.jboss.tm.TransactionImpl)
at java.lang.Object.wait(Object.java:474)
at org.jboss.tm.TransactionImpl.lock(TransactionImpl.java:1374)
- locked <0x45e51380> (a org.jboss.tm.TransactionImpl)
at 
org.jboss.tm.TransactionImpl.registerSynchronization(TransactionImpl.java:749)
at 
org.jboss.resource.connectionmanager.TransactionSynchronizer.getRegisteredSynchronizer(TransactionSynchronizer.java:237)
at 
org.jboss.resource.connectionmanager.TransactionSynchronizer.registerTxRemoverSynchronization(TransactionSynchronizer.java:71)
at 
org.jboss.resource.connectionmanager.TxConnectionManager$TxConnectionEventListener.enlist(TxConnectionManager.java:457)
at 
org.jboss.resource.connectionmanager.TxConnectionManager.managedConnectionReconnected(TxConnectionManager.java:326)
at 
org.jboss.resource.connectionmanager.BaseConnectionManager2.allocateConnection(BaseConnectionManager2.java:456)
at 
org.jboss.resource.connectionmanager.BaseConnectionManager2$ConnectionManagerProxy.allocateConnection(BaseConnectionManager2.ja

va:859)
at 
org.jboss.resource.adapter.jdbc.WrapperDataSource.getConnection(WrapperDataSource.java:102)
at 
org.jboss.mq.sm.jdbc.JDBCStateManager$JDBCSession.(JDBCStateManager.java:524)
at 
org.jboss.mq.sm.jdbc.JDBCStateManager.initDB(JDBCStateManager.java:438)
at 
org.jboss.mq.sm.jdbc.JDBCStateManager.startService(JDBCStateManager.java:399)



---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] Head failing to boot

2005-06-17 Thread Bill Burke

I think it is web services:

java.lang.ClassNotFoundException: No ClassLoaders found for: 
org.jboss.ws.metadata.WebServiceInterceptor


Also, the ejb-deployer is failing to start up...

I'm going to take out the WebServices interceptor unless it is fixed soon.

Regards,

Bill


--
Bill Burke
Chief Architect
JBoss Inc.


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] jbossxb package changes in Branch_4_0

2005-06-17 Thread Bill Burke
Later this weekend, I'll be merging JBoss XB to Branch_4_0 and also 
changing the package name of jboss xb to org.jboss.xb. as we discussed a 
few weeks ago.  I want EJB3 to be usable on older versions of JBoss4, 
hence the reasons for the package name change.


Bill

--
Bill Burke
Chief Architect
JBoss Inc.


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


Re: [JBoss-dev] 4.0 Branch and Eclipse

2005-06-09 Thread Bill Burke
Yes, the aspect library source code will be alive and attached to a 
branch of the Application Server.  The AOP core framework will be a 
binary in 3rd party.


Recently (last week), I merged the AOP core library from HEAD to 
Branch_4_0.  I also merged the aspects/ module source to Branch_4_0.


HEAD will NOT use the binary approach!



Scott M Stark wrote:

Aspect belong with the services they are integrating. In general aspects
for jbossas services should not be in thirdparty because the services
are not. The thirdparty situation was an attempt to isolate aop/aspects
from having to deal with multiple branches. This does not work for the
aspects as they have dependencies on the services implementations in the
different branches and so we said that aspects need to be part of the
services artifacts, not an external library trying to keep up with the
service implementation.




-Original Message-
From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On 
Behalf Of Jason T. Greene

Sent: Thursday, June 09, 2005 2:27 AM
To: jboss-development@lists.sourceforge.net
Subject: [JBoss-dev] 4.0 Branch and Eclipse

Hello All,

What is the intended structure of the 4.0 Branch regarding 
aop? It looks like the intended behavior was to include aop 
and aspects as a library in thirdparty. I can see that this 
took affect in HEAD, but was not merged to the 4.0 branch. 
There was a build failure shortly after that change, at which 
point aspects was added to the 4.0 modules alias. The eclipse 
files, however, seem to reference the new library based 
build, and thus the eclipse build fails for anything that uses aspects

(testsuite)

So my question is should aspects be in thirdparty? I would 
like the eclipse and system builds to be consistent.


Thanks,
-Jason




---
This SF.Net email is sponsored by: NEC IT Guy Games.  How far can you shotput
a projector? How fast can you ride your desk chair down the office luge track?
If you want to score the big prize, get to know the little guy.  
Play to win an NEC 61" plasma display: http://www.necitguy.com/?r 
___

JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development



--
Bill Burke
Chief Architect
JBoss Inc.


---
This SF.Net email is sponsored by: NEC IT Guy Games.  How far can you shotput
a projector? How fast can you ride your desk chair down the office luge track?
If you want to score the big prize, get to know the little guy.  
Play to win an NEC 61" plasma display: http://www.necitguy.com/?r=20

___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-135) Beans with @Remote and @Local don't hotdeploy well

2005-04-11 Thread Bill Burke (JIRA)
Beans with @Remote and @Local don't hotdeploy well
--

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


2) When I use session beans that have only @Remote interfaces defined, they 
seem to deploy and hot deploy fine.  But if I change the beans to have both a 
@Remote and a @Local interface then hot deployment doesn't bind them into JNDI 
anymore.  So now that I have beans with both, I have to keep bouncing the 
server.  This is only a pain cause I was really enjoying the fast code-deploy 
cycle.
 

-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Updated: (EJBTHREE-128) Session/MDB Jacc integration

2005-04-07 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-128?page=history ]

Bill Burke updated EJBTHREE-128:


Fix Version: EJB 3.0 Beta 1
 (was: Preview 6)

> Session/MDB Jacc integration
> 
>
>  Key: EJBTHREE-128
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-128
>  Project: EJB 3.0
> Type: Feature Request
> Reporter: Bill Burke
> Assignee: William DeCoste
>  Fix For: EJB 3.0 Beta 1

>
>
> Aspectize JACC integration for both Session/MDB layer.

-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-130) Update Injection Annotations from J2EE 5.0 EDR

2005-04-07 Thread Bill Burke (JIRA)
Update Injection Annotations from J2EE 5.0 EDR
--

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




-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-129) Mirror relevant Session/MDB tutorials for XML mappings

2005-04-07 Thread Bill Burke (JIRA)
Mirror relevant Session/MDB tutorials for XML mappings
--

 Key: EJBTHREE-129
 URL: http://jira.jboss.com/jira/browse/EJBTHREE-129
 Project: EJB 3.0
Type: Task
Reporter: Bill Burke
 Assigned to: William DeCoste 
 Fix For: Preview 6




-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2005-04-07 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-26?page=history ]

Bill Burke reassigned EJBTHREE-26:
--

Assign To: William DeCoste  (was: Bill Burke)

> Web services support
> 
>
>  Key: EJBTHREE-26
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-26
>  Project: EJB 3.0
> Type: Feature Request
> Versions: Preview 5
> Reporter: Bill Burke
> Assignee: William DeCoste
>  Fix For: EJB 3.0 Beta 1

>
>
> 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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-128) Session/MDB Jacc integration

2005-04-07 Thread Bill Burke (JIRA)
Session/MDB Jacc integration


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


Aspectize JACC integration for both Session/MDB layer.

-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Assigned: (EJBTHREE-85) Test Entity JACC integration

2005-04-07 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-85?page=history ]

Bill Burke reassigned EJBTHREE-85:
--

Assign To: William DeCoste

> Test Entity JACC integration
> 
>
>  Key: EJBTHREE-85
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-85
>  Project: EJB 3.0
> Type: Task
> Versions: Preview 5
> Reporter: Bill Burke
> Assignee: William DeCoste
>  Fix For: EJB 3.0 Beta 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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Assigned: (EJBTHREE-72) MDB should support JCA inflow

2005-04-07 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-72?page=history ]

Bill Burke reassigned EJBTHREE-72:
--

Assign To: William DeCoste  (was: Bill Burke)

> MDB should support JCA inflow
> -
>
>  Key: EJBTHREE-72
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-72
>  Project: EJB 3.0
> Type: Feature Request
> Reporter: Bill Burke
> Assignee: William DeCoste
>  Fix For: EJB 3.0 Beta 1

>
>
> MDB should support JCA inflow.  

-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2005-04-07 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-21?page=history ]

Bill Burke reassigned EJBTHREE-21:
--

Assign To: William DeCoste  (was: Bill Burke)

> 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 5
> Reporter: Bill Burke
> Assignee: William DeCoste
>  Fix For: Preview 6

>
> Original Estimate: 1 week
> Remaining: 1 week
>
> 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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-126) Create Docbook for Session/MDBs

2005-04-07 Thread Bill Burke (JIRA)
Create Docbook for Session/MDBs
---

 Key: EJBTHREE-126
 URL: http://jira.jboss.com/jira/browse/EJBTHREE-126
 Project: EJB 3.0
Type: Task
Reporter: Bill Burke
 Fix For: Preview 6




-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-127) Create Docbook for @Consumer

2005-04-07 Thread Bill Burke (JIRA)
Create Docbook for @Consumer


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




-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-125) Create docbook for @Service and Asynch features

2005-04-07 Thread Bill Burke (JIRA)
Create docbook for @Service and Asynch features
---

 Key: EJBTHREE-125
 URL: http://jira.jboss.com/jira/browse/EJBTHREE-125
 Project: EJB 3.0
Type: Task
Reporter: Bill Burke
 Assigned to: Kabir Khan 
 Fix For: Preview 6




-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-124) @LongLived should follow new Spec defined rules

2005-04-07 Thread Bill Burke (JIRA)
@LongLived should follow new Spec defined rules
---

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




-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (EJBTHREE-98) Use latest Hibernate distribution

2005-04-06 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-98?page=history ]
 
Bill Burke closed EJBTHREE-98:
--

Resolution: Done

> Use latest Hibernate distribution
> -
>
>  Key: EJBTHREE-98
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-98
>  Project: EJB 3.0
> Type: Task
> Reporter: Bill Burke
> Assignee: Bill Burke
>  Fix For: Preview 5

>
>


-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (JBAOP-105) Allow JDK5 javaagent load-time transformation on JBoss 3.2.7

2005-04-06 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/JBAOP-105?page=history ]
 
Bill Burke closed JBAOP-105:


Resolution: Done

> Allow JDK5 javaagent load-time transformation on JBoss 3.2.7
> 
>
>  Key: JBAOP-105
>  URL: http://jira.jboss.com/jira/browse/JBAOP-105
>  Project: JBoss AOP
> Type: Feature Request
> Versions: 1.1.1
> Reporter: Bill Burke
>  Fix For: 1.1.2

>
>


-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (JBAOP-101) JBoss 3.2.6 is broken

2005-04-06 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/JBAOP-101?page=history ]
 
Bill Burke closed JBAOP-101:


Resolution: Done

works/tested on 3.2.7

> JBoss 3.2.6 is broken
> -
>
>  Key: JBAOP-101
>  URL: http://jira.jboss.com/jira/browse/JBAOP-101
>  Project: JBoss AOP
> Type: Bug
> Versions: 1.1.1
> Reporter: Bill Burke
>  Fix For: 1.1.2

>
>


-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAOP-105) Allow JDK5 javaagent load-time transformation on JBoss 3.2.7

2005-04-06 Thread Bill Burke (JIRA)
Allow JDK5 javaagent load-time transformation on JBoss 3.2.7


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




-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-123) Remove 4.0.1sp1 patch for MDB/Consumer

2005-04-04 Thread Bill Burke (JIRA)
Remove 4.0.1sp1 patch for MDB/Consumer
--

 Key: EJBTHREE-123
 URL: http://jira.jboss.com/jira/browse/EJBTHREE-123
 Project: EJB 3.0
Type: Task
Versions: Preview 5
Reporter: Bill Burke
 Fix For: EJB 3.0 Beta 1


Search for TODO in MDB.java and Consumer.java.  Remove that reflection calls to 
getServerSessionPool.

-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAOP-104) EAR redeployment problem

2005-04-04 Thread Bill Burke (JIRA)
EAR redeployment problem


 Key: JBAOP-104
 URL: http://jira.jboss.com/jira/browse/JBAOP-104
 Project: JBoss AOP
Type: Bug
Versions: 1.1.1
Reporter: Bill Burke




-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-122) AOP hooks for exception handling for EntityManager methods

2005-04-04 Thread Bill Burke (JIRA)
AOP hooks for exception handling for EntityManager methods
--

 Key: EJBTHREE-122
 URL: http://jira.jboss.com/jira/browse/EJBTHREE-122
 Project: EJB 3.0
Type: Feature Request
Versions: Preview 4
Reporter: Bill Burke
Priority: Optional
 Fix For: EJB 3.0 Beta 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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (EJBTHREE-121) Support @EJB injection with no parameters

2005-04-04 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-121?page=history ]
 
Bill Burke closed EJBTHREE-121:
---

Resolution: Done

> Support @EJB injection with no parameters
> -
>
>  Key: EJBTHREE-121
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-121
>  Project: EJB 3.0
> Type: Feature Request
> Versions: Preview 4
> Reporter: Bill Burke
>  Fix For: Preview 5

>
>
> @EJB requires you to specify the jndiName of the EJB you want to inject.  
> Since JBoss, by default, uses the FQN of the remote/local itnerface (if there 
> is only one interface), then allow it so that @EJB doesn't need any other 
> parameters and infer the JNDI name from either the @Remote or @Local 
> interface.

-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-121) Support @EJB injection with no parameters

2005-04-04 Thread Bill Burke (JIRA)
Support @EJB injection with no parameters
-

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


@EJB requires you to specify the jndiName of the EJB you want to inject.  Since 
JBoss, by default, uses the FQN of the remote/local itnerface (if there is only 
one interface), then allow it so that @EJB doesn't need any other parameters 
and infer the JNDI name from either the @Remote or @Local interface.

-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (EJBTHREE-120) If @LongLived is also @Transient, don't serialize on passivation

2005-04-04 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-120?page=history ]
 
Bill Burke closed EJBTHREE-120:
---

Resolution: Done

> If @LongLived is also @Transient, don't serialize on passivation
> 
>
>  Key: EJBTHREE-120
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-120
>  Project: EJB 3.0
> Type: Feature Request
> Reporter: Bill Burke
>  Fix For: Preview 5

>
>


-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (EJBTHREE-115) Doco on Hibernate integration

2005-04-01 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-115?page=history ]
 
Bill Burke closed EJBTHREE-115:
---

Resolution: Done

> Doco on Hibernate integration
> -
>
>  Key: EJBTHREE-115
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-115
>  Project: EJB 3.0
> Type: Task
> Reporter: Bill Burke
> Assignee: Bill Burke
>  Fix For: Preview 5

>
>
> * mix of .hbm.xml and @Entity
> * tutorial on .hbm.xml
> * Exposing Session/Query
> * Query cache tutorial and doco

-- 
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



---
This SF.net email is sponsored by Demarc:
A global provider of Threat Management Solutions.
Download our HomeAdmin security software for free today!
http://www.demarc.com/info/Sentarus/hamr30
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (EJBTHREE-119) Test FlushMode + @LongLived

2005-03-31 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-119?page=history ]
 
Bill Burke closed EJBTHREE-119:
---

Resolution: Done

> Test FlushMode + @LongLived
> ---
>
>  Key: EJBTHREE-119
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-119
>  Project: EJB 3.0
> Type: Task
> Reporter: Bill Burke
>  Fix For: Preview 5

>
>


-- 
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



---
This SF.net email is sponsored by Demarc:
A global provider of Threat Management Solutions.
Download our HomeAdmin security software for free today!
http://www.demarc.com/info/Sentarus/hamr30
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAOP-101) JBoss 3.2.6 is broken

2005-03-31 Thread Bill Burke (JIRA)
JBoss 3.2.6 is broken
-

 Key: JBAOP-101
 URL: http://jira.jboss.com/jira/browse/JBAOP-101
 Project: JBoss AOP
Type: Bug
Versions: 1.1.1
Reporter: Bill Burke
 Fix For: 1.1.2




-- 
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



---
This SF.net email is sponsored by Demarc:
A global provider of Threat Management Solutions.
Download our HomeAdmin security software for free today!
http://www.demarc.com/info/Sentarus/hamr30
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Updated: (EJBTHREE-119) Test FlushMode + @LongLived

2005-03-31 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-119?page=history ]

Bill Burke updated EJBTHREE-119:


Fix Version: Preview 5

> Test FlushMode + @LongLived
> ---
>
>  Key: EJBTHREE-119
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-119
>  Project: EJB 3.0
> Type: Task
> Reporter: Bill Burke
>  Fix For: Preview 5

>
>


-- 
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



---
This SF.net email is sponsored by Demarc:
A global provider of Threat Management Solutions.
Download our HomeAdmin security software for free today!
http://www.demarc.com/info/Sentarus/hamr30
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-119) Test FlushMode + @LongLived

2005-03-31 Thread Bill Burke (JIRA)
Test FlushMode + @LongLived
---

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




-- 
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



---
This SF.net email is sponsored by Demarc:
A global provider of Threat Management Solutions.
Download our HomeAdmin security software for free today!
http://www.demarc.com/info/Sentarus/hamr30
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-120) If @LongLived is also @Transient, don't serialize on passivation

2005-03-31 Thread Bill Burke (JIRA)
If @LongLived is also @Transient, don't serialize on passivation


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




-- 
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



---
This SF.net email is sponsored by Demarc:
A global provider of Threat Management Solutions.
Download our HomeAdmin security software for free today!
http://www.demarc.com/info/Sentarus/hamr30
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-118) refactor all injectors to be constructor interceptors

2005-03-30 Thread Bill Burke (JIRA)
refactor all injectors to be constructor interceptors
-

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




-- 
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



---
This SF.net email is sponsored by Demarc:
A global provider of Threat Management Solutions.
Download our HomeAdmin security software for free today!
http://www.demarc.com/info/Sentarus/hamr30
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2005-03-28 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-21?page=history ]

Bill Burke updated EJBTHREE-21:
---

Fix Version: Preview 6
 (was: EJB 3.0 Beta 1)

> 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 5
> Reporter: Bill Burke
> Assignee: Bill Burke
>  Fix For: Preview 6

>
> Original Estimate: 1 week
> Remaining: 1 week
>
> 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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (EJBTHREE-112) Support integration with Hibernate Query caches.

2005-03-28 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-112?page=history ]
 
Bill Burke closed EJBTHREE-112:
---

Resolution: Done

Should be doable now that Hibernate Session/Query are exposed and 
hibernate.cfg.xml is available.

> Support integration with Hibernate Query caches.
> 
>
>  Key: EJBTHREE-112
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-112
>  Project: EJB 3.0
> Type: Feature Request
> Reporter: Bill Burke
> Assignee: Bill Burke
>  Fix For: Preview 5

>
>
> Not sure what is involved here, but make sure this is in.

-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (EJBTHREE-55) EAR/WAR integration tutorial

2005-03-28 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-55?page=history ]
 
Bill Burke closed EJBTHREE-55:
--

Resolution: Done

> EAR/WAR integration tutorial
> 
>
>  Key: EJBTHREE-55
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-55
>  Project: EJB 3.0
> Type: Task
> Versions: Preview 4
> Reporter: Bill Burke
> Assignee: Bill Burke
>  Fix For: Preview 5

>
>
> Show how ejb3 jars can be packaged within an EAR

-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (EJBTHREE-105) DS: add hibernate.dialect metadata

2005-03-28 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-105?page=history ]
 
Bill Burke closed EJBTHREE-105:
---

Resolution: Rejected

Too many dependencies.  JCA would have to know about hibernate, Hibernate would 
have to know about JBoss JCA.

> DS: add hibernate.dialect metadata
> --
>
>  Key: EJBTHREE-105
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-105
>  Project: EJB 3.0
> Type: Feature Request
> Versions: Preview 4
>  Environment: Linux, JDK 1.5; Jboss 4.0.1sp1
> Reporter: Jens Elkner
> Priority: Critical

>
>
> Actually IMHO it is not possible, to deploy an EJB3 application to jboss in a 
> relayable way. E.g. an application may ask a user to create a datasource with 
> a certain name, however, it should not care/dictate, what a database the user 
> chooses (IMHO thats one of the biggest advantage of an J2EE server). 
> However, since the hibernate.dialect property depends direct on the type of 
> database, an application can't be shipped with a 
> META-INF/hibernate.properties, where the hibernate.dialect is set. E.g. if so 
> oracle.jdbc.driver.OracleDriver and 
> hibernate.dialect=hibernate.dialect=org.hibernate.dialect.MySQLMyISAMDialect
> simply would produce garbage.
> Editing the META-INF/hibernate.properties is not an option, since if the 
> archive is signed, this would destroy the inegrity of the archive (besides 
> the fact, that it would be unaceppably to ask the user/admin to that).
> To solve this problem, IMHO it is neccessary, that a new optional metadata 
> tag should be allowed in . E.g.:
> 
>...
>
>   ...
>   ...
>
> 
> Now, if the EBJ3 deployer starts deploying an ejb3 archive,
> it may have a look at the DS metadata and add/overwrite the hibernate.dialect 
> property. 
> Digging around, I guess, that 
> org.jboss.ejb3.entity.HibernateSessionFactory:createSessionFactory(java.util.Collection
>  classes, Properties props) right before 
> "if (props != null) cfg.setProperties(props);" 
> would be anappropriate place, doing that.
> Unfortunately, I do not know, whether/how it is possible and allowed to 
> access the metadata of the datasource at this point. 
> If you can give me a hint, I would try to implement/test 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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (EJBTHREE-103) @NamedQuery for method and package level

2005-03-28 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-103?page=history ]
 
Bill Burke closed EJBTHREE-103:
---

Resolution: Rejected

will/is handled in Hibernate annotations project

> @NamedQuery for method and package level
> 
>
>  Key: EJBTHREE-103
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-103
>  Project: EJB 3.0
> Type: Feature Request
> Reporter: Kabir Khan

>
>
> Implement once spec makes more sense

-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (EJBTHREE-88) EJB doc - missing quotes

2005-03-28 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-88?page=history ]
 
Bill Burke closed EJBTHREE-88:
--

Resolution: Done

> EJB doc - missing quotes
> 
>
>  Key: EJBTHREE-88
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-88
>  Project: EJB 3.0
> Type: Bug
>   Components: Documentation
> Versions: Preview 4
>  Environment: Linux, Mozilla 1.7.3,  Apache/2.0.52 (Unix)
> Reporter: Jens Elkner
> Priority: Trivial

>
> Original Estimate: 5 minutes
> Remaining: 5 minutes
>
> ejb3/docs/index.html: quotes are missing for the first two hrefs and thus one 
> gets e.g. "http://localhost/develop/jboss40/ejb3/EJB3-edr2.pdf%22"; from 
> mozilla pointing to a non-existent object ... 
> --- patch ---
> --- index.html.orig   Tue Feb  8 22:52:22 2005
> +++ index.htmlWed Mar  2 00:12:44 2005
> @@ -6,8 +6,8 @@
>  
>  
>  
> - EJB 3.0 Specification (non-persistence 
> stuff)
> - EJB 3.0 Persistence Specification
> + EJB 3.0 Specification (non-persistence 
> stuff)
> + EJB 3.0 Persistence 
> Specification
>   Tutorial Walks you through EJB 3.0 
> with real examples that you can build and run.
>   Configuring  Describes how you 
> configure datasources and Hibernate 3.0.  Hibernate 3.0 drives our entity 
> bean implementation.
>   JNDI Bindings JNDI , interceptor, and 
> transport bindings for your session beans.
> --- eo patch --

-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (EJBTHREE-89) docs included twice

2005-03-28 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-89?page=history ]
 
Bill Burke closed EJBTHREE-89:
--

Resolution: Done

will be fixed in preview 5

> docs included twice
> ---
>
>  Key: EJBTHREE-89
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-89
>  Project: EJB 3.0
> Type: Feature Request
>   Components: Documentation
> Versions: Preview 4
>  Environment: All
> Reporter: Jens Elkner
> Priority: Trivial

>
> Original Estimate: 5 minutes
> Remaining: 5 minutes
>
> jboss-EJB-3.0_Preview_4.zip contains documentation twice:
> 1) unpacked in jboss-EJB-3.0_Preview_4/docs/ and 
> 2) as zip: jboss-EJB-3.0_Preview_4/docs/ejb3-preview4-docs.zip
> One of both should be removed.

-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Assigned: (EJBTHREE-115) Doco on Hibernate integration

2005-03-28 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-115?page=history ]

Bill Burke reassigned EJBTHREE-115:
---

Assign To: Bill Burke

> Doco on Hibernate integration
> -
>
>  Key: EJBTHREE-115
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-115
>  Project: EJB 3.0
> Type: Task
> Reporter: Bill Burke
> Assignee: Bill Burke
>  Fix For: Preview 5

>
>
> * mix of .hbm.xml and @Entity
> * tutorial on .hbm.xml
> * Exposing Session/Query
> * Query cache tutorial and doco

-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Assigned: (EJBTHREE-98) Use latest Hibernate distribution

2005-03-28 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-98?page=history ]

Bill Burke reassigned EJBTHREE-98:
--

Assign To: Bill Burke

> Use latest Hibernate distribution
> -
>
>  Key: EJBTHREE-98
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-98
>  Project: EJB 3.0
> Type: Task
> Reporter: Bill Burke
> Assignee: Bill Burke
>  Fix For: Preview 5

>
>


-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Assigned: (EJBTHREE-112) Support integration with Hibernate Query caches.

2005-03-28 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-112?page=history ]

Bill Burke reassigned EJBTHREE-112:
---

Assign To: Bill Burke

> Support integration with Hibernate Query caches.
> 
>
>  Key: EJBTHREE-112
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-112
>  Project: EJB 3.0
> Type: Feature Request
> Reporter: Bill Burke
> Assignee: Bill Burke
>  Fix For: Preview 5

>
>
> Not sure what is involved here, but make sure this is in.

-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (EJBTHREE-116) EntityManager should not be scoped to entire EAR

2005-03-28 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-116?page=history ]
 
Bill Burke closed EJBTHREE-116:
---

Resolution: Done

> EntityManager should not be scoped to entire EAR
> 
>
>  Key: EJBTHREE-116
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-116
>  Project: EJB 3.0
> Type: Feature Request
> Versions: Preview 4
> Reporter: Bill Burke
>  Fix For: Preview 5

>
>
> For one EAR in Preview 4 and lower, there is one EntityManager instance 
> scoped to the entire EAR.  THis is not good because 1 ear may want to 
> interact with multiple data sources.  So, EntityManager is scoped to the EJB 
> jar file.

-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-116) EntityManager should not be scoped to entire EAR

2005-03-28 Thread Bill Burke (JIRA)
EntityManager should not be scoped to entire EAR


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


For one EAR in Preview 4 and lower, there is one EntityManager instance scoped 
to the entire EAR.  THis is not good because 1 ear may want to interact with 
multiple data sources.  So, EntityManager is scoped to the EJB jar file.

-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (EJBTHREE-111) Support hibernate.cfg.xml file

2005-03-28 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-111?page=history ]
 
Bill Burke closed EJBTHREE-111:
---

Resolution: Done

> Support hibernate.cfg.xml file
> --
>
>  Key: EJBTHREE-111
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-111
>  Project: EJB 3.0
> Type: Feature Request
> Reporter: Bill Burke
>  Fix For: Preview 5

>
>


-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Commented: (EJBTHREE-111) Support hibernate.cfg.xml file

2005-03-28 Thread Bill Burke (JIRA)
 [ 
http://jira.jboss.com/jira/browse/EJBTHREE-111?page=comments#action_12316444 ]
 
Bill Burke commented on EJBTHREE-111:
-

You can now use a META-INF/hibernate.cfg.xml file instead of a 
hibernate.properties file

> Support hibernate.cfg.xml file
> --
>
>  Key: EJBTHREE-111
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-111
>  Project: EJB 3.0
> Type: Feature Request
> Reporter: Bill Burke
>  Fix For: Preview 5

>
>


-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Updated: (EJBTHREE-114) EntityManager Identity

2005-03-28 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-114?page=history ]

Bill Burke updated EJBTHREE-114:


Fix Version: EJB 3.0 Beta 1
 (was: Preview 5)

> EntityManager Identity
> --
>
>  Key: EJBTHREE-114
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-114
>  Project: EJB 3.0
> Type: Feature Request
> Reporter: Bill Burke
> Assignee: Bill Burke
>  Fix For: EJB 3.0 Beta 1

>
>
> EntityManager's are scoped per EJB-JAR.  We want to give them identity so 
> that they can be injected into a WAR or another SessionBean outside the scope.
> The default EntityManager name is the empty string "".
> Provide a ejb3-jboss.xml file that allows you to specify the EntityManager 
> name.

-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Updated: (EJBTHREE-55) EAR/WAR integration tutorial

2005-03-28 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-55?page=history ]

Bill Burke updated EJBTHREE-55:
---

Assign To: Bill Burke  (was: Kabir Khan)

> EAR/WAR integration tutorial
> 
>
>  Key: EJBTHREE-55
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-55
>  Project: EJB 3.0
> Type: Task
> Versions: Preview 4
> Reporter: Bill Burke
> Assignee: Bill Burke
>  Fix For: Preview 5

>
>
> Show how ejb3 jars can be packaged within an EAR

-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-115) Doco on Hibernate integration

2005-03-26 Thread Bill Burke (JIRA)
Doco on Hibernate integration
-

 Key: EJBTHREE-115
 URL: http://jira.jboss.com/jira/browse/EJBTHREE-115
 Project: EJB 3.0
Type: Task
Reporter: Bill Burke
 Fix For: Preview 5


* mix of .hbm.xml and @Entity
* tutorial on .hbm.xml
* Exposing Session/Query
* Query cache tutorial and doco


-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Updated: (EJBTHREE-115) Doco on Hibernate integration

2005-03-26 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-115?page=history ]

Bill Burke updated EJBTHREE-115:


Fix Version: Preview 5

> Doco on Hibernate integration
> -
>
>  Key: EJBTHREE-115
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-115
>  Project: EJB 3.0
> Type: Task
> Reporter: Bill Burke
>  Fix For: Preview 5

>
>
> * mix of .hbm.xml and @Entity
> * tutorial on .hbm.xml
> * Exposing Session/Query
> * Query cache tutorial and doco

-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (EJBTHREE-109) Expose Hibernate Query through javax.persistence.Query

2005-03-26 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-109?page=history ]
 
Bill Burke closed EJBTHREE-109:
---

Resolution: Done

> Expose Hibernate Query through javax.persistence.Query
> --
>
>  Key: EJBTHREE-109
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-109
>  Project: EJB 3.0
> Type: Feature Request
> Reporter: Bill Burke
>  Fix For: Preview 5

>
>


-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (EJBTHREE-107) Support mixed HB3/EJB3 deployments

2005-03-26 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-107?page=history ]
 
Bill Burke closed EJBTHREE-107:
---

Resolution: Done

> Support mixed HB3/EJB3 deployments
> --
>
>  Key: EJBTHREE-107
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-107
>  Project: EJB 3.0
> Type: Feature Request
> Reporter: Bill Burke
>  Fix For: Preview 5

>
>


-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (EJBTHREE-110) Expose Hibernate Session through EntityManager interface

2005-03-26 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-110?page=history ]
 
Bill Burke closed EJBTHREE-110:
---

Resolution: Done

> Expose Hibernate Session through EntityManager interface
> 
>
>  Key: EJBTHREE-110
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-110
>  Project: EJB 3.0
> Type: Feature Request
> Reporter: Bill Burke
>  Fix For: Preview 5

>
>


-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Deleted: (EJBTHREE-113) EntityManager should be scoped to EJB-JAR, not by EAR

2005-03-25 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-113?page=history ]
 
Bill Burke deleted EJBTHREE-113:



> EntityManager should be scoped to EJB-JAR, not by EAR
> -
>
>  Key: EJBTHREE-113
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-113
>  Project: EJB 3.0
> Type: Feature Request
> Reporter: Bill Burke
> Assignee: Kabir Khan

>
>
> EntityManager should be only scoped to an EAR.

-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-114) EntityManager Identity

2005-03-25 Thread Bill Burke (JIRA)
EntityManager Identity
--

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


EntityManager's are scoped per EJB-JAR.  We want to give them identity so that 
they can be injected into a WAR or another SessionBean outside the scope.

The default EntityManager name is the empty string "".

Provide a ejb3-jboss.xml file that allows you to specify the EntityManager name.

-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-113) EntityManager should be scoped to EJB-JAR, not by EAR

2005-03-25 Thread Bill Burke (JIRA)
EntityManager should be scoped to EJB-JAR, not by EAR
-

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


EntityManager should be only scoped to an EAR.

-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Assigned: (EJBTHREE-56) TreeCache + Entities WIKI page

2005-03-25 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-56?page=history ]

Bill Burke reassigned EJBTHREE-56:
--

Assign To: Kabir Khan  (was: Bill Burke)

test treecache+entity integration/caching.  Write a tutorial page on it.

> TreeCache + Entities WIKI page
> --
>
>  Key: EJBTHREE-56
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-56
>  Project: EJB 3.0
> Type: Task
> Versions: Preview 4
> Reporter: Bill Burke
> Assignee: Kabir Khan
>  Fix For: Preview 5

>
>


-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (EJBTHREE-108) Support for package-level annotations

2005-03-25 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-108?page=history ]
 
Bill Burke closed EJBTHREE-108:
---

Resolution: Done

> Support for package-level annotations
> -
>
>  Key: EJBTHREE-108
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-108
>  Project: EJB 3.0
> Type: Feature Request
> Versions: Preview 4
> Reporter: Bill Burke
>  Fix For: Preview 5

>
>
> Need to have Deployer find all package-level annotations so that HB3 
> AnnotationConfigure can get the package-level metadata they require.

-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Updated: (EJBTHREE-55) EAR/WAR integration tutorial

2005-03-25 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-55?page=history ]

Bill Burke updated EJBTHREE-55:
---

  Assign To: Kabir Khan  (was: Bill Burke)
Description: Show how ejb3 jars can be packaged within an EAR  (was: )

> EAR/WAR integration tutorial
> 
>
>  Key: EJBTHREE-55
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-55
>  Project: EJB 3.0
> Type: Task
> Versions: Preview 4
> Reporter: Bill Burke
> Assignee: Kabir Khan
>  Fix For: Preview 5

>
>
> Show how ejb3 jars can be packaged within an EAR

-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-112) Support integration with Hibernate Query caches.

2005-03-25 Thread Bill Burke (JIRA)
Support integration with Hibernate Query caches.


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


Not sure what is involved here, but make sure this is in.

-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-111) Support hibernate.cfg.xml file

2005-03-25 Thread Bill Burke (JIRA)
Support hibernate.cfg.xml file
--

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




-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Updated: (EJBTHREE-70) Allow multiple @Management interfaces for a @Service bean

2005-03-25 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-70?page=history ]

Bill Burke updated EJBTHREE-70:
---

Fix Version: EJB 3.0 Beta 1
 (was: Preview 5)

> Allow multiple @Management interfaces for a @Service bean
> -
>
>  Key: EJBTHREE-70
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-70
>  Project: EJB 3.0
> Type: Task
> Versions: Preview 3
> Reporter: Kabir Khan
> Assignee: Bill Burke
>  Fix For: EJB 3.0 Beta 1

>
>
> See http://jira.jboss.com/jira/browse/EJBTHREE-65

-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2005-03-25 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-24?page=history ]
 
Bill Burke closed EJBTHREE-24:
--

Resolution: Done

> Migrate to Hibernate's EJB3 annotation facility
> ---
>
>  Key: EJBTHREE-24
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-24
>  Project: EJB 3.0
> Type: Task
> Versions: Preview 5
> Reporter: Bill Burke
> Assignee: Bill Burke
>  Fix For: Preview 5

>
>
> 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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Updated: (EJBTHREE-85) Test Entity JACC integration

2005-03-25 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-85?page=history ]

Bill Burke updated EJBTHREE-85:
---

Fix Version: EJB 3.0 Beta 1
 (was: Preview 5)

> Test Entity JACC integration
> 
>
>  Key: EJBTHREE-85
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-85
>  Project: EJB 3.0
> Type: Task
> Versions: Preview 5
> Reporter: Bill Burke
>  Fix For: EJB 3.0 Beta 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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2005-03-25 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-23?page=history ]

Bill Burke updated EJBTHREE-23:
---

Environment: 
Fix Version: EJB 3.0 Beta 1
 (was: Preview 5)

> Clustering refactor
> ---
>
>  Key: EJBTHREE-23
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-23
>  Project: EJB 3.0
> Type: Feature Request
> Versions: Preview 5
> Reporter: Bill Burke
> Assignee: Bill Burke
>  Fix For: EJB 3.0 Beta 1

>
> Original Estimate: 3 days
> Remaining: 3 days
>
> 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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Updated: (EJBTHREE-53) @EJBs and @Homes

2005-03-25 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-53?page=history ]

Bill Burke updated EJBTHREE-53:
---

Fix Version: EJB 3.0 Beta 1
 (was: Preview 5)

> @EJBs and @Homes
> 
>
>  Key: EJBTHREE-53
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-53
>  Project: EJB 3.0
> Type: Feature Request
> Versions: Preview 4
> Reporter: Bill Burke
> Assignee: Kabir Khan
>  Fix For: EJB 3.0 Beta 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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

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

Bill Burke updated EJBTHREE-12:
---

Fix Version: EJB 3.0 Beta 1
 (was: Preview 5)

> 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 5
> Reporter: Bill Burke
> Assignee: Bill Burke
>  Fix For: EJB 3.0 Beta 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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2005-03-25 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-21?page=history ]

Bill Burke updated EJBTHREE-21:
---

Environment: 
Fix Version: EJB 3.0 Beta 1
 (was: Preview 5)

> 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 5
> Reporter: Bill Burke
> Assignee: Bill Burke
>  Fix For: EJB 3.0 Beta 1

>
> Original Estimate: 1 week
> Remaining: 1 week
>
> 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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-110) Expose Hibernate Session through EntityManager interface

2005-03-25 Thread Bill Burke (JIRA)
Expose Hibernate Session through EntityManager interface


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




-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Updated: (EJBTHREE-72) MDB should support JCA inflow

2005-03-25 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-72?page=history ]

Bill Burke updated EJBTHREE-72:
---

Fix Version: EJB 3.0 Beta 1
 (was: Preview 5)

> MDB should support JCA inflow
> -
>
>  Key: EJBTHREE-72
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-72
>  Project: EJB 3.0
> Type: Feature Request
> Reporter: Bill Burke
> Assignee: Bill Burke
>  Fix For: EJB 3.0 Beta 1

>
>
> MDB should support JCA inflow.  

-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-109) Expose Hibernate Query through javax.persistence.Query

2005-03-25 Thread Bill Burke (JIRA)
Expose Hibernate Query through javax.persistence.Query
--

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




-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (EJBTHREE-106) Bug in EntityToHibernateXml.java:convert()

2005-03-25 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-106?page=history ]
 
Bill Burke closed EJBTHREE-106:
---

Resolution: Out of Date

Fixed in CVS, but we merged with HB3 annotations project and 
EntityToHibernateXML is no longer being used.

> Bug in EntityToHibernateXml.java:convert()
> --
>
>  Key: EJBTHREE-106
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-106
>  Project: EJB 3.0
> Type: Bug
>   Components: EJB3 Extensions
> Versions: Preview 4
>  Environment: Redhat 9
> Reporter: jojo9876

>
> Original Estimate: 5 minutes
> Remaining: 5 minutes
>
> Around line 131, I believe it should read:
> if (clazz.isAnnotationPresent(GeneratedIdTable.class)) 
> {
>GeneratedIdTable gen = (GeneratedIdTable) 
>   clazz.getAnnotation(GeneratedIdTable.class);
>generatorTables.put(gen.name(), gen);
> }
> instead of:
> if (clazz.isAnnotationPresent(GeneratedIdTable.class)) 
> {
>GeneratedIdTable gen = (GeneratedIdTable) 
>   clazz.getAnnotation(TableGenerator.class);
>generatorTables.put(gen.name(), gen);
> }

-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Updated: (EJBTHREE-101) EntityManager not useable in PostConstruct callback of StatelessSessionBean.

2005-03-25 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-101?page=history ]

Bill Burke updated EJBTHREE-101:


Fix Version: Preview 5

> EntityManager not useable in PostConstruct callback of StatelessSessionBean.
> 
>
>  Key: EJBTHREE-101
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-101
>  Project: EJB 3.0
> Type: Bug
> Versions: Preview 4
>  Environment: JBoss-4.0.1sp1, EJB3-Preview4, Windows 2000.
> Reporter: Shagoon
> Assignee: Kabir Khan
>  Fix For: Preview 5

>
>
> When trying to use the entity manager for a query in a PostConstruct callback 
> in a StatelessSessionBean, execution fails with:
> Caused by: java.lang.RuntimeException: EntityManager must be access within a 
> transaction
>   at 
> org.jboss.ejb3.entity.HibernateSessionFactory.getSession(HibernateSessionFactory.java:105)
>   at 
> org.jboss.ejb3.entity.EntityManagerImpl.getSession(EntityManagerImpl.java:146)
>   at 
> org.jboss.ejb3.entity.EntityManagerImpl.createQuery(EntityManagerImpl.java:39)
>   at some.package.postConstructCallback(SomeDAOBean.java:99)
>   ... 26 more

-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Assigned: (EJBTHREE-101) EntityManager not useable in PostConstruct callback of StatelessSessionBean.

2005-03-25 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-101?page=history ]

Bill Burke reassigned EJBTHREE-101:
---

Assign To: Kabir Khan

> EntityManager not useable in PostConstruct callback of StatelessSessionBean.
> 
>
>  Key: EJBTHREE-101
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-101
>  Project: EJB 3.0
> Type: Bug
> Versions: Preview 4
>  Environment: JBoss-4.0.1sp1, EJB3-Preview4, Windows 2000.
> Reporter: Shagoon
> Assignee: Kabir Khan

>
>
> When trying to use the entity manager for a query in a PostConstruct callback 
> in a StatelessSessionBean, execution fails with:
> Caused by: java.lang.RuntimeException: EntityManager must be access within a 
> transaction
>   at 
> org.jboss.ejb3.entity.HibernateSessionFactory.getSession(HibernateSessionFactory.java:105)
>   at 
> org.jboss.ejb3.entity.EntityManagerImpl.getSession(EntityManagerImpl.java:146)
>   at 
> org.jboss.ejb3.entity.EntityManagerImpl.createQuery(EntityManagerImpl.java:39)
>   at some.package.postConstructCallback(SomeDAOBean.java:99)
>   ... 26 more

-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-108) Support for package-level annotations

2005-03-25 Thread Bill Burke (JIRA)
Support for package-level annotations
-

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


Need to have Deployer find all package-level annotations so that HB3 
AnnotationConfigure can get the package-level metadata they require.

-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-107) Support mixed HB3/EJB3 deployments

2005-03-25 Thread Bill Burke (JIRA)
Support mixed HB3/EJB3 deployments
--

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




-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Deleted: (EJBTHREE-96) DiscriminatorColumn should go after Version

2005-03-25 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-96?page=history ]
 
Bill Burke deleted EJBTHREE-96:
---


> DiscriminatorColumn should go after Version
> ---
>
>  Key: EJBTHREE-96
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-96
>  Project: EJB 3.0
> Type: Bug
> Reporter: Bill Burke

>
>
> see forum post for patch

-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Deleted: (EJBTHREE-100) Support for Session/MDB XML DDs

2005-03-25 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-100?page=history ]
 
Bill Burke deleted EJBTHREE-100:



> Support for Session/MDB XML DDs
> ---
>
>  Key: EJBTHREE-100
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-100
>  Project: EJB 3.0
> Type: Feature Request
> Reporter: Bill Burke

>
>


-- 
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://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


<    1   2   3   4   5   6   7   8   9   10   >