* @throws ParserConfigurationException
*/
public static SwingWebContext createContext(InputStream xmlIS) throws ParserConfigurationException, SAXException, IOException
{
SaxDigesterHandler handler = new SaxDigesterHandler();
SwingWebContextDigester dig = new SwingWebContextDigester();
handler.addDigester("swingweb", dig);
handler.parse(xmlIS);
return dig.getContext();
}