Проблема со struts.SendRedirect: на локалке работает, на серваке — "broken link"
ИДЕИ?
http://files.rsdn.ru/104511/struts_xml.txt:
...
<action name="paymentPaypal" class="ranktracker.action.PaymentInfoAction" method="execute">
<result name="success" type="tiles">success</result><!--this will never get a Hit-->
</action>
...
http://files.rsdn.ru/104511/PaymentInfoAction.java
/**
* The method creates an authentication token for paypal, forwards the
* request with purchase order description and token to paypal
*
* @return struts return value
* @throws Exception
*/
@Override
public String execute() throws Exception {
....
....
....
objResponse.sendRedirect(objResponse.encodeRedirectURL(redirecturl));
///////////////////////////////////////////////////////////////////
return "sucess";
}