I am developing a Struts+Hibernate web application. I confronted with the following error with struts.xml
:
Unable to load configuration. - file:/F:/BidNext/build/web/WEB-INF/classes/struts.xml:9:8**
org.xml.sax.SAXParseException; systemId: file:/F:/BidNext/build/web/WEB-INF/classes/struts.xml; >lineNumber: 9; columnNumber: 8; Document is invalid: no grammar found.
Here is my struts.xml
:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<package name="auction" extends="struts-default">
<action name="signupaction" class="struts.action.SignUpAction">
<result name="SUCCESS">/Home.jsp</result>
</action>
</package>
</struts>