我需要编写一个简单的java类,它将消息发送到Sonic主题。我可以使用JNDI值进行查找。 这是代码。
Hashtable<String, String> properties = new Hashtable<>();
properties.put(Context.INITIAL_CONTEXT_FACTORY, "com.sonicsw.jndi.mfcontext.MFContextFactory");
properties.put(Context.PROVIDER_URL, "tcp://Devserver:7002");
properties.put(Context.SECURITY_PRINCIPAL, "username");
properties.put(Context.SECURITY_CREDENTIALS, "password");
properties.put("com.sonicsw.jndi.mfcontext.domain", "dmDEV");
Context jndiContext = new InitialContext(properties);
ConnectionFactory connectionFactory = (ConnectionFactory) jndiContext.lookup("TopicConnectionFactory");
Topic topic = (Topic) jndiContext.lookup("testtopic");
这会引发错误 javax.naming.NameNotFoundException:在指定的上下文中找不到/ testtopic
当我调试代码时,我可以看到“connectionFactory”变量具有以下字段和值,这些字段和值与我在属性中指定的值完全不同。
brokerHostName "MyMachine" (id=55)
brokerPort 0
brokerProtocol "tcp" (id=59)
brokerURL "" (id=66)
clientID null
connectID null
defaultPassword "" (id=67)
defaultUserName "Administrator" (id=68)
我需要知道如何编写一个简单的Java客户端来连接Sonic主题。
答案 0 :(得分:0)
我使用以下解决了我的问题。如果你遇到同样的问题,这就是它。 topic = session.createTopic(topicName);