Configuring the initialization servlet

About this task
In the BTTJumpStartSampleWeb project, replace the init() method of com.ibm.btt.sample.util.StartServerServlet.java with the following code:
	try {
				String dsePath = (String)arg0.getInitParameter("bttConfigPath");
				InitManager.reset(dsePath);
				ContextFactory.createContext("branchServer");
				final CSServer aCSServer = CSServer.getInstance();
				aCSServer.initiateServer();
		} catch (Exception e) {
			e.printStackTrace();
		}