Package org.apache.archiva.webdav

Examples of org.apache.archiva.webdav.RepositoryServlet


        context.addApplicationListener( new ApplicationListener( ContextLoaderListener.class.getName(), false ) );

        tomcat.addServlet( context, "cxf", new CXFServlet() );
        context.addServletMapping( "/" + getRestServicesPath() + "/*" , "cxf" );

        tomcat.addServlet( context, "archivarepo", new RepositoryServlet() );
        context.addServletMapping( "/repository/*" , "archivarepo" );

        tomcat.start();

        port = tomcat.getConnector().getLocalPort();
View Full Code Here


        context.addApplicationListener( new ApplicationListener( ContextLoaderListener.class.getName(), false ) );

        tomcat.addServlet( context, "cxf", new CXFServlet() );
        context.addServletMapping( "/" + getRestServicesPath() + "/*" , "cxf" );

        tomcat.addServlet( context, "archivarepo", new RepositoryServlet() );
        context.addServletMapping( "/repository/*" , "archivarepo" );

        tomcat.start();

        port = tomcat.getConnector().getLocalPort();
View Full Code Here

TOP

Related Classes of org.apache.archiva.webdav.RepositoryServlet

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.