In the Magento Shopping cart's payment method step, in the implemented payment method when the Credit Card (CC) details are entered the form does not get posted after placing the order.
The implemented payment method is setup so that the form has a action attribute pointing to a payment processor gateway and includes input fields for CC details. The name set for input fields are recognized by the endpoint accepting POST requests.
The form.phtml is setup so that the standard Magento CC input fields are surrounded by a form tag with the endpoint for the action. I do not have a submit button within this form, I thought the place order button does the submission.
How can I get the form to submit the CC details to the endpoint once payment method selection is continued and the placed order button is clicked?
The CC details should only be posted to the endpoint, it should not be posted to the server hosting the Magento Shopping cart.