TomEE CORS

2016-12-15 Thread José Luis Cetina
Hi, i have a webapp (war file) using JAX-RS, how can i enable TomEE for accepting request from other host? -- --- *José Luis Cetina* ---

Re: -D host on EAR file

2016-12-08 Thread José Luis Cetina
/www.linkedin.com/in/rmannibucau> | JavaEE Factory > <https://javaeefactory-rmannibucau.rhcloud.com> > > 2016-12-08 21:59 GMT+01:00 José Luis Cetina <maxtorz...@gmail.com>: > > > Yeap, you are right, the host is OK, but the path is taken from the maven > > module

Re: -D host on EAR file

2016-12-08 Thread José Luis Cetina
g-rmannibucau.rhcloud.com> | Old Blog > <http://rmannibucau.wordpress.com> | Github <https://github.com/ > rmannibucau> | > LinkedIn <https://www.linkedin.com/in/rmannibucau> | JavaEE Factory > <https://javaeefactory-rmannibucau.rhcloud.com> > > 2016-12

Re: -D host on EAR file

2016-12-08 Thread José Luis Cetina
rmannibucau> | Blog > <https://blog-rmannibucau.rhcloud.com> | Old Blog > <http://rmannibucau.wordpress.com> | Github <https://github.com/ > rmannibucau> | > LinkedIn <https://www.linkedin.com/in/rmannibucau> | JavaEE Factory > <https://javaeefactory-rmannibucau.r

-D host on EAR file

2016-12-08 Thread José Luis Cetina
/mypath Yesterday i upgrade to TomEE 7 plus and i cannot access to my web applications. Do i have to change something? -- --- *José Luis Cetina* ---

Re: org.apache.cxf.interceptor.Fault: javax/ws/rs/client/ClientBuilder

2016-12-07 Thread José Luis Cetina
<https://github.com/ > rmannibucau> | > LinkedIn <https://www.linkedin.com/in/rmannibucau> | JavaEE Factory > <https://javaeefactory-rmannibucau.rhcloud.com> > > 2016-12-07 17:25 GMT+01:00 José Luis Cetina <maxtorz...@gmail.com>: > > > Thanks!! Im try

Re: org.apache.cxf.interceptor.Fault: javax/ws/rs/client/ClientBuilder

2016-12-07 Thread José Luis Cetina
> > javax > > javaee-api > > ${javaee.version} > > provided > > > > > > > >

org.apache.cxf.interceptor.Fault: javax/ws/rs/client/ClientBuilder

2016-12-07 Thread José Luis Cetina
provided com.fasterxml.jackson.jaxrs jackson-jaxrs-json-provider ${jackson.provider.version} compile . Thanks. -- ------- *José Luis Cetina* ---

Re: AWS Beanstalk TomEE

2015-05-19 Thread José Luis Cetina
. -- --- *José Luis Cetina* ---

AWS Beanstalk TomEE

2015-05-19 Thread José Luis Cetina
-- --- *José Luis Cetina* ---

@RequestScoped does not exist within current thread

2015-05-13 Thread José Luis Cetina
) at javax.faces.webapp.FacesServlet.service(FacesServlet.java:197) -- --- *José Luis Cetina* ---

Re: get jvmroute value

2015-05-12 Thread José Luis Cetina
I just found it: MBeanServer server = ManagementFactory.getPlatformMBeanServer(); String jvmRoute = (String)server.getAttribute(new ObjectName(Catalina:type=Engine), jvmRoute); Thanks 2015-05-12 17:53 GMT-05:00 José Luis Cetina maxtorz...@gmail.com: Is there any way to get the jvmroute value

get jvmroute value

2015-05-12 Thread José Luis Cetina
this in tomee, is this code a good idea? I just want to read the jvmroute and append to each user session. Thanks -- --- *José Luis Cetina* ---

Re: serializeAsArray JacksonJaxbJsonProvider

2014-10-20 Thread José Luis Cetina
://rmannibucau.wordpress.com https://github.com/rmannibucau 2014-10-20 15:34 GMT+02:00 José Luis Cetina maxtorz...@gmail.com: I changed to: openejb-jar xmlns=http://www.openejb.org/openejb-jar/1.1; xmlns:xsi= http://www.w3.org/2001/XMLSchema-instance; xsi:schemaLocation=http

Re: serializeAsArray JacksonJaxbJsonProvider

2014-10-20 Thread José Luis Cetina
johnzon jaxrs provider or jackson. Romain Manni-Bucau @rmannibucau http://www.tomitribe.com http://rmannibucau.wordpress.com https://github.com/rmannibucau 2014-10-20 16:44 GMT+02:00 José Luis Cetina maxtorz...@gmail.com: Thanks, now its working. But now all of my

Re: serializeAsArray JacksonJaxbJsonProvider

2014-10-20 Thread José Luis Cetina
@waastad by the way, can you share your own provider? 2014-10-20 10:21 GMT-05:00 José Luis Cetina maxtorz...@gmail.com: 1. If i use jackson do i have the same serializeAsArray trouble? (I thought i was using jackson, see my first mail in this conversation) 2. How do i define my

Re: Cluster + @Schedule

2014-10-18 Thread José Luis Cetina
Hi Leo . 2 months ago I had the same problem as you (creating a quartz job in a cluster env) , i didnt have enough time do research about this, and what i finally did was creating an event (mysql event) in my database server (of course i Just need to modify database data) and what that my job was

Re: Cluster + @Schedule

2014-10-18 Thread José Luis Cetina
El 18/10/2014 10:06, Leonardo K. Shikida shik...@gmail.com escribió: and then your stored procedure somehow notified the application server? I dont notify the app server in my case, the business logic can't be moved into the DB [] Leo On Sat, Oct 18, 2014 at 12:01 PM, José Luis Cetina

serializeAsArray JacksonJaxbJsonProvider

2014-10-18 Thread José Luis Cetina
-- --- *José Luis Cetina* ---

Re: serializeAsArray JacksonJaxbJsonProvider

2014-10-18 Thread José Luis Cetina
:09 GMT-05:00 José Luis Cetina maxtorz...@gmail.com: Hi, i need to set the serializeAsArray property to true, but where do i have to put it? in openejb-jar.xml? This is my openejb-jar.xml openejb-jar xmlns=http://www.openejb.org/openejb-jar/1.1; xmlns:xsi= http://www.w3.org/2001/XMLSchema

Re: JAX-RS

2014-10-17 Thread José Luis Cetina
in the filter, you could use also plain servlet filters. They work the same in cxf 3 or 2 and they are standard. Le 17 oct. 2014 06:21, José Luis Cetina maxtorz...@gmail.com a écrit : Of course i could use EntityManager inside of my filter and do all the stuff that i want, but i just want

JAX-RS

2014-10-16 Thread José Luis Cetina
filter i dont care to use CXF interceptors or filters extended. Im using TomEE 1.7.1 JAX-RS -- --- *José Luis Cetina* ---

Re: JAX-RS

2014-10-16 Thread José Luis Cetina
Thanks @Romain, then how can i use the standard way of JAX-RS filter with Tomee? I want to use ContainerResponseFilter is possible? if yes, how? 2014-10-16 12:49 GMT-05:00 Romain Manni-Bucau rmannibu...@tomitribe.com: 2014-10-16 19:47 GMT+02:00 José Luis Cetina maxtorz...@gmail.com: Hi i want

Re: JAX-RS

2014-10-16 Thread José Luis Cetina
1.7.1? Thanks 2014-10-16 12:53 GMT-05:00 José Luis Cetina maxtorz...@gmail.com: Thanks @Romain, then how can i use the standard way of JAX-RS filter with Tomee? I want to use ContainerResponseFilter is possible? if yes, how? 2014-10-16 12:49 GMT-05:00 Romain Manni-Bucau rmannibu

Re: JAX-RS

2014-10-16 Thread José Luis Cetina
Ok, thanks. 2014-10-16 13:30 GMT-05:00 Romain Manni-Bucau rmannibu...@tomitribe.com: 2014-10-16 20:17 GMT+02:00 José Luis Cetina maxtorz...@gmail.com: I understand now. Apache CXF implements JSR-311 wich is JAX-RS 1.1 compliant. I could see that CXF 3.x is JAX-RS 2.0 compliant. 1

Re: JAX-RS

2014-10-16 Thread José Luis Cetina
get access to my ejb or database resource from my cxf filter? 2. Why inside of my filter i could not do a lookup to java:global ?? why it doesnt exists? Im still using TomEE 1.7.1 (jax-rs) with the default apache cxf version 2014-10-16 16:54 GMT-05:00 José Luis Cetina maxtorz...@gmail.com

Re: JAX-RS

2014-10-16 Thread José Luis Cetina
Of course i could use EntityManager inside of my filter and do all the stuff that i want, but i just want to reuse my ejb method. Anyway , i dont understand why i cannot find my ejb doing a lookup inside of my filter, that's all. 2014-10-16 23:06 GMT-05:00 José Luis Cetina maxtorz...@gmail.com

Re: Deploy an EAR containing just EJBs in Tomee

2014-09-23 Thread José Luis Cetina
If im not wrong you can Deploy only your jar that contains your ejbs instado of and ear. El 23/09/2014 17:13, mohben mohammad.benslim...@gmail.com escribió: When I put the ear in $TomeeDir/webapps, ear is exploded in : myejbs.jar (OK) lib (is all empty nevertheless the libs are presents in the

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

2014-09-04 Thread José Luis Cetina
@Romain any suggestions? 2014-09-03 23:59 GMT-05:00 Romain Manni-Bucau rmannibu...@gmail.com: Surely right if mf is in the ear and not the war but not a bug neither Le 3 sept. 2014 22:16, José Luis Cetina maxtorz...@gmail.com a écrit : This was the Last response from Leonardo: Hi

Re: OpenJPA and Java 1.8

2014-09-04 Thread José Luis Cetina
+--+ -- --- *José Luis Cetina* ---

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

2014-09-03 Thread José Luis Cetina
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 : Hi. I use TomEE 1.6.0 Final release with myfaces

Re: Apache TomEE 1.7.0 Release

2014-08-15 Thread José Luis Cetina
:-) congrats!! El 15/08/2014 07:58, Andy Gumbrecht agumbre...@tomitribe.com escribió: Boom!!! @ApacheTomEE 1.7.0 release rocks @TheASF world today - http://tomee.apache.org http://t.co/ahbu6794su Hi Absolutely Everyone, Finally, we made it through the vote. We are so proud and extremely

Re: CDI not working inside EAR with Atmosphere (BeanManager)

2014-05-11 Thread José Luis Cetina
Issue fixed!! 2014-05-08 18:58 GMT-05:00 José Luis Cetina maxtorz...@gmail.com: Working with any issue :) with apache-tomee-1.6.1-20140508.041112-152-jaxrs.zip Thanks!!! 2014-05-06 10:02 GMT-05:00 José Luis Cetina maxtorz...@gmail.com: Ok, i will test it today. 2014-04-24 7:28 GMT

Re: CDI not working inside EAR with Atmosphere (BeanManager)

2014-05-11 Thread José Luis Cetina
Working with any issue :) with apache-tomee-1.6.1-20140508.041112-152-jaxrs.zip Thanks!!! 2014-05-06 10:02 GMT-05:00 José Luis Cetina maxtorz...@gmail.com: Ok, i will test it today. 2014-04-24 7:28 GMT-05:00 Andy Gumbrecht agumbre...@tomitribe.com: I just updated and tested

Re: CDI not working inside EAR with Atmosphere (BeanManager)

2014-05-06 Thread José Luis Cetina
Tomitribe! | http://tomee.apache.org -- --- *José Luis Cetina* ---

Re: CDI not working inside EAR with Atmosphere (BeanManager)

2014-04-22 Thread José Luis Cetina
://fr.linkedin.com/in/rmannibucau Github: https://github.com/rmannibucau 2014-04-22 18:25 GMT+02:00 José Luis Cetina maxtorz...@gmail.com: Hi, my problem was i mean IS with CODI using Windows. Here is the conversation: http://openejb.979440.n4.nabble.com/No-bean-found-for-type-org-apache-myfaces

Re: Share session across web applications

2014-04-14 Thread José Luis Cetina
. -- --- *José Luis Cetina* ---

Re: LowTypedRealm

2014-03-07 Thread José Luis Cetina
://www.magnews.it/it/iscriviti-alla-newsletter -- Rimani aggiornato sul mondo dell'email marketing e del digital marketing: visita il nostro blog! http://blog.magnews.it -- --- *José Luis

Re: What is the meaning of: javax.ejb.Stateless

2014-03-06 Thread José Luis Cetina
-- --- *José Luis Cetina* ---

Re: JAX-RS JSON unexpected element

2014-02-25 Thread José Luis Cetina
Luis Cetina maxtorz...@gmail.com: @Romain is something like @JsonIgnoreProperties in jettison? 2014-02-24 14:20 GMT-06:00 José Luis Cetina maxtorz...@gmail.com: Ok, i will try it. 2014-02-24 14:18 GMT-06:00 Romain Manni-Bucau rmannibu...@gmail.com: yes it is coming with cxf

Re: JAX-RS JSON unexpected element

2014-02-24 Thread José Luis Cetina
=com.fasterxml.jackson.jaxrs.json.JacksonJaxbJsonProvider property. :) 2014-02-24 13:47 GMT-06:00 John D. Ament john.d.am...@gmail.com: Can you post the code for your resource? On Mon, Feb 24, 2014 at 2:05 PM, José Luis Cetina maxtorz...@gmail.com wrote: Hi, im doing my first rest service. Im having problem's

Re: JAX-RS JSON unexpected element

2014-02-24 Thread José Luis Cetina
Github: https://github.com/rmannibucau 2014-02-24 21:00 GMT+01:00 José Luis Cetina maxtorz...@gmail.com: Hi @John, the problem is in the @XmlRootElement, Jackson provider doesn't need it, then i just add Jackson as a provider and everything works. But i dont understand why

Re: maxActive vs maxIdle. Advice for DataSource

2014-02-14 Thread José Luis Cetina
://fr.linkedin.com/in/rmannibucau Github: https://github.com/rmannibucau 2014-02-14 1:14 GMT+01:00 José Luis Cetina maxtorz...@gmail.com: @Romain i could see in jconsole the value of TimeBetweenEvictionRunsMillis is -1 but i have in my tomee.xml TimeBetweenEvictionRunsMillis=3

Re: maxActive vs maxIdle. Advice for DataSource

2014-02-14 Thread José Luis Cetina
://rmannibucau.wordpress.com/ LinkedIn: http://fr.linkedin.com/in/rmannibucau Github: https://github.com/rmannibucau 2014-02-14 18:35 GMT+01:00 José Luis Cetina maxtorz...@gmail.com: @Romain the timeBetweenEvictionRuns property is recognized by looking in jmx, the TimeBetweenEvictionRunsMillis

Re: maxActive vs maxIdle. Advice for DataSource

2014-02-14 Thread José Luis Cetina
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 Cetina maxtorz...@gmail.com wrote: Ok 2014

Re: maxActive vs maxIdle. Advice for DataSource

2014-02-14 Thread José Luis Cetina
The default value!! 2014-02-14 13:30 GMT-06:00 José 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

maxActive vs maxIdle. Advice for DataSource

2014-02-13 Thread José Luis Cetina
with any kind of advice. I use 2 servers with this configuration and tomee and both of them read to other server where the database is (2 webapp server + 1 db server). --- *José Luis Cetina* ---

Re: maxActive vs maxIdle. Advice for DataSource

2014-02-13 Thread José Luis Cetina
/configuration.html;) Romain Manni-Bucau Twitter: @rmannibucau Blog: http://rmannibucau.wordpress.com/ LinkedIn: http://fr.linkedin.com/in/rmannibucau Github: https://github.com/rmannibucau 2014-02-13 16:21 GMT+01:00 José Luis Cetina maxtorz...@gmail.com: Hi, im having about 180 users

Re: maxActive vs maxIdle. Advice for DataSource

2014-02-13 Thread José Luis Cetina
Then if tomee use tomcat-pool is this where the info really is? https://tomcat.apache.org/tomcat-7.0-doc/jdbc-pool.html not here http://commons.apache.org/proper/commons-dbcp/configuration.html 2014-02-13 9:32 GMT-06:00 José Luis Cetina maxtorz...@gmail.com: What about this info in tomee web

Re: maxActive vs maxIdle. Advice for DataSource

2014-02-13 Thread José Luis Cetina
-13 9:51 GMT-06:00 Howard W. Smith, Jr. smithh032...@gmail.com: 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

Re: maxActive vs maxIdle. Advice for DataSource

2014-02-13 Thread José Luis Cetina
-13 17:18 GMT+01:00 José Luis Cetina maxtorz...@gmail.com: Thanks i already readed. Maybe what is happen is that my webapps are not returning to the pool the database connection. I have a question: If i have a stateles bean using an entitymanager and doing any kind of operation

Re: maxActive vs maxIdle. Advice for DataSource

2014-02-13 Thread José Luis Cetina
Blog: http://rmannibucau.wordpress.com/ LinkedIn: http://fr.linkedin.com/in/rmannibucau Github: https://github.com/rmannibucau 2014-02-13 17:39 GMT+01:00 José Luis Cetina maxtorz...@gmail.com: Ok. At this moment my webapp in production is loggin me: SEVERE

Re: maxActive vs maxIdle. Advice for DataSource

2014-02-13 Thread José Luis Cetina
Twitter: @rmannibucau Blog: http://rmannibucau.wordpress.com/ LinkedIn: http://fr.linkedin.com/in/rmannibucau Github: https://github.com/rmannibucau 2014-02-13 17:39 GMT+01:00 José Luis Cetina maxtorz...@gmail.com: Ok. At this moment my webapp in production is loggin

Re: maxActive vs maxIdle. Advice for DataSource

2014-02-13 Thread José Luis Cetina
: @rmannibucau Blog: http://rmannibucau.wordpress.com/ LinkedIn: http://fr.linkedin.com/in/rmannibucau Github: https://github.com/rmannibucau 2014-02-13 18:30 GMT+01:00 José Luis Cetina maxtorz...@gmail.com: Romain, is there any doc in tomee web page for jmx? in new with this 2014-02-13 11

Re: maxActive vs maxIdle. Advice for DataSource

2014-02-13 Thread José Luis Cetina
: @rmannibucau Blog: http://rmannibucau.wordpress.com/ LinkedIn: http://fr.linkedin.com/in/rmannibucau Github: https://github.com/rmannibucau 2014-02-13 19:31 GMT+01:00 Howard W. Smith, Jr. smithh032...@gmail.com: On Thu, Feb 13, 2014 at 10:21 AM, José Luis Cetina maxtorz...@gmail.com wrote

Re: maxActive vs maxIdle. Advice for DataSource

2014-02-13 Thread José Luis Cetina
Thank's for the info @Howard i added suspectTimeout 60 removeAbandoned true removeAbandonedTimeout 180 timeBetweenEvictionRunsMillis 3 2014-02-13 12:31 GMT-06:00 Howard W. Smith, Jr. smithh032...@gmail.com: On Thu, Feb 13, 2014 at 10:21 AM, José Luis Cetina maxtorz...@gmail.com

JMX http sessions

2014-02-13 Thread José Luis Cetina
Hi, im using JMX (thanks to @Romain) im newbie, im ussing Jconsole is there anyway to see the httpsessions that have bean created or the httpsession that are alive by my webapp? Thanks -- --- *José Luis Cetina* ---

Re: maxActive vs maxIdle. Advice for DataSource

2014-02-13 Thread José Luis Cetina
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. smithh032...@gmail.com: On Thu, Feb 13, 2014 at 10:21 AM, José Luis Cetina maxtorz...@gmail.com wrote: I

Re: maxActive vs maxIdle. Advice for DataSource

2014-02-13 Thread José Luis Cetina
-13 14:42 GMT-06:00 José Luis Cetina maxtorz...@gmail.com: The apps are running GREAT!! i will share what is my infraestructure: 1 Apache Server at front (configure with workers for tomee instances) 1 Database server with mysql (All the resources are available just for mysql) 2 Tomee server

Re: maxActive vs maxIdle. Advice for DataSource

2014-02-13 Thread José Luis Cetina
-13 14:47 GMT-06:00 José Luis Cetina maxtorz...@gmail.com: @Romain the size of the datasource still growing: Now: 14:46 In server 1, now is in 77 In server 2, now is in 40 lets see if after a while it decrease. At: 13:08 hrs In server 1, now is in 77 In server 2, now is in 40 lets see

Re: maxActive vs maxIdle. Advice for DataSource

2014-02-13 Thread José Luis Cetina
févr. 2014 21:48, José Luis Cetina maxtorz...@gmail.com a écrit : Sorry i copy/paste the same values, here are again Now: 14:46 In server 1, now is in 95 In server 2, now is in 63 lets see if after a while it decrease. At: 13:08 hrs In server 1, now is in 77 In server 2, now

Re: JMX http sessions

2014-02-13 Thread José Luis Cetina
/configuration /plugin https://dl.dropboxusercontent.com/u/1459144/tomee-list/webaccess_sessions.png On Thu, Feb 13, 2014 at 3:08 PM, José Luis Cetina maxtorz...@gmail.com wrote: Hi, im using JMX (thanks to @Romain) im newbie, im ussing

Re: maxActive vs maxIdle. Advice for DataSource

2014-02-13 Thread José Luis Cetina
13, 2014 at 3:42 PM, José Luis Cetina maxtorz...@gmail.com wrote: The apps are running GREAT!! i will share what is my infraestructure: 1 Apache Server at front (configure with workers for tomee instances) 1 Database server with mysql (All the resources are available just for mysql) 2

Re: add codi at web application

2014-02-12 Thread José Luis Cetina
-- View this message in context: http://openejb.979440.n4.nabble.com/add-codi-at-web-application-tp4667697p4667723.html Sent from the OpenEJB User mailing list archive at Nabble.com. -- --- *SCJA. José Luis Cetina* ---

Re: add codi at web application

2014-02-12 Thread José Luis Cetina
... ? -- --- *SCJA. José Luis Cetina* ---

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

2014-01-15 Thread José Luis Cetina
Hi. I use TomEE 1.6.0 Final release with myfaces 2.1.13 and jdk 1.7 with this i was using the org.omnifaces.cdi.ViewScoped annotation with any problem, with the new release of myfaces 2.2.0 i decide to change from org.omnifaces.cdi.ViewScoped to javax.faces.view.ViewScoped then im gettin this

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

2014-01-15 Thread José Luis Cetina
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 : Hi. I use TomEE 1.6.0 Final release with myfaces 2.1.13 and jdk 1.7 with this i was using

JNDI Lookup in Windows

2013-12-23 Thread José Luis Cetina
Hi this lookup works in linux environment: ctx.lookup(java:module/UsersFacade!com.mypackage.ejbs.UsersFacadeLocal); But in Windows it doesnt work. My interface an ejb are declared like this @Local interface UsersFacadeLocal... @Stateless UsersFacade implements UsersFacadeLocal Is

Re: JNDI Lookup in Windows

2013-12-23 Thread José Luis Cetina
to the app path? Romain Manni-Bucau Twitter: @rmannibucau Blog: http://rmannibucau.wordpress.com/ LinkedIn: http://fr.linkedin.com/in/rmannibucau Github: https://github.com/rmannibucau 2013/12/23 José Luis Cetina maxtorz...@gmail.com: Hi this lookup works in linux environment

Re: JNDI Lookup in Windows

2013-12-23 Thread José Luis Cetina
under lin? Romain Manni-Bucau Twitter: @rmannibucau Blog: http://rmannibucau.wordpress.com/ LinkedIn: http://fr.linkedin.com/in/rmannibucau Github: https://github.com/rmannibucau 2013/12/23 José Luis Cetina maxtorz...@gmail.com: I dont think so, i moved to other locations and i still

Re: JNDI Lookup in Windows

2013-12-23 Thread José Luis Cetina
Is there another way to get my ejb reference from a @FacesConverter? 2013/12/23 José Luis Cetina maxtorz...@gmail.com The app runs with any problem,if i try to do a lookup for my ejbs they can not be found it, but in linux the lookup works with any problem using the same CODE, 2013/12/23

Re: JNDI Lookup in Windows

2013-12-23 Thread José Luis Cetina
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? http://showcase.omnifaces.org/cdi/FacesConverter The @EJB in Omnifaces (inside

Re: JNDI Lookup in Windows

2013-12-23 Thread José Luis Cetina
If i try to use the BeanManager ( https://github.com/bannmann/beanmanager-test) for retrive my EJB's i get the same NameNotFoundEx 2013/12/23 José Luis Cetina maxtorz...@gmail.com 2013/12/23 Howard W. Smith, Jr. smithh032...@gmail.com On Mon, Dec 23, 2013 at 4:08 PM, José Luis Cetina

Re: JNDI Lookup in Windows

2013-12-23 Thread José Luis Cetina
committers will appreciate you using it and reporting issues. just a recommendation. i'm not using it yet, but I prefer to wait to use MyFaces 2.2 until it is bundled with tomee+ ZIP file. :) On Mon, Dec 23, 2013 at 4:39 PM, José Luis Cetina maxtorz...@gmail.com wrote: I feel that nobody cares

Re: JNDI Lookup in Windows

2013-12-23 Thread José Luis Cetina
IllegalArgumentException(object + object + is of type + object.getClass().getName() + ; expected type: + Users.class.getName()); } } } -- --- *SCJA. José Luis Cetina* ---

Re: JNDI Lookup in Windows

2013-12-23 Thread José Luis Cetina
*] Then: ctx.lookup(java:global/MyApplicationName/MyModuleName/ UsersFacade!com.mypackage.ejbs.UsersFacadeLocal); Done. I dont know 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

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

2013-12-11 Thread José Luis Cetina
?? Some tomee commiter maybe use windows, just download the project and try to run in 1.6.0 (using tomee maven plugin or startup.bat) and you will see the problem, remember this doesnt happen in Linux. Im very surprised apparently nobody use TomEE + CODI in Windows 2013/12/10 José Luis Cetina maxtorz

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

2013-12-11 Thread José Luis Cetina
. Smith, Jr. smithh032...@gmail.com a écrit : On Wed, Dec 11, 2013 at 11:19 AM, José Luis Cetina maxtorz...@gmail.com wrote: 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

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

2013-12-11 Thread José Luis Cetina
is clearly not reliable for java (even if i doubt the bug is in the jvm here): cpu monitoring, timers...are quite broken in the jvm because of the underlying apis. Le 11 déc. 2013 19:27, José Luis Cetina maxtorz...@gmail.com a écrit : Definitely that is not good hear. Of course this is not an easy

Re: Deploying JEE app to TomEE as WAR (using ANT), instead of as EAR

2013-12-11 Thread José Luis Cetina
at Nabble.com. -- --- *SCJA. José Luis Cetina* ---

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

2013-12-11 Thread José Luis Cetina
. 2013/12/11 Mark Struberg strub...@yahoo.de can you probably explain again what the whole issue is? Is there a bug report with a sample? LieGrue, strub From: José Luis Cetina maxtorz...@gmail.com To: users@tomee.apache.org Sent: Wednesday, 11

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

2013-12-10 Thread José Luis Cetina
/webapps folder...manually 3. in Netbeans, start tomee (server) yeah, i know those steps may be too much for others (or most people), but it works for me. :) -- --- *SCJA. José Luis Cetina* ---

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

2013-12-10 Thread José Luis Cetina
could confirm that is not a tomee maven plugin issue or a permisson issue. Now i dont know what could be, because this work in linux environment. 2013/12/10 José Luis Cetina maxtorz...@gmail.com Im trying to deploy manually in c: folder, im on it 2013/12/10 Howard W. Smith, Jr. smithh032

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

2013-12-10 Thread José Luis Cetina
at org.apache.myfaces.extensions.cdi.core.impl.util.CodiUtils.getOrCreateBeanByClass(CodiUtils.java:198)... Then, its possible to be a TomEE issue with CODI only in Windows environment? 2013/12/10 José Luis Cetina maxtorz...@gmail.com Now i tested with the same JVM 1.7u25 and i copy

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

2013-12-10 Thread José Luis Cetina
or myfaces or codi. I'd test xbean first if I had a win. Le 10 déc. 2013 21:53, José Luis Cetina maxtorz...@gmail.com a écrit : Romain, any advice? 2013/12/10 José Luis Cetina maxtorz...@gmail.com If i remove CODI dependencies the app runs, in both environments, thats why im so

Unknown error in Assembler

2013-12-06 Thread José Luis Cetina
Hi, after i do changes in my code (ear app), im getting this error in TomEE log, but i cant see any specific error that references to any of my classes. Any idea? Im using TomEE 1.6.0 Log: SEVERE - FATAL ERROR: Unknown error in Assembler. Please send the following stack trace and this

Re: Unknown error in Assembler

2013-12-06 Thread José Luis Cetina
I leave an ejb annotation with any attribute below of it. @EJB private XXX xx; @EJB //I forgot to use any attribute here 2013/12/6 José Luis Cetina maxtorz...@gmail.com Hi, after i do changes in my code (ear app), im getting this error in TomEE log, but i cant see any specific

Re: Unknown error in Assembler

2013-12-06 Thread José Luis Cetina
:) 2013/12/6 Howard W. Smith, Jr. smithh032...@gmail.com and thank you for sharing. that's good to know. :) On Fri, Dec 6, 2013 at 11:24 AM, José Luis Cetina maxtorz...@gmail.com wrote: That was the errror. Thanks anyway 2013/12/6 José Luis Cetina maxtorz...@gmail.com I

No message body writer has been found for response class

2013-11-25 Thread José Luis Cetina
Hi, im doing my first restful, im using tomee 1.6.0 jax-rs. I get this message when in my webpage: No message body writer has been found for response class User. @GET @Path(/user) @Produces({application/xml, application/json}) public User getUser(){ User usr = new User();

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

2013-11-25 Thread José Luis Cetina
/blob/master/src/main/java/photodb/data/dto/UserInfo.java []s, Thiago. On Mon, Nov 25, 2013 at 1:26 PM, José Luis Cetina maxtorz...@gmail.com wrote: Hi, im doing my first restful, im using tomee 1.6.0 jax-rs. I get this message when in my webpage: No message body writer has been found

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

2013-11-25 Thread José Luis Cetina
the User class? https://github.com/tveronezi/photodb/blob/master/src/main/java/photodb/data/dto/UserInfo.java []s, Thiago. On Mon, Nov 25, 2013 at 1:26 PM, José Luis Cetina maxtorz...@gmail.com wrote: Hi, im doing my first restful, im using tomee 1.6.0 jax-rs

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

2013-11-25 Thread José Luis Cetina
. -- --- *SCJA. José Luis Cetina* ---

tomee maven plugin

2013-11-25 Thread José Luis Cetina
Hi currently in using the apache tomee maven plugin 1.6.0-SNAPSHOT with webprofile classifier, im doing my first step's with jax-rs, then i change the classifier but maven could not find the tomee plugin with jaxrs classifier plugin groupIdorg.apache.openejb.maven/groupId

Re: tomee maven plugin

2013-11-25 Thread José Luis Cetina
Yep, it works now with 1.6.0 release, by the way i didnt know that 1.6.0 was released a few days ago 2013/11/25 jieryn jie...@gmail.com Try again with the recently released Apache TomEE 1.6.0? On Mon, Nov 25, 2013 at 9:01 PM, José Luis Cetina maxtorz...@gmail.com wrote: Any advice

Re: Apache repo down?

2013-11-12 Thread José Luis Cetina
=true, snapshots=false), apache (https://repository.apache.org/content/repositories/snapshots/, releases=false, snapshots=true): SSL peer shut down incorrectly - [Help 1] 2013/11/12 José Luis Cetina maxtorz...@gmail.com Hi, in my work i dont have any issue again, but in my other PC i get

Apache repo down?

2013-11-04 Thread José Luis Cetina
Is there any issue with apache repo? i could not run my app with tomee plugin Could not resolve dependencies for project : The following artifacts could not be resolved: org.apache.openejb:mbean-annotation-api:jar:4.6.0-SNAPSHOT, org.apache.openejb:openejb-jpa-integration:jar:4.6.0-SNAPSHOT,

Re: Apache repo down?

2013-11-04 Thread José Luis Cetina
: Could not transfer artifact org.apache.openejb:mbean-annotation-api:jar:4.6.0-20131104.040551-250 from/to apache-repo-snapshot ( https://repository.apache.org/content/groups/snapshots): Connection to https://repository.apache.org refused: Connection timed out - [Help 1] 2013/11/4 José Luis Cetina

Re: Apache repo down?

2013-11-04 Thread José Luis Cetina
/in/rmannibucau Github: https://github.com/rmannibucau 2013/11/4 José Luis Cetina maxtorz...@gmail.com: I could not run my app, i use maven tomee plugin, is something down? Downloading: https://repository.apache.org/content/groups/snapshots/org/apache/openejb/openejb-api/4.6.0-SNAPSHOT/openejb

Re: Apache repo down?

2013-11-04 Thread José Luis Cetina
Is working now 2013/11/4 José Luis Cetina maxtorz...@gmail.com I have more than 1 hour retrying using 2 differents ISP and still the same problem :S 2013/11/4 Romain Manni-Bucau rmannibu...@gmail.com works here but it is quite slow Romain Manni-Bucau Twitter: @rmannibucau Blog: http

Re: Fetch without transaction

2013-10-30 Thread José Luis Cetina
behavior as per the spec. JLouis 2013/10/30 Jean-Louis MONTEIRO jeano...@gmail.com SUPPORTS is fine then 2013/10/30 José Luis Cetina maxtorz...@gmail.com Sorry if i post here, i posted this some days ago, but in openjpa mailing list somethings you dont get answer's, i hope somebody

  1   2   >