need help for java program
Hi,
I need help with my web application. When i tried to run it using
localhost:8080
it's giving me error that
signup.do file is not available.
can someone tell me what could be wrong with my code?
I want to know what is .do file and what needs to do to have remove the error
I have also used struts config file.
Please help me.
Message was edited by:
star4588
[432 byte] By [
star4588a] at [2007-11-27 4:52:22]

signup.do is not a file but an form action.This error means that you have no struts action (server side) that handles the web form actionlook at web.xml and in struts-config.xml and search signup.doby the way, are you developing a struts application ?
See struts documentation here http://struts.apache.org/1.2.9/userGuide/building_controller.html#action_mapping_example
you should have something like that :
<action-mappings>
<action
path="/signup"
type="org.apache.struts.webapp.example.SignupAction"
name="signupForm"
scope="request"
input="/signup.jsp"
unknown="false"
validate="true" />
..........
</action-mappings>
in your struts-config.xml.
Hope That Helps