Package org.apache.excalibur.instrument.manager.http.server

Examples of org.apache.excalibur.instrument.manager.http.server.HTTPServer


        m_rootBreadCrumbLabel = configuration.getAttribute(
            "root-bread-crumb-label", m_rootBreadCrumbURL );
       
        String accessLogFile = configuration.getAttribute( "access-log", null );
       
        m_httpServer = new HTTPServer( m_port, m_bindAddr );
        m_httpServer.enableLogging( getLogger().getChildLogger( "server" ) );
        m_httpServer.setInstrumentableName( "server" );
        m_httpServer.setAccessLogFile( accessLogFile );
        addChildInstrumentable( m_httpServer );
    }
View Full Code Here


       
        m_readOnly = configuration.getAttributeAsBoolean( "read-only", false );
       
        String accessLogFile = configuration.getAttribute( "access-log", null );
       
        m_httpServer = new HTTPServer( m_port, m_bindAddr );
        m_httpServer.enableLogging( getLogger().getChildLogger( "server" ) );
        m_httpServer.setInstrumentableName( "server" );
        m_httpServer.setAccessLogFile( accessLogFile );
        addChildInstrumentable( m_httpServer );
    }
View Full Code Here

TOP

Related Classes of org.apache.excalibur.instrument.manager.http.server.HTTPServer

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.