Re: java 7

2012-07-14 Thread David Blevins
On Jul 13, 2012, at 11:11 PM, Enrico Olivelli wrote: The only thing is to remove the content of the endosed lib maybe you can create doc page on running on top of JDK7 Created a blank page for it: http://tomee.apache.org/java7.html Feel free to add any details you want! Just click the

Re: javaagent?

2012-07-13 Thread David Blevins
On Jul 12, 2012, at 10:08 AM, Mark Struberg wrote: BTW, regarding OpenEJB, it will require a lot of refactoring if we wanna remove CMP, EJB 2, etc. But it would make OpenEJB likely quite a lot leaner and faster! :) Perhaps a very tiny bit leaner, but not faster. 95% of the CMP code is

Re: javaagent?

2012-07-13 Thread David Blevins
On Jul 12, 2012, at 6:07 AM, Romain Manni-Bucau wrote: why i ask is mainly because in java it breaks the runtime because it tries to load the class we are loading the it leads to some LinkageErrors I was able to reproduce the most recent LinkageError (ResourceLocalCdiEmTest) with no

Re: javaagent?

2012-07-13 Thread David Blevins
On Jul 13, 2012, at 3:01 PM, Romain Manni-Bucau wrote: not the same issue at all i spoke about java 7, this error was with j6 too Any steps to reproduce this error? -David 2012/7/13 David Blevins david.blev...@gmail.com On Jul 12, 2012, at 6:07 AM, Romain Manni-Bucau wrote

Re: [VOTE] Bulk close old issues

2012-07-13 Thread David Blevins
/trunk/sandbox/release-tools/src/main/java/org/apache/openejb/tools/release/cmd/CloseJiras.java -David 2012/7/13 David Blevins david.blev...@gmail.com On Jul 13, 2012, at 2:21 PM, Romain Manni-Bucau wrote: If you want to real all (as we do for tomee) up to you ;) Not sure I understand

Re: java 7

2012-07-13 Thread David Blevins
On Jul 13, 2012, at 3:43 PM, Romain Manni-Bucau wrote: when will we pass to j7? typically i saw tomcat is moving its trunk to j7 (with no j6 compatibility) As long as we are Java EE 6 level we have to support Java 6. So I'd guess it'd be a while. -David

Re: java 7

2012-07-13 Thread David Blevins
want? -David 2012/7/14 David Blevins david.blev...@gmail.com On Jul 13, 2012, at 3:43 PM, Romain Manni-Bucau wrote: when will we pass to j7? typically i saw tomcat is moving its trunk to j7 (with no j6 compatibility) As long as we are Java EE 6 level we have to support Java 6. So

Re: CMS diff: EJB over SSL

2012-07-07 Thread David Blevins
Thanks, Jonathan! Took a leap of faith and assumed this was you :) Nice you included details on the javax.net.ssl.* properties. -David On Jul 6, 2012, at 9:08 PM, Anonymous CMS User wrote: Clone URL (Committers only):

Re: why do we use hsqldb?

2012-07-06 Thread David Blevins
On Jul 6, 2012, at 4:21 AM, Romain Manni-Bucau wrote: http://www.h2database.com/html/performance.html that's biased because of the source but derby seems pretty slow which is not so fine for tests Performance size. We can certainly check it out again. If it adds even 500ms on the

CI Test Failures

2012-07-05 Thread David Blevins
We've had a string of bad luck and hit with several intermittent test failures in the last three days. Likely the load on the CI system increased and time sensitive tests started failing. I've cleared away some of these. Here's the current failure: Test set:

Re: injection of em example

2012-07-03 Thread David Blevins
On Jul 3, 2012, at 12:29 AM, Jean-Louis MONTEIRO wrote: Done yesterday. Yep. Thanks again! -David JLOuis 2012/7/3 David Blevins david.blev...@gmail.com On Jul 2, 2012, at 1:51 AM, Jean-Louis MONTEIRO wrote: What's the question? - why do we propose such a simple example

Client/Servet SSL (OPENEJB-1856)

2012-07-03 Thread David Blevins
Thanks to Jonathan Fisher on his first code patch! Third patch in total :) Before we close out OPENEJB-1856, we should also update this file to show the new property:

Re: CMS diff: EJB Refs

2012-07-02 Thread David Blevins
On Jul 2, 2012, at 1:54 AM, Jean-Louis MONTEIRO wrote: isn't that issue due to the changes you did before 1.0.0 final regarding tomee.xml parsing without JaxB? Good catch! Fixed TOMEE-267 -David JLouis 2012/7/2 Jonathan S. Fisher anonym...@apache.org Clone URL (Committers only):

Re: injection of em example

2012-07-02 Thread David Blevins
On Jul 2, 2012, at 1:51 AM, Jean-Louis MONTEIRO wrote: What's the question? - why do we propose such a simple example? - or why do we propose a wrong (non spec compliant example)? Is the question about missing @Id as required by the spec? If yes, I guess we should fix it. I suspect like

Re: svn commit: r1356044 - /openejb/trunk/openejb/container/openejb-core/src/main/java/org/apache/openejb/junit/ApplicationComposer.java

2012-07-02 Thread David Blevins
On Jul 1, 2012, at 4:03 PM, Romain Manni-Bucau wrote: shouldn't it be in Core warmup? Even better. -David -- Forwarded message -- From: dblev...@apache.org Date: 2012/7/2 Subject: svn commit: r1356044 -

Re: svn commit: r1355952 - in /openejb/trunk/openejb/tomee/tomee-catalina/src/main/java/org/apache/tomee/catalina: LazyStopWebappClassLoader.java TomEEClassLoaderHelper.java TomEEWebappLoader.java

2012-07-01 Thread David Blevins
On Jul 1, 2012, at 10:42 AM, Romain Manni-Bucau wrote: it could be but Tomcat cannot be extended in a simple way to do it (typically it needs to redefine a WebappClassLoader. I was looking into that maybe a month ago for the same reasons Enrico mentions. I seem to recall that code was in

Re: svn commit: r1355952 - in /openejb/trunk/openejb/tomee/tomee-catalina/src/main/java/org/apache/tomee/catalina: LazyStopWebappClassLoader.java TomEEClassLoaderHelper.java TomEEWebappLoader.java

2012-07-01 Thread David Blevins
Right, the idea is to do more of the same prevention. Or potentially at least. Specifically JPA which is in the core of the server and can't be a webapp lib in any situation. -David On Jul 1, 2012, at 2:32 PM, Romain Manni-Bucau wrote: hmm, did i speak about bug? - Romain 2012/7/1

Re: CMS diff: TomEE and Hibernate

2012-06-30 Thread David Blevins
On Jun 30, 2012, at 11:34 AM, Enrico Olivelli wrote: Grave: Unable to deploy collapsed ear in war /HibernateTomee: Exception: Creating application failed: C:\work\HibernateTomee\build\web: java.util.concurrent.ExecutionException: java.lang.ClassCastException:

Re: CMS diff: TomEE and Hibernate

2012-06-30 Thread David Blevins
:722) Il 30/06/2012 20:38, David Blevins ha scritto: On Jun 30, 2012, at 11:34 AM, Enrico Olivelli wrote: Grave: Unable to deploy collapsed ear in war /HibernateTomee: Exception: Creating application failed: C:\work\HibernateTomee\build\**web: java.util.concurrent.**ExecutionException

Re: Website permissions

2012-06-27 Thread David Blevins
On Jun 27, 2012, at 12:03 AM, Charles Moulliard wrote: I have tried to submit a new section page but get this error next : Error The operation is forbidden by the server: Commit failed (details follow):: Changing file

Fwd: TomEE at JAXConf, Monday July 9th

2012-06-27 Thread David Blevins
FYI Begin forwarded message: From: David Blevins david.blev...@gmail.com Subject: TomEE at JAXConf, Monday July 9th Date: June 27, 2012 7:54:28 PM PDT To: us...@openejb.apache.org Hi All, A heads up that I'll be speaking on TomEE at JAXConf 2012 in little more than a week. Title

Re: Website permissions

2012-06-26 Thread David Blevins
encouraged to say X, Y or Z is a PITA and should be fixed :) -David On 26/06/12 03:56, David Blevins wrote: Hi Charles, Can you give the new editing links a try? Not sure we have all the kinks worked out in terms of existing Apache committers editing docs. Would love to use you

Re: Time to do a new 3.1. 5 release ?

2012-06-26 Thread David Blevins
Hi Shawn! On Jun 25, 2012, at 7:45 PM, Shawn Jiang wrote: I saw many clustering update in 3.1 branch. Geronimo is planing to do a new 2.2.2 release and we want to bring these openejb clustering update in. If there's no objections to do a new 3.1.5 release, I'd like to volunteer to roll

Groovy CDI (Re: svn commit: r1354242)

2012-06-26 Thread David Blevins
On Jun 26, 2012, at 2:22 PM, rmannibu...@apache.org wrote: Author: rmannibucau Date: Tue Jun 26 21:22:07 2012 New Revision: 1354242 URL: http://svn.apache.org/viewvc?rev=1354242view=rev Log: adding groovy sample Added: openejb/trunk/openejb/examples/groovy-sample/

Re: [POLL] Refactoring our SCM

2012-06-25 Thread David Blevins
On Jun 24, 2012, at 10:35 PM, Romain Manni-Bucau wrote: Well the issue is they depend on openejb or tomee. Typically today the interesting plugins (not the scan.xml or jee5 - jee6 ones) can't be released without releasing openejb and tomee. We should pull out the ones that can. It's a

CMS diff: Working on the Website

2012-06-25 Thread David Blevins
Clone URL (Committers only): https://cms.apache.org/redirect?new=anonymous;action=diff;uri=http://openejb.apache.org/dev%2Fwebsite-dev.mdtext David Blevins Index: /trunk/content/dev/website-dev.mdtext === --- /trunk/content/dev

Website and CMS features -- anyone can edit

2012-06-25 Thread David Blevins
So as previously posted, on the ASF Infra side we've added anonymous editing to the CMS. Joe Schaefer and I did some more hacking this weekend. https://blogs.apache.org/infra/entry/apache_cms_new_features_for In addition I've also added a little blue pencil icon to most pages. When you

Re: [QUESTION] Time to release TomEE 1.1.0?

2012-06-25 Thread David Blevins
before release, just update the JIRA you created. about maven plugins they depend on openejb or tomee so i think it will be hard to release a useful plugin today. Maybe the scan.xml one? That can be a good start. -David 2012/6/24 David Blevins david.blev...@gmail.com On Jun 22, 2012, at 6

Re: Website and CMS features -- anyone can edit

2012-06-25 Thread David Blevins
On Jun 25, 2012, at 5:23 PM, Karan Malhi wrote: This is just fantastic. I tried to use this feature (clicked on the blue pencil) , got a nice message box with options to click Yes or No. I chose No and was taken to the following url

Re: Website and CMS features -- anyone can edit

2012-06-25 Thread David Blevins
On Jun 25, 2012, at 6:12 PM, David Blevins wrote: On Jun 25, 2012, at 5:23 PM, Karan Malhi wrote: This is just fantastic. I tried to use this feature (clicked on the blue pencil) , got a nice message box with options to click Yes or No. I chose No and was taken to the following url

Re: TomEE Wiki

2012-06-25 Thread David Blevins
On Jun 23, 2012, at 4:16 PM, David Blevins wrote: Wow, Joe from Infra is on fire. He just pinged me on IRC to show me a feature he added to the CMS. An anonymous user can edit a page and then submit a diff to the list. The diff email will have a link in it a committer can use

Re: Website permissions

2012-06-25 Thread David Blevins
, David Blevins david.blev...@gmail.com wrote: Charles had poked me a while back on writing docs for the OSGi support. Currently, writing docs is a matter of sending a patch: http://svn.apache.org/repos/asf/openejb/site/trunk/content It occurs to me as well that, we have complete control

Re: Release notes

2012-06-24 Thread David Blevins
On Jun 20, 2012, at 8:52 AM, Thiago Veronezi wrote: Probably we can remove the MDBs and the WebServices JIRAs. I didn't have time to touch these guys. They can wait for the release after this one. Great. Feel free to update the jiras. :) -David

Re: [POLL] Refactoring our SCM

2012-06-24 Thread David Blevins
On Jun 22, 2012, at 6:07 AM, Jean-Louis MONTEIRO wrote: IMHO, we could get out and get different life cycle for: Arquillian OSGi TomEE Maven Examples? We pulled out javaee-api and that went well. I suggest we take the simple approach and try one more. Getting the CI setup in order is

Re: [QUESTION] Time to release TomEE 1.1.0?

2012-06-24 Thread David Blevins
On Jun 22, 2012, at 6:00 AM, Jean-Louis MONTEIRO wrote: Hello guys, We don't have so much external dependencies in SNAPSHOT, and we have been doing a lot of fixes and enhancements since latest release (April, 27th). I would to push a new release up. WDYT? If yes, I'm also candidate to

Re: OpenEJB 2012 Meetup - EU or USA

2012-06-24 Thread David Blevins
On May 29, 2012, at 11:59 AM, David Blevins wrote: On May 29, 2012, at 1:48 AM, Jean-Louis MONTEIRO wrote: Ok guys, seems like Apache Con EU is the winner, isn't it? ApacheCon will be from 5th to 9th of November. The main question is how short nights will be to let us have some coding

TomEE Wiki

2012-06-23 Thread David Blevins
Ok, to make life easier I deleted our old TOMEE confluence space, which was just a left over copy of the OPENEJB space, and created a fresh and clean space. https://cwiki.apache.org/confluence/display/TOMEE This space is editable by anyone and is labeled as just a wiki and not the official

Re: Powered by TomEE page

2012-06-23 Thread David Blevins
Ok, let's try this and see how it works: https://cwiki.apache.org/TOMEE/powered-by.html That's in the new confluence space and is definitely editable by anyone. Not sure why the other one didn't work, but this one definitely does. Neale, I went ahead and quickly added an entry for Metawerx

Re: TomEE Wiki

2012-06-23 Thread David Blevins
On Jun 23, 2012, at 3:01 PM, David Blevins wrote: Ok, to make life easier I deleted our old TOMEE confluence space, which was just a left over copy of the OPENEJB space, and created a fresh and clean space. https://cwiki.apache.org/confluence/display/TOMEE Also set it up with the auto

Re: TomEE Wiki

2012-06-23 Thread David Blevins
On Jun 23, 2012, at 3:01 PM, David Blevins wrote: Ok, to make life easier I deleted our old TOMEE confluence space, which was just a left over copy of the OPENEJB space, and created a fresh and clean space. Wow, Joe from Infra is on fire. He just pinged me on IRC to show me a feature he

[cms] test 2

2012-06-23 Thread David Blevins
Index: /trunk/content/powered-by.mdtext === --- /trunk/content/powered-by.mdtext(revision 1353210) +++ /trunk/content/powered-by.mdtext(working copy) @@ -1,6 +1,8 @@ Title: Powered By - [Foo][1] +- [Bar][2] - [1]:

[cms] test

2012-06-23 Thread David Blevins
Clone URL (Committers only): https://cms.apache.org/redirect?new=dblevins;action=diff;uri=http://openejb.apache.org/powered-by.mdtext Testing link Index: /trunk/content/powered-by.mdtext === --- /trunk/content/powered-by.mdtext

Service element in config xml

2012-06-21 Thread David Blevins
Not exactly sure how I feel about the feature -- in my experience things this generic can get complicated quickly -- but added it against my better judgement if we can make it work. Basically I switched the ServerObserver element to simply Service and aligned it with the other elements in the

Re: Service element in config xml

2012-06-21 Thread David Blevins
On Thu, Jun 21, 2012 at 1:48 AM, David Blevins david.blev...@gmail.com wrote:  Service id=checker class=foo.bar.UpdateChecker    frequency = 1 day  /Service I'll note this part isn't fully functional yet. The code will still complain that a service-jar.xml declaration is missing. The clear

Re: Powered by TomEE page

2012-06-21 Thread David Blevins
It appears the CMS does have some ability to allow anonymous editing and for a patch to be sent as a result. https://cms.apache.org/redirect?uri=http://openejb.apache.org When it pops up the authentication dialog enter 'anonymous' as the username and leave the password empty. You can then

Re: Service element in config xml

2012-06-21 Thread David Blevins
On Thu, Jun 21, 2012 at 2:17 AM, Romain Manni-Bucau rmannibu...@gmail.com wrote: didnt check with tomee.xml but version-checker = new://Service?type=org.apache.openejb.util.UpdateChecker works now Let's not change the definition of 'type' and just use the 'class' attribute instead. Maybe

Re: InitHooks

2012-06-20 Thread David Blevins
On Jun 20, 2012, at 9:14 AM, Romain Manni-Bucau wrote: Hi, i just pushed a new feature: InitHooks the goal is to get a hook to execute code before the real container startup. The idea was to run code working on config if needed but no more. Why i didnt use services was to get a

Re: InitHooks

2012-06-20 Thread David Blevins
On Jun 20, 2012, at 12:04 PM, David Blevins wrote: Let me take a shot at a slightly different approach. Something like what we did the client with a CDI-like observer pattern. As I mentioned in that email, we might want to do it in the server as well. Sounds like a good time to try

Re: InitHooks

2012-06-20 Thread David Blevins
On Jun 20, 2012, at 4:16 PM, Romain Manni-Bucau wrote: META-INF/ or Openejb but not both, no? Maybe we start with META-INF and see how far we get. -David 2012/6/21 David Blevins david.blev...@gmail.com On Jun 20, 2012, at 12:04 PM, David Blevins wrote: Let me take a shot

Re: Powered by TomEE page

2012-06-19 Thread David Blevins
On Jun 19, 2012, at 12:35 AM, Neale Rudd wrote: I can add a new page from the dashboard, but there's no edit tab on any pages. I can Add Labels or Add Comments, but that seems to be it. The confluence space in general requires stricter permissions, but this page specifically should be

Re: Logo contest

2012-06-19 Thread David Blevins
On Jun 18, 2012, at 10:40 PM, Neale Rudd wrote: Just wanted to remind everyone the 40 day vote ends 9th of July. So far we've had: - no new submissions - 1 new suggestion on a paw holding on the apache feather (Daniel) - 2 votes for paying money for a design (Thiago, Daniel) - 2 votes

Re: Powered by TomEE page

2012-06-19 Thread David Blevins
On Jun 19, 2012, at 12:42 AM, Jean-Louis MONTEIRO wrote: Yes, the page is opened to all confluence-users, so as soon as you can connect, you can also publish something. In the mean time, I added you to openejb-contributors group and also authorized the group on this page. Thanks,

Re: Logo contest

2012-06-19 Thread David Blevins
. -David - Original Message - From: David Blevins david.blev...@gmail.com To: dev@openejb.apache.org Sent: Tuesday, June 19, 2012 6:01 PM Subject: Re: Logo contest On Jun 18, 2012, at 10:40 PM, Neale Rudd wrote: Just wanted to remind everyone the 40 day vote ends 9th of July

Release notes

2012-06-18 Thread David Blevins
Here's what we have for changes on trunk: https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12312320version=12321654 Likely a few that are missing, that's way too short for all the commits we've had. Note as well there's an issue type for library upgrades. We should change

Re: Website permissions

2012-06-13 Thread David Blevins
AM, David Blevins david.blev...@gmail.com wrote: Charles had poked me a while back on writing docs for the OSGi support. Currently, writing docs is a matter of sending a patch: http://svn.apache.org/repos/asf/openejb/site/trunk/content It occurs to me as well that, we have complete

Re: Added new 'multipulse' discovery, and a few fixes.

2012-06-13 Thread David Blevins
On Jun 13, 2012, at 1:51 AM, AndyG wrote: I know I should be able to work it out myself, but just haven't had the time to look into the site CMS. Is there a howto? I don't even know where to login . No worries. Was more looking for some discussion starting descriptions :) It might make

Config fragments

2012-06-13 Thread David Blevins
On Jun 12, 2012, at 8:31 AM, AndyG wrote: ServiceManager.java - Revert 'conf.d' in path. If this is a 'tomee' requirement then it needs to be checked? Fair enough :) That feature was added without much discussion. Something we should probably improve a bit. There is a jira at least:

Nightly builds

2012-06-06 Thread David Blevins
Put together a little system to make it easy to get at our builds from Buildbot on Nexus. http://openejb.apache.org/builds.html We can also push builds via the openejb-bot on irc with the command openejb-bot: force build openejb-trunk-deploy Or openejb-bot: force build

Re: @Local with no interfaces

2012-06-05 Thread David Blevins
just changing the message to make it more understandable with an advice to fix the code is my preferred solution. Jean-Louis 2012/6/5 David Blevins david.blev...@gmail.com On Jun 4, 2012, at 9:34 PM, David Blevins wrote: On Jun 4, 2012, at 12:50 PM, rmannibu...@apache.org wrote

Re: Powered by TomEE page

2012-06-04 Thread David Blevins
: Powered by TomEE page +1 for svn, keep a single media is better. Mailto is great too - Romain Le 4 juin 2012 04:21, David Blevins david.blev...@gmail.com a ï¿©crit : Neale has been suggesting a Powered By page for TomEE. Definitely a great idea. As usual, cook's choice :) Some options

Re: (SUBVOTE) Romain's paw-print logo to become official logo in 6 days

2012-06-04 Thread David Blevins
On Jun 4, 2012, at 12:05 PM, Neale Rudd wrote: If we get a higher vote for the pawprint sum(+1/-1) vs (waitFor40days) we'll just go with it - pending David's decision of course. All things are project decisions of course. I get one vote like everyone else :) My vote would be for the 40

Re: Stable branch

2012-06-04 Thread David Blevins
On Jun 4, 2012, at 2:26 AM, Romain Manni-Bucau wrote: the issue i saw was if we look to current trunk we should almost backport all fixes There would definitely be a lot of merging. We probably should have created the branch much sooner. Alternatively we could create a 1.0.x branch from

Re: Stable branch

2012-06-04 Thread David Blevins
On Jun 4, 2012, at 3:43 PM, Romain Manni-Bucau wrote: do we have a target for 1.1? maybe we can wait it? Can you clarify? Not sure I understood. -David 2012/6/5 David Blevins david.blev...@gmail.com On Jun 4, 2012, at 2:26 AM, Romain Manni-Bucau wrote: the issue i saw was if we

Re: svn commit: r1346196 - /openejb/trunk/openejb/container/openejb-core/src/main/java/org/apache/openejb/cdi/BeansDeployer.java

2012-06-04 Thread David Blevins
On Jun 4, 2012, at 5:17 PM, rmannibu...@apache.org wrote: Author: rmannibucau Date: Tue Jun 5 00:17:14 2012 New Revision: 1346196 URL: http://svn.apache.org/viewvc?rev=1346196view=rev Log: we were firing too early the process injection target event Sounds like a bug fix. If so, we

@Local with no interfaces

2012-06-04 Thread David Blevins
On Jun 4, 2012, at 12:50 PM, rmannibu...@apache.org wrote: Author: rmannibucau Date: Mon Jun 4 19:50:30 2012 New Revision: 1346120 URL: http://svn.apache.org/viewvc?rev=1346120view=rev Log: @Local on class with no interfaces We definitely do not want an example that teaches this

Console deployer and validation

2012-06-04 Thread David Blevins
In light of the recent validation failure on deployment, there's a clear feature we've been needing that would be great to add. The console should be able to deploy apps. When there are validation failures/warnings those would be listed in nice yellow and red boxes that are clickable. When

Re: @Local with no interfaces

2012-06-04 Thread David Blevins
On Jun 4, 2012, at 9:34 PM, David Blevins wrote: On Jun 4, 2012, at 12:50 PM, rmannibu...@apache.org wrote: Author: rmannibucau Date: Mon Jun 4 19:50:30 2012 New Revision: 1346120 URL: http://svn.apache.org/viewvc?rev=1346120view=rev Log: @Local on class with no interfaces We

Hardcoded versions -- releasing tasks

2012-06-03 Thread David Blevins
One of the things we'll need to do to ease the releasing process is cut down on the number of places where the version number exists. Ideally the versions would only come from pom.xml files and not in java source or even arquillian.xml files. We've got an openejb-version.properties file we

Stable branch

2012-06-03 Thread David Blevins
Ok, stable branch is setup. http://svn.apache.org/repos/asf/openejb/branches/openejb-4.0.x/ TCK setup: https://svn.apache.org/repos/tck/openejb-tck/branches/tomee-1.0.x (not publicly accessible) Buildbot: http://ci.apache.org/builders/openejb-4-stable It took a while to stomp out

Re: Stable branch

2012-06-03 Thread David Blevins
On Jun 3, 2012, at 4:09 PM, Romain Manni-Bucau wrote: 2012/6/4 David Blevins david.blev...@gmail.com Ok, stable branch is setup. Thoughts? not sure i get your goal, while our trunk is not so different it is better to release from trunk. when we'll start to work on jee7 we'll do

Re: Stable branch

2012-06-03 Thread David Blevins
On Jun 3, 2012, at 5:33 PM, Romain Manni-Bucau wrote: because currently we dont have, but if e have releasing from trunk shouldnt be a pain I'm not sure followed. Can you rephrase? -David 2012/6/4 David Blevins david.blev...@gmail.com On Jun 3, 2012, at 4:09 PM, Romain Manni-Bucau

Logo contest

2012-06-03 Thread David Blevins
Do we want to have one and who wants to drive it? :) -David

Re: Website permissions

2012-06-03 Thread David Blevins
On Jun 3, 2012, at 9:53 PM, Romain Manni-Bucau wrote: I'd say +1 for contribs (= extensions to what we provide) but here that's more /osgi no? It's really about making it a little easier to write a doc than about creating the best organization for information on the website. Someone could

Re: [VOTE] javaee-api 6.0-4 (take 1 - repo 155)

2012-06-02 Thread David Blevins
Let's get some more votes. This one is a simple exercise, nothing fancy. Five minutes tops. -David On May 30, 2012, at 3:52 PM, Romain Manni-Bucau wrote: Hi, to prepare next release i think we need to release javaee-api. Changes since last vote: TOMEE-201 JAXB ContextFinder is not

Re: [VOTE] javaee-api 6.0-4 (take 1 - repo 155)

2012-05-31 Thread David Blevins
Legal looks good and binaries too. Here's my +1! -David On May 30, 2012, at 3:52 PM, Romain Manni-Bucau wrote: Hi, to prepare next release i think we need to release javaee-api. Changes since last vote: TOMEE-201 JAXB ContextFinder is not available in correct version TOMEE-202

JAAS Realm change (Re: svn commit: r1344942)

2012-05-31 Thread David Blevins
public class OpenEJBSecurityListener implements AsyncListener { +static final ThreadLocalRequest requests = new ThreadLocalRequest(); +public class TomEEJAASRealm extends JAASRealm { [...] +// so no need to clean twice here +if

Re: svn commit: r1343602 - in /openejb/trunk/openejb: arquillian-tomee/arquillian-tomee-common/src/main/java/org/apache/openejb/arquillian/common/ arquillian-tomee/arquillian-tomee-embedded/src/main/j

2012-05-30 Thread David Blevins
On May 29, 2012, at 12:14 PM, Romain Manni-Bucau wrote: being able to get the context of a webapp in an ear from a servlet You mean ServletContext? We should file a jira for that. Improvement or bugfix, your choice :) -David 2012/5/29 David Blevins david.blev...@gmail.com On May

Re: Java EE API release

2012-05-30 Thread David Blevins
On May 30, 2012, at 9:16 AM, David Blevins wrote: Let's put that up for a vote! That part is as simple as sending an email with the [VOTE] prefix in the subject. Subject should contain the binary name and version. Since we revote a lot, I like to include the Nexus id of the repo (155

Re: Empty Example Request Mails

2012-05-30 Thread David Blevins
On May 30, 2012, at 3:39 PM, dsh wrote: Hi, sorry for my ignorance, but how are these example request mails getting generated? I suppose using some form... could we make that form require to provide an additional subject? I saw a bunch of example request mails having no contents at all

Re: svn commit: r1343602 - in /openejb/trunk/openejb: arquillian-tomee/arquillian-tomee-common/src/main/java/org/apache/openejb/arquillian/common/ arquillian-tomee/arquillian-tomee-embedded/src/main/j

2012-05-29 Thread David Blevins
On May 29, 2012, at 1:46 AM, rmannibu...@apache.org wrote: Author: rmannibucau Date: Tue May 29 08:46:44 2012 New Revision: 1343602 URL: http://svn.apache.org/viewvc?rev=1343602view=rev Log: adding servlets in httpcontext (arquillian) What does that achieve? -David

Re: Java EE API release

2012-05-29 Thread David Blevins
that license and the -tomcat one does not. -David 2012/5/29 Jean-Louis MONTEIRO jeano...@gmail.com Hey, Gonna have a look with Romain. Would be great if more people can perform a release. Jean-Louis 2012/5/29 David Blevins david.blev...@gmail.com On May 28, 2012, at 5:46 PM, David

Re: [VOTE] - OpenEJB 2012 Meetup - EU or USA

2012-05-29 Thread David Blevins
/28 Mark Struberg strub...@yahoo.de +1 for ApacheCon ;) Will be there anyway... LieGrue, strub - Original Message - From: David Blevins david.blev...@gmail.com To: dev@openejb.apache.org Cc: Sent: Friday, May 25, 2012 10:52 PM Subject: Re: [VOTE] - OpenEJB 2012 Meetup

Re: ASF and Eclipse Public Licence

2012-05-29 Thread David Blevins
On May 29, 2012, at 12:14 PM, Romain Manni-Bucau wrote: tomcat bring a compiler under this lincence i think Exactly. -David 2012/5/29 David Blevins david.blev...@gmail.com On May 29, 2012, at 7:26 AM, Thiago Veronezi wrote: I dont think we should use Eclipse at this time

Re: Java EE API release

2012-05-29 Thread David Blevins
On May 29, 2012, at 11:05 AM, David Blevins wrote: On May 29, 2012, at 8:54 AM, Romain Manni-Bucau wrote: generated: http://people.apache.org/~rmannibucau/orgapacheopenejb-147/archives.html Excellent! Still looking it over, but see that we need to add the WC3 license to our LICENSE

Re: Java EE API release

2012-05-29 Thread David Blevins
-INF/ should be there, the others shouldn't be in the jar. -David 2012/5/29 David Blevins david.blev...@gmail.com On May 29, 2012, at 11:05 AM, David Blevins wrote: On May 29, 2012, at 8:54 AM, Romain Manni-Bucau wrote: generated: http://people.apache.org/~rmannibucau

Reloadable EntityManager support

2012-05-28 Thread David Blevins
Just noticed this chunk of code in PersistenceBuilder: public static EntityManagerFactory createEmf(ClassLoader classLoader, CallableEntityManagerFactory callable) throws ExecutionException, TimeoutException, InterruptedException { final ExecutorService executor =

Re: Java EE API release

2012-05-28 Thread David Blevins
/29 Romain Manni-Bucau rmannibu...@gmail.com will see with JL if he can too but should be doable ;) - Romain 2012/5/29 David Blevins david.blev...@gmail.com We definitely need to start doing smaller releases and getting more people familiar with the process. In that vein, let's

Re: Java EE API release

2012-05-28 Thread David Blevins
Small doc on getting setup to do releases: http://openejb.apache.org/dev/releasing.html -David

Re: Java EE API release

2012-05-28 Thread David Blevins
On May 28, 2012, at 5:36 PM, Romain Manni-Bucau wrote: created a staging repo https://repository.apache.org/content/repositories/orgapacheopenejb-147/ Excellent! We're making great progress! Now we need to get the LICENSE and NOTICE files updated. Looks like there are some entries we

Re: Java EE API release

2012-05-28 Thread David Blevins
On May 28, 2012, at 5:46 PM, David Blevins wrote: On May 28, 2012, at 5:36 PM, Romain Manni-Bucau wrote: created a staging repo https://repository.apache.org/content/repositories/orgapacheopenejb-147/ Excellent! We're making great progress! Now we need to get the LICENSE and NOTICE

Re: tomee webapp proposal

2012-05-28 Thread David Blevins
I like and +1 for WebServices list and I'll raise you a RESTful services list :) It would be also awesome to list the MDBs by topic/queue name. -David On May 28, 2012, at 4:27 PM, Romain Manni-Bucau wrote: fine :) well having the list of webservices under the ejbs can be nice too -

Re: fix release, trunk version

2012-05-28 Thread David Blevins
I've got trunk updated to 1.1.0-SNAPSHOT and 4.1.0-SNAPSHOT. Also updated the tomee-*.jar versions to be 1.x rather than 4.x (was the more complicated change). New snapshots being pushed now. Created a branch for 1.0.x and 4.0.x. Still need to update those versions. I'd also like to do the

Re: [VOTE] - OpenEJB 2012 Meetup - EU or USA

2012-05-25 Thread David Blevins
I could only do one or the other. Hard to say which :) Spain would be amazing, but seeing more people is also great. Can we get a list of who would be able to go to each? -David On May 25, 2012, at 7:35 AM, Jean-Louis MONTEIRO wrote: Oups :D I plan to go to ApacheCon EU in Germany if

Re: [jira] [Updated] (TOMEE-197) When running TomEE embedded in Eclipse jsp files do not hot deploy

2012-05-25 Thread David Blevins
On May 25, 2012, at 2:27 PM, Jonathan Gallimore wrote: Hi, I recommended TomEE to my friend Andy who has been taking a look at using it where he works. He spotted that jsp hot deployment didn't work when using TomEE in Eclipse via the standard WTP adaptor. I suggested that he update

Re: [jira] [Updated] (TOMEE-197) When running TomEE embedded in Eclipse jsp files do not hot deploy

2012-05-25 Thread David Blevins
And hello and welcome to you, Andy! Thank you for the patch! -David On May 25, 2012, at 2:27 PM, Jonathan Gallimore wrote: Hi, I recommended TomEE to my friend Andy who has been taking a look at using it where he works. He spotted that jsp hot deployment didn't work when using TomEE in

JAX-RS in Web Profile

2012-05-04 Thread David Blevins
JAX-RS is being added to the Java EE 7 Web Profile. Given that and the fact that many of the recent user questions are about JAX-RS, perhaps we should consider adding it to our Web Profile distro now rather than later. The big question in my mind is, how small can we get it? Can we do it with

Re: [INFO] TomEE Press Coverage

2012-05-02 Thread David Blevins
On May 2, 2012, at 5:11 AM, dsh wrote: I suppose the above article does not make a clear distinction, that TomEE is not developed by the Tomcat folks. Not sure whether we need to emphasize that a little more. I've seen some similar disinformation from the media on our announcement. To name

Re: OpenEJBListener?

2012-05-02 Thread David Blevins
On May 2, 2012, at 2:00 AM, Romain Manni-Bucau wrote: Hi, currently we use ServerListener which is in tomee-catalina to start openejb in tomee. why isnt it in the loader to let it be used as before (adding the loader in tomcat/lib and the tomee webapp in webapps)? why

Re: OpenEJBListener?

2012-05-02 Thread David Blevins
different places in the OpenEJBListener. I went for clean and simple in order to save time. A few utility methods could be in order. -David 2012/5/3 David Blevins david.blev...@gmail.com On May 2, 2012, at 2:00 AM, Romain Manni-Bucau wrote: Hi, currently we use ServerListener which

Release Notes

2012-04-30 Thread David Blevins
Finished up a video on using TomEE in Eclipse. It's pretty great. Uploading currently. Going to stay up and try and beef up our release notes. They're generated from JIRA (see 'ReleaseNotes' main class in the release tools) and what we have is a little thin. Apache TomEE 1.0.0 2012-04-30

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