无法在WebSphere中以编程方式创建JMS主题

时间:2017-02-02 11:03:54

标签: java websphere jmx websphere-8

我无法创建SIB JMS主题或队列。我尝试了下面的代码。代码运行没有任何异常或错误

public void createSIBJMSTopic(String topicName, String jndiName, String busName, String topicSpace) {
    try {
        String server = "server1";
        String description = "abc";
        Session session = new Session();
        CommandMgr commandMgr = CommandMgr.getCommandMgr(client);
        configService = new ConfigServiceProxy(client);
        System.out.println("Commands list" + commandMgr.listAllCommands().toString());
        AdminCommand cmd = commandMgr.createCommand("createSIBJMSTopic");
        System.out.println(session);
        ObjectName targetObject = configService.resolve(session, null, "Node=mbaastest40Node02,Server=server1")[0];

        cmd.setTargetObject(targetObject);
        cmd.setParameter("name", topicName);
        cmd.setParameter("jndiName", jndiName);
        cmd.setParameter("busName", busName);
        cmd.setParameter("topicSpace", topicSpace);
        System.out.println("Before Execute");
        cmd.execute();
        CommandResult result = cmd.getCommandResult();
        System.out.println("after execute");
        if (result.isSuccessful())
            System.out.println(result.toString());
        if (!result.isSuccessful())
            throw new AdminException(result.getException());
        System.out.println("done");
        configService.save(session, true);
        System.out.println("After save");
    }
    catch (Exception e) {
        e.printStackTrace();
    }
}

1 个答案:

答案 0 :(得分:0)

您需要通过以下链接 AdminCommand 与配置会话

 AdminCommand cmd = commandMgr.createCommand("createSIBJMSTopic");
 cmd.setConfigSession(session);

完成后,您还应该注意recommendation致电configService.discard(session)

这是一个很好的入门article也可能有所帮助。