[jboss-user] [Installation, Configuration Deployment] - Re: JBoss 5.1 JDK6 - IBM AIX 5.3 Java 1.6 - Failed to build

2009-09-28 Thread wluque
The error is in position 16:21:27,053 of the boot.log file . Thank in advance for any help !! View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4257363#4257363 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4257363

[jboss-user] [Persistence] - Re: ClassNotFoundException Moving Persistence.xml From EJB/M

2009-09-21 Thread wluque
Hi , The problem was that the fmk-zentities.jar was a EJB project and not a Java Project ( POJO ) . View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4256214#4256214 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4256214

[jboss-user] [EJB] - Re: NameAlreadyBoundException when migrate from JBoss 4.2.2.

2009-09-21 Thread wluque
Hi , I fixed it this way : fmk-entities.jar (ejb/persistence) - convert to a Java Project (POJO) . Move persistence.xml to EAR/META-INF . and Add jar-filefmk-entities.jar/jar-file My final arquitecture. FMK-EAR -- fmk.war ( seam 2.2 ) PLATFORM CONSOLE -- fmk-seam.jar (ejb) ( My seam's basic

[jboss-user] [Persistence] - Re: ClassNotFoundException Moving Persistence.xml From EJB/M

2009-09-14 Thread wluque
This seems strange [fmk-zentities.jar] , in the : Caused by: java.lang.ClassNotFoundException: fmk-zentities.jar.com.multiSistemas.fmk.entity.security.UserSecuritySpaceAccess View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4255140#4255140 Reply to the post :

[jboss-user] [Persistence] - ClassNotFoundException Moving Persistence.xml From EJB/META-

2009-09-14 Thread wluque
Hi, i have a application with the next structure (work fine un jboss 4.2.2.ga) : ..FMK-EAR ..fmk-war ..fmk-seam ( Seam Actions Ejb ) ..fmk-sessionEjb ( Ejb beans ) ..fmk-zentities( Ejb with the entities definition ) ..META-INF application.xml

[jboss-user] [EJB] - Re: NameAlreadyBoundException when migrate from JBoss 4.2.2.

2009-09-14 Thread wluque
Now I have trouble with persistence.xml . In my application : FMK-EAR -- fmk.war ( seam 2.2 ) PLATFORM CONSOLE -- fmk-seam.jar (ejb) ( My seam's basic actions ) -- fmk-serviceEjb.jar (ejb) ( My plattaform services ) -- fmk-entities.jar (ejb/persistence) ( My basic plattaform entities /

[jboss-user] [EJB] - Re: NameAlreadyBoundException when migrate from JBoss 4.2.2.

2009-09-11 Thread wluque
Hi jaikiran, thank you for you prompt reply and you help. i think too it used to overwrite the earlier bound instance with the second instance. You say that is a bug in Jboss 5.1 ? or JBoss 4.2 ? I will try to restructure my application to deploy ejb-shared only once. But it is not simple,

[jboss-user] [EJB] - Re: NameAlreadyBoundException when migrate from JBoss 4.2.2.

2009-09-11 Thread wluque
ok , First I will explain more about the structure of my application. I have a EAR ( FMK ) with the basic components of my business application : security aspects , service daemons .. etc . and Statics singleton class cache of my system activities .. and more ... FMK-EAR --

[jboss-user] [EJB] - Re: Not able to Deploy Local ejbs across multiple ears

2009-09-10 Thread wluque
Hi , I have the same example , work fine for me in Jboss 4.2.2.GA , but I have the same InstanceAlreadyExistsException error in Jboss 5.1.0.GA . I need only one EJB instance reference running in the server used by the all EARS. Taht work in jboss4.2.2. but not work in Jboss 5.1 . Any idea?

[jboss-user] [EJB] - NameAlreadyBoundException when migrate from JBoss 4.2.2.GA t

2009-09-10 Thread wluque
Hi , in first time sorry for mi english ! I have multiple ear's sharing one EJB . This EJB is deployed in one each ear . EAR-A war ejb-a ejb-shared EAR-B war ejb-b ejb-shared I need only one instance/reference of ejb-shared , and I use @LocalBinding(jndiBinding=X) for that

[jboss-user] [JBoss Tools (users)] - Re: upgrade to WTP 2.0.2 breaks EAR deployment in JBoss Tool

2008-04-04 Thread wluque
hello , any idea ? Walter View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4141727#4141727 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4141727 ___ jboss-user mailing list

[jboss-user] [EJB 3.0] - Re: Get ear name

2008-03-20 Thread wluque
any idea? Thanks!!! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4138153#4138153 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4138153 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: I can't run a simple stateless bean with my Jboss and Se

2008-02-13 Thread wluque
OK ! , New Seam Project ( EAR ! ) . View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4129188#4129188 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4129188 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: I can't run a simple stateless bean with my Jboss and Se

2008-02-12 Thread wluque
Thanks for help me ... you say : jboss tools web / JSF / JSF Project ? I created my project from /seam/Seam Web Project , called registrationExample in src/action ... Register (local interface) ... RegisterAction ( EJB ) in WebContent ... register.xhtml ... regisdtered.xhtml Project

[jboss-user] [JBoss Seam] - Re: I can't run a simple stateless bean with my Jboss and Se

2008-02-12 Thread wluque
Hello, i have the same problem , i understand .. i need to make EAR deployment ... I Working in eclipse 3311 I create a seam web project registrationExample , it automatic generated in my workspace this projects: registrationExample ( Web Project ) registrationExample-test ( Java

[jboss-user] [JBoss Seam] - Re: I can't run a simple stateless bean with my Jboss and Se

2008-02-12 Thread wluque
my application.xml in the EAR ?xml version=1.0 encoding=UTF-8? application xmlns=http://java.sun.com/xml/ns/javaee; xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; xsi:schemaLocation=http://java.sun.com/xml/ns/javaee