I don&#39;t know how many people use <a href="http://authorize.net">authorize.net</a>, but I thought I&#39;d share the way I am going to use from inside filepro.  Here&#39;s my crude sample code using fp 5.0.14r4 on SCO Openserver 6 with cURL installed:<br>
<br>::DECLARE flags; DECLARE querystr:<br>::DECLARE url; DECLARE outputfile:<br>::DECLARE x_login; DECLARE x_tran_key;:<br>::x_login=&quot;redacted&quot;; x_tran_key=&quot;redacted&quot;:<br>::flags=&quot;-k&quot;:<br>::querystr=&quot;-d \&quot;&quot;:<br>
::querystr=querystr{&quot;x_login=&quot;{x_login{&quot;&amp;x_tran_key=&quot;{x_tran_key{&quot;&amp;x_version=3.1&amp;x_delim_data=TRUE&quot;:<br>::querystr=querystr{&quot;&amp;x_delim_char=%7C&amp;x_relay_response=FALSE&amp;_type=AUTH_CAPTURE&amp;x_method=CC&amp;x_card_num=4111111111111111&quot;:<br>
::querystr=querystr{&quot;&amp;x_exp_date=0115&amp;x_amount=19.99&amp;x_description=Inv%3A555666%3BCus%3A333222%28Doe%2CJohn%29&quot;:<br>::querystr=querystr{&quot;&amp;x_last_name=Doe&amp;x_address=1234+Street&amp;x_state=WA&amp;x_zip=98004&quot;:<br>
::querystr=querystr{&quot;\&quot;&quot;:<br>::url=&quot;\&quot;https//<a href="http://secure.authorize.net/gateway/transact.dll">secure.authorize.net/gateway/transact.dll</a>\&quot;&quot;:<br>:@PM eq &quot;test&quot;:url=&quot;\&quot;https//<a href="http://test.authorize.net/gateway/transact.dll">test.authorize.net/gateway/transact.dll</a>\&quot;&quot;:<br>
::outputfile=&quot;/tmp/deleteme.txt&quot;:<br>::system &quot;curl&quot; &lt;flags &lt;querystr &lt;url &lt;&quot;&gt;&quot; &lt;outputfile &lt;&quot;2&gt; /dev/null&quot;:<br><br>Hopefully other people may find it of use :)<br>
<br>Tyler<br>