1 Reply Latest reply on Apr 15, 2008 12:58 PM by peterj

    In jboss how to create new user for durable topic subscriber

    sudasudheer

      I am new to JOBSS, I started working on jboss 4.2.2 version, I am working on JMS API, In examples i saw one example for durable subscriber for TOPIC, I am able to execute sample using user name : john and password : needle,

      I want to know how to create NEW USER ...


      my code :
      ---------------------
      Properties props = new Properties();
      props.setProperty("java.naming.factory.initial",
      "org.jnp.interfaces.NamingContextFactory");
      props.setProperty("java.naming.factory.url.pkgs", "org.jboss.naming");
      props.setProperty("java.naming.provider.url", "localhost:1099");
      Context ic = new InitialContext(props);
      Object tmp = ic.lookup("ConnectionFactory");
      TopicConnectionFactory tcf = (TopicConnectionFactory) tmp;
      conn = tcf.createTopicConnection("john2","needle"); // here I want to pass some another user details, how can I do this ?
      topic = (Topic) ic.lookup("topic/example");
      ------------------------
      Appricate early replies .

      sudheer...