[jboss-user] [EJB 3.0 Users] - Re: JBoss 4.2.1 RemoteEJB Lookup ClassCastException

2009-11-13 Thread kyle.bober
So I am assuming this is a bug in JBoss 4.2.1 and Remote EJB calls from a client are not possible... ? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4265504#4265504 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4265504

[jboss-user] [EJB 3.0 Users] - Re: JBoss 4.2.1 RemoteEJB Lookup ClassCastException

2009-11-12 Thread kyle.bober
Okay so I added the following code to inject the remote EJB instance like so | @EJB(mappedName=ICustomizationRemote.EJB_JNDI) | ICustomizationRemote theCustomizationService; | I know run into the following exception | com.thesearchagency.mms.service.user.UserException: Non matching ty

[jboss-user] [EJB 3.0 Users] - Re: JBoss 4.2.1 RemoteEJB Lookup ClassCastException

2009-11-12 Thread kyle.bober
So I modified my code as you stated by injecting the RemoteEJB interface using @EJB like so: | @EJB(mappedName=ICustomizationRemote.EJB_JNDI) | ICustomizationRemote theCustomizationService; | I now see the following exception. | com.thesearchagency.mms.service.user.UserException: No

[jboss-user] [EJB 3.0 Users] - Re: JBoss 4.2.1 RemoteEJB Lookup ClassCastException

2009-11-12 Thread kyle.bober
UserService-1.0 is making a remote call to CustomizationService-1.0 View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4265339#4265339 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4265339 ___

[jboss-user] [EJB 3.0 Users] - Re: JBoss 4.2.1 RemoteEJB Lookup ClassCastException

2009-11-12 Thread kyle.bober
FYI: The JNDI names for the two services I am trying to access are CustomizationService-1.0 UserService-1.0 I had changed my code sample due to this being my client's code. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4265338#4265338 Reply to the post : ht

[jboss-user] [EJB 3.0 Users] - Re: JBoss 4.2.1 RemoteEJB Lookup ClassCastException

2009-11-12 Thread kyle.bober
Yes, that is correct. What do you mean by @Service? Am I missing and annotation? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4265335#4265335 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4265335 __

[jboss-user] [EJB 3.0 Users] - Re: JBoss 4.2.1 RemoteEJB Lookup ClassCastException

2009-11-12 Thread kyle.bober
Another piece of information that maybe useful. Here is what the ear-deployer.xml looks like (although I would think that our jboss-app.xml settings override these values on a per EAR basis): | | | | | | | | false | | false |

[jboss-user] [EJB 3.0 Users] - Re: JBoss 4.2.1 RemoteEJB Lookup ClassCastException

2009-11-12 Thread kyle.bober
Thanks for the reply jaikiran. Here is the data I got from the JNDIView JMX Console. If you need anything else please let me know and I will happily provide it! Thanks again, Kyle | Web Applications | | java:comp namespace of the mms-yellsandbox-service-1.0--SNAPSHOT.ear/yellsandboxser

[jboss-user] [EJB 3.0 Users] - JBoss 4.2.1 RemoteEJB Lookup ClassCastException

2009-11-11 Thread kyle.bober
I have two EAR files that each contain an ejb jar file. I have configured each of the EAR files to isolate there classloaders like so.. | | http://www.jboss.org/j2ee/dtd/jboss-app_4_2.dtd";> | | com.kbss:loader=service1.ear | java2ParentDelegation=false | |

[jboss-user] [EJB 3.0 Users] - Re: EJBTimer Restart Issue : Dropped/Failed Timer Execution

2009-09-18 Thread kyle.bober
Will do! View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4255950#4255950 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4255950 ___ jboss-user mailing list jboss-user@lists.jboss

[jboss-user] [EJB 3.0 Users] - EJBTimer Restart Issue : Dropped/Failed Timer Execution

2009-09-17 Thread kyle.bober
Running JBoss 5.1.0.GA Here is the situation: I launch a series of EJBTimers that are scheduled to run in the future. I shut down JBoss and restart the server. Upon Jboss restart I notice a good portion of the EJBTimer(s) which were scheduled to execute fail on JBoss restart. This is what I see

[jboss-user] [EJB 3.0 Users] - Re: ERROR [GeneralPurposeDatabasePersistencePlugin] Cannot d

2009-09-16 Thread kyle.bober
Yes that is definitely the issue at hand. I removed the classloader isolation by removing the jboss-app.xml in my EAR file. I now run into another issue which looks to be the same as mentioned in this post: http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4212804#4212804 If I launch a s

[jboss-user] [EJB 3.0 Users] - Re: ERROR [GeneralPurposeDatabasePersistencePlugin] Cannot d

2009-09-15 Thread kyle.bober
Seems if I remove the classloader isolation from the jboss-app.xml file in the ear files META-INF directory things seem to work properly. This doesn't seem right though I should be able to isolate the classloader... Any ideas??? View the original post : http://www.jboss.org/index.html?module=bb

[jboss-user] [EJB 3.0 Users] - Re: TimerService Restart Issue

2009-09-15 Thread kyle.bober
I am running into the same issue. Were you able to resolve or figure out how to work around this issue? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4255392#4255392 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=425539

[jboss-user] [EJB 3.0 Users] - Re: ERROR [GeneralPurposeDatabasePersistencePlugin] Cannot d

2009-09-15 Thread kyle.bober
Hosted the file on GigaSize so please forgive me for having to wait for the download. If anyone has a better way for me to share these files I am all ears. http://www.gigasize.com/get.php?d=ys0m5d1g9jd - classloader.log file http://www.gigasize.com/get.php?d=yxqgyx4d72c - server.log file Hope t

[jboss-user] [EJB 3.0 Users] - Re: ERROR [GeneralPurposeDatabasePersistencePlugin] Cannot d

2009-09-15 Thread kyle.bober
This post seems to be the same issue I am running into http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4212804#4212804 Was anything ever resolved regarding this issue? I am going to provide the classloader trace log file for you and hopefully it will shed some light on this issue. V

[jboss-user] [EJB 3.0 Users] - ERROR [GeneralPurposeDatabasePersistencePlugin] Cannot deser

2009-09-15 Thread kyle.bober
JBoss 5.1.0.GA I have an EJBTimer stateless session bean. I kick of the timer via a JMX bean and all works fine. It is when I restart the JBoss server that I am running into an issue. I noticed that when I startup JBoss I receive the following error: | 07:38:22,445 ERROR [GeneralPurposeData

[jboss-user] [EJB 3.0 Users] - ERROR [GeneralPurposeDatabasePersistencePlugin] Cannot deser

2009-09-15 Thread kyle.bober
By the way I forgot to mention I am using JBoss 5.1.0.GA Any help here or pointers to setting up persistent EJBTimers in JBoss5.1.0.GA would be much appreciated. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4255360#4255360 Reply to the post : http://www.jb

[jboss-user] [EJB 3.0 Users] - ejbTimeout java.lang.NullPointerException

2009-09-15 Thread kyle.bober
I have an EJBTimer stateless session bean. I kick of the timer via a JMX bean and all works fine. It is when I restart the JBoss server that I am running into an issue. I noticed that when I startup JBoss I receive the following error: | | 07:38:22,445 ERROR [GeneralPurposeDatabasePersis

[jboss-user] [EJB 3.0 Users] - Re: Session EJB and MDB Configuration

2009-09-10 Thread kyle.bober
Not sure if this is anything but I also noticed an extra ' single quote in the logging output of the container name. Is it possible there is a bug adding an extra ' single quote to the container name? Just a thought. DEPLOYMENTS IN ERROR: Deployment "vfszip:/C:/ApplicationServers/jboss-5.1.0.GA

[jboss-user] [EJB 3.0 Users] - Re: Session EJB and MDB Configuration

2009-09-10 Thread kyle.bober
Yup, the mydomain-aop.xml file is definetly present in the META-INF directory. Here is the contents of the jar as you requested. META-INF/ META-INF/MANIFEST.MF com/ com/thesearchagency/ com/thesearchagency/service/ com/thesearchagency/service/kat/ com/thesearchagency/service/kat/adapter/ com/thes

[jboss-user] [EJB 3.0 Users] - Session EJB and MDB Configuration

2009-09-09 Thread kyle.bober
JBoss 5.1.0.GA I am attempting to configure my Stateless MDB via the instrcutions provided at the following link : http://www.jboss.org/file-access/default/members/jbossejb3/freezone/docs/reference/1.0.7/html/SessionBean_and_MDB_configuration.html Here is my mydoamin-aop.xml : | | |

[jboss-user] [EJB 3.0] - EJBTimer Calling EJB issue ClassNotFoundException No ClassLo

2009-07-13 Thread kyle.bober
JBoss 4.2.1 Java 1.5 I have an EJB timer that is attempting to make a call to a Session EJB. We do a JNDI lookup and recieve the following exception... 12:38:40,219 DEBUG [ServiceLocator] ERROR :: Could not locate [remote/KATReportService-1.0] javax.naming.CommunicationException [Root exception

[jboss-user] [JBossWS] - Re: Achieving asynchronous communications

2009-06-17 Thread kyle.bober
Did you have any luck in reaching a conclusion. I am currently using JBoss 4.2.1 to make asynchronous web service calls to a .NET webservice. We used Apache CXF 2.2.2 to generate the client side code and are using the callback handler approach. I can make a successful call to the webserivce and

[jboss-user] [JBossWS] - JBoss 4.2.1 and Apache CXF 2.2.2 Client Code and AsyncHandle

2009-06-17 Thread kyle.bober
I have implemented an Asynchronous web service call using the Call back approach via an AsyncHandler. I have noticed an issue where the remote web service is throwing a SOAPFaultException. The issue is the AsynHandler code I wrote does not seem to catch the exception. In fact it never receives

[jboss-user] [JBossWS] - How to use @XmlMixed, @XmlRefrences and @XmlRefrence annotat

2009-05-04 Thread kyle.bober
Okay maybe a better question to ask is this. How do I properly use the @XmlMixed, @XmlRefrences and @XmlReference annotations? Is the way I have stated above in my code examples correct??? Someone out there has to be using these annotations successfully! Any examples would be appreciated! -Kyle

[jboss-user] [JBossWS] - Issue using XmlMixed, XmlRefrences, XmlRefrence annotations

2009-05-03 Thread kyle.bober
I am having an issue with the XmlMixed, XmlRefrences, XmlRefrence annotations... Or so that is what I think is causing the issue. I have a base class called CriteriaSO | @XmlRootElement(name="Criteria") | @XmlType(propOrder = {"sortType"}) | @XmlSeeAlso({IdCriteriaSO.class}) | public ab

[jboss-user] [Management, JMX/JBoss] - Re: MBean depends on a stateless EJB

2009-03-12 Thread kyle.bober
I am running into the same issuw as yourself. Were you able to figrue out a solution to this. I too have a MBean that has a dependency on an Stateless EJB3 bean. Snippet of the MBean | @Service | @Management(IChartServiceJMX.class) | public class ChartServiceJMX implements IChartServiceJ

[jboss-user] [EJB 3.0] - JBoss 4.2.2 and TimerService null pointer exception

2008-08-15 Thread kyle.bober
I have a Stateless session bean that is also a WebService. When I attempt to inject a TimerService and create a new timer Instance the TimerService is always returned as null. It seems the TimerService is never injected. I also attempted injecting the SessionContext as well using @Resource and o

[jboss-user] [EJB 3.0] - Re: Problem with TimerService

2008-08-14 Thread kyle.bober
I am running into the same issue. I am running JBoss 4.2.2. Is this still an outstanding issue or is there a fix for this or a work around? Any help or response is much appreciated! Regards, Kyle View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4170644#4170644

[jboss-user] [EJB/JBoss] - Jboss 4.2.2 and TimerService

2008-08-14 Thread kyle.bober
I have a Stateless session bean that is also a WebService. When I attempt to inject a TimerService and create a new timer Instance the TimerService is always returned as null. It seems the TimerService is never injected. I alos attempted injecting the SessionContext as well using @Resource and o