[JBoss-user] [JBoss Portal] - Failed to create folder for repository

2005-12-13 Thread srose
I am trying to install version 2.2 rc2 but I keep getting errors. I am using a oracle 9i database. Any ideas? --- MBeans waiting for other MBeans --- | ObjectName: portal:service=CMS | State: FAILED | Reason: javax.jcr.RepositoryException: failed to create folder for repository |

[JBoss-user] [Messaging, JMS JBossMQ] - unique contraint violation when writing messages to DB

2005-10-27 Thread srose
Im having the same problem posted in this forum: http://www.jboss.com/index.html?module=bbop=viewtopict=70467 Just curious if this is a bug or a configuration issue? Here is my full stack trace | 14:23:22,562 ERROR [JmsMsgSenderBean] JMSException while sending the message to | the

[JBoss-user] [Messaging, JMS JBossMQ] - Re: Some remote clients not receiving messages

2005-10-04 Thread srose
I figured it out!!!. Apparently the time on the client machine was ahead of the time on the server machine. When this happens, JMS thinks the message has expires and drops it. Any recommendations on how to prevent this from happening? View the original post :

[JBoss-user] [Messaging, JMS JBossMQ] - Re: Some remote clients not receiving messages

2005-10-04 Thread srose
Set time to live to 0 and this fixed it. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3899093#3899093 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3899093 --- This

[JBoss-user] [Messaging, JMS JBossMQ] - Re: Some remote clients not receiving messages

2005-09-16 Thread srose
anyone else have this problem? Or any ideas what it could be ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3895140#3895140 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3895140

[JBoss-user] [Messaging, JMS JBossMQ] - Some remote clients not receiving messages

2005-09-13 Thread srose
I have jms running inside my jboss application server 4.0.3 rc2. In approx 10 machines I have tested and works great but in 3 machines , all running windows 2000 prof, they cant seem to get the messages. None of these machines have firewalls and I can see using the jmx console that they are

[JBoss-user] [EJB/JBoss] - Re: Cannot get a remote context for Session Bean

2005-07-08 Thread srose
here is the stack trace for the IOException... Caused by: java.io.EOFException at java.io.ObjectInputStream$BlockDataInputStream.peekByte(Unknown Source) at java.io.ObjectInputStream.readObject0(Unknown Source) at java.io.ObjectInputStream.readObject(Unknown Source)

[JBoss-user] [EJB/JBoss] - Re: Cannot get a remote context for Session Bean

2005-07-08 Thread srose
I also pulled this from the jboss application log file: 2005-07-08 09:35:04,542 DEBUG [org.hibernate.jdbc.ConnectionManager] running Session.finalize() 2005-07-08 09:35:04,542 DEBUG [org.hibernate.jdbc.ConnectionManager] running Session.finalize() 2005-07-08 09:35:59,291 DEBUG

[JBoss-user] [EJB/JBoss] - Re: Cannot get a remote context for Session Bean

2005-07-08 Thread srose
I figured it out! One of my objects which i use to copy over data from my entity bean inside my session bean wasnt serializable. I do this to keep my entity bean transparent to my client. Anyways, I made it serializable and it works perfectly. View the original post :

[JBoss-user] [EJB/JBoss] - Cannot get a remote context for Session Bean

2005-07-07 Thread srose
Here is my code : ... public void init() throws ServletException { try { HashtableString,String env = new HashtableString,String(); env.put(Context.INITIAL_CONTEXT_FACTORY, org.jnp.interfaces.NamingContextFactory);

[JBoss-user] [EJB/JBoss] - Re: Cannot get a remote context for Session Bean

2005-07-07 Thread srose
Ok ...thanks to bill, I figured out part of my problem which was forgeting to delete the @ Local piece in my remote interface. Now I have a different problem. When i try to use the first method in my class , I get a ... java.lang.reflect.UndeclaredThrowableException at

[JBoss-user] [EJB/JBoss] - Re: Cannot get a remote context for Session Bean

2005-07-07 Thread srose
Forgot to post my interface... import java.io.Serializable; import java.util.Collection; import javax.ejb.Remote; @Remote public interface AppRolesRemote extends Serializable { public Collection getAppRoles(); public void addAppRole (String rolename, String roledesc);

[JBoss-user] [EJB/JBoss] - Re: Cannot get a remote context for Session Bean

2005-07-07 Thread srose
I am using 4.0.3 RC1. I installed the session bean and the entities beans using an ear file. I have a local interface which runs fine on the jboss application server. I installed a war file in the jboss-tomcat container and used local context look up and it works. This problem is occurring on