Tomcat giving following error

Hi All,
Followng is my Web.xml file code
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://
java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4">
<display-name>Equinox</display-name>
<filter>
<filter-name>sitemesh</filter-name>
<filter-class>com.opensymphony.module.sitemesh.filter.PageFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>sitemesh</filter-name>
<url-pattern>/*</url-pattern>
<dispatcher>REQUEST</dispatcher>
<dispatcher>FORWARD</dispatcher>
</filter-mapping>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<servlet>
<servlet-name>action</servlet-name>
<servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>action</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<error-page>
<error-code>404</error-code>
<location>/404.jsp</location>
</error-page>
<error-page>
<error-code>500</error-code>
<location>/error.jsp</location>
</error-page>
</web-app>
but while starting tomcat, it gives following error. Please help me as I have tried all the possiblity but couldnt find any solution.
SEVERE: Parse Error at line 7 column 62: Attribute "xmlns" must be declared for element type "web-app".
org.xml.sax.SAXParseException: Attribute "xmlns" must be declared for element type "web-app".
     at org.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException(Unknown Source)
     at org.apache.xerces.util.ErrorHandlerWrapper.error(Unknown Source)
     at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)
     at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)
     at org.apache.xerces.impl.dtd.XMLDTDValidator.addDTDDefaultAttrsAndValidate(Unknown Source)
     at org.apache.xerces.impl.dtd.XMLDTDValidator.handleStartElement(Unknown Source)
     at org.apache.xerces.impl.dtd.XMLDTDValidator.startElement(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanStartElement(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentScannerImpl$ContentDispatcher.scanRootElementHook(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
     at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
     at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
     at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
     at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
     at org.apache.commons.digester.Digester.parse(Digester.java:1548)
     at org.apache.catalina.startup.ContextConfig.applicationConfig(ContextConfig.java:220)
     at org.apache.catalina.startup.ContextConfig.start(ContextConfig.java:579)
     at org.apache.catalina.startup.ContextConfig.lifecycleEvent(ContextConfig.java:181)
     at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
     at org.apache.catalina.core.StandardContext.start(StandardContext.java:3523)
     at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:774)
     at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:760)
     at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:548)
     at org.apache.catalina.core.StandardHostDeployer.install(StandardHostDeployer.java:260)
     at org.apache.catalina.core.StandardHost.install(StandardHost.java:741)
     at org.apache.catalina.startup.HostConfig.deployDirectories(HostConfig.java:512)
     at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:354)
     at org.apache.catalina.startup.HostConfig.start(HostConfig.java:671)
     at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:311)
     at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
     at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1149)
     at org.apache.catalina.core.StandardHost.start(StandardHost.java:707)
     at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1141)
     at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:316)
     at org.apache.catalina.core.StandardService.start(StandardService.java:450)
     at org.apache.catalina.core.StandardServer.start(StandardServer.java:2143)
     at org.apache.catalina.startup.Catalina.start(Catalina.java:463)
     at org.apache.catalina.startup.Catalina.execute(Catalina.java:350)
     at org.apache.catalina.startup.Catalina.process(Catalina.java:129)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:324)
     at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:156)
Jul 12, 2006 4:14:38 PM org.apache.commons.digester.Digester error
SEVERE: Parse Error at line 7 column 62: Attribute "xmlns:xsi" must be declared for element type "web-app".
org.xml.sax.SAXParseException: Attribute "xmlns:xsi" must be declared for element type "web-app".
     at org.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException(Unknown Source)
     at org.apache.xerces.util.ErrorHandlerWrapper.error(Unknown Source)
     at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)
     at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)
     at org.apache.xerces.impl.dtd.XMLDTDValidator.addDTDDefaultAttrsAndValidate(Unknown Source)
     at org.apache.xerces.impl.dtd.XMLDTDValidator.handleStartElement(Unknown Source)
     at org.apache.xerces.impl.dtd.XMLDTDValidator.startElement(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanStartElement(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentScannerImpl$ContentDispatcher.scanRootElementHook(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
     at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
     at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
     at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
     at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
     at org.apache.commons.digester.Digester.parse(Digester.java:1548)
     at org.apache.catalina.startup.ContextConfig.applicationConfig(ContextConfig.java:220)
     at org.apache.catalina.startup.ContextConfig.start(ContextConfig.java:579)
     at org.apache.catalina.startup.ContextConfig.lifecycleEvent(ContextConfig.java:181)
     at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
     at org.apache.catalina.core.StandardContext.start(StandardContext.java:3523)
     at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:774)
     at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:760)
     at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:548)
     at org.apache.catalina.core.StandardHostDeployer.install(StandardHostDeployer.java:260)
     at org.apache.catalina.core.StandardHost.install(StandardHost.java:741)
     at org.apache.catalina.startup.HostConfig.deployDirectories(HostConfig.java:512)
     at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:354)
     at org.apache.catalina.startup.HostConfig.start(HostConfig.java:671)
     at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:311)
     at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
     at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1149)
     at org.apache.catalina.core.StandardHost.start(StandardHost.java:707)
     at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1141)
     at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:316)
     at org.apache.catalina.core.StandardService.start(StandardService.java:450)
     at org.apache.catalina.core.StandardServer.start(StandardServer.java:2143)
     at org.apache.catalina.startup.Catalina.start(Catalina.java:463)
     at org.apache.catalina.startup.Catalina.execute(Catalina.java:350)
     at org.apache.catalina.startup.Catalina.process(Catalina.java:129)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:324)
     at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:156)
Jul 12, 2006 4:14:38 PM org.apache.commons.digester.Digester error
SEVERE: Parse Error at line 7 column 62: Attribute "xsi:schemaLocation" must be declared for element type "web-app".
org.xml.sax.SAXParseException: Attribute "xsi:schemaLocation" must be declared for element type "web-app".
     at org.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException(Unknown Source)
     at org.apache.xerces.util.ErrorHandlerWrapper.error(Unknown Source)
     at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)
     at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)
     at org.apache.xerces.impl.dtd.XMLDTDValidator.addDTDDefaultAttrsAndValidate(Unknown Source)
     at org.apache.xerces.impl.dtd.XMLDTDValidator.handleStartElement(Unknown Source)
     at org.apache.xerces.impl.dtd.XMLDTDValidator.startElement(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanStartElement(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentScannerImpl$ContentDispatcher.scanRootElementHook(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
     at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
     at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
     at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
     at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
     at org.apache.commons.digester.Digester.parse(Digester.java:1548)
     at org.apache.catalina.startup.ContextConfig.applicationConfig(ContextConfig.java:220)
     at org.apache.catalina.startup.ContextConfig.start(ContextConfig.java:579)
     at org.apache.catalina.startup.ContextConfig.lifecycleEvent(ContextConfig.java:181)
     at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
     at org.apache.catalina.core.StandardContext.start(StandardContext.java:3523)
     at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:774)
     at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:760)
     at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:548)
     at org.apache.catalina.core.StandardHostDeployer.install(StandardHostDeployer.java:260)
     at org.apache.catalina.core.StandardHost.install(StandardHost.java:741)
     at org.apache.catalina.startup.HostConfig.deployDirectories(HostConfig.java:512)
     at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:354)
     at org.apache.catalina.startup.HostConfig.start(HostConfig.java:671)
     at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:311)
     at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
     at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1149)
     at org.apache.catalina.core.StandardHost.start(StandardHost.java:707)
     at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1141)
     at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:316)
     at org.apache.catalina.core.StandardService.start(StandardService.java:450)
     at org.apache.catalina.core.StandardServer.start(StandardServer.java:2143)
     at org.apache.catalina.startup.Catalina.start(Catalina.java:463)
     at org.apache.catalina.startup.Catalina.execute(Catalina.java:350)
     at org.apache.catalina.startup.Catalina.process(Catalina.java:129)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:324)
     at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:156)
Jul 12, 2006 4:14:38 PM org.apache.commons.digester.Digester error
SEVERE: Parse Error at line 7 column 62: Attribute "version" must be declared for element type "web-app".
org.xml.sax.SAXParseException: Attribute "version" must be declared for element type "web-app".
     at org.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException(Unknown Source)
     at org.apache.xerces.util.ErrorHandlerWrapper.error(Unknown Source)
     at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)
     at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)
     at org.apache.xerces.impl.dtd.XMLDTDValidator.addDTDDefaultAttrsAndValidate(Unknown Source)
     at org.apache.xerces.impl.dtd.XMLDTDValidator.handleStartElement(Unknown Source)
     at org.apache.xerces.impl.dtd.XMLDTDValidator.startElement(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanStartElement(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentScannerImpl$ContentDispatcher.scanRootElementHook(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
     at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
     at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
     at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
     at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
     at org.apache.commons.digester.Digester.parse(Digester.java:1548)
     at org.apache.catalina.startup.ContextConfig.applicationConfig(ContextConfig.java:220)
     at org.apache.catalina.startup.ContextConfig.start(ContextConfig.java:579)
     at org.apache.catalina.startup.ContextConfig.lifecycleEvent(ContextConfig.java:181)
     at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
     at org.apache.catalina.core.StandardContext.start(StandardContext.java:3523)
     at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:774)
     at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:760)
     at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:548)
     at org.apache.catalina.core.StandardHostDeployer.install(StandardHostDeployer.java:260)
     at org.apache.catalina.core.StandardHost.install(StandardHost.java:741)
     at org.apache.catalina.startup.HostConfig.deployDirectories(HostConfig.java:512)
     at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:354)
     at org.apache.catalina.startup.HostConfig.start(HostConfig.java:671)
     at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:311)
     at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
     at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1149)
     at org.apache.catalina.core.StandardHost.start(StandardHost.java:707)
     at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1141)
     at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:316)
     at org.apache.catalina.core.StandardService.start(StandardService.java:450)
     at org.apache.catalina.core.StandardServer.start(StandardServer.java:2143)
     at org.apache.catalina.startup.Catalina.start(Catalina.java:463)
     at org.apache.catalina.startup.Catalina.execute(Catalina.java:350)
     at org.apache.catalina.startup.Catalina.process(Catalina.java:129)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:324)
     at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:156)
Jul 12, 2006 4:14:38 PM org.apache.commons.digester.Digester error
SEVERE: Parse Error at line 18 column 21: Element type "dispatcher" must be declared.
org.xml.sax.SAXParseException: Element type "dispatcher" must be declared.
     at org.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException(Unknown Source)
     at org.apache.xerces.util.ErrorHandlerWrapper.error(Unknown Source)
     at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)
     at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)
     at org.apache.xerces.impl.dtd.XMLDTDValidator.handleStartElement(Unknown Source)
     at org.apache.xerces.impl.dtd.XMLDTDValidator.startElement(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanStartElement(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
     at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
     at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
     at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
     at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
     at org.apache.commons.digester.Digester.parse(Digester.java:1548)
     at org.apache.catalina.startup.ContextConfig.applicationConfig(ContextConfig.java:220)
     at org.apache.catalina.startup.ContextConfig.start(ContextConfig.java:579)
     at org.apache.catalina.startup.ContextConfig.lifecycleEvent(ContextConfig.java:181)
     at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
     at org.apache.catalina.core.StandardContext.start(StandardContext.java:3523)
     at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:774)
     at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:760)
     at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:548)
     at org.apache.catalina.core.StandardHostDeployer.install(StandardHostDeployer.java:260)
     at org.apache.catalina.core.StandardHost.install(StandardHost.java:741)
     at org.apache.catalina.startup.HostConfig.deployDirectories(HostConfig.java:512)
     at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:354)
     at org.apache.catalina.startup.HostConfig.start(HostConfig.java:671)
     at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:311)
     at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
     at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1149)
     at org.apache.catalina.core.StandardHost.start(StandardHost.java:707)
     at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1141)
     at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:316)
     at org.apache.catalina.core.StandardService.start(StandardService.java:450)
     at org.apache.catalina.core.StandardServer.start(StandardServer.java:2143)
     at org.apache.catalina.startup.Catalina.start(Catalina.java:463)
     at org.apache.catalina.startup.Catalina.execute(Catalina.java:350)
     at org.apache.catalina.startup.Catalina.process(Catalina.java:129)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:324)
     at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:156)
Jul 12, 2006 4:14:39 PM org.apache.commons.digester.Digester error
SEVERE: Parse Error at line 19 column 21: Element type "dispatcher" must be declared.
org.xml.sax.SAXParseException: Element type "dispatcher" must be declared.
     at org.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException(Unknown Source)
     at org.apache.xerces.util.ErrorHandlerWrapper.error(Unknown Source)
     at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)
     at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)
     at org.apache.xerces.impl.dtd.XMLDTDValidator.handleStartElement(Unknown Source)
     at org.apache.xerces.impl.dtd.XMLDTDValidator.startElement(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanStartElement(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
     at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
     at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
     at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
     at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
     at org.apache.commons.digester.Digester.parse(Digester.java:1548)
     at org.apache.catalina.startup.ContextConfig.applicationConfig(ContextConfig.java:220)
     at org.apache.catalina.startup.ContextConfig.start(ContextConfig.java:579)
     at org.apache.catalina.startup.ContextConfig.lifecycleEvent(ContextConfig.java:181)
     at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
     at org.apache.catalina.core.StandardContext.start(StandardContext.java:3523)
     at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:774)
     at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:760)
     at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:548)
     at org.apache.catalina.core.StandardHostDeployer.install(StandardHostDeployer.java:260)
     at org.apache.catalina.core.StandardHost.install(StandardHost.java:741)
     at org.apache.catalina.startup.HostConfig.deployDirectories(HostConfig.java:512)
     at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:354)
     at org.apache.catalina.startup.HostConfig.start(HostConfig.java:671)
     at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:311)
     at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
     at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1149)
     at org.apache.catalina.core.StandardHost.start(StandardHost.java:707)
     at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1141)
     at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:316)
     at org.apache.catalina.core.StandardService.start(StandardService.java:450)
     at org.apache.catalina.core.StandardServer.start(StandardServer.java:2143)
     at org.apache.catalina.startup.Catalina.start(Catalina.java:463)
     at org.apache.catalina.startup.Catalina.execute(Catalina.java:350)
     at org.apache.catalina.startup.Catalina.process(Catalina.java:129)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:324)
     at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:156)
Jul 12, 2006 4:14:39 PM org.apache.commons.digester.Digester error
SEVERE: Parse Error at line 20 column 22: The content of element type "filter-mapping" must match "(filter-name,(url-pattern|servlet-name))".
org.xml.sax.SAXParseException: The content of element type "filter-mapping" must match "(filter-name,(url-pattern|servlet-name))".
     at org.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException(Unknown Source)
     at org.apache.xerces.util.ErrorHandlerWrapper.error(Unknown Source)
     at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)
     at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)
     at org.apache.xerces.impl.dtd.XMLDTDValidator.handleEndElement(Unknown Source)
     at org.apache.xerces.impl.dtd.XMLDTDValidator.endElement(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanEndElement(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
     at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
     at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
     at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
     at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
     at org.apache.commons.digester.Digester.parse(Digester.java:1548)
     at org.apache.catalina.startup.ContextConfig.applicationConfig(ContextConfig.java:220)
     at org.apache.catalina.startup.ContextConfig.start(ContextConfig.java:579)
     at org.apache.catalina.startup.ContextConfig.lifecycleEvent(ContextConfig.java:181)
     at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
     at org.apache.catalina.core.StandardContext.start(StandardContext.java:3523)
     at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:774)
     at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:760)
     at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:548)
     at org.apache.catalina.core.StandardHostDeployer.install(StandardHostDeployer.java:260)
     at org.apache.catalina.core.StandardHost.install(StandardHost.java:741)
     at org.apache.catalina.startup.HostConfig.deployDirectories(HostConfig.java:512)
     at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:354)
     at org.apache.catalina.startup.HostConfig.start(HostConfig.java:671)
     at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:311)
     at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
     at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1149)
     at org.apache.catalina.core.StandardHost.start(StandardHost.java:707)
     at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1141)
     at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:316)
     at org.apache.catalina.core.StandardService.start(StandardService.java:450)
     at org.apache.catalina.core.StandardServer.start(StandardServer.java:2143)
     at org.apache.catalina.startup.Catalina.start(Catalina.java:463)
     at org.apache.catalina.startup.Catalina.execute(Catalina.java:350)
     at org.apache.catalina.startup.Catalina.process(Catalina.java:129)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:324)
     at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:156)
INFO - XmlBeanDefinitionReader.loadBeanDefinitions(118) | Loading XML bean definitions from resource [WEB-INF/applicationContext.xml] of ServletContext

Remove the classpath variable

Similar Messages

  • Tomcat 6.0 is not working it is giving following error, can anybody help me

    Windows could not start apache tomcat on local computer. For more information review the system event log . If this is a non microsoft service contact the service vendor & refer to service specific error code 0.

    samartha123 wrote:
    It is showing this error whenever i tried to start tomact and does not start why it is so?what is? the tomcat logs?
    sounds like you installed tomcat as a service. stop the service and try starting it in a command shell using the start script so you can see the error messages as they fly by.
    %

  • Everytime i try to open itunes store on my windows 7 it crashes giving following error pls help

    Problem signature:
      Problem Event Name:          APPCRASH
      Application Name:          iTunes.exe
      Application Version:          10.5.3.3
      Application Timestamp:          4f14cc3d
      Fault Module Name:          KERNELBASE.dll
      Fault Module Version:          6.1.7601.17651
      Fault Module Timestamp:          4e2111c0
      Exception Code:          80000003
      Exception Offset:          00033e2e
      OS Version:          6.1.7601.2.1.0.256.1
      Locale ID:          16393
      Additional Information 1:          0a9e
      Additional Information 2:          0a9e372d3b4ad19135b953a78882e789
      Additional Information 3:          0a9e
      Additional Information 4:          0a9e372d3b4ad19135b953a78882e789
    Read our privacy statement online:
      http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409
    If the online privacy statement is not available, please read our privacy statement offline:
      C:\Windows\system32\en-US\erofflps.txt

    "You can add the PATH enviromental variable in Control Panel> System> Advanced System Settings.
    Alternatively, I was successful just copying the QTMovieWin.dll from c:\program files (x86)\common files\apple\apple application support\ INTO c:\program files (x86)/iTunes"
    See in: https://discussions.apple.com/thread/5252205?start=15&tstart=0

  • Query not running in sql developer, neither connecting to database. Following error - java.util.UnknownFormatConversionException: Conversion = '0'. Please reply soon.

    when i try to connect to oracle 11g rdbms, following error occurs -->
    1. sql developer version - 4.0.3.16 (jdk - jdk1.7.0_51 externally installed) -- newly installed, giving following error when try to connect to oracle 11g rdbms.
    2. sql developer version - 3.1.07.42 (jre1.6.0 included) -- used to run earlier.
    java.util.UnknownFormatConversionException: Conversion = '0'
      at java.util.Formatter.checkText(Formatter.java:2547)
      at java.util.Formatter.parse(Formatter.java:2533)
      at java.util.Formatter.format(Formatter.java:2469)
      at java.util.Formatter.format(Formatter.java:2423)
      at java.lang.String.format(String.java:2797)
      at oracle.dbtools.raptor.backgroundTask.internal.SimpleRaptorTaskUI.getFormattedTime(SimpleRaptorTaskUI.java:288)
      at oracle.dbtools.raptor.backgroundTask.internal.RaptorTaskUI.setState(RaptorTaskUI.java:43)
      at oracle.dbtools.raptor.backgroundTask.internal.SimpleRaptorTaskUI.<init>(SimpleRaptorTaskUI.java:63)
      at oracle.dbtools.raptor.backgroundTask.internal.RaptorTaskUI.<init>(RaptorTaskUI.java:36)
      at oracle.dbtools.raptor.backgroundTask.ui.TaskProgressViewer$4.<init>(TaskProgressViewer.java:346)
      at oracle.dbtools.raptor.backgroundTask.ui.TaskProgressViewer.createTaskUI(TaskProgressViewer.java:346)
      at oracle.dbtools.raptor.backgroundTask.RaptorTaskManager.initViewers(RaptorTaskManager.java:373)
      at oracle.dbtools.raptor.backgroundTask.RaptorTaskManager.access$400(RaptorTaskManager.java:45)
      at oracle.dbtools.raptor.backgroundTask.RaptorTaskManager$4.run(RaptorTaskManager.java:299)
      at oracle.dbtools.raptor.backgroundTask.RaptorTaskManager.invokeInDispatchThreadIfNeeded(RaptorTaskManager.java:313)
      at oracle.dbtools.raptor.backgroundTask.RaptorTaskManager.addTask(RaptorTaskManager.java:302)
      at oracle.dbtools.raptor.backgroundTask.RaptorTaskManager.addTask(RaptorTaskManager.java:200)
      at oracle.dbtools.raptor.backgroundTask.RaptorTaskManager.addTask(RaptorTaskManager.java:161)
      at oracle.dbtools.worksheet.editor.OpenWorksheetWizard.invoke(OpenWorksheetWizard.java:425)
      at oracle.ide.wizard.WizardManager.invokeWizard(WizardManager.java:446)
      at oracle.ide.wizard.WizardManager.invokeWizard(WizardManager.java:390)
      at oracle.dbtools.worksheet.editor.WorksheetOpenController$1.run(WorksheetOpenController.java:84)
      at oracle.dbtools.worksheet.editor.WorksheetOpenController.openWorksheetWizard(WorksheetOpenController.java:90)
      at oracle.dbtools.worksheet.editor.WorksheetOpenController.handleEvent(WorksheetOpenController.java:49)
      at oracle.ide.controller.IdeAction$ControllerDelegatingController.handleEvent(IdeAction.java:1482)
      at oracle.ide.controller.IdeAction.performAction(IdeAction.java:663)
      at oracle.ide.controller.IdeAction.actionPerformedImpl(IdeAction.java:1153)
      at oracle.ide.controller.IdeAction.actionPerformed(IdeAction.java:618)
      at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2018)
      at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2341)
      at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:402)
      at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:259)
      at javax.swing.AbstractButton.doClick(AbstractButton.java:376)
      at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:833)
      at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:877)
      at java.awt.Component.processMouseEvent(Component.java:6505)
      at javax.swing.JComponent.processMouseEvent(JComponent.java:3320)
      at java.awt.Component.processEvent(Component.java:6270)
      at java.awt.Container.processEvent(Container.java:2229)
      at java.awt.Component.dispatchEventImpl(Component.java:4861)
      at java.awt.Container.dispatchEventImpl(Container.java:2287)
      at java.awt.Component.dispatchEvent(Component.java:4687)
      at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4832)
      at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4492)
      at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4422)
      at java.awt.Container.dispatchEventImpl(Container.java:2273)
      at java.awt.Window.dispatchEventImpl(Window.java:2719)
      at java.awt.Component.dispatchEvent(Component.java:4687)
      at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:735)
      at java.awt.EventQueue.access$200(EventQueue.java:103)
      at java.awt.EventQueue$3.run(EventQueue.java:694)
      at java.awt.EventQueue$3.run(EventQueue.java:692)
      at java.security.AccessController.doPrivileged(Native Method)
      at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
      at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:87)
      at java.awt.EventQueue$4.run(EventQueue.java:708)
      at java.awt.EventQueue$4.run(EventQueue.java:706)
      at java.security.AccessController.doPrivileged(Native Method)
      at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
      at java.awt.EventQueue.dispatchEvent(EventQueue.java:705)
      at oracle.javatools.internal.ui.EventQueueWrapper._dispatchEvent(EventQueueWrapper.java:169)
      at oracle.javatools.internal.ui.EventQueueWrapper.dispatchEvent(EventQueueWrapper.java:151)
      at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:242)
      at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:161)
      at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
      at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:146)
      at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:138)
      at java.awt.EventDispatchThread.run(EventDispatchThread.java:91)

    Around a month ago, a similar question appeared on Jeff's block... look for checkText in http://www.thatjeffsmith.com/ask-a-question/
    There was no resolution there, so (as the SQL Developer code in that area has not changed) I would tend to think it might have something to do with
    1. Your Locale affecting the Formatter class's parsing of that pattern; or
    2. A bug in the jdk version in use, probably also related to the Locale.
    I recommend upgrading to the latest jdk1.7.0_xx update.  If that does not solve the issue, then try changing the Locale.

  • HT201514 Time Machine gives following error message;- The backup disk image "/Volumes/Data/JOE OTOOLE's Computer.sparsebundle" is already in use. What does it mean?

    My normally reliable Time Machine is giving following error message;-
    The backup disk image “/Volumes/Data/JOE OTOOLE’s Computer.sparsebundle” is already in use.
    What does it mean and how do I deal with it?

    I have loaded it into ML using a great and free utility unpkg.. it probably works much the same as Pacifist.
    Locate your downloaded 5.6 dmg file.. click it so you can see the pkg but don't bother opening it.
    Download, install and run unpkg.
    http://www.timdoug.com/unpkg/
    Drag the airport utility 5.6 pkg over to unpkg.. and it will create a new directory on the desktop.. named AirPortUtility56.. drill down to Applications, Utilities and you will find the unpackaged utiity.. drag it to your main utilities directory or just run it where you are..

  • TS3297 My 2nd generation ipod touch is giving me the following error when I try accessing Itunes or the app store. "Cannot connect to the Store. A secure connection could not be established. Please check your date & time settings"  I am on a secure networ

    My 2nd generation ipod touch is giving me the following error when I try accessing Itunes or the app store. "Cannot connect to the Store. A secure connection could not be established. Please check your date & time settings"  I am on a secure networkl.

    Can't connect to the iTunes Store
    Make sure that time zone is correct in addition to date and time

  • Jaas sample progrma in weblogic 6.1 giving the following error java.lang.SecurityException: attempting to add an object which is not an instance of java.security.Principal to a Subjec

    jaas sample progrma in weblogic 6.1 giving the following error java.lang.SecurityException:
    attempting to add an object which is not an instance of java.security.Principal
    to a Subjec
    on runnig the program during the call of method Authenticate.authenticate(env,
    subject); giving following exceptions Error: Login Exception on authenticate,
    java.lang.SecurityException: attempting to add an object which is not an instance
    of java.security.Principal to a Subjec t's Principal Set Authentication Failed:
    Unexpected Exception, javax.security.auth.login.LoginExce ption: java.lang.SecurityException:
    attempting to add an object which is not an instance of java.security.Principal
    to a Subject's Principal Set javax.security.auth.login.LoginException: javax.security.auth.login.LoginExcepti
    on: java.lang.SecurityException: attempting to add an object which is not an ins
    tance of java.security.Principal to a Subject's Principal Set at examples.security.jaas.SampleLoginModule.login(SampleLoginModule.java
    :192) at java.lang.reflect.Method.invoke(Native Method) at javax.security.auth.login.LoginContext.invoke(LoginContext.java:595)
    at javax.security.auth.login.LoginContext.access$000(LoginContext.java:1 25) at
    javax.security.auth.login.LoginContext$3.run(LoginContext.java:531) at java.security.AccessController.doPrivileged(Native
    Method) at javax.security.auth.login.LoginContext.invokeModule(LoginContext.java
    :528) at javax.security.auth.login.LoginContext.login(LoginContext.java:449) at
    examples.security.jaas.SampleClient.main(SampleClient.java:96)
    1)what is the reason for this problem
    2)in weblogic document they told to edit server.policy file in webligic\lib folder
    a)what the modification is needed in this file..?

    Hi jerry
    i already got that problem solved by removing jaas.jar file
    from class path.
    i don'nt how it is working with out in classpath...?
    Jerry <[email protected]> wrote:
    Hi Nivas,
    I think that the problem you are seeing has something to do with the
    placement of jaas.jar in your classpath
    On WebLogic server, put jaas.jar in the classpath after weblogic.jar.
    I would bet that you have it placed before weblogic.jar right now.
    I don't think the exception that you're seeing right now has anything
    to do with your weblogic.policy file right now, so I think it is
    safe to not worry about it right now.
    Hope this helps,
    Joe Jerry

  • When opening any crawler or datasource giving ptspy error

    Hi ,
    When opening any NT Crawler or Datasource . it is giveing the following error message in ptspy.
    27     portal.SWNHAMAPPORDV04.ptadmin     10-30-2008     13:21:49.881     Error     UI_Infrastructure     http-8080-2     com.plumtree.uiinfrastructure.activityspace.AActivitySpace     SOAPCrawlerEditor GetModel failed: Could not find model XUIHelper
    28     portal.SWNHAMAPPORDV04.ptadmin     10-30-2008     13:21:49.881     Error     Portal_Providers     http-8080-2     com.plumtree.portalpages.ext.providers.soap.crawler.SOAPCrawlerEditorAS     An exception happened when trying to set help topic on XUI pages.
    java.lang.NullPointerException
         at com.plumtree.portalpages.ext.providers.soap.crawler.SOAPCrawlerEditorAS.SetCurrentPage(SOAPCrawlerEditorAS.java:202)
         at com.plumtree.uiinfrastructure.editor.EditorAS.SetCurrentPage(EditorAS.java:305)
         at com.plumtree.portalpages.ext.providers.soap.crawler.SOAPCrawlerEditorAS.Init(SOAPCrawlerEditorAS.java:97)
         at com.plumtree.uiinfrastructure.interpreter.MVCController.CreateSpace(MVCController.java:728)
         at com.plumtree.uiinfrastructure.interpreter.MVCController.HandleRedirectChain(MVCController.java:949)
         at com.plumtree.uiinfrastructure.interpreter.MVCController.HandleRedirect(MVCController.java:542)
         at com.plumtree.uiinfrastructure.interpreter.Interpreter.HandleRequest(Interpreter.java:433)
         at com.plumtree.uiinfrastructure.interpreter.Interpreter.DoService(Interpreter.java:155)
         at com.plumtree.uiinfrastructure.web.XPPage.service(XPPage.java:306)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:263)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:584)
         at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
         at java.lang.Thread.run(Unknown Source)

    Hi MariusEntco,
    Welcome to the support community!
    Can you please verify which model of BlackBerry smartphone and what model of BlackBerry Device Software you are currently using? Here is how to check: "How to check the model number and version of installed BlackBerry device software on a BlackBerry smartphone" KB23393
    Just to verify, are you receiving this message when accessing BlackBerry World from your BlackBerry smartphone or from a computer browser?
    The steps in the following KB article may assist with this issue. "When attempting to update the BlackBerry App World storefront via the BlackBerry Browser the following error is displayed. "Sorry your session has expired. Please close all of your browser windows and then return to the welcome page to start again"" KB32113
    I look forward to your response.
    -FS
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.
    Click Solution? for posts that have solved your issue(s)!

  • Eclipse give following error :could not find Java 2 runtime environment

    When I try to start eclipse it is giving me following error could not find Java 2 runtime environment.It was working fine untill I installed a new verson of eclipse although I am not whethar that is the source of problem.
    When i give java -version command in command prompt it shows
    Registry key 'Software\JavaSoft\Java Runtime Environment\CurrentVersion'
    has value '1.4', but '1.6' is required.
    Error: could not find java.dll
    Error: could not find Java 2 Runtime Environment.
    My java Home ,classpath , and path are all set as I say it was earliar woking fine.
    Please Help.

    I know this is a relatively old post, but some people can stumble on this page when doing a search for this problem.
    Anyway, I ran into this on my PC after I installed Sybase which had an older jre.
    Solution:
    1. Run regedit
    2. Look for Java Runtime Environment
    You may have to do multiple searches. Eventually you'll find one with the version number.
    3. Modify the value and change it to the correct version number. (in your case, you would have changed it from 1.4 to 1.6).
    This is much quicker than reinstalling Java every time installing something that uses an older version of Java hoses up the registry value.

  • Am getting the following error while running the servlet example

    Hi,
    am getting the following error while running the servlet example
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    java.lang.NullPointerException
         edu.dao.StudentDao.insertStudent(StudentDao.java:18)
         edu.servlet.StudentServlet.doGet(StudentServlet.java:25)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    note The full stack trace of the root cause is available in the Apache Tomcat/5.5.20 logs.
    Thanks
    //sreekanth

    Hi,
    the following code i have written in StudentDao
    package edu.dao;
    import java.sql.Connection;
    import java.sql.PreparedStatement;
    import java.sql.SQLException;
    import org.apache.commons.dbutils.DbUtils;
    import edu.model.Student;
    import edu.util.DBUtil;
    public class StudentDao {
         public void insertStudent(Student student) {
              String stuQuery = "INSERT INTO STUDENT VALUES(?,?)";
              Connection connection = DBUtil.getConnection();
              PreparedStatement preparedStatement = null;
              try {
                   preparedStatement = connection.prepareStatement(stuQuery);
                   preparedStatement.setString(1,student.getStudentNo());
                   preparedStatement.setString(2, student.getStudentName());
                   preparedStatement.executeUpdate();
              } catch(SQLException e){
                   System.out.println("..Sql exception......");
              }finally {
                   DbUtils.closeQuietly(connection,preparedStatement,null);
    }

  • I have installed axis but i get the following error java.util.MissingResour

    i have installed axis and i get the following error when i try to acces from
    http://localhost:8080/axis/axis/index.jsp
    java.util.MissingResourceException: Can't find bundle for base name i18n, locale en_US
         java.util.ResourceBundle.throwMissingResourceException(ResourceBundle.java:836)
         java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:805)
         java.util.ResourceBundle.getBundle(ResourceBundle.java:576)
         org.apache.jsp.axis.happyaxis_jsp.getRB(happyaxis_jsp.java:325)
         org.apache.jsp.axis.happyaxis_jsp.getMessage(happyaxis_jsp.java:421)
         org.apache.jsp.axis.happyaxis_jsp.getMessage(happyaxis_jsp.java:359)
         org.apache.jsp.axis.happyaxis_jsp._jspService(happyaxis_jsp.java:557)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
         org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)

    the following is the entire error:
    org.apache.jasper.JasperException: Exception in JSP: /axis/i18nLib.jsp:20
    17: * limitations under the License.
    18: */
    19: %>
    20:
    21: <%@ include file="i18nLib.jsp" %>
    22:
    23: <%
    Stacktrace:
         org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:506)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:395)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
         org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)

  • Use Of "#EC CI_EXECSQL in ABAP with EXEC SQL. Statement giving Syntax Error

    Dear Gurus,
    I have encountered an issue while trying to remove warning for using Native SQL statement using pseudo comment "#EC CI_EXECSQL
    The thing is like this -- i have used follwing native sql command in abap.
    EXEC SQL.
        CONNECT TO 'SURROUND_DB'
      ENDEXEC.
    Now when i am checking this code in code inspector it is showing a warning with information below
    CA CL_CI_TEST_CRITICAL_STATEMENTS0006
    Code Inspector
    Critical Statements
    Use of Native SQL
    Authorization checks cannot be appropriately run using EXEC SQL and should be carried out at program level.
    The message can be hidden using the pseudo-comment "#EC CI_EXECSQL
    Use of exceptin handling section for that warning showing me to use :
    The message can be hidden using pseudo
    comment      "#EC CI_EXECSQL
    Now when I am using "#EC CI_EXECSQL in the abap like below :
    EXEC SQL. "#EC CI_EXECSQL
        CONNECT TO 'SURROUND_DB'
      ENDEXEC.
    It is giving syntax error
    The text literal ""#EC CI_EXECSQL        " is longer than 255
    characters.Check whether it ends correctly.
    Please provide the guideline to resolve this issue.
    Thanks & regards
    Saifur Rahaman.

    Hi Saifur,
    You can remove the warning using the following syntax:
    EXEC "#EC CI_EXECSQL
      SQL.
        CONNECT TO 'SURROUND_DB'
      ENDEXEC.
    At least, it worked fine for me when using OPEN CURSOR, SELECT, FETCH and so on statements.
    The way to use the pseudo comment is not very intuitive, but at least for my examples worked fine.
    I hope this may help you.
    Best regards,
    Edgardo G. König

  • One RAC node is down give the following error when starting the database!

    wHEN TRYING TO START THE DATABASE ON RAC ENVIORNMENT
    SQL> connect sys as sysdba
    Enter password:
    Connected to an idle instance.
    SQL> startup
    ORA-27102: out of memory
    HPUX-ia64 Error: 12: Not enough space
    SQL> exit
    Disconnected
    When we r trying to start the database it said
    $ bdf
    Filesystem kbytes used avail %used Mounted on
    /dev/vg00/lvol3 2097152 240944 1841896 12% /
    /dev/vg00/lvol1 344064 115376 226944 34% /stand
    /dev/vg00/lvol8 10485760 9370960 1106232 89% /var
    /dev/vg00/lvol7 4866048 2557680 2290400 53% /usr
    /dev/vg00/u02 10485760 3502229 6547116 35% /u02
    /dev/vg00/u01 10485760 10476596 9164 100% /u01
    /dev/vg00/lvol4 2097152 601872 1483944 29% /tmp
    /dev/vg00/lvol6 4194304 3231000 955792 77% /opt
    /dev/vg00/lvol5 524288 311520 211136 60% /home
    WHERE /U01 WAS 100%. Now i emptied the space in /u01 to
    $ bdf
    Filesystem kbytes used avail %used Mounted on
    /dev/vg00/lvol3 2097152 240944 1841896 12% /
    /dev/vg00/lvol1 344064 115376 226944 34% /stand
    /dev/vg00/lvol8 10485760 9370960 1106232 89% /var
    /dev/vg00/lvol7 4866048 2557680 2290400 53% /usr
    /dev/vg00/u02 10485760 3502229 6547116 35% /u02
    /dev/vg00/u01 10485760 9508934 930943 91% /u01
    /dev/vg00/lvol4 2097152 601872 1483944 29% /tmp
    /dev/vg00/lvol6 4194304 3231000 955792 77% /opt
    /dev/vg00/lvol5 524288 311520 211136 60% /home
    When trying to start the db again its giving the following error...
    SQL> connect sys as sysdba
    Enter password:
    Connected to an idle instance.
    SQL> startup
    ORA-27102: out of memory
    HPUX-ia64 Error: 12: Not enough space
    SQL> exit
    Disconnected
    here i changed the sga_target and now it says
    ORACLE instance started.
    Total System Global Area 436207616 bytes
    Fixed Size 1297912 bytes
    Variable Size 148648456 bytes
    Database Buffers 285212672 bytes
    Redo Buffers 1048576 bytes
    ORA-01105: mount is incompatible with mounts by other instances
    ORA-19808: recovery destination parameter mismatch
    What could be the issue..
    Ur help would be highly appreciated...

    Hello
    SQL> startup
    ORA-27102: out of memory
    HPUX-ia64 Error: 12: Not enough space
    SQL> exiterror is not related to space on your mount point. it is related to memory.
    if you are getting this error means chekc at the OS level whether something is consuming more memory due to which it is not allowing oracle to allocate sga.
    Check top/sar/glance to see who is consuming more memory
    Total System Global Area 436207616 bytes
    Fixed Size 1297912 bytes
    Variable Size 148648456 bytes
    Database Buffers 285212672 bytes
    Redo Buffers 1048576 bytes
    ORA-01105: mount is incompatible with mounts by other instances
    ORA-19808: recovery destination parameter mismatchit is not the best practice to maintain differnet parameters for each instance in RAC env. also check db_recovery_file_dest and db_recovery_file_dest_size is same on all node. it should be same i.e it should be a shared location.
    Anil Malkai

  • Installing Bundle#1 in peoplesoft but it giving me error

    Hi,
    I want to install and ofigure SAIP, i have followed peoplebook for this purpose. It is written there that install Campus Solutions 9.0 Bundle #9 (or the multilingual version) and HCM 9.0 Maintenance Pack #4. For this i have downloaded all the required Bundles into my system. I ran change assistant and given all the files to it, it runs and after a little time giving me error that:
    Invalid command in boot strap mode
    Ended: Sat Feb 18 18:03:30 2012
    Unsuccessful completion
    i am unable to find such error resolutions on forums and over the other useful sites.
    Please help me to out of this, because i have dead line which is very near and i have to implement SAIP.
    Regards
    Zubair Ali

    Zubair wrote:
    HCM 9.0 Maintenance Pack #4.
    Campus Solutions 9.0 Bundles #7 and #8.
    Apply Incident Resolution 768436.
    My question is what will be the sequece of all Bndle and MPs? SHoud i install Mps first and then bundle? or i go with Bundles first and then Mps?The MP5 has been released and if I'm not wrong the MP5 cumulative includes all the bundles up to bundle #7. So, why not go for that MP5 then apply bundle #8 ?
    Of course, you should check the prerequisites if any.
    Nicolas.

  • When i send a test message throw the RWB for Http receiver adapter it is giving the error "Error in processing caused by: com.sap.aii.adapter.http.api.HttpAdapterException: ERROR_SOCKET_TIMEOUT, Read timed out"

    when i send a test message throw the RWB for Http receiver adapter it is giving the error "Error in processing caused by: com.sap.aii.adapter.http.api.HttpAdapterException: ERROR_SOCKET_TIMEOUT, Read timed out"

    Hi, Michal
    I have read your Weblog. It makes sense to me. Thanks a lot for your help! However, I still have some questions and listed them as following. Could you please help to answer them?
    <b>Q1:</b> I am new to SAP-XI. So I have no idea about TCODE-SXMB_ADM. Could you introduce more details about it?
    <b>Q2:</b> The XI system I am using is running on SAP-ICC's machine. The tools I can use are:
    <b>1.</b>Builder for Integration Repository
    <b>2.</b>Builder for Integration Configuration
    <b>3.</b>System Landscape Directory
    <b>4.</b>Runtime Workbench
    <b>5.</b>Administration System (for Repository, Directory, Runtime)
    Please note that I do not have a complete control on this SAP-XI. Do you think whether or not I can set the timeout parameter by following the instructions provided in your Weblog?
    For more details about my SAP-XI, please access the following Web page:
    http://iccxi.sap.com:58000/rep/support/admin/index.html
    <b>Q3:</b> The following messages are extracted from the SAP-XI. Wish they are hepful to solving my problem.
    2006-06-19 05:12:16 Success The message was successfully received by the messaging system. Profile: XI URL: http://iccxi.sap.com:58000/MessagingSystem/receive/AFW/XI
    2006-06-19 05:12:16 Success Using connection AFW. Trying to put the message into the request queue.
    2006-06-19 05:12:16 Success Message successfully put into the queue.
    2006-06-19 05:12:16 Success The message was successfully retrieved from the request queue.
    2006-06-19 05:12:16 Success The message status set to DLNG.
    2006-06-19 05:12:16 Success Delivering to channel: ValidationRequestHandlerServiceChannel
    2006-06-19 05:12:16 Success SOAP: request message entering the adapter
    2006-06-19 05:12:37 Success SOAP: call failed
    2006-06-19 05:12:37 Error SOAP: error occured: java.net.ConnectException: Connection timed out: connect
    2006-06-19 05:12:37 Error Exception caught by adapter framework: Connection timed out: connect
    Thanks
    Menghua Li

Maybe you are looking for

  • How can I play iPad games like Clash of Clans on my iMac or MBP

    I have watched a bunch of videos on YouTube that allegedly state that by installing an application such as (but not limited to) XCode I can play iPad games on my Macs. I have not been able to get ANYTHING to work. Has Apple or any 3rd party ever came

  • When I'm listening to the radio or charging it, my i phone gets very hot, is this normal?

    Hello, i´ve noted that my IPhone 4 gets really hot (burn the hand) when i´m listening to the radio, or even when it´s charging the battery. Is this normal?? Thank you guys!!

  • Cant install NeoOffice - help!....

    ....I get as far as 'select a destination' and see the hd with an exclamation mark saying 'can't be installed on this volume until it is put into applications folder blah blah blah, which I've done but still no luck, help please - thanks.

  • Does anybody know how to save battery on the iPhone?

    It seems like everybody has a better battery life than me because I can barely make it throughout a day on a single charge and I hear that some people can last 2-4 days on a single charge. How long does your iPhone last on a single charge? Do you hav

  • Starting with Flex

    I builded a small application that retrieves data from an xml file. It works perfectly in my local machine but in the server, I get the following error: [RPC Fault faultString="Security error accessing url" faultCode="Channel.Security.Error" faultDet