[jboss-user] [JBoss Getting Started Documentation] - In jboss how to create new user for durable topic subscriber

sudasudheer do-not-reply at jboss.com
Tue Apr 15 01:28:51 EDT 2008


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... 


View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4144114#4144114

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4144114



More information about the jboss-user mailing list