Package org.burrokeet.servletEngine

Examples of org.burrokeet.servletEngine.Server


            if (status.isOK()) {
                ForrestManager forrestManager = ForrestManager.getInstance();
                String confPath = ForrestManager.FORREST_CORE_WEBAPP
                        + File.separatorChar + "jettyconf.xml";
                try {
                    Server jetty = new Jetty(confPath,
                            ForrestManager.FORREST_CORE_WEBAPP,
                            ForrestManager.FORREST_ENDORSED_LIB, forrestManager
                                    .getProperties(workingDir), ForrestManager
                                    .getClasspathFiles());
                    status = jetty.start(monitor);
                    if (status.isOK()) {
                        ForrestManager.setServerLaunch(jetty.getLaunch());
                    } else {
                        ForrestManager.setServerLaunch(null);
                    }
                } catch (IOException e) {
                    logger.error("run(IProgressMonitor)", e);
View Full Code Here

TOP

Related Classes of org.burrokeet.servletEngine.Server

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.