How PayByCreditCard.jsp is mapped ?
<?xml
version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts-config
PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.1//EN"
"http://jakarta.apache.org/struts/dtds/struts-
config_1_1.dtd">
<struts-config>
<action-mappings type="org.apache.struts.action.ActionMapping">
<action path="/makePayment"
type="edu.umkc.cs554.project.student.CreditCardValidationAction">
<forward name="success" path="/ocr/invokeSecurePay" redirect="false" />
</action>
<action path="/invokeSecurePay"
type="edu.umkc.cs554.project.student.MakePaymentAction">
<forward name="success" path="/jsp/common/MainMenu.jsp" redirect="false"
/>
</action>
</action-mappings>
<message-resources parameter="ApplicationResources" null="false" key="org.apache.struts.action.MESSAGE"
/>
</struts-config>