Re: when use the inject EntityManager without specify the unitname?

2014-02-27 Thread Howard W. Smith, Jr.
also, you have to realize that annotation gives you the advantage to get away from XML (config files). Good points/response, Chris. Also the @PersistenceContext 'annotations' may be more portable. using openejb config files may not be portable, if you try to migrate away from tomee/openejb, or

Re: Feedback on TomEE 1.6.0

2014-02-26 Thread Howard W. Smith, Jr.
On Wed, Feb 26, 2014 at 9:39 AM, Greguss Tamas greguss.ta...@tateyama.huwrote: I would like to have better and complete step-by-step documentation/tutorial about how to build clusters with TomEE to run MySQL + JPA + EJB + JSF applications on clustered environment. I am sure that clustering

Re: Feedback on TomEE 1.6.0

2014-02-26 Thread Howard W. Smith, Jr.
On Wed, Feb 26, 2014 at 10:25 AM, Romain Manni-Bucau rmannibu...@gmail.comwrote: basically if you can be stateless or use sticky session you'll be really faster than using any cluster solution (that's the way apps are developped nowadays with rest etc...) but if you go with a clusterized

Re: Feedback on TomEE 1.6.0

2014-02-26 Thread Howard W. Smith, Jr.
, 2014 at 11:24 AM, Chris Christo _...@mail.com wrote: +1 Try your best to make it all stateless, you should be able to in most cases. Then just use a load balancer, nginx is good for this. On 26 Feb 2014, at 16:21, Howard W. Smith, Jr. smithh032...@gmail.com wrote: On Wed, Feb 26, 2014

Re: i get the following error when i run tomee 1.6.0 .with jdk1.7.0_25. the consolle says me to read from the tomee/bin/ hs_err_pid8968.log file.

2014-02-19 Thread Howard W. Smith, Jr.
i think you're right. mauro, you may need to reply with the definitino of your JPA entity beans. I know th at you're developing some new JPA entity beans, and they may be 'circularly' referencing each other, which may mean that you may need to be careful how you add the JPA one-to-many,

Re: maxActive vs maxIdle. Advice for DataSource

2014-02-14 Thread Howard W. Smith, Jr.
...@gmail.com: @Romain i could see in jconsole the value of TimeBetweenEvictionRunsMillis is -1 but i have in my tomee.xml TimeBetweenEvictionRunsMillis=3 and the value is not get it by the Datasource 2014-02-13 18:02 GMT-06:00 Howard W. Smith, Jr. smithh032

Re: maxActive vs maxIdle. Advice for DataSource

2014-02-14 Thread Howard W. Smith, Jr.
Luis Cetina maxtorz...@gmail.com: tomcat 2014-02-14 13:24 GMT-06:00 Howard W. Smith, Jr. smithh032...@gmail.com : José, are you using tomcat-jdbc or dbcp? I thought I saw both mentioned in this discussion/thread 1 or 2 days ago. On Fri, Feb 14, 2014 at 1:00 PM, José Luis

Re: maxActive vs maxIdle. Advice for DataSource

2014-02-13 Thread Howard W. Smith, Jr.
also, this one, and you can reach out to tomcat user list, too... http://blog.christopherschultz.net/index.php/2009/03/16/properly-handling-pooled-jdbc-connections/ On Thu, Feb 13, 2014 at 10:34 AM, José Luis Cetina maxtorz...@gmail.comwrote: Then if tomee use tomcat-pool is this where the

Re: maxActive vs maxIdle. Advice for DataSource

2014-02-13 Thread Howard W. Smith, Jr.
today. From yesterday to today we get just 200 new users and they are interacting with any other issue. What i can see is that the active connections still growing it just time to reach the limite (500) but im monitoring, i will let you know. 2014-02-13 14:29 GMT-06:00 Howard W. Smith, Jr

Re: add codi at web application

2014-02-12 Thread Howard W. Smith, Jr.
José, can you reply with your experience and or recommendations when using CODI with tomee app. Mauro, you should use MyFaces 2.2 viewscoped. What other features of CODI did you want to experiment with? Personally, I don't recommend CODI. Romain, may recommend deltaspike instead. I know that

Re: add element at ArrayList not work

2014-02-12 Thread Howard W. Smith, Jr.
my responses inline below... On Wed, Feb 12, 2014 at 9:53 AM, mauro2java2011 mauro2java2...@gmail.comwrote: @Named(value = mauroController) @SessionScoped public class MauroController implements Serializable { private ConsultDTO current; snip private ListConsultDTO list=new

Re: add element at ArrayList not work

2014-02-12 Thread Howard W. Smith, Jr.
On Wed, Feb 12, 2014 at 9:53 AM, mauro2java2011 mauro2java2...@gmail.comwrote: public String creaNuovo(){ this.list.add(current) ; this.list.size(); returnList; } why do you add the 'same' current over and over again, when creaNuovo() is called? this.list.add(current) ; I would

Re: add codi at web application

2014-02-12 Thread Howard W. Smith, Jr.
On Wed, Feb 12, 2014 at 7:53 AM, mauro2java2011 mauro2java2...@gmail.comwrote: For upgrade myfaces at 2.2 what jars i have to download ? From the downlod page i get : https://repository.apache.org/content/repositories/snapshots/org/apache/myfaces/core/ Are present many subdirectory.

Re: add codi at web application

2014-02-12 Thread Howard W. Smith, Jr.
Wow! On Wed, Feb 12, 2014 at 10:40 AM, José Luis Cetina maxtorz...@gmail.comwrote: Hi, Mauro here is my experience with CODI and TomEE. +1 thank you for this response! I knew you had a detailed story (and recommendation) to tell since you have been using tomee, myfaces 2.x, CODI, primefaces,

Re: add codi at web application

2014-02-12 Thread Howard W. Smith, Jr.
On Wed, Feb 12, 2014 at 11:39 AM, Vinícius Moselli vinicius.mose...@gmail.com wrote: I'm using Tomee 1.6 + Codi 1.0.5 + EJB + JPA (Hibernate) in Windows Environment (Windows 7) and i don't have this issue that José described. Maybe its something wrong with windows 8... @ViewAccessScoped

Re: add codi at web application

2014-02-12 Thread Howard W. Smith, Jr.
On Wed, Feb 12, 2014 at 11:47 AM, Vinícius Moselli vinicius.mose...@gmail.com wrote: Actually i'm using a single Webapp (War). Idk if there is something related to this... My experience, WAR is 'guaranteed' to work (every time). Per Jose' experience, CODI + EAR, there are challenges. :)

Re: add codi at web application

2014-02-12 Thread Howard W. Smith, Jr.
On Wed, Feb 12, 2014 at 12:25 PM, mauro2java2011 mauro2java2...@gmail.comwrote: - then i decide to remove CODI and replace each module doing the old way (like using JNDI for lookups my ejbs inside a @facesconverter for example, i know this can be done in jsf2.2

Re: Mail attachments silently fail

2014-02-09 Thread Howard W. Smith, Jr.
Good question and good point. Since I had issues with JavaMail earlier, I replaced geronimo Java mail jar with Oracle or sun JavaMail jar in tomee/lib, and that fixed my issues. On Feb 9, 2014 11:38 AM, Romain Manni-Bucau rmannibu...@gmail.com wrote: hi you use javax.mail jar or geronimo one

Re: Problem starting up standalone OpenEJB on TC7/Windows 7.

2014-02-09 Thread Howard W. Smith, Jr.
EJB worked well in my app ever since I migrated from Glassfish 3.1.2.2 to TomEE+ 1.5.1-SNAPSHOT. I have only used TomEE on Windows Server 2008 (Vista version), Windows Server 2003 R2, and Windows Server 2008 (windows 7 version), and EJB works well on all those platforms...ever since TomEE+

Re: Create CDI bean on application startup

2014-01-20 Thread Howard W. Smith, Jr.
also, you can do @ApplicationScoped @PostConstruct; this is what I do in my app. :) On Mon, Jan 20, 2014 at 10:32 AM, Romain Manni-Bucau rmannibu...@gmail.comwrote: the easier will be to rely on ejb @Singleton @Startup. Romain Manni-Bucau Twitter: @rmannibucau Blog:

Re: Create CDI bean on application startup

2014-01-20 Thread Howard W. Smith, Jr.
: @Howard: will not be executed on app startup :p Romain Manni-Bucau Twitter: @rmannibucau Blog: http://rmannibucau.wordpress.com/ LinkedIn: http://fr.linkedin.com/in/rmannibucau Github: https://github.com/rmannibucau 2014/1/20 Howard W. Smith, Jr. smithh032...@gmail.com: also, you can do

Re: Create CDI bean on application startup

2014-01-20 Thread Howard W. Smith, Jr.
On Mon, Jan 20, 2014 at 12:07 PM, hwaastad he...@waastad.org wrote: You might try this: http://ovaraksin.blogspot.no/2013/02/eager-cdi-beans.html br hw +1 i remember that blog post.

Re: Feedback on TomEE 1.5.2

2014-01-17 Thread Howard W. Smith, Jr.
On Fri, Jan 17, 2014 at 4:21 AM, James Green james.mk.gr...@gmail.comwrote: JEE has a really big learning curve and an equally large architecture. Summer 2011, when I started learning/writing Java EE, the (official or reference implementation) Java EE 6 tutorial + NetBeans + Mojarra +

Re: call ejb remote not work. help me

2014-01-16 Thread Howard W. Smith, Jr.
response inline/below, On Thu, Jan 16, 2014 at 8:00 AM, mauro2java2011 mauro2java2...@gmail.comwrote: I have successfully with pachadged into a ear and the file application.xml that list the modules that contains. The call at name jndi that init with global/ now it works with win7 . can

Re: When will MyFaces 2.2.x be bundled with TomEE 1.6.x ?

2014-01-16 Thread Howard W. Smith, Jr.
On Thu, Jan 16, 2014 at 3:56 AM, Romain Manni-Bucau rmannibu...@gmail.comwrote: btw just removing myfaces* from tomee and adding 2.2 already works +1 my app is running via TomEE 1.6.1 snapshot and MyFaces 2.2 (JARs in tomee/lib)... 2nd day now, and no issues reported/experienced.

When will MyFaces 2.2.x be bundled with TomEE 1.6.x ?

2014-01-15 Thread Howard W. Smith, Jr.
MyFaces 2.2.0 was just released (days ago), and I think it is stable and/or reliable. So, my question is, when will MyFaces 2.2.x be bundled with TomEE 1.6.x ? What is TomEE (and/or OpenWebBeans) expecting from MyFaces 2.2.x, so that MyFaces 2.2.x can/will be bundled with TomEE?

Re: When will MyFaces 2.2.x be bundled with TomEE 1.6.x ?

2014-01-15 Thread Howard W. Smith, Jr.
Also, On Wed, Jan 15, 2014 at 1:11 PM, Howard W. Smith, Jr. smithh032...@gmail.com wrote: MyFaces 2.2.0 was just released (days ago), and I think it is stable and/or reliable. So, my question is, when will MyFaces 2.2.x be bundled with TomEE 1.6.x ? What is TomEE (and/or OpenWebBeans

Re: When will MyFaces 2.2.x be bundled with TomEE 1.6.x ?

2014-01-15 Thread Howard W. Smith, Jr.
okay, understood. :) On Wed, Jan 15, 2014 at 5:57 PM, Romain Manni-Bucau rmannibu...@gmail.comwrote: 5. Yes Le mercredi 15 janvier 2014, Howard W. Smith, Jr. smithh032...@gmail.com a écrit : Also, On Wed, Jan 15, 2014 at 1:11 PM, Howard W. Smith, Jr. smithh032...@gmail.com wrote

Re: TomEE 1.6.0 + MyFaces 2.2.0 + javax.faces.view.ViewScoped

2014-01-15 Thread Howard W. Smith, Jr.
Is it working for you, now? On Jan 15, 2014 6:00 PM, José Luis Cetina maxtorz...@gmail.com wrote: I will try right now 2014/1/15 Romain Manni-Bucau rmannibu...@gmail.com Hi Fo you get it on trunk as well? Le mercredi 15 janvier 2014, José Luis Cetina maxtorz...@gmail.com a écrit

Re: call ejb remote not work. help me

2014-01-14 Thread Howard W. Smith, Jr.
The URL to José topic http://openejb.979440.n4.nabble.com/JNDI-Lookup-in-Windows-td4666860.html On Jan 14, 2014 5:48 AM, mauro2java2011 mauro2java2...@gmail.com wrote: Thanks for reporting that not only I had that problem with win7 and tomee . I tried the link to the thread JOSE 'but can not

Re: JPA @OneTOMany VS. @OneTOMany with @ManyToOne ??

2014-01-14 Thread Howard W. Smith, Jr.
Mauro, Instead of explaining the difference, I will just share my example/code that may be similar to code you shared. My code works as expected. First, the CUSTOMER entity, @Entity @Table(name = CUSTOMER) public class Customer implements Serializable { private static final long

Re: JPA @OneTOMany VS. @OneTOMany with @ManyToOne ??

2014-01-14 Thread Howard W. Smith, Jr.
Click URL and read/study the search results: http://lmgtfy.com/?q=stackoverflow+java+onetomany+manytoone+jpa On Tue, Jan 14, 2014 at 8:36 AM, mauro2java2011 mauro2java2...@gmail.comwrote: But if into entiry Order i not put the field Customer customerId ? Or if into entity Customet i not

Re: Bean not instantiated

2014-01-13 Thread Howard W. Smith, Jr.
Romain Manni-Bucau Twitter: @rmannibucau Blog: http://rmannibucau.wordpress.com/ LinkedIn: http://fr.linkedin.com/in/rmannibucau Github: https://github.com/rmannibucau 2014/1/13 Howard W. Smith, Jr. smithh032...@gmail.com: On Sun, Jan 12, 2014 at 11:44 AM, Romain Manni-Bucau rmannibu

Re: Bean not instantiated

2014-01-13 Thread Howard W. Smith, Jr.
more to share, below. On Mon, Jan 13, 2014 at 7:06 AM, Howard W. Smith, Jr. smithh032...@gmail.com wrote: Okay, never mind. I took the liberty to search google for: static Logger logger = LoggerFactory and found this[1], which makes it abundantly clear why I should define the logger

today, TomEE 1.6.1-snapshot = Tomcat 7.0.50

2014-01-12 Thread Howard W. Smith, Jr.
I just downloaded TomEE+ 1.6.1 SNAPSHOT for the first time today (a few minutes) ago, after seeing on the tomcat user list that Tomcat 7.0.50 was released. When I started tomee with my app, I recognized the following in the log (which is output of atmosphere 2.x library): INFO: Atmosphere is

Re: today, TomEE 1.6.1-snapshot = Tomcat 7.0.50

2014-01-12 Thread Howard W. Smith, Jr.
was done on Friday. AFAIR I created a new jira if that was your question. Jean Louis Le 12 janv. 2014 15:37, Howard W. Smith, Jr. smithh032...@gmail.com a écrit : I just downloaded TomEE+ 1.6.1 SNAPSHOT for the first time today (a few minutes) ago, after seeing on the tomcat user list

Re: Bean not instantiated

2014-01-12 Thread Howard W. Smith, Jr.
On Sun, Jan 12, 2014 at 11:44 AM, Romain Manni-Bucau rmannibu...@gmail.comwrote: Side note: producing a logger is a wrong idea (see codi list to learn why) so maybe just get rid of it +1 My SLF4J example below. import org.slf4j.Logger; import org.slf4j.LoggerFactory; @Named(myController)

Re: Exception while sending Email

2014-01-10 Thread Howard W. Smith, Jr.
. Also, below is my question[3] on tomcat-user list about SocketTimeoutException and someone's response, From: Howard W. Smith, Jr. [mailto:smithh032...@gmail.com] Subject: java.net.SocketTimeoutException: Read timed out The stack trace below is the exception that occurred today. Does

Re: Tyrus with OpenEJB?

2014-01-10 Thread Howard W. Smith, Jr.
On Fri, Jan 10, 2014 at 5:02 PM, Karl Kildén karl.kil...@gmail.com wrote: don't have Primefaces Push in production yet but we are planning to migrate to it from DWR. We have tested it and it seems to work really well. +1 Karl. My configuration is just about the same. I think OP wants a

Re: Vert.x Vs OpenEJB

2014-01-09 Thread Howard W. Smith, Jr.
On Thu, Jan 9, 2014 at 10:19 AM, Milo Jaden _...@mail.com wrote: At the end of the day, I want to go back to my bosses and say, ‘OpenEJB is simple, all we need is a single configuration file, openejb.json, and a simple install of an OpenEJB.deb file on each of our nodes’. And bang we have a

Re: Tyrus with OpenEJB?

2014-01-09 Thread Howard W. Smith, Jr.
On Thu, Jan 9, 2014 at 1:52 PM, Romain Manni-Bucau rmannibu...@gmail.comwrote: Atmo works fine with last release +1 the 2 reasons why I migrated from glassfish to tomee was 1. PrimeFaces Push (atmosphere) easily/definitely works with tomcat/tomee 2. migrate from JSF managed beans to CDI

Re: stateless bean pool -- all beans not available? / async business method causes problem

2014-01-08 Thread Howard W. Smith, Jr.
and i thank you (all) for this topic/discussion. very very interesting and good to know! On Wed, Jan 8, 2014 at 10:18 AM, Stuart Easterling stuart.easterl...@gmail.com wrote: Ah OK -- duh -- thanks again. : )

Re: stateless bean pool -- all beans not available?

2014-01-07 Thread Howard W. Smith, Jr.
Stuart, On Tue, Jan 7, 2014 at 10:03 AM, Stuart Easterling stuart.easterl...@gmail.com wrote: Hi Romain, I think I may need to do that (my current workaround is to use a singleton bean and many threads, but I'd like to get my pool working too : ). you seem to want to know the difference

Re: stateless bean pool -- all beans not available? / async business method causes problem

2014-01-07 Thread Howard W. Smith, Jr.
Stuart, On Tue, Jan 7, 2014 at 3:03 PM, Stuart Easterling stuart.easterl...@gmail.com wrote: Romain, if you add the annotation @Asynchronous to your foo() business method in TestBean it reproduces the behavior I have been having. I'm definitely not one of the committers (or expert users),

Re: stateless bean pool -- all beans not available?

2014-01-07 Thread Howard W. Smith, Jr.
Also, Stuart, if you look at Romain's code below, Romain is 'not' using @Asynchronous. So, clearly, @Asynchronous is the cause of the difference in behavior between your code and Romain's code. On Tue, Jan 7, 2014 at 5:01 AM, Romain Manni-Bucau rmannibu...@gmail.comwrote: if you have this

Re: stateless bean pool -- all beans not available? / async business method causes problem

2014-01-07 Thread Howard W. Smith, Jr.
On Tue, Jan 7, 2014 at 3:59 PM, Stuart Easterling stuart.easterl...@gmail.com wrote: As far as asynchronous biz methods on a stateless bean, at minimum I don't think the Java EE spec excludes this (it is in fact a useful feature), and my guess is other Java EE containers support it. Are you

Re: replication

2014-01-03 Thread Howard W. Smith, Jr.
Romain, I think Leo may be referring to something similar to this[1]. On Fri, Jan 3, 2014 at 1:11 AM, Romain Manni-Bucau rmannibu...@gmail.comwrote: About replication tomcat and tomee supports it without memcached through tomcat clustering, here too depend the requirement of your app but seems

Re: Is geronimo dead?

2014-01-02 Thread Howard W. Smith, Jr.
+1 Jean-Louis, On Thu, Jan 2, 2014 at 9:06 AM, Jean-Louis MONTEIRO jeano...@gmail.comwrote: Interesting point is that TomEE now has a company Tomitribe able to provide support. and I knew Tomitribe would be mentioned in your response! I don't think Geronimo is mentioned anytime...whenever

Re: Is geronimo dead?

2014-01-02 Thread Howard W. Smith, Jr.
be: java.util.logging.Logger.getLogger(org.apache.geronimo.connector.work.WorkerContext).setLevel(java.util.logging.Level.WARNING); On 2 January 2014 15:58, Howard W. Smith, Jr. smithh032...@gmail.com wrote: +1 Jean-Louis, On Thu, Jan 2, 2014 at 9:06 AM, Jean-Louis MONTEIRO jeano

changing geronimo logger level via logging.properties file

2014-01-02 Thread Howard W. Smith, Jr.
: # = # # 5tomee.org.apache.juli.FileHandler.level = FINEST # 5tomee.org.apache.juli.FileHandler.directory = ${catalina.base}/logs # 5tomee.org.apache.juli.FileHandler.prefix = tomee. 2014/1/2 Howard W. Smith, Jr. smithh032...@gmail.com: wow, thanks Karl! I will have to try that...and I wish I knew

Re: changing geronimo logger level via logging.properties file

2014-01-02 Thread Howard W. Smith, Jr.
Howard W. Smith, Jr. smithh032...@gmail.com: Romain, On Thu, Jan 2, 2014 at 10:36 AM, Romain Manni-Bucau rmannibu...@gmail.comwrote: @Howard and Karl: it can be done through logging.properties of course I see the following in tomee/conf/logging.properties file. are you saying that I

Re: Is geronimo dead?

2014-01-02 Thread Howard W. Smith, Jr.
+1 Bjorn i don't have experience with openEJB 'without' TomEE+, but I downloaded Geronimo (and even JBOSS) and tried to use it...when I was migrating from Glassfish to Tomcat/TomEE. As you said, TomEE was the easiest, and TomEE committers allowed me to be successful with the migration from

Re: JNDI Lookup in Windows

2013-12-23 Thread Howard W. Smith, Jr.
On Mon, Dec 23, 2013 at 4:08 PM, José Luis Cetina maxtorz...@gmail.comwrote: Is there another way to get my ejb reference from a @FacesConverter? http://showcase.omnifaces.org/cdi/FacesConverter

Re: JNDI Lookup in Windows

2013-12-23 Thread Howard W. Smith, Jr.
well, I have been using TomEE with Windows 2003 server and then Windows 2008 server (in production), and Windows 2008 server (as development PC/server, ever since beginning of tomee life), but I'm not using EAR, and I don't specify @Local or @Remote. i do remember a conversation... Romain

Re: JNDI Lookup in Windows

2013-12-23 Thread Howard W. Smith, Jr.
On Mon, Dec 23, 2013 at 4:46 PM, Howard W. Smith, Jr. smithh032...@gmail.com wrote: i do remember a conversation... Romain recommending to use jdni global name specified in tomee log @ startup. i don't know if it is will work inside @FacesConverter. the following are in my tomee log

Re: JNDI Lookup in Windows

2013-12-23 Thread Howard W. Smith, Jr.
see below... On Mon, Dec 23, 2013 at 4:53 PM, Howard W. Smith, Jr. smithh032...@gmail.com wrote: On Mon, Dec 23, 2013 at 4:46 PM, Howard W. Smith, Jr. smithh032...@gmail.com wrote: i do remember a conversation... Romain recommending to use jdni global name specified in tomee log

Re: JNDI Lookup in Windows

2013-12-23 Thread Howard W. Smith, Jr.
i use an ear, i used CODI before, tomee maven plugin and everything worked on Linux Environment but CODI and JNDI doesnt work in Win. 2013/12/23 Howard W. Smith, Jr. smithh032...@gmail.com well, I have been using TomEE with Windows 2003 server and then Windows 2008 server (in production

Re: JNDI Lookup in Windows

2013-12-23 Thread Howard W. Smith, Jr.
On Mon, Dec 23, 2013 at 4:08 PM, José Luis Cetina maxtorz...@gmail.comwrote: Is there another way to get my ejb reference from a @FacesConverter? also, OmniFaces has the following, which you may want to try: http://showcase.omnifaces.org/converters/SelectItemsConverter i've seen many

Re: JNDI Lookup in Windows

2013-12-23 Thread Howard W. Smith, Jr.
why with didnt work with the default values. Thanks. 2013/12/23 Howard W. Smith, Jr. smithh032...@gmail.com On Mon, Dec 23, 2013 at 4:08 PM, José Luis Cetina maxtorz...@gmail.com wrote: Is there another way to get my ejb reference from a @FacesConverter? also, OmniFaces has

Re: doubt about scopes

2013-12-12 Thread Howard W. Smith, Jr.
On Wed, Dec 11, 2013 at 3:28 PM, Leonardo K. Shikida shik...@gmail.comwrote: JSF and Filter use different sessions? How can I access the same object from both contexts, for the same logged user?

Re: Does CDI scoping apply to subclasses?

2013-12-12 Thread Howard W. Smith, Jr.
On Thu, Dec 12, 2013 at 3:33 PM, James Green james.mk.gr...@gmail.comwrote: I will move the scope annotations to the each subclass for clarity. +1

Re: No bean found for type: org.apache.myfaces.extensions.cdi.jsf.api.config.JsfModuleConfig

2013-12-11 Thread Howard W. Smith, Jr.
José, Did you read the blog post below and try what Rudy recommended? The solution for the other containers (weblogic and glassfish) may resolve your issue as well. On Tue, Dec 10, 2013 at 3:38 PM, Howard W. Smith, Jr. smithh032...@gmail.com wrote: On Tue, Dec 10, 2013 at 3:12 PM, José Luis

Re: No bean found for type: org.apache.myfaces.extensions.cdi.jsf.api.config.JsfModuleConfig

2013-12-11 Thread Howard W. Smith, Jr.
On Wed, Dec 11, 2013 at 11:19 AM, José Luis Cetina maxtorz...@gmail.comwrote: i think so i will try to remove CODI dependency in the future. +1 Of course is not an easy task, i need ViewScoped when is available in myfaces 2.2 I tested CDI @ViewScoped in MyFaces 2.2, and it works great.

Re: No bean found for type: org.apache.myfaces.extensions.cdi.jsf.api.config.JsfModuleConfig

2013-12-10 Thread Howard W. Smith, Jr.
José, As a Microsoft Windows user, hmmm, you may be experiencing some type of permissions issue. I would recommend that you avoid deploying apps/ear/war/etc... to C:\Users\..., because that Windows folder is sometimes 'protected' and not accessible, even if you try to access the folder via

Re: No bean found for type: org.apache.myfaces.extensions.cdi.jsf.api.config.JsfModuleConfig

2013-12-10 Thread Howard W. Smith, Jr.
I know that MyFaces developers/committers respond to topics on this list, sometimes, but I wonder if you should post this issue on MyFaces user list (as well). On Tue, Dec 10, 2013 at 3:12 PM, José Luis Cetina maxtorz...@gmail.comwrote: Then, its possible to be a TomEE issue with CODI only in

Re: No bean found for type: org.apache.myfaces.extensions.cdi.jsf.api.config.JsfModuleConfig

2013-12-10 Thread Howard W. Smith, Jr.
On Tue, Dec 10, 2013 at 3:33 PM, Howard W. Smith, Jr. smithh032...@gmail.com wrote: I know that MyFaces developers/committers respond to topics on this list, sometimes, but I wonder if you should post this issue on MyFaces user list (as well). On Tue, Dec 10, 2013 at 3:12 PM, José Luis

Re: No bean found for type: org.apache.myfaces.extensions.cdi.jsf.api.config.JsfModuleConfig

2013-12-10 Thread Howard W. Smith, Jr.
On Tue, Dec 10, 2013 at 3:12 PM, José Luis Cetina maxtorz...@gmail.comwrote: Then, its possible to be a TomEE issue with CODI only in Windows hmmm, see this[1], Rudy (PrimeFaces user) makes some good blogs; even though this/his blog targets weblogic, you may want to read that blog and try what

Re: tomee 1.6.1 == latest snapshot ?

2013-12-09 Thread Howard W. Smith, Jr.
is 1.6.1-SNAPSHOT JLouis 2013/12/7 Howard W. Smith, Jr. smithh032...@gmail.com 1. navigated to 1.6.0 snapshot download page[1] 2. clicked on apache-tomee-1.6.0---plus.zip[2] 3. result was the following: The server has not found anything matching the request URI You can get

Re: strange problem - outofmemory when a JSF app tries to open a JSP page

2013-12-08 Thread Howard W. Smith, Jr.
On Sun, Dec 8, 2013 at 11:28 PM, Leonardo K. Shikida shik...@gmail.comwrote: solved with this -XX:PermSize=256m -XX:MaxPermSize=256m +1 Leo

tomee 1.6.1 == latest snapshot ?

2013-12-07 Thread Howard W. Smith, Jr.
1. navigated to 1.6.0 snapshot download page[1] 2. clicked on apache-tomee-1.6.0---plus.zip[2] 3. result was the following: The server has not found anything matching the request URI You can get technical details here. Please continue your visit at our home page. 4. navigated to parent

Re: Unknown error in Assembler

2013-12-06 Thread Howard W. Smith, Jr.
and thank you for sharing. that's good to know. :) On Fri, Dec 6, 2013 at 11:24 AM, José Luis Cetina maxtorz...@gmail.comwrote: That was the errror. Thanks anyway 2013/12/6 José Luis Cetina maxtorz...@gmail.com I leave an ejb annotation with any attribute below of it. @EJB

Re: No message body writer has been found for response class

2013-11-25 Thread Howard W. Smith, Jr.
Yeah, and Jose triggered a discussion about that on this list within the last 1 to 3 months. remember that? :) On Mon, Nov 25, 2013 at 1:46 PM, John D. Ament john.d.am...@gmail.comwrote: in most app servers you end up with lazy loading issues, especially for onetomany's or manytomany's.

Re: ActiveMQ exceptions on shutdown

2013-11-08 Thread Howard W. Smith, Jr.
responses below... On Fri, Nov 8, 2013 at 11:11 AM, Trevor Stevens tstev...@me.com wrote: Since AMQ 5.9.0 was released and updated within the TomEE snapshots I have begun getting exceptions on shutdown. I am not sure if this is ActiveMQ related or TomEE but I am going to start here. Is this

Re: ActiveMQ exceptions on shutdown

2013-11-08 Thread Howard W. Smith, Jr.
i just searched google for the following exception, On Fri, Nov 8, 2013 at 11:11 AM, Trevor Stevens tstev...@me.com wrote: 08-Nov-2013 10:48:42.526 WARNING [ActiveMQ Connection Executor: vm://localhost#0]

Re: PooledConnection has already been closed

2013-11-08 Thread Howard W. Smith, Jr.
see my responses below... On Sat, Nov 9, 2013 at 1:38 AM, zeeman hamz...@fastmail.us wrote: I'm using Tomee latest snapshot (from yesterday) with JSF and Deltaspike .5. All on Apache stack with Hibernate 4.2.7.sp1 are you mentioning TomEE latest version, because this exception did not

Re: PooledConnection has already been closed

2013-11-08 Thread Howard W. Smith, Jr.
see my comments below.. On Sat, Nov 9, 2013 at 1:38 AM, zeeman hamz...@fastmail.us wrote: @Inject private EntityManager em; @Inject private SocialNotificationHandler notificationHandler; @Transactional public void saveLlikeAction(){ em.persist(new LikeObject(memInfo));

Re: hawtio to see all your tomee /java/ stuff

2013-11-07 Thread Howard W. Smith, Jr.
+1 On Thu, Nov 7, 2013 at 5:53 AM, Romain Manni-Bucau rmannibu...@gmail.comwrote: added an agent plugin to push tomee stateless stat + validation state of datasource not that sure which GUI plugin are needed ATM

Re: hawtio to see all your tomee /java/ stuff

2013-11-07 Thread Howard W. Smith, Jr.
and processes the data. On Thu, Nov 7, 2013 at 6:40 AM, Howard W. Smith, Jr. smithh032...@gmail.com wrote: +1 On Thu, Nov 7, 2013 at 5:53 AM, Romain Manni-Bucau rmannibu...@gmail.com wrote: added an agent plugin to push tomee stateless stat + validation state

Re: hawtio to see all your tomee /java/ stuff

2013-11-07 Thread Howard W. Smith, Jr.
+1 Romain, thanks. On Thu, Nov 7, 2013 at 7:30 AM, Romain Manni-Bucau rmannibu...@gmail.comwrote: well, before working on [monitoring] and launching sirona I evaluated hawtio. It is really nice but has big drawbacks which are blocking to be usable for me (I don't say it is a bad solution,

Re: hawtio to see all your tomee /java/ stuff

2013-11-07 Thread Howard W. Smith, Jr.
... or you can simply use jconsole. It would be nice to have a tree with all the mbeans... hmmm maybe we will have it. :) []s, Thiago. webaccess*: oh boy... I still didn't rename it! On Thu, Nov 7, 2013 at 7:44 AM, Howard W. Smith, Jr. smithh032...@gmail.com wrote: +1 Romain

Re: TomEE GUI Empty

2013-11-07 Thread Howard W. Smith, Jr.
On Thu, Nov 7, 2013 at 2:19 PM, dhj123456 dhj123...@gmail.com wrote: Another shock thing is i downloaded the tomcat8 this morning, very unlike the previous versions, it can't be run in my pc windows, tomcat8 won't support windows? the flashing dos window is too fast, i am not able to capture

Re: HA-JDBC via tomee.xml Resource factory/cluster properties ignored

2013-11-05 Thread Howard W. Smith, Jr.
Well, they have their own implementation of Romain there though. His name is Paul. Lol On Nov 5, 2013 12:55 AM, Jean-Louis MONTEIRO jeano...@gmail.com wrote: Lol Romain isn't a committee on HA Jdbc. Le 5 nov. 2013 06:08, Howard W. Smith, Jr. smithh032...@gmail.com a écrit : FYI/followup

hawtio to see all your tomee /java/ stuff

2013-11-05 Thread Howard W. Smith, Jr.
I was just reading a Christian Posta (ActiveMQ committer) blog, and it references hawtio[1]. On the hawtio home page, it mentions the following: hawtio has lots of plugins such as: a git-based Dashboard and Wiki, logs, health, JMX, OSGi, Apache ActiveMQ, Apache Camel, Apache OpenEJB, Apache

Re: Using TomEE/OpenEJB and failover of datasources

2013-11-04 Thread Howard W. Smith, Jr.
/in/rmannibucau Github: https://github.com/rmannibucau 2013/11/4 Howard W. Smith, Jr. smithh032...@gmail.com: response inline below, On Sun, Nov 3, 2013 at 10:51 AM, Jean-Louis MONTEIRO jeano...@gmail.com wrote: Well, we pushed that feature some years ago already. We mainly used

Re: Apache repo down?

2013-11-04 Thread Howard W. Smith, Jr.
lol okay, that's what I thought... glad it's working now for you. :) On Mon, Nov 4, 2013 at 2:22 PM, José Luis Cetina maxtorz...@gmail.comwrote: Nothing different, i just retried many times until it started 2013/11/4 Howard W. Smith, Jr. smithh032...@gmail.com did you do anything

Re: Exception from ActiveMQ

2013-11-04 Thread Howard W. Smith, Jr.
Jocelyn, did you search activemq's issue and/or (archived) mail list? you may want to do that? they are very helpful. On Mon, Nov 4, 2013 at 9:48 PM, Jocelyn Dionne jocel...@berger.ca wrote: So, IIUC, there is nothing that fixes the problem for now. I have to find a way to make it work. Am I

Re: Exception from ActiveMQ

2013-11-04 Thread Howard W. Smith, Jr.
you can ask your question on activemq's user mail list, too. On Mon, Nov 4, 2013 at 10:26 PM, Howard W. Smith, Jr. smithh032...@gmail.com wrote: Jocelyn, did you search activemq's issue and/or (archived) mail list? you may want to do that? they are very helpful.

Re: HA-JDBC via tomee.xml Resource factory/cluster properties ignored

2013-11-04 Thread Howard W. Smith, Jr.
FYI/followup, On Sat, Nov 2, 2013 at 9:49 AM, Howard W. Smith, Jr. smithh032...@gmail.com wrote: I'm trying to use HA-JDBC[1] with TomEE to have a cluster of at least 2 databases. I had to do the following to ensure tomee would create the ha-jdbc resource: 1. add the following java option

Re: Exception from ActiveMQ

2013-11-04 Thread Howard W. Smith, Jr.
tomee community has got to love this guy! lol :) On Tue, Nov 5, 2013 at 12:31 AM, Romain Manni-Bucau rmannibu...@gmail.comwrote: Trunk would fix it if you can use it

Re: HA-JDBC via tomee.xml Resource factory/cluster properties ignored

2013-11-03 Thread Howard W. Smith, Jr.
://sourceforge.net/p/ha-jdbc/discussion/383396/thread/5f4dc302/ On Sat, Nov 2, 2013 at 3:44 PM, Howard W. Smith, Jr. smithh032...@gmail.com wrote: okay, I'm seeing what you said (not get jta as easily, when using context.xml). thanks. On Sat, Nov 2, 2013 at 3:39 PM

Re: HA-JDBC via tomee.xml Resource factory/cluster properties ignored

2013-11-03 Thread Howard W. Smith, Jr.
okay, i just found this on tomee examples page, http://tomee.apache.org/examples-trunk/dynamic-datasource-routing/README.html On Sun, Nov 3, 2013 at 5:46 AM, Howard W. Smith, Jr. smithh032...@gmail.com wrote: I believe that is exactly what I want. I wish I knew about that earlier, so I

Using TomEE/OpenEJB and failover of datasources

2013-11-03 Thread Howard W. Smith, Jr.
First of all, thanks Romain for recommending the following, and for that I will gladly start a new thread. :) TomEE/OpenEJB and failover of datasources[1] which references [OpenEJB] Dynamic Datasource[2] but I found the following TomEE example: [TomEE] Dynamic Datasource Routing[3] So,

Re: Using TomEE/OpenEJB and failover of datasources

2013-11-03 Thread Howard W. Smith, Jr.
is today useless (see my post) Le 3 nov. 2013 14:55, Howard W. Smith, Jr. smithh032...@gmail.com a écrit : First of all, thanks Romain for recommending the following, and for that I will gladly start a new thread. :) TomEE/OpenEJB and failover of datasources[1] which references

Re: Using TomEE/OpenEJB and failover of datasources

2013-11-03 Thread Howard W. Smith, Jr.
okay, i set it up as your post demonstrated, I tested already, and I see no issues. it's time to test this in production. :) thanks romain! like i said in the other thread, I wish I knew about this earlier. On Sun, Nov 3, 2013 at 9:16 AM, Howard W. Smith, Jr. smithh032...@gmail.com wrote

Re: Using TomEE/OpenEJB and failover of datasources

2013-11-03 Thread Howard W. Smith, Jr.
Howard W. Smith, Jr. smithh032...@gmail.com okay, i set it up as your post demonstrated, I tested already, and I see no issues. it's time to test this in production. :) thanks romain! like i said in the other thread, I wish I knew about this earlier. On Sun, Nov 3, 2013 at 9:16 AM

Re: Using TomEE/OpenEJB and failover of datasources

2013-11-03 Thread Howard W. Smith, Jr.
thanks Jean-Louis... it remains to be seen. :) On Sun, Nov 3, 2013 at 10:14 AM, Jean-Louis MONTEIRO jeano...@gmail.comwrote: That's great but I'm pretty sure, you know much more than a lot of people. 2013/11/3 Howard W. Smith, Jr. smithh032...@gmail.com thanks Jean-Louis... i'm still

Re: Using TomEE/OpenEJB and failover of datasources

2013-11-03 Thread Howard W. Smith, Jr.
org.apache.coyote.AbstractProtocol destroy INFO: Destroying ProtocolHandler [http-nio-8080] Nov 03, 2013 10:12:58 AM org.apache.coyote.AbstractProtocol destroy INFO: Destroying ProtocolHandler [ajp-bio-8009] On Sun, Nov 3, 2013 at 9:55 AM, Howard W. Smith, Jr. smithh032...@gmail.com wrote: okay, i

Re: Using TomEE/OpenEJB and failover of datasources

2013-11-03 Thread Howard W. Smith, Jr.
? On Sun, Nov 3, 2013 at 10:18 AM, Howard W. Smith, Jr. smithh032...@gmail.com wrote: FYI, I just stopped my local tomee, and recognized that my @Application @PreDestroy has my code that stops Apache Derby prior to main and fallback datasources are closed. is this okay? Nov 03, 2013 10:12:48 AM

Re: Using TomEE/OpenEJB and failover of datasources

2013-11-03 Thread Howard W. Smith, Jr.
be well configured to not cache stale data. But it clearly depends on the use case. Hope that helps. JLouis 2013/11/3 Howard W. Smith, Jr. smithh032...@gmail.com okay, and one last question, is there a bit more documentation on the following, so we can know what to expect

Re: Using TomEE/OpenEJB and failover of datasources

2013-11-03 Thread Howard W. Smith, Jr.
://rmannibucau.wordpress.com/ LinkedIn: http://fr.linkedin.com/in/rmannibucau Github: https://github.com/rmannibucau 2013/11/3 Howard W. Smith, Jr. smithh032...@gmail.com: okay, and one last question, is there a bit more documentation on the following, so we can know what to expect, and the implementation

<    1   2   3   4   5   >