[JBoss-user] [Messaging, JMS JBossMQ] - Re: Configuring UI2Service

2006-06-09 Thread josey
Thanks, that did the trick. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3950227#3950227 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3950227 ___ JBoss-user mailing list

[JBoss-user] [Messaging, JMS JBossMQ] - Re: JMS user authentication error (remote) when requesting a

2006-06-09 Thread josey
${jboss.bind.address} can be set using the -b param with run.sh E.g., ./run.sh -c all -b 192.111.78.256 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3950228#3950228 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3950228

[JBoss-user] [Messaging, JMS JBossMQ] - Re: Configuring UI2Service

2006-05-25 Thread josey
Anyone find a solution to this one? I am running into this same issue. ${jboss.bind.address} resolves to the loopback address for JMS clients requesting a connection unless I hardcode the ip address. Setting a system property does not work as indicated in one of the posts above. Note: this

[JBoss-user] [Messaging, JMS JBossMQ] - Re: Configuring UI2Service

2006-05-25 Thread josey
P.S. I am running jboss4.04GA with the all and clustered EJB3 configurations. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3946688#3946688 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3946688

[JBoss-user] [Messaging, JMS JBossMQ] - Re: JMS user authentication error (remote) when requesting a

2006-05-18 Thread josey
I found out the issue. In the file deploy/jms/uil2-service.xml, the parameter ${jboss.bind.address} resolves to the loopback address; by setting this to the actual IP address of the server the problem disappears (meaning I can now access the Queue/TopicConnection remotely so the message

[JBoss-user] [Messaging, JMS JBossMQ] - Re: JMS user authentication error (remote) when requesting a

2006-05-18 Thread josey
Just to be clear, in deploy/jms/uil2-service.xml I set BindAddress to the actual IP address (it was set to ${jboss.bind.address}). View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3944792#3944792 Reply to the post :

[JBoss-user] [Messaging, JMS JBossMQ] - Re: JMS user authentication error (remote) when requesting a

2006-05-17 Thread josey
Connection code: 1. To get the InitialContext: | protected InitialContext getContext() throws NamingException { | Hashtable env = new Hashtable(); | | //commented out because found unnecessary | //env.put(Context.SECURITY_PRINCIPAL, guest); |

[JBoss-user] [Messaging, JMS JBossMQ] - JMS user authentication error (remote) when requesting a Con

2006-05-16 Thread josey
I have searched for a very long trying to trying to resolve this issue. Based on the posts, wiki pages that I have read (and other external pages) this all seems to be correct. So it is now time to request help. I using a JBossMQ JMS server running in jboss4.02CR2. My MDBs deploy and

[JBoss-user] [Messaging, JMS JBossMQ] - Re: JMS user authentication error (remote) when requesting a

2006-05-16 Thread josey
correction: AS version is jboss-4.0.4.CR2 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3943982#3943982 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3943982 --- Using

[JBoss-user] [Security JAAS/JBoss] - JMS user authentication error (remote) with createConnnectio

2006-05-16 Thread josey
I using a JBossMQ JMS server running in jboss-4.0.4.CR2. My MDBs deploy and consume messages fine and I have no problem producing messages locally (e.g., I can produce messages using a standalone client application running in another JVM on the same machine as the application server). When I

[JBoss-user] [Messaging, JMS JBossMQ] - Re: JMS user authentication error (remote) when requesting a

2006-05-16 Thread josey
The producer is unable to send messages to the JMS server unless it is located on the same server; this is my primary concern (not the DEBUG statement). I do not understand why it does not allow the connection. There is one line that looks a bit fishy in the trace output below: 17:24:46,828

[JBoss-user] [EJB 3.0] - Re: problem switching to 4.0.4RC1; TransactionManager not bo

2006-04-25 Thread josey
Did anyone figure out why this message appears? | WARN [TreeCache] No transaction manager lookup class has been defined. Transactions cannot be used. | I have installed JBoss4.04CR2 and added the necessary files to add EJB3 clustering. there are no errors but I get the message regarding

[JBoss-user] [EJB 3.0] - Re: Durable Subscriber Annotations for MDB using EJB3

2006-04-21 Thread josey
(propertyName=password, propertyValue=needle), | | @ActivationConfigProperty(propertyName=subscriptionName, propertyValue=josey) | }) | public class STMessageSubscriberB implements MessageListener { | View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3938736

[JBoss-user] [Messaging, JMS JBossMQ] - Re: durable topic subscriber (using EJB3 annotations)

2006-04-21 Thread josey
Problem finally solved. This is not a valid annotation (even though I found it referenced numerous places during my research: | @ActivationConfigProperty(propertyName=subscriptionDurability,propertyValue=Durable) | It should be: |

[JBoss-user] [EJB 3.0] - Re: Durable Subscriber Annotations for MDB using EJB3

2006-04-21 Thread josey
This annotation is incorrect: | @ActivationConfigProperty(propertyName=subscriptionDurability,propertyValue=Durable) | It s/b this: | @ActivationConfigProperty(propertyName=durability,propertyValue=Durable) | At least with AS 4.04CR2. View the original post :

[JBoss-user] [Installation, Configuration Deployment] - deploying HA-JMS with EJB3

2006-04-21 Thread josey
Most of the documentation that I have read so far has suggested that you need to install all when you install JBoss AS if you want to use HA-JMS. I have read things about deploy-hasingleton but I do not see this after installing JBoss 4.04CR2. Moreover, I want to use EJB3. Q1. Does JBoss

[JBoss-user] [Messaging, JMS JBossMQ] - Re: durable topic subscriber (using EJB3 annotations)

2006-04-20 Thread josey
bump View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3938554#3938554 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938554 --- Using Tomcat but need to do more? Need to

[JBoss-user] [Messaging, JMS JBossMQ] - durable topic subscriber (using EJB3 annotations)

2006-04-17 Thread josey
I have researched this for a while now with no luck so here goes . . . I am trying to deploy a durable topic subscriber using EJB3 annotations. The MDB is deployed fine and it processes messages fine as well. The issue is that the subscription is showing as non-durable (as seen in the JMX

[JBoss-user] [Beginners Corner] - Re: Tutorial on J2EE using JBOSS-4.x, Eclipse-3.x, Lomboz-3.

2005-05-23 Thread josey
For some time now I have tried to get Jboss 4.0.2 to run as the server in eclipse. I have tried many different server.file variations. Moreover, I have searched the web and the mailing lists numerous times with no success (I found a link or two but they seemed to be referring to 4.0.1 or had

[JBoss-user] [Beginners Corner] - Re: Tutorial on J2EE using JBOSS-4.x, Eclipse-3.x, Lomboz-3.

2005-05-23 Thread josey
Thanks for the reply Scott. This must not be the root of my problem. I am getting the following errors on startup (in eclipse): 1. java.lang.NoClassDefFoundError: org/jboss/security/auth/spi/UsersObjectModelFactory 2. ERROR [org.jboss.naming.NamingService] Starting failed jboss:service=Naming