*/
private void configureServletContextAttributes() {
SipApplication sipApplication = convergedContext.getSipApplication();
ServletContext servletContext = convergedContext.getServletContext();
SipApplicationListeners sipApplicationListeners = new SipApplicationListeners(((SipApplication) sipApplication).getListeners(), context.getLoader().getClassLoader());
convergedContext.setSipApplicationListeners(sipApplicationListeners);
// Notify the ServletContextListener.contextInitialized here.
ServletContextEvent servletContextEvent = new ServletContextEvent(servletContext);
Iterator<ServletContextListener> contextListenerIterator = sipApplicationListeners.getServletContextListener().iterator();
while (contextListenerIterator.hasNext()) {
ServletContextListener listener = contextListenerIterator.next();
listener.contextInitialized(servletContextEvent);
}