2013-08-19 7 views
0

Jboss를 사용하여 JMS 용 샘플 프로그램을 작성하려고합니다. 나는 JMSAS 7.1.1 : JNDI JMS 연결 찾기 factroy가 작동하지 않습니다.

http://docs.jboss.org/jbossmessaging/docs/usermanual-2.0.0.beta1/html/using-jms.html

내가 ConnectionFactory를 즉 "iniCtx.lookup ("ConnectionFactory에 ")"

javax.naming.CommunicationException: Receive timed out [Root exception is java.net.SocketTimeoutException: Receive timed out] 
at org.jnp.interfaces.NamingContext.discoverServer(NamingContext.java:1058) 
at org.jnp.interfaces.NamingContext.checkRef(NamingContext.java:1127) 
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:478) 
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:471) 
at javax.naming.InitialContext.lookup(Unknown Source) 
at MessageProducer.main(MessageProducer.java:46) 
Caused by: java.net.SocketTimeoutException: Receive timed out 
at java.net.PlainDatagramSocketImpl.receive0(Native Method) 
at java.net.PlainDatagramSocketImpl.receive(Unknown Source) 
at java.net.DatagramSocket.receive(Unknown Source) 
at org.jnp.interfaces.NamingContext.discoverServer(NamingContext.java:1038) 

을 위해 찾는 동안 예외를 얻고있다

에 대한 제이 보스를 사용하는 방법은 다음 링크를 통해 갔다 그 이유는 Jboss Naming Service가 실행되고 있지 않기 때문입니다 (netstat -an은 포트 1099에 대한 결과를 표시하지 않습니다). 네임 서비스에 대한 특정 설정을 구성하지 않았습니다. 기본 포트 1099를 사용하도록했습니다.

구성이 누락 되었습니까? Jboss 네이밍 서비스를 운영하는 데 협조 해주십시오.

사양 :

JBoss는 1.6 OS : 7.1.1 최종 JRE로 Windows 7

답변

2

수동 버전으로 당신 혼합 제이 보스 버전 보인다. AS7는 JNP를 사용하지 않고 JNDI 포트입니다 4447.

그래서 클라이언트에 연결할 수 있어요

<security-enabled>false</security-enabled> 
... 
<jms-destinations> 
     <jms-queue name="testQueue"> 
      <entry name="queue/test"/> 
      <entry name="java:jboss/exported/jms/queue/test"/> 
     </jms-queue> 
    </jms-destinations> 

, 코드는 다음과 같이 독립-full.xml에서 다음과 같은 설정을 갖는

Connection connection = null; 
InitialContext initialContext = null; 
Properties props = new Properties(); 
props.put(Context.INITIAL_CONTEXT_FACTORY, "org.jboss.naming.remote.client.InitialContextFactory"); 
props.put(Context.PROVIDER_URL, "remote://localhost:4447"); 
props.put(Context.SECURITY_PRINCIPAL, "appuser"); 
props.put(Context.SECURITY_CREDENTIALS, "password"); 

try { 
    // Step 1. Create an initial context to perform the JNDI lookup. 
    initialContext = new InitialContext(props); 

    // Step 2. Perfom a lookup on the queue 
    Queue queue = (Queue)initialContext.lookup("jms/queue/test"); 

    // Step 3. Perform a lookup on the Connection Factory 
    ConnectionFactory cf = (ConnectionFactory)initialContext.lookup("jms/RemoteConnectionFactory"); 

    // Step 4.Create a JMS Connection 
    connection = cf.createConnection();