[JNDI/Naming/Network] - Re: UnknownHostException after successful connection to port
by alexsbe
I had the same problem and solve it with the previous messages.
I have installed an EJB on jboss 4.2.2.
But now I have an other errors
2008-04-21 17:10:13 DEBUG [SecurityAssociation/:143] Using ThreadLocal: false
2008-04-21 17:10:13 DEBUG [MicroSocketClientInvoker/:243] SocketClientInvoker[18b3364, socket://127.0.0.1:3873] constructed
2008-04-21 17:10:13 DEBUG [MicroRemoteClientInvoker/:240] SocketClientInvoker[18b3364, socket://127.0.0.1:3873] connecting
2008-04-21 17:10:13 DEBUG [MicroRemoteClientInvoker/:245] SocketClientInvoker[18b3364, socket://127.0.0.1:3873] connected
2008-04-21 17:10:14 DEBUG [MicroSocketClientInvoker/:820] SocketClientInvoker[18b3364, socket://127.0.0.1:3873] got Exception java.net.ConnectException: Connection refused: connect, creation attempt took 984 ms
2008-04-21 17:10:15 DEBUG [MicroSocketClientInvoker/:820] SocketClientInvoker[18b3364, socket://127.0.0.1:3873] got Exception java.net.ConnectException: Connection refused: connect, creation attempt took 1000 ms
2008-04-21 17:10:16 DEBUG [MicroSocketClientInvoker/:820] SocketClientInvoker[18b3364, socket://127.0.0.1:3873] got Exception java.net.ConnectException: Connection refused: connect, creation attempt took 1000 ms
2008-04-21 17:10:17 DEBUG [MicroSocketClientInvoker/:820] SocketClientInvoker[18b3364, socket://127.0.0.1:3873] got Exception java.net.ConnectException: Connection refused: connect, creation attempt took 1000 ms
2008-04-21 17:10:18 DEBUG [MicroSocketClientInvoker/:820] SocketClientInvoker[18b3364, socket://127.0.0.1:3873] got Exception java.net.ConnectException: Connection refused: connect, creation attempt took 1000 ms
2008-04-21 17:10:19 DEBUG [MicroSocketClientInvoker/:820] SocketClientInvoker[18b3364, socket://127.0.0.1:3873] got Exception java.net.ConnectException: Connection refused: connect, creation attempt took 1015 ms
I don't know what to do to allow the client to connect to the EJB.
Any ideas ?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4145567#4145567
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4145567
18 years
[Messaging, JMS & JBossMQ] - Re: configure queue
by bfach
I assume you are running the dafault server. In this case you would edit the destinations-service.xml under default.
The xml snippet is what you need to deploy a queue, copy it and change the following
name=DLQ to name= (whatever you want)
SO it should look like this if queue name is "yourQueueName"
<mbean code="org.jboss.jms.server.destination.QueueService" name="jboss.messaging.destination:service=Queue,name=yourQueueName" xmbean-dd="xmdesc/Queue-xmbean.xml">
@org.jboss.system.deployers.managed.ManagementObjectClass(code=org.jboss.jms.server.destination.Queu
eServiceMO)
<depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer
jboss.messaging:service=PostOffice
</ depends>
</ mbean>
So just copy the DLQ xml snippet, paste and change the DLQ to you queue name. Restart JBoss, check the JMX Console to see if the queue is there. It should be in the same location as the DLQ queue.
bfach
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4145566#4145566
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4145566
18 years