[jboss-user] [EJB/JBoss] - Re: SessionBeans referring each other locally

2008-04-11 Thread rabbiaqaswar
Thanks alot :) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4143391#4143391 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4143391 ___ jboss-user mailing list

[jboss-user] [EJB/JBoss] - Re: Whatà ‚Â´s this? -

2008-04-11 Thread lavh
FrankTheTank wrote : Are the classes used by both still the same? | | The naming of the ear should not be an issue. The contents are important. | | The error looks to happen here: | | | at $Proxy120.notifyPaymentFailed(Unknown Source) | | | Did anything change here? |

[jboss-user] [EJB/JBoss] - Re: Finder exception after upgrade from 4.0.5 to 4.2.2

2008-04-10 Thread jaikiran
Daoud, You have not posted the exception stacktrace, so i can't say whether its the same error. From what aazaroff posted, here's what i can see: anonymous wrote : 2008-03-18 09:55:02,836 WARN [com.arjuna.ats.jta.logging.loggerI18N] [com.arjuna.ats.internal.jta.t |

[jboss-user] [EJB/JBoss] - Re: SessionBeans referring each other locally

2008-04-10 Thread jaikiran
Since this is an EJB3 question, you should have posted this in the EJB3 forum here http://www.jboss.com/index.html?module=bbop=viewforumf=221, where you might have got a quicker response :) See this http://www.jboss.com/index.html?module=bbop=viewtopicp=4129651 for a solution to your issue.

[jboss-user] [EJB/JBoss] - Re: Deploying MDB on Jboss 4.2.2

2008-04-09 Thread jaikiran
I usually place only the jbossall-client.jar from the %JBOSS_HOME%\client folder in my client classpath. This jar contains almost every JBoss class that is required by the client. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142580#4142580 Reply to the

[jboss-user] [EJB/JBoss] - Re: Serializable no remote classloading

2008-04-09 Thread avogt_sundn
Is there a solution for scoped class loaders? Is it really the problem? The configuration is not working for me, I wonder wether that is because of the scoped class loaders i am using for each ear (EJBs calling each other across ear boundaries). View the original post :

[jboss-user] [EJB/JBoss] - Re: How to get the current user in a SessionBean from the Se

2008-04-09 Thread beherenow
yes, thats true. But my problem is that i want to get the sessionContext from the Controller of my application. I put that code into the bean to reference: @Stateless public class ProcessPaymentBean implements ProcessPaymentLocal{ @Resource SessionContect sessionContext; //private

[jboss-user] [EJB/JBoss] - Re: How to get the current user in a SessionBean from the Se

2008-04-09 Thread beherenow
I'm not using the ejb like entity associated to the DB, may it be the problem? Then, how can I get the sessionContext? The container calls the setSessionContext() method after the instance creation. Maybe not works. Thanks! View the original post :

[jboss-user] [EJB/JBoss] - Re: Finder exception after upgrade from 4.0.5 to 4.2.2

2008-04-09 Thread Daoud
Hello, Am running into the same situation with exactly the same stack trace. Any idea/pointer is greatly appreciated. Regards Daoud AbdelMonem Faleh View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4143030#4143030 Reply to the post :

[jboss-user] [EJB/JBoss] - Re: Classloader nightmare and ClassCastException. Isolatio

2008-04-08 Thread jaikiran
Which version of Hibernate do you use? How have you packaged the hibernate jar in the EAR (where is it placed)? Please post the complete exception stacktrace that you see. Also, when Hibernate session factory gets built, it prints out the version of Hibernate being used. Something like: |

[jboss-user] [EJB/JBoss] - Re: Classloader nightmare and ClassCastException. Isolatio

2008-04-08 Thread tnine
I'm using the following version of Hibernate and Spring Hibernate 3.2.6.ga Hibernate Annotations 3.3.0.ga Spring Framework 2.0.5 Here's the stacktrace | 19:24:05,422 ERROR [JMSContainerInvoker] Exception in JMSCI message listener | javax.ejb.TransactionRolledbackLocalException: Could not

[jboss-user] [EJB/JBoss] - Re: Classloader nightmare and ClassCastException. Isolatio

2008-04-08 Thread tnine
Also, just an FYI, removing the hibernate-annotations jar from my server's lib directory fixes the issue. However this doesn't seem to be a very good solution. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142265#4142265 Reply to the post :

[jboss-user] [EJB/JBoss] - Re: Classloader nightmare and ClassCastException. Isolatio

2008-04-08 Thread jaikiran
anonymous wrote : | Hibernate 3.2.6.ga | Hibernate Annotations 3.3.0.ga | Spring Framework 2.0.5 anonymous wrote : Coincidentally, it works with Hibernate 3.2.0.ga and Annotations 3.2.0.ga. The exception stacktrace that you posted does not show anything related to hibernate. But going

[jboss-user] [EJB/JBoss] - Re: Classloader nightmare and ClassCastException. Isolatio

2008-04-08 Thread tnine
That's very strange. I'll try packaging the search up tomorrow. I'm not sure how this will solve my issue, since both of my hibernate dependencies are in maven, and transitive dependencies are be included. I still don't understand why I'm having this issue in the first place. If my

[jboss-user] [EJB/JBoss] - Re: How to get the current user in a SessionBean from the Se

2008-04-08 Thread beherenow
That's right but.. How do you get the current sessionContext? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142324#4142324 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4142324

[jboss-user] [EJB/JBoss] - Re: How to get the current user in a SessionBean from the Se

2008-04-08 Thread jaikiran
beherenow wrote : That's right but.. | | How do you get the current sessionContext? There's a callback method setSessionContext which gets called by the container. See this for more details

[jboss-user] [EJB/JBoss] - Re: Classloader nightmare and ClassCastException. Isolatio

2008-04-08 Thread tnine
Well, I found a work around by following the formula from the previous post. I was getting the following exception at the bottom of my trace. I accidentally posted the wrong section in my earlier post | Caused by: org.springframework.beans.factory.BeanCreationException: Error creating

[jboss-user] [EJB/JBoss] - Re: Container not yet available problem

2008-04-06 Thread jaikiran
For anyone who runs this, see the solution at http://www.jboss.com/index.html?module=bbop=viewtopict=133134 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4141882#4141882 Reply to the post :

[jboss-user] [EJB/JBoss] - Re: Problem with Entity Bean

2008-03-31 Thread allanrj
Im using ejb 2.0 on my application. Im using a session bean (façade) to access entity bean. I have follow entity: Session, to manage a user session. Well, when i logon, jboss using the follow commands: 2008-03-31 10:00:05,269 DEBUG

[jboss-user] [EJB/JBoss] - Re: Problem with Entity Bean

2008-03-28 Thread FrankTheTank
Sounds more like you have an entity with two primary keys. Look if you have @Id defined twice or something like that. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4139695#4139695 Reply to the post :

[jboss-user] [EJB/JBoss] - Re: Problem with Entity Bean

2008-03-28 Thread allanrj
Well, I using a ejb to persisting the session, when i log in the ejb has been created. I´m close browser and try log in again, but exception has appeared. I think jboss doesnt destroy/remove my earlier ejb. This persists on memory or cache, i dont know View the original post :

[jboss-user] [EJB/JBoss] - Re: Problem facing in the configuration of instance pool siz

2008-03-27 Thread jaikiran
Being discussed at http://www.jboss.com/index.html?module=bbop=viewtopict=132492 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4139345#4139345 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4139345

[jboss-user] [EJB/JBoss] - Re: Problem with Entity Bean

2008-03-27 Thread allanrj
well this error persist how can i solve this ?? problem on ejb or configuration of jboss ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4139490#4139490 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4139490

[jboss-user] [EJB/JBoss] - Re: Dependency bug with multiple modules in EAR

2008-03-27 Thread jaikiran
Being discussed at http://www.jboss.com/index.html?module=bbop=viewtopict=132559 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4139538#4139538 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4139538

[jboss-user] [EJB/JBoss] - Re: Unable to passivate due to ctx lock, then JBossRollbackE

2008-03-26 Thread patlv23
It turns out this was a Transaction timeout issue. The exception is thrown around 15 minutes after the process started which happens to be the TransactionTimeout setting. It's odd though that sometimes I get the above error and other times the more explicit timeout error. View the original post

[jboss-user] [EJB/JBoss] - Re: EJB2's and EJB3's in the same container

2008-03-24 Thread jaikiran
Yes its possible. I have a local setup of JBoss-4.2.2 where i have sample applications on EJB2 and EJB3 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4138489#4138489 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4138489

[jboss-user] [EJB/JBoss] - Re: EJB2's and EJB3's in the same container

2008-03-24 Thread [EMAIL PROTECTED]
Thanks man!! Eivind View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4138520#4138520 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4138520 ___ jboss-user mailing list

[jboss-user] [EJB/JBoss] - Re: Finder exception after upgrade from 4.0.5 to 4.2.2

2008-03-18 Thread aazaroff
No there were no exceptions on startup. I just bounced the instance and tried to run a transaction through. Here is the entier log: As you can see there are no exceptions at all until I try to run a transaction through at the very end after the classic server. The only warnings I saw were for

[jboss-user] [EJB/JBoss] - Re: Hot deploying EJBs

2008-03-17 Thread FrankTheTank
Do *.jar files even get read by the JBoss hot deploy scanner? Or do you mean a *.ear? Did you replace the *.ear? Just to make sure you are using the correct files. Countless times I have tripped over that one. Are you using exploded deployment? If not, skip this part. If you are curious, read

[jboss-user] [EJB/JBoss] - Re: local entity bean lookup from session bean goes wrong

2008-03-16 Thread jaikiran
If you are trying to create a local ref for a entity bean inside a session bean, then this piece of code | ejb-local-ref | ejb-ref-nameejb/Book/ejb-ref-name | ejb-ref-typeEntity/ejb-ref-type | local-homeBookHome/local-home |

[jboss-user] [EJB/JBoss] - Re: Hot deploying EJBs

2008-03-16 Thread javarebel
If you deploed the application using EAR file, then just touch your application.xml file. It will restart that project only. If you are using custom ANT file, then this is very easy to do. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4136946#4136946 Reply to

[jboss-user] [EJB/JBoss] - Re: local entity bean lookup from session bean goes wrong

2008-03-16 Thread y0ur1
jaikiran wrote : If you are trying to create a local ref for a entity bean inside a session bean, then this piece of code | | | ejb-local-ref | | ejb-ref-nameejb/Book/ejb-ref-name | | ejb-ref-typeEntity/ejb-ref-type | |

[jboss-user] [EJB/JBoss] - Re: Too many open files exception JBOSS 4.2

2008-03-14 Thread georges.goebel
Hi, I had the same problem with the close_wait connections. I managed to solve the problem with the workaround of using the jbossnative 2.0.3 library Georges View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4136730#4136730 Reply to the post :

[jboss-user] [EJB/JBoss] - Re: EJB cannot be Bound

2008-03-11 Thread jaikiran
It's a DEBUG log so you can ignore it, i guess. The more important (INFO) log is this: anonymous wrote : | 2008-03-10 14:25:10,876 INFO [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'SitesSB' to jndi 'ejb/br/com/gcm/ejb/sb/SitesSB' So you can lookup the bean using the jndi-name

[jboss-user] [EJB/JBoss] - Re: The session bean must implement either a remote home and

2008-03-11 Thread jaikiran
Is that the only exception that you see or are there any other exceptions in the server.log View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4135571#4135571 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4135571

[jboss-user] [EJB/JBoss] - Re: Too many open files exception JBOSS 4.2

2008-03-11 Thread eightmd
Was there any resolution to this? We are seeing the same problem. We are front ending JBoss with Apache 2.2.6 and using JBoss 4.2.2GA. We are on Linux FC6. After some time it runs into the Too many open files problem. This is under a heavy test load, but we still expect it to recover and we

[jboss-user] [EJB/JBoss] - Re: Load/read resources...

2008-03-11 Thread Cinaed
Oops...noticed I posted this to wrong forum. Will post it again in the esb-forum. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4135755#4135755 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4135755

[jboss-user] [EJB/JBoss] - Re: J2EE application startup code?

2008-03-10 Thread f.baronti
Bounce View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4135222#4135222 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4135222 ___ jboss-user mailing list jboss-user@lists.jboss.org

[jboss-user] [EJB/JBoss] - Re: EJB error when invoked by a jsp ........ please help

2008-03-08 Thread sagar_chopade
Hi sajhak, did your ejb application deployed successfully? can you please provide more details about your applcations like class file hierarchy and deployment descriptor settings ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4135057#4135057 Reply to the post

[jboss-user] [EJB/JBoss] - Re: java.lang.LinkageError Exception

2008-03-08 Thread jaikiran
Are you packaging any jar files containing the javax.ejb.* packages? If yes, then for a simple fix, remove them from your application packaging. They are already available in the the jar files under %JBOSS_HOME%/server/ serverName/lib folder. For more details about classloading and issues that

[jboss-user] [EJB/JBoss] - Re: The session bean must implement either a remote home and

2008-03-08 Thread rodosa
JbpmFacadeLocal is my home interface: | package session; | | import javax.ejb.*; | | public interface JbpmFacadeLocal extends EJBHome{ | | JbpmFacadeRemote create() throws javax.ejb.CreateException, java.rmi.RemoteException; | } | View the original post :

[jboss-user] [EJB/JBoss] - Re: java.lang.LinkageError Exception

2008-03-08 Thread Krishnan7785
Thanks Jaikiran for yr references...I was somehow able to resolve the problem. Initially all i did was to create an entity bean and a web client that would call my entity bean. Then i had created a EAR containing the war and Jar files and deployed it on the server. Everything seemed to be

[jboss-user] [EJB/JBoss] - Re: The session bean must implement either a remote home and

2008-03-07 Thread jaikiran
homesession.JbpmFacadeLocal/home Looks like a typo in your configuration. Instead of the home interface, you seem to have mentioned the local interface. Point it to the home interface and redeploy your application. View the original post :

[jboss-user] [EJB/JBoss] - Re: Finder exception after upgrade from 4.0.5 to 4.2.2

2008-03-05 Thread jaikiran
anonymous wrote : Unabled to enlist resource, see the previous warnings. Do you see any previous errors/warning in the server.log file? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4134206#4134206 Reply to the post :

[jboss-user] [EJB/JBoss] - Re: Queer error: java.lang.LinkageError: loader constraints

2008-03-04 Thread jaikiran
Looks like a classloader issue. I guess you have more than one jar, in the classpath, containing the EJBHelper because of which you are running into this issue. See the following wiki for more detailed explanation about how classloading works on JBoss:

[jboss-user] [EJB/JBoss] - Re: TimerService in Transaction?

2008-03-04 Thread snarff
Also, I notice that my server.log is filled up with logging messages from com.arjuna.ats.arjuna etc. (level DEBUG) Could it be that crash recovery of a timer keeps my server busy? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4134012#4134012 Reply to the

[jboss-user] [EJB/JBoss] - Re: Finder exception after upgrade from 4.0.5 to 4.2.2

2008-03-04 Thread aazaroff
Here is the stack trace. It is always the same. It appears the root cause is: org.jboss.resource.JBossResourceException: Could not enlist in transaction on entering meta-aware object! | | 2008-03-04 12:07:37,586 ERROR

[jboss-user] [EJB/JBoss] - Re: transaction timeout for MDB

2008-03-03 Thread jewom
I have the same question ! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4133628#4133628 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4133628 ___ jboss-user mailing list

[jboss-user] [EJB/JBoss] - Re: JNDI problem

2008-03-01 Thread rodosa
Sorry!!! This is a stupid mistake! I forget establish the dependece between my web tier and my ejb tier in Eclipse. Thanks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4133448#4133448 Reply to the post :

[jboss-user] [EJB/JBoss] - Re: EJB error when invoked by a jsp ........ please help

2008-03-01 Thread sajhak
now i got the following error please help 01:20:01,953 INFO [STDOUT] Couldn't create converter bean.$Proxy65 cannot be cast to converter.ejb.Converter 01:20:03,671 ERROR [[jsp]] Servlet.service() for servlet jsp threw exception java.lang.NullPointerException at

[jboss-user] [EJB/JBoss] - Re: Not finding org.jboss.ejb3.StrictMaxPool class

2008-02-29 Thread jaikiran
Answered at http://www.jboss.com/index.html?module=bbop=viewtopict=130955 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4133120#4133120 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4133120

[jboss-user] [EJB/JBoss] - Re: behavior of SFSB handle from JBoss V3.2.7 compared to JB

2008-02-29 Thread Frito
Well, I ended up with our own implementation of the NamingContextFactory. I think this should be the appropriate way to handle this at all ;-) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4133167#4133167 Reply to the post :

[jboss-user] [EJB/JBoss] - Re: Finder exception after upgrade from 4.0.5 to 4.2.2

2008-02-29 Thread aazaroff
Here are my descriptors: | jbosscmp-jdbc |defaults | create-tablefalse/create-table | remove-tablefalse/remove-table |/defaults | | enterprise-beans | entity | ejb-nameXmlfeedrequestsBean/ejb-name |

[jboss-user] [EJB/JBoss] - Re: Migrating from jBoss4.0.5GA to 4.2.2GA

2008-02-28 Thread nsmith80
nsmith80 wrote : I'm trying to use 4.2.2GA for an EJB3 application that currently runs in 4.0.5GA without any major issues. I'm running into an issue where the app server is trying to use ejb-jar.xml file even though I don't use it. I get the following warnings when I start the server: |

[jboss-user] [EJB/JBoss] - Re: Migrating from jBoss4.0.5GA to 4.2.2GA

2008-02-28 Thread nsmith80
Didn't mean to add anything. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4132945#4132945 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4132945 ___ jboss-user mailing list

[jboss-user] [EJB/JBoss] - Re: Migrating from jBoss4.0.5GA to 4.2.2GA

2008-02-27 Thread jaikiran
Can you post the contents of your bean? Are you injecting any other beans? While posting the contents, remember to wrap it in a code block, using the Code button in the message editor window. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4132402#4132402

[jboss-user] [EJB/JBoss] - Re: Too many open files exception JBOSS 4.2

2008-02-27 Thread jaikiran
See this http://www.jboss.com/index.html?module=bbop=viewtopict=72154 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4132410#4132410 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4132410

[jboss-user] [EJB/JBoss] - Re: Can't replace container configuration for MDB

2008-02-27 Thread MarcoDavids
Hi Legga, Have you managed to get your MDB to listen to the remote queue? I am trying to do exactly the same thing but i get stuck when i deploy my MDB. It fails to connect to the remote queue. Any suggestions? Tx Marco View the original post :

[jboss-user] [EJB/JBoss] - Re: Migrating from jBoss4.0.5GA to 4.2.2GA

2008-02-27 Thread nsmith80
Here's the bean, the interface(s) implemented, and class he inherits from. Basically the business tier was built on a hierarchical scheme where the highest level user BeloAdmin would inherit his characteristics from the lower levels. ie. RegionAdmin @Stateless public class

[jboss-user] [EJB/JBoss] - Re: Migrating from jBoss4.0.5GA to 4.2.2GA

2008-02-27 Thread nsmith80
nsmith80 wrote : Here's the bean, the interface(s) implemented, and class he inherits from. Basically the business tier was built on a hierarchical scheme where the highest level user BeloAdmin would inherit his characteristics from the lower levels. ie. RegionAdmin | | | |

[jboss-user] [EJB/JBoss] - Re: Error invoking ejbTimeout

2008-02-26 Thread asookazian
I looked at the JMX console and determined that the DefaultDS was being used (HSQLDB). Also, GeneralPurposeDatabasePersistencePlugin class indicates that a table named TIMERS is being created and timer scheduling instances are being inserted into that table. I deleted all the records and the

[jboss-user] [EJB/JBoss] - Re: Too many open files exception JBOSS 4.2

2008-02-25 Thread jaikiran
Post the entire exception stacktrace. Which exact version of JBoss do you use (JBoss 4.2.1 or JBoss 4.2.2)? Which version and vendor of Java do you use? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4131761#4131761 Reply to the post :

[jboss-user] [EJB/JBoss] - Re: glbal JNDI namespace confused. please help

2008-02-25 Thread jaikiran
anonymous wrote : +- [EMAIL PROTECTED] First, you need to fix the random number that is appended to the jndi-name of your EJB's local home. See this http://wiki.jboss.org/wiki/Wiki.jsp?page=WhyDoesTheLocalNameContainARandomNumber for details. Once you fix that, your JNDI tree might look like

[jboss-user] [EJB/JBoss] - Re: ejb application

2008-02-25 Thread allanrj
Hi jaikiran, Im using jboss 4.2.2 and java 1.6 Stacktrace: javax.naming.CommunicationException [Root exception is java.io.InvalidClassException: org.jboss.invocation.InvokerInterceptor; unable to create instance] jboss.xml ?xml version=1.0 encoding=UTF-8? | !DOCTYPE jboss PUBLIC

[jboss-user] [EJB/JBoss] - Re: ejb application

2008-02-25 Thread jaikiran
anonymous wrote : Stacktrace: | javax.naming.CommunicationException [Root exception is java.io.InvalidClassException: org.jboss.invocation.InvokerInterceptor; unable to create instance] You havent posted the entire exception stacktrace that you see in the logs yet. Going by this one line

[jboss-user] [EJB/JBoss] - Re: ejb application

2008-02-25 Thread allanrj
Full StackTrace: javax.naming.CommunicationException [Root exception is java.io.InvalidClassException: org.jboss.invocation.InvokerInterceptor; unable to create instance] | at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:780) | at

[jboss-user] [EJB/JBoss] - Re: ejb application

2008-02-25 Thread jaikiran
In your client's classpath, you have an incorrect version of JBoss jar. Remove the existing JBoss related jars from the client's classpath and place the jbossall-client.jar (which is under %JBOSS_HOME%/client folder) in the client's classpath. Basically, the jars on the client side should be

[jboss-user] [EJB/JBoss] - Re: ejb application

2008-02-25 Thread allanrj
Thankz I replace the bossall-client.jar and located the reference and what about the error log SitesSB cannot be Bound, doesn't have local and local home interfaces on deploy the ejb jar, I need to do anything else ? View the original post :

[jboss-user] [EJB/JBoss] - Re: ejb application

2008-02-25 Thread jaikiran
anonymous wrote : what about the error log SitesSB cannot be Bound, doesn't have local and local home interfaces on deploy the ejb jar, I need to do anything else ? You will have to post that exception stacktrace too. I did not see this exception in any of the stacktraces that you posted so

[jboss-user] [EJB/JBoss] - Re: ejb application

2008-02-25 Thread allanrj
Well , ejb has been deployed and the class client run ok too. No problem for now, thank a lot, but a i dont understand the reason of program runs normally 2008-02-25 11:49:49,156 DEBUG [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] SitesSB cannot be Bound, doesn't have local and local

[jboss-user] [EJB/JBoss] - Re: glbal JNDI namespace confused. please help

2008-02-25 Thread gcameo
thank you that was very very helpful View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4131886#4131886 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4131886 ___ jboss-user mailing

[jboss-user] [EJB/JBoss] - Re: Too many open files exception JBOSS 4.2

2008-02-25 Thread ajayks
Hello JaiKiran, Thanks for the reply. I am using JDK1.5 of SunMicrosystem and the version of JBOSS I have used is 4.2.2.GA. The following are the stack trace for the exception I have got:- 11:10:22,744 WARN [UILServerILService] Failed to setup client connection java.net.SocketException: Too

[jboss-user] [EJB/JBoss] - Re: ejb application

2008-02-23 Thread jaikiran
Which version of JBoss and Java do you use? Post the entire exception stacktrace and the contents of your jboss.xml file. While posting, remember to wrap the contents in a code block using the Code button in the message editor window. View the original post :

[jboss-user] [EJB/JBoss] - Re: System.getProperty(

2008-02-22 Thread gordonh
The application is a Java WebStart application. Here is what is displayed when I start JBoss (includes version info). === JBoss Bootstrap Environment JBOSS_HOME: C:\JAVA\jboss-4.0.5.GA\bin\\.. JAVA: C:\Program

[jboss-user] [EJB/JBoss] - Re: System.getProperty(

2008-02-22 Thread jaikiran
anonymous wrote : The application is a Java WebStart application. The Java Webstart application runs in its own JVM and hence wont have the system properties available on the server. The application server runs in its own JVM and if you use the System.getProperty from the code which runs on the

[jboss-user] [EJB/JBoss] - Re: System.getProperty(

2008-02-21 Thread jaikiran
anonymous wrote : | System.getProperty(jboss.server.home.dir) | | Should this not produce the home directory of JBoss out-of-the-box, or do I need to perform some sort of manual initialization for this setting (ie - look into a file, pull a manually set config value for the dir, then set

[jboss-user] [EJB/JBoss] - Re: System.getProperty(

2008-02-21 Thread jaikiran
Also, when you start JBoss, what does the initial few lines in the logs show. On my local setup, i see this: === | | JBoss Bootstrap Environment | | JBOSS_HOME: D:\jboss-4.0.5.GA\bin\\.. | | JAVA:

[jboss-user] [EJB/JBoss] - Re: How to specify maximum instances allowed for a SFSB

2008-02-20 Thread grdzeli_kaci
hello tony , i have the same problem with SLSB. the pooling parameters for SLSB and SFSB is described info jboss configuration file : standardjboss.xml | container-configuration | container-nameStandard Stateless SessionBean/container-name | call-loggingfalse/call-logging |

[jboss-user] [EJB/JBoss] - Re: why EJB container-managed transaction was commited after

2008-02-20 Thread guidoscalise
What transaction demarcation strategy are you using? Try to replicate your case in a simpler scenario, post some code and logs for us to help you. It's quite difficult to help without a single line of code/log/whatever. Guido View the original post :

[jboss-user] [EJB/JBoss] - Re: Lookup EJB 3 + ClassCastException ( jboss-4.2.2.GA )

2008-02-20 Thread jaikiran
Have you setup the ears for classloader isolation? See these for details: http://wiki.jboss.org/wiki/Wiki.jsp?page=ClassCastExceptions http://wiki.jboss.org/wiki/Wiki.jsp?page=ClassLoadingConfiguration http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossClassLoadingUseCases Create a jboss-app.xml

[jboss-user] [EJB/JBoss] - Re: Lookup EJB 3 + ClassCastException ( jboss-4.2.2.GA )

2008-02-20 Thread pedro.neves
Thank you , Jaikiran I already had the jboss-app.xml in META-INF, added the party loader-repository-config but has not worked | jboss-app | loader-repositorymyApp:loader=mytest-web | loader-repository-configjava2ParentDelegation=false/loader-repository-config |

[jboss-user] [EJB/JBoss] - Re: Can't replace container configuration for MDB

2008-02-18 Thread Legga
It would be great if someone from the Team had a look at this. Could this be a bug? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4130265#4130265 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4130265

[jboss-user] [EJB/JBoss] - Re: MDB failing

2008-02-18 Thread jaikiran
Let's continue this discussion in your other thread at http://www.jboss.com/index.html?module=bbop=viewtopict=130245 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4130276#4130276 Reply to the post :

[jboss-user] [EJB/JBoss] - Re: Cross-referencing EJBs doesn't work

2008-02-15 Thread jaikiran
Since this question relates to EJB3, i would recommend you post this in the EJB3 forum at http://jboss.com/index.html?module=bbop=viewforumf=221 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4129623#4129623 Reply to the post :

[jboss-user] [EJB/JBoss] - Re: Cross-referencing EJBs doesn't work

2008-02-15 Thread linoux
Thanks for your response, I will do that... I was not sure if this was an EJB3 issue, or if the same problem occurs with older versions of EJB... -- Céline View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4129629#4129629 Reply to the post :

[jboss-user] [EJB/JBoss] - Re: jboss 5.0 release date

2008-02-08 Thread [EMAIL PROTECTED]
AS5 *is* of high priority but the switch of kernel/deployers complicates things, thus the long delay. We currently target end of Q2 for the final release but if you feel brave you can try Beta4 comming out next week. Nevertheless, most of the JEE 5 functionality is available with AS 4.2.x.

[jboss-user] [EJB/JBoss] - Re: jboss 5.0 release date

2008-02-08 Thread mohammadk
Thanks for the quick response. Please correct me if I'm wrong, but my understanding is that DI (Dependency Injection) in Servlet Container is not available with AS 4.2.X. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4127946#4127946 Reply to the post :

[jboss-user] [EJB/JBoss] - Re: jboss 5.0 release date

2008-02-08 Thread [EMAIL PROTECTED]
Indeed, this is not available in AS 4.2. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4128040#4128040 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4128040 ___ jboss-user mailing

[jboss-user] [EJB/JBoss] - Re: ClassCastException in home.create

2008-02-06 Thread ghz_gordo
Hello GBardou !!! i have the same problem... and.. if is possible... here u use the org.omg.CORBA.portable.IDLEntity ? i dont find it from my project... sorry this answer... but i new from java.. and jboss... and have other topic if the same problem...

[jboss-user] [EJB/JBoss] - Re: Can't replace container configuration for MDB

2008-02-06 Thread Legga
I found that it is possible to specify a dead-letter queue using annotations. For those wondering, they can be found here: org.jboss.resource.adapter.jms.inflow.JmsActivationSpec But the question of using deployment descriptors is still valid. Can someone help me figure out what's wrong with my

[jboss-user] [EJB/JBoss] - Re: increase passivate timeout of Entity Beans (RO)

2008-02-05 Thread Anna_Lut
I also try to increase/decrase the value of max-bean-age But it seems, this parameter is ignored.. Because there are no difference in passivation timeout, when max-bean-age10/max-bean-age and max-bean-age600/max-bean-age in both examples passivation timeout is 10 min. I want to decrease

[jboss-user] [EJB/JBoss] - Re: increase passivate timeout of Entity Beans (RO)

2008-02-05 Thread Anna_Lut
I use /all configuration. JBOSS 3.2.1 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4126637#4126637 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4126637 ___ jboss-user mailing

[jboss-user] [EJB/JBoss] - Re: EJB Passivation Time

2008-02-04 Thread JEFFASTOREY
Alright I figured out what is going on. Need to use the ejb3-aop-interceptors.xml file to configure ejb3 beans. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4126406#4126406 Reply to the post :

[jboss-user] [EJB/JBoss] - Re: org.jboss.ejb3.remoting.BaseRemoteProxy serialid excepti

2008-02-01 Thread jaikiran
See this http://www.jboss.com/index.html?module=bbop=viewtopict=126187 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4125471#4125471 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4125471

[jboss-user] [EJB/JBoss] - Re: JBoss/EJB3.0 problems

2008-01-31 Thread landoo
I am able to configure the context using @WebContext annotation, but still the @SoapBinding thing is not working. I am using jboss 4.2.2 and jdk 5.0 with EJB 3 Any idea? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4125111#4125111 Reply to the post :

[jboss-user] [EJB/JBoss] - Re: Binding to java:comp/env

2008-01-31 Thread smbdy
I tried to use @LocalBinding(jndiBinding=MyTestSessionBean) but it didn't solve my problem. It's located still in Global JNDI Namespace View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4125226#4125226 Reply to the post :

[jboss-user] [EJB/JBoss] - Re: org.jboss.ejb3.remoting.BaseRemoteProxy serialid excepti

2008-01-31 Thread jimmycallaghan
We're getting an identical error when an application deployed on JBoss422 tries to get a remote interface to an ejb that's deployed on JBoss404. I suspect that there has been a change in the org.jboss.ejb3.remoting.BaseRemoteProxy. We have an isolated class loader as default on our JBoss

[jboss-user] [EJB/JBoss] - Re: Anyone got EJBs deployed with Sybase ?

2008-01-29 Thread suresh.don
Hi For having the SybaseDS to be available in your Application server you need to deploy the sybase-ds.xml in the deploy folder of the JBoss. The sample sybase-ds.xml file will be available in the examples of jboss. examples/jca/sybase-ds.xml Regards, Suresh.A View the original post :

[jboss-user] [EJB/JBoss] - Re: How can we get the Password of Sybase for EJB instead of

2008-01-29 Thread suresh.don
Using the hard coded pwd in Sybase-ds.xml everything is working fine. But If I change the password of the sybase DB it is not working. So I want a solution for this. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4124344#4124344 Reply to the post :

[jboss-user] [EJB/JBoss] - Re: Bug with whitespace in jboss-web.xml

2008-01-25 Thread javidjamae
I created JIRA issue JBAS-5173 (http://jira.jboss.org/jira/browse/JBAS-5173) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4123511#4123511 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4123511

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