2017-02-02 13 views
1

SIB JMSトピックまたはキューを作成できません。私は以下のコードを試しました。あなたはまた、完了時recommendationconfigService.discard(session)を呼び出すように注意する必要がありJMSトピックをWebSphereでプログラマチックに作成できません

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

:コードは、あなたが経由で設定セッションAdminCommandをリンクする必要が任意の例外やエラー

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(); 
    } 
} 

答えて

0

ずに走りました:

ここでは始めるのが良いですarticleも役に立ちます。

関連する問題