Hi,
I've web.xml file in which I've index.jsp as my welcome files list.
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
in index.jsp I've struts logic redirect tag.
<logic:redirect forward="welcome"/>
In struts-config.xml file I've the following in <global-forwards>
<global-forwards>
<forward name="welcome" path="/login.do" />
</global-forwards>
And I've the following login action..
<action path="/login"
type="com.cingular.cscape.cmps.struts.action.SignOnAction" validate="false">
<forward name="success" path="/login.jsp" redirect="true" />
</action>
Once I try to run the following URL in the browser it is saying "Page cannot
be displayed"
http://localhost:7001/cmps
http://localhost:7001/cmps/login.do
Please advise me if I'm doing any thing wrong.
Thanks,
Anil
--
View this message in context:
http://www.nabble.com/Problem-with-%3Cglobal-forwards%3E-of-struts-config.xml-file..-tf4642067.html#a13258793
Sent from the Struts - Dev mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]