<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Yet another dreaded Error Code 13 for DPM in Perl in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Yet-another-dreaded-Error-Code-13-for-DPM-in-Perl/m-p/20825#M11390</link>
    <description>&lt;P&gt;Hmm.&amp;nbsp; That's interesting.&amp;nbsp; Whodathunkit.&amp;nbsp; Okay, I added the "-no_xhtml" pragma to the loading of the CGI module and now it generates HTML v4.01 code and the form tag is generated with the&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;enctype&lt;/SPAN&gt;=&lt;SPAN&gt;"application/x-www-form-urlencoded&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;attribute. Now I no longer get the error 13. Thanks for the clue.&lt;/P&gt;</description>
    <pubDate>Thu, 29 Dec 2011 21:49:11 GMT</pubDate>
    <dc:creator>bobcatos</dc:creator>
    <dc:date>2011-12-29T21:49:11Z</dc:date>
    <item>
      <title>Yet another dreaded Error Code 13 for DPM in Perl</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Yet-another-dreaded-Error-Code-13-for-DPM-in-Perl/m-p/20813#M11384</link>
      <description>&lt;P&gt;I'm trying to implement DPM in Perl.&amp;nbsp; I've cobbled a skeletal test bed just to make sure I have the basic functionality before I wire it into the real app.&amp;nbsp; Unfortunately, I can't get past error 13.&amp;nbsp; Here is the generated HTML:&lt;/P&gt;&lt;PRE&gt;&amp;lt;!DOCTYPE html
	PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
	 "&lt;A target="_blank" href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&lt;/A&gt;"&amp;gt;
&amp;lt;html xmlns="&lt;A target="_blank" href="http://www.w3.org/1999/xhtml"&gt;http://www.w3.org/1999/xhtml&lt;/A&gt;" lang="en-US" xml:lang="en-US"&amp;gt;
&amp;lt;head&amp;gt;
&amp;lt;title&amp;gt;Confirmation page&amp;lt;/title&amp;gt;
&amp;lt;meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;

&amp;lt;h1&amp;gt;Confirm amount&amp;lt;/h1&amp;gt;
&amp;lt;p&amp;gt;Confirm payment of $5.99 USD.&amp;lt;/p&amp;gt;
&amp;lt;form method="post" action="&lt;A target="_blank" href="https://test.authorize.net/gateway/transact.dll"&gt;https://test.authorize.net/gateway/transact.dll&lt;/A&gt;" enctype="multipart/form-data"&amp;gt;

&amp;lt;input type="hidden" name="x_method" value="CC"  /&amp;gt;

&amp;lt;input type="hidden" name="x_type" value="AUTH_CAPTURE"  /&amp;gt;
&amp;lt;input type="hidden" name="x_card_num" value="4007000000027"  /&amp;gt;
&amp;lt;input type="hidden" name="x_exp_date" value="11/12"  /&amp;gt;
&amp;lt;input type="hidden" name="x_card_code" value="782"  /&amp;gt;
&amp;lt;input type="hidden" name="x_amount" value="5.99"  /&amp;gt;
&amp;lt;input type="hidden" name="x_fp_sequence" value="428"  /&amp;gt;
&amp;lt;input type="hidden" name="x_fp_timestamp" value="1325191206"  /&amp;gt;
&amp;lt;input type="hidden" name="x_fp_hash" value="51a096dec8f280e76dc7c49f6aed6654"  /&amp;gt;
&amp;lt;input type="hidden" name="x_login" value="xxxxxxxxxxx"  /&amp;gt;
&amp;lt;input type="hidden" name="x_relay_response" value="TRUE"  /&amp;gt;
&amp;lt;input type="hidden" name="x_relay_url" value="&lt;A target="_blank" href="http://my.domain.com/cgi-local/relay_response.cgi"&gt;http://my.domain.com/cgi-local/relay_response.cgi&lt;/A&gt;"  /&amp;gt;
&amp;lt;input type="hidden" name="x_version" value="3.1"  /&amp;gt;
&amp;lt;input type="submit" name=".submit" /&amp;gt;
&amp;lt;/form&amp;gt;

&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;I'm using my test API login (just got it yesterday), and the transaction key I was issued at that time.&amp;nbsp; Today, I got a new transaction key and am still getting the same result.&lt;/P&gt;&lt;P&gt;I cobbled together some Perl code to test the generation of the fingerprint, and did the same in PHP using the downloaded PHP API.&amp;nbsp; They both generate the same fingerprint, so I believe that part is correct.&lt;/P&gt;&lt;P&gt;What's missing from this picture?&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;P&gt;-- Bob.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Dec 2011 20:59:34 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Yet-another-dreaded-Error-Code-13-for-DPM-in-Perl/m-p/20813#M11384</guid>
      <dc:creator>bobcatos</dc:creator>
      <dc:date>2011-12-29T20:59:34Z</dc:date>
    </item>
    <item>
      <title>Re: Yet another dreaded Error Code 13 for DPM in Perl</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Yet-another-dreaded-Error-Code-13-for-DPM-in-Perl/m-p/20817#M11386</link>
      <description>&lt;P&gt;It there a reason for enctype="multipart/form-data" on the form post?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Dec 2011 21:24:06 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Yet-another-dreaded-Error-Code-13-for-DPM-in-Perl/m-p/20817#M11386</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2011-12-29T21:24:06Z</dc:date>
    </item>
    <item>
      <title>Re: Yet another dreaded Error Code 13 for DPM in Perl</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Yet-another-dreaded-Error-Code-13-for-DPM-in-Perl/m-p/20819#M11387</link>
      <description>&lt;P&gt;That's what the Perl CGI module generates as part of the form tag.&amp;nbsp; Why?&amp;nbsp; Is that a problem?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Dec 2011 21:28:10 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Yet-another-dreaded-Error-Code-13-for-DPM-in-Perl/m-p/20819#M11387</guid>
      <dc:creator>bobcatos</dc:creator>
      <dc:date>2011-12-29T21:28:10Z</dc:date>
    </item>
    <item>
      <title>Re: Yet another dreaded Error Code 13 for DPM in Perl</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Yet-another-dreaded-Error-Code-13-for-DPM-in-Perl/m-p/20821#M11388</link>
      <description>&lt;P&gt;It might be messing with the post data as it look like it is for binary data.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Dec 2011 21:33:18 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Yet-another-dreaded-Error-Code-13-for-DPM-in-Perl/m-p/20821#M11388</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2011-12-29T21:33:18Z</dc:date>
    </item>
    <item>
      <title>Re: Yet another dreaded Error Code 13 for DPM in Perl</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Yet-another-dreaded-Error-Code-13-for-DPM-in-Perl/m-p/20825#M11390</link>
      <description>&lt;P&gt;Hmm.&amp;nbsp; That's interesting.&amp;nbsp; Whodathunkit.&amp;nbsp; Okay, I added the "-no_xhtml" pragma to the loading of the CGI module and now it generates HTML v4.01 code and the form tag is generated with the&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;enctype&lt;/SPAN&gt;=&lt;SPAN&gt;"application/x-www-form-urlencoded&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;attribute. Now I no longer get the error 13. Thanks for the clue.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Dec 2011 21:49:11 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Yet-another-dreaded-Error-Code-13-for-DPM-in-Perl/m-p/20825#M11390</guid>
      <dc:creator>bobcatos</dc:creator>
      <dc:date>2011-12-29T21:49:11Z</dc:date>
    </item>
  </channel>
</rss>

