2017-02-02 7 views
1

SIB JMS 주제 또는 대기열을 작성할 수 없습니다. 나는 아래의 코드를 시도했다. 이 코드는 예외 또는 오류없이 실행WebSphere에서 프로그래밍 방식으로 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(); 
    } 
} 
당신은을 통해 설정 와 세션AdminCommand 연결해야

답변

0

: 완료되면

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

또한 configService.discard(session)를 호출 recommendation을주의해야한다 :

도울 수있는 좋은 시작은 article입니다.