Hi,
How make a link or JSP URL "invisible" to a browser? I have read some chapter
in a book, I know that this is possible. Is it possible with Struts? Is it
some property "visible=true / false"?
The second question is about "input" parameter in "Action Mapping" section of
struts-config.xml. For example, struts-example has no "input" for "Edit user
registration", but has "forward" for "success". On the other hand, "A walking
tour of the example application"
(http://localhost:8080/struts-example/tour.htm) has both (paragraph
"CheckLoginTag.java":
-------
<!-- Edit user registration -->
<action path="/editRegistration"
type="org.apache.struts.example.EditRegistrationAction"
name="registrationForm"
scope="request"
validate="false"
input="/registration.jsp">
<forward name="success" path="/registration.jsp"/>
</action>
------
What is right?
Maya