Re: Problem configuring properties in arquillian.xml

2013-08-12 Thread dinabandhu
Hi, Thank you :). I was using 1.1.1.Final. Downgrading to 1.0.3.Final solved it and I an see the service being configured successfully. What is the correct way to configure these properties for later versions via arquilian.xml? I tried setting each property separately like - new://

Re: TomEE cluster and cdibeans

2013-08-12 Thread hwaastad
Hi, the skinny-all profile will put all dependencies from web module (and other web modules) into ear/lib and not in WEB-INF/lib in the webapps. I'm trying to limit the size of the total EAR I mean, the skinny-all profile works fine using TomEE standalone, but in clustering it fails. PS, I'm full

Re: Maven Dependencies (Newbie Question)

2013-08-12 Thread zmirc
You're welcome. Your question is not actually related to a Java EE application server documentation (Tomee in this case), but Java EE in general. In order to use it, you must have the API jar, either added manually or through Maven. PS. I'm using NetBeans, which handles things like that for you.

Re: Maven Dependencies (Newbie Question)

2013-08-12 Thread zmirc
Hi! JavaEE 6 API it's what you need. Tomee contains the implementation JARs, so there's no need to specify them. javax javaee-web-api 6.0 provided -- View this message in context: http://openejb.979440.n4.nabble.com/Maven-Dependencies-N

Re: Problem configuring properties in arquillian.xml

2013-08-12 Thread Romain Manni-Bucau
Hi which version of arquillian? 1.0.4.Final doesn't support multiline properties, you need to keep 1.0.3.Final. *Romain Manni-Bucau* *Twitter: @rmannibucau * *Blog: **http://rmannibucau.wordpress.com/* *LinkedIn: **http://fr.link

Problem configuring properties in arquillian.xml

2013-08-12 Thread dinabandhu
Hi, I am new to arquillian and openejb. I am trying to use arquillian + openejb + hsql + arquillian persistence extension for testing. I have configured a simple arquillian.xml file file to pass the data source configuration to openejb but I am getting an exception while the container starts up.

Re: Maven Dependencies (Newbie Question)

2013-08-12 Thread leesy
Great, thanks. I thought there'd be a simple dependency like that. Out of curiosity - is that in the documentation somewhere and I missed it? Just making sure I've not missed any key reading. Regards Lee, zmirc [via OpenEJB] wrote: > Hi! > > JavaEE 6 API it's what you need. Tomee contains th

Maven Dependencies (Newbie Question)

2013-08-12 Thread leesy
Hi all, I'm trying get a new app up & running on TomEE & have a question about building one via Maven. The question comes down to: What Maven dependencies do I use? For example, I want to take advantage of CXF to produce JAX-WS & JAX-RS services. Normally I'd add that to my Maven POM like the f

Re: @Schedule doesn't work in 1.6.0 05.08.2013

2013-08-12 Thread Thiago Veronezi
Hi, You can build it locally. It's super simple: http://tomee.apache.org/dev/source-code.html Check "Building" and "Binary locations". []s, Thiago. On Mon, Aug 12, 2013 at 8:27 AM, zmirc wrote: > Hi! > > When can we expect a new Snapshot? > I've just discovered one more bug in build 29.07.2

Re: @Schedule doesn't work in 1.6.0 05.08.2013

2013-08-12 Thread Romain Manni-Bucau
it is for us as well, our snapshots are built but no more deployed, we are working ATM to see why. *Romain Manni-Bucau* *Twitter: @rmannibucau * *Blog: **http://rmannibucau.wordpress.com/* *LinkedIn: **http://fr.linkedin.com/in/r

Re: @Schedule doesn't work in 1.6.0 05.08.2013

2013-08-12 Thread zmirc
Hi! When can we expect a new Snapshot? I've just discovered one more bug in build 29.07.2013 for JSF, which seems do be fixed in build 05.08.13, but the later has this bug with @Schedule. 1.5.2 production build has a bug with CDI, so I'm in the point where I can't use any of them in production. So

Re: TomEE cluster and cdibeans

2013-08-12 Thread Romain Manni-Bucau
what do you in intent to do with skinny all profile? Honestly i don't think we support Class-Path entry. We have jars.txt ( https://issues.apache.org/jira/browse/TOMEE-794 ) which looks like it *Romain Manni-Bucau* *Twitter: @rmannibucau * *Blog: **http://rmannibu

Re: liquibase -- Cannot unmarshall the beans.xml

2013-08-12 Thread Romain Manni-Bucau
Hi in fact exclusion are standard in next cdi version. Ignoring a namespace would mean ignoring app config if the user misconfigured its app so that's not a solution too. Here i think the liquid packaging should be reworked (it is easy to replace it by a small custom cdi extension) *Romain Mann

Re: liquibase -- Cannot unmarshall the beans.xml

2013-08-12 Thread djheisterberg
Wow! Thanks for the quick response -- go GMT! This is a third-party jar so "fixing" it is not a long-term option. The beans.xml contains weld exclusions in their own namespace. Can't the OpenWebBeans provider simply ignore them? If the CDI spec doesn't provide for that, or for a provider-neutr

Re: @Schedule doesn't work in 1.6.0 05.08.2013

2013-08-12 Thread zmirc
Hi! I've never done that, so I think I'm going to wait for a new snapshot. Thanks, Romain. From: Romain Manni-Bucau [via OpenEJB] To: zmirc Sent: Monday, August 12, 2013 1:08 PM Subject: Re: @Schedule doesn't work in 1.6.0 05.08.2013 Hi we don't have

Re: @Schedule doesn't work in 1.6.0 05.08.2013

2013-08-12 Thread Romain Manni-Bucau
Hi we don't have deployed any snapshot from a week but we hacked on @Schedule so maybe it is already fixed. Can you build tomee from sources? *Romain Manni-Bucau* *Twitter: @rmannibucau * *Blog: **http://rmannibucau.wordpress.com/*

@Schedule doesn't work in 1.6.0 05.08.2013

2013-08-12 Thread zmirc
Hi! I've just dnd the latest snapshot, but it seems something doesn't work. I have a @Singleton @Startup bean with a @Schedule method. The scheduled method is not triggered in Tomee web 1.6.0 from 05.08.2013, the build that is currently available today. I have tested with build 1.6.0 from 29.07.1

Re: TomEE cluster and cdibeans

2013-08-12 Thread hwaastad
Hi, I tried now to clean out my local repository, mvn clean install owb and tomee from trunk. I got the same result. br hw -- View this message in context: http://openejb.979440.n4.nabble.com/TomEE-cluster-and-cdibeans-tp4664576p4664600.html Sent from the OpenEJB User mailing list archive at

Re: TomEE cluster and cdibeans

2013-08-12 Thread Romain Manni-Bucau
Hi, did you build tomee + owb from sources? i think our snapshots doesn't have the fix *Romain Manni-Bucau* *Twitter: @rmannibucau * *Blog: **http://rmannibucau.wordpress.com/* *LinkedIn: **http://fr.linkedin.com/in/rmannibucau*

Re: TomEE cluster and cdibeans

2013-08-12 Thread hwaastad
Hi, and thanks for giving my project a shot. Thanks for fixing the system.properties issue. Is this OWB change implemented in 1.6.0-SNAPSHOT right now? If that's the case, somethings very strange. The skinny-all profile triggers an immidiate NPE on the secondary TomEE for me. Just opening the