com.sun.messaging.TopicConnectionFactory();
I would like to create an instance of "com.sun.messaging.TopicConnectionFactory" simply by: TopicConnectionFactory tpc = new com.sun.messaging.TopicConnectionFactory();
instead of using this way:
TopicConnectionFactory topicConnectionFactory = (TopicConnectionFactory)jndiContext.lookup("TopicConnectionFactory");
Does anybody know where I can find the "com.sun.messaging" package?

