I'm not quite sure I understand the process.
I have a form which is gathering data to submit to a 3rd party database through an API. It is expecting a XML file. I have the url and a login and password for the 3rd party system to receive the XML.
I'm not certain I understand what the exact process is with Gravity Forms.
I have the form data. I know the field id of each field and the content.
I'm assuming that in the confirmation tab, I select Redirect and include the url of the server.
At what point is Gform_after_submission executing?
This is the sample header:
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Header>
<AuthenticationHeader xmlns="http://services.ecashsoftware.com/leads">
<Username>string</Username>
<Password>string</Password>
</AuthenticationHeader>
</soap:Header>
<soap:Body>
<!-- Input Data -->
</soap:Body>
</soap:Envelope>
I am developing the code in PHP to format the data into an xml file, but I"m not sure I understand the process that Gravity Forms uses.