Where can I get more documentation on how to implement JAVA Messaging
Services with JRUN 3?

I went thru Chapter 29 in the Development guide for JRUN 3, but the examples
still do not work.  Are there other configuration setting that need to be
done prior to using the feature?  I am trying to make the call from inside a
servlet just like the example in the documentation.  The servlet fails to
init, with the following message:::  Naming Exception:
QueueConnectionFactory not found.  Is this a classpath issue?  If so, what
extra jars need added to the classpath?

public void init(ServletConfig config) throws ServletException {
    super.init(config);
    try{
        Properties properties = new Properties();
 
properties.setProperty(Context.INITIAL_CONTEXT_FACTORY,"allaire.ejipt.Contex
tFactory");
        properties.setProperty(Context.PROVIDER_URL,"ejipt://" + _host +
":2323");
        _context = new InitialContext(properties);
        QueueConnectionFactory factory =
(QueueConnectionFactory)_context.lookup("QueueConnectionFactory");
....


Eric S. Kreiser
KnowledgePlanet
Competitive Advantage Through People
Core Engineering
5095 Ritter Road
Mechanicsburg, PA 17055
P: 717-790-0400 Ext. 4256
F: 717-790-0401
E: [EMAIL PROTECTED]

Visit us: http://www.knowledgeplanet.com

------------------------------------------------------------------------------
Archives: http://www.egroups.com/group/jrun-interest/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/jrun_talk
or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the 
body.

Reply via email to