Results 1 to 8 of 8

Thread: Prerequisit Question on SWF2

Threaded View

  1. #1
    Join Date
    Jul 2008
    Posts
    11

    Default Prerequisit Question on SWF2

    I have a simple question. Does SWF2 require JEE5? I'm trying to setup SWF2 to work with WebSphere 6.0.x and am getting NoClassDefFoundError exception for ELContext class. This occurs when the servers start up and initializes the spring servlet. Below are the exceptions that I'm getting. Any help would be greatly appreciated.

    Code:
    java.lang.NoClassDefFoundError: javax/el/ELContext
    	at java.lang.Class.getDeclaredConstructors0(Native Method)
    	at java.lang.Class.privateGetDeclaredConstructors(Class.java:1747)
    	at java.lang.Class.getConstructor1(Class.java:2063)
    	at java.lang.Class.getConstructor(Class.java:1124)
    	at com.sun.faces.util.Util.createInstance(Util.java:1143)
    	at com.sun.faces.config.ConfigureListener.configure(ConfigureListener.java:488)
    	at com.sun.faces.config.ConfigureListener.configure(ConfigureListener.java:400)
    	at com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:328)
    	at com.ibm.ws.webcontainer.webapp.WebApp.notifyServletContextCreated(WebApp.java:1467)
    	at com.ibm.ws.webcontainer.webapp.WebApp.initialize(WebApp.java:440)
    	at com.ibm.ws.webcontainer.webapp.WebGroup.addWebApplication(WebGroup.java:123)
    	at com.ibm.ws.webcontainer.VirtualHost.addWebApplication(VirtualHost.java:146)
    	at com.ibm.ws.webcontainer.WebContainer.addWebApp(WebContainer.java:940)
    	at com.ibm.ws.webcontainer.WebContainer.addWebApplication(WebContainer.java:893)
    	at com.ibm.ws.runtime.component.WebContainerImpl.install(WebContainerImpl.java:167)
    	at com.ibm.ws.runtime.component.WebContainerImpl.start(WebContainerImpl.java:391)
    	at com.ibm.ws.runtime.component.ApplicationMgrImpl.start(ApplicationMgrImpl.java:1249)
    	at com.ibm.ws.runtime.component.DeployedApplicationImpl.fireDeployedObjectStart(DeployedApplicationImpl.java:1067)
    	at com.ibm.ws.runtime.component.DeployedModuleImpl.start(DeployedModuleImpl.java:547)
    	at com.ibm.ws.runtime.component.DeployedApplicationImpl.start(DeployedApplicationImpl.java:751)
    	at com.ibm.ws.runtime.component.ApplicationMgrImpl.startApplication(ApplicationMgrImpl.java:913)
    	at com.ibm.ws.runtime.component.ApplicationMgrImpl$AppInitializer.run(ApplicationMgrImpl.java:2058)
    	at com.ibm.ws.runtime.component.ComponentImpl$_AsynchInitializer.run(ComponentImpl.java:304)
    	at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1471)
    AND

    Code:
    [7/15/08 14:27:42:113 EDT] 00000017 ServletWrappe E   SRVE0100E: Did not realize  init() exception thrown by servlet Spring MVC Dispatcher Servlet: org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 107 in XML document from class path resource [pf-admin-spring-config.xml] is invalid; nested exception is org.xml.sax.SAXParseException: cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'webflow:executor'.
    	at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.doLoadBeanDefinitions(XmlBeanDefinitionReader.java:404)
    	at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:342)
    	at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:310)
    	at org.springframework.beans.factory.support.AbstractBeanDefinitionReader.loadBeanDefinitions(AbstractBeanDefinitionReader.java:143)
    	at org.springframework.beans.factory.support.AbstractBeanDefinitionReader.loadBeanDefinitions(AbstractBeanDefinitionReader.java:178)
    	at org.springframework.beans.factory.support.AbstractBeanDefinitionReader.loadBeanDefinitions(AbstractBeanDefinitionReader.java:149)
    	at org.springframework.web.context.support.XmlWebApplicationContext.loadBeanDefinitions(XmlWebApplicationContext.java:124)
    	at org.springframework.web.context.support.XmlWebApplicationContext.loadBeanDefinitions(XmlWebApplicationContext.java:92)
    	at org.springframework.context.support.AbstractRefreshableApplicationContext.refreshBeanFactory(AbstractRefreshableApplicationContext.java:123)
    	at org.springframework.context.support.AbstractApplicationContext.obtainFreshBeanFactory(AbstractApplicationContext.java:423)
    	at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:353)
    	at org.springframework.web.context.ContextLoader.createWebApplicationContext(ContextLoader.java:255)
    	at org.springframework.web.context.ContextLoader.initWebApplicationContext(ContextLoader.java:199)
    	at org.springframework.web.context.ContextLoaderListener.contextInitialized(ContextLoaderListener.java:45)
    	at com.ibm.ws.webcontainer.webapp.WebApp.notifyServletContextCreated(WebApp.java:1467)
    	at com.ibm.ws.webcontainer.webapp.WebApp.initialize(WebApp.java:440)
    	at com.ibm.ws.webcontainer.webapp.WebGroup.addWebApplication(WebGroup.java:123)
    	at com.ibm.ws.webcontainer.VirtualHost.addWebApplication(VirtualHost.java:146)
    	at com.ibm.ws.webcontainer.WebContainer.addWebApp(WebContainer.java:940)
    	at com.ibm.ws.webcontainer.WebContainer.addWebApplication(WebContainer.java:893)
    	at com.ibm.ws.runtime.component.WebContainerImpl.install(WebContainerImpl.java:167)
    	at com.ibm.ws.runtime.component.WebContainerImpl.start(WebContainerImpl.java:391)
    	at com.ibm.ws.runtime.component.ApplicationMgrImpl.start(ApplicationMgrImpl.java:1249)
    	at com.ibm.ws.runtime.component.DeployedApplicationImpl.fireDeployedObjectStart(DeployedApplicationImpl.java:1067)
    	at com.ibm.ws.runtime.component.DeployedModuleImpl.start(DeployedModuleImpl.java:547)
    	at com.ibm.ws.runtime.component.DeployedApplicationImpl.start(DeployedApplicationImpl.java:751)
    	at com.ibm.ws.runtime.component.ApplicationMgrImpl.startApplication(ApplicationMgrImpl.java:913)
    	at com.ibm.ws.runtime.component.ApplicationMgrImpl$AppInitializer.run(ApplicationMgrImpl.java:2058)
    	at com.ibm.ws.runtime.component.ComponentImpl$_AsynchInitializer.run(ComponentImpl.java:304)
    	at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1471)
    Last edited by mczauz; Jul 16th, 2008 at 08:48 AM.

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •