Package org.exolab.jms.net.http

Examples of org.exolab.jms.net.http.HTTPManagedConnectionFactory


     *
     * @param name the name of test case
     * @throws Exception for any error
     */
    public HTTPConnectionFactoryTest(String name) throws Exception {
        super(name, new HTTPManagedConnectionFactory(),
              "http://localhost:8080/openjms-tunnel/tunnel",
              "http-server://localhost:3030");
    }
View Full Code Here


     * @return the new managed connection factory
     * @throws Exception for any error
     */
    protected ManagedConnectionFactory createManagedConnectionFactory()
        throws Exception {
        return new HTTPManagedConnectionFactory();
    }
View Full Code Here

     * @return the new managed connection factory
     * @throws Exception for any error
     */
    protected ManagedConnectionFactory createManagedConnectionFactory()
        throws Exception {
        return new HTTPManagedConnectionFactory();
    }
View Full Code Here

     */
    protected ManagedConnectionAcceptor createAcceptor(Principal principal)
        throws Exception {
        ConnectionRequestInfo info = getAcceptorConnectionRequestInfo();
        Authenticator authenticator = new TestAuthenticator(principal);
        ManagedConnectionFactory factory = new HTTPManagedConnectionFactory();
        return factory.createManagedConnectionAcceptor(authenticator, info);
    }
View Full Code Here

        super(handler, authenticator, properties);
        addManagedConnectionFactory(new TCPManagedConnectionFactory());
        addManagedConnectionFactory(new TCPSManagedConnectionFactory());
        addManagedConnectionFactory(new VMManagedConnectionFactory());
        addManagedConnectionFactory(new RMIManagedConnectionFactory());
        addManagedConnectionFactory(new HTTPManagedConnectionFactory());
        addManagedConnectionFactory(new HTTPSManagedConnectionFactory());
    }
View Full Code Here

TOP

Related Classes of org.exolab.jms.net.http.HTTPManagedConnectionFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.