<?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: Could not load type 'AuthorizeNet.DPMFormGenerator' from assembly in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Could-not-load-type-AuthorizeNet-DPMFormGenerator-from-assembly/m-p/51590#M26941</link>
    <description>&lt;P&gt;You don't need the SDK. Just read the doc &lt;A href="http://developer.authorize.net/api/dpm/" target="_blank"&gt;http://developer.authorize.net/api/dpm/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;DPM basically is just a form post to an authorize.net url.&lt;/P&gt;</description>
    <pubDate>Sun, 02 Aug 2015 19:43:25 GMT</pubDate>
    <dc:creator>RaynorC1emen7</dc:creator>
    <dc:date>2015-08-02T19:43:25Z</dc:date>
    <item>
      <title>Could not load type 'AuthorizeNet.DPMFormGenerator' from assembly</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Could-not-load-type-AuthorizeNet-DPMFormGenerator-from-assembly/m-p/51465#M26819</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Created a clean VS2013 using MVC5 project by following from this link &lt;A href="http://developer.authorize.net/integration/fifteenminutes/csharp/," target="_blank"&gt;http://developer.authorize.net/integration/fifteenminutes/csharp/,&lt;/A&gt; but&lt;BR /&gt;when running the solution I get this error&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;"Could not load type 'AuthorizeNet.DPMFormGenerator' from assembly 'AuthorizeNet, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'."&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I simply follow the tutorial and NO errors on compile but error on runtime only.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Package;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;PRE&gt;&amp;lt;package id="AuthorizeNet" version="1.8.4" targetFramework="net45" /&amp;gt;&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;MVC View&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;@{
ViewBag.Title = "Index";
}
&amp;lt;h2&amp;gt;Authorize.Net&amp;lt;/h2&amp;gt;
&amp;lt;div class="row"&amp;gt;
&amp;lt;div class="col-lg-12"&amp;gt;
@Html.Action("DPM", "Application1")
&amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;MVC Controller&lt;/P&gt;&lt;PRE&gt;using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using AuthorizeNet;
namespace Application1.Controllers
{
public class Application1Controller : Controller
{
public ActionResult Index()
{
return View();
}
public ActionResult DPM()
{
String ApiLogin = "sandbox-api";
String TxnKey = "sandbox-key";
String checkoutform = DPMFormGenerator.OpenForm(ApiLogin, TxnKey, 2.25M, "https://YOUR_RELAY_RESPONSE_URL", true);
// Add a credit card number input field
checkoutform = checkoutform + "&amp;lt;p&amp;gt;&amp;lt;div style='float:left;width:250px;'&amp;gt;&amp;lt;label&amp;gt;Credit Card Number&amp;lt;/label&amp;gt;&amp;lt;div id = 'CreditCardNumber'&amp;gt;&amp;lt;input type='text' size='28' name='x_card_num' value='4111111111111111' id='x_card_num'/&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;";
// Add an expiry date input field 
checkoutform = checkoutform + "&amp;lt;div style='float:left;width:70px;'&amp;gt;&amp;lt;label&amp;gt;Exp.&amp;lt;/label&amp;gt;&amp;lt;div id='CreditCardExpiration'&amp;gt;&amp;lt;input type='text' size='5' maxlength='5' name='x_exp_date' value='0116' id='x_exp_date'/&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;";
// Add a CVV input field
checkoutform = checkoutform + "&amp;lt;div style='float:left;width:70px;'&amp;gt;&amp;lt;label&amp;gt;CCV&amp;lt;/label&amp;gt;&amp;lt;div id='CCV'&amp;gt;&amp;lt;input type='text' size='5' maxlength='5' name='x_card_code' id='x_card_code' value='123' /&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/p&amp;gt;";
// Add a Submit button
checkoutform = checkoutform + "&amp;lt;div style='clear:both'&amp;gt;&amp;lt;/div&amp;gt;";
checkoutform = checkoutform + "&amp;lt;p&amp;gt;&amp;lt;input type='submit' class='submit' value='Order with DPM!' /&amp;gt;&amp;lt;/p&amp;gt;";
checkoutform = checkoutform + DPMFormGenerator.EndForm();
return Content("&amp;lt;html&amp;gt;" + checkoutform + "&amp;lt;/html&amp;gt;");
}
}
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help is much appreciated. Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jul 2015 15:13:47 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Could-not-load-type-AuthorizeNet-DPMFormGenerator-from-assembly/m-p/51465#M26819</guid>
      <dc:creator>allinone</dc:creator>
      <dc:date>2015-07-21T15:13:47Z</dc:date>
    </item>
    <item>
      <title>Re: Could not load type 'AuthorizeNet.DPMFormGenerator' from assembly</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Could-not-load-type-AuthorizeNet-DPMFormGenerator-from-assembly/m-p/51523#M26875</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/18655"&gt;@allinone﻿&lt;/a&gt;&lt;BR /&gt;&lt;BR /&gt;I've reported your issue to the product team for analysis.&lt;BR /&gt;&lt;BR /&gt;I'd recommend subscribing to this topic so that you'll be alerted via email if there are updates. To subscribe, click &lt;STRONG&gt;Topic Options&lt;/STRONG&gt; at the top of this thread and then select &lt;STRONG&gt;Subscribe&lt;/STRONG&gt;. You'll then receive an email once anyone replies to your post.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;&lt;BR /&gt;Richard&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jul 2015 18:09:55 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Could-not-load-type-AuthorizeNet-DPMFormGenerator-from-assembly/m-p/51523#M26875</guid>
      <dc:creator>RichardH</dc:creator>
      <dc:date>2015-07-24T18:09:55Z</dc:date>
    </item>
    <item>
      <title>Re: Could not load type 'AuthorizeNet.DPMFormGenerator' from assembly</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Could-not-load-type-AuthorizeNet-DPMFormGenerator-from-assembly/m-p/51567#M26918</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;May I know if the issue is resolved? I think this is versioning issue don't you think?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The error stated version 1.0.0.0 but the package downloaded from Nuget is version &amp;nbsp;1.8.4.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Looking forward.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jul 2015 03:57:21 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Could-not-load-type-AuthorizeNet-DPMFormGenerator-from-assembly/m-p/51567#M26918</guid>
      <dc:creator>allinone</dc:creator>
      <dc:date>2015-07-29T03:57:21Z</dc:date>
    </item>
    <item>
      <title>Re: Could not load type 'AuthorizeNet.DPMFormGenerator' from assembly</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Could-not-load-type-AuthorizeNet-DPMFormGenerator-from-assembly/m-p/51589#M26940</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there other tutorials on how to test the Authorize.Net Sandbox implementation besides the 15-minutes guide?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We are still stuck in the beginning process but still prefer Authorize.Net on C# MVC to charge users credit cards.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 02 Aug 2015 13:25:10 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Could-not-load-type-AuthorizeNet-DPMFormGenerator-from-assembly/m-p/51589#M26940</guid>
      <dc:creator>allinone</dc:creator>
      <dc:date>2015-08-02T13:25:10Z</dc:date>
    </item>
    <item>
      <title>Re: Could not load type 'AuthorizeNet.DPMFormGenerator' from assembly</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Could-not-load-type-AuthorizeNet-DPMFormGenerator-from-assembly/m-p/51590#M26941</link>
      <description>&lt;P&gt;You don't need the SDK. Just read the doc &lt;A href="http://developer.authorize.net/api/dpm/" target="_blank"&gt;http://developer.authorize.net/api/dpm/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;DPM basically is just a form post to an authorize.net url.&lt;/P&gt;</description>
      <pubDate>Sun, 02 Aug 2015 19:43:25 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Could-not-load-type-AuthorizeNet-DPMFormGenerator-from-assembly/m-p/51590#M26941</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2015-08-02T19:43:25Z</dc:date>
    </item>
    <item>
      <title>Re: Could not load type 'AuthorizeNet.DPMFormGenerator' from assembly</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Could-not-load-type-AuthorizeNet-DPMFormGenerator-from-assembly/m-p/51591#M26942</link>
      <description>&lt;P&gt;Seems like there is no sample code for DPM here&amp;nbsp;&lt;A href="http://developer.authorize.net/downloads/samplecode/" target="_blank"&gt;http://developer.authorize.net/downloads/samplecode/...only&lt;/A&gt; for AIM, SIM, ARB, CIM and MBAPI.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Where can I find the sample for for DPM?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 03 Aug 2015 03:37:14 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Could-not-load-type-AuthorizeNet-DPMFormGenerator-from-assembly/m-p/51591#M26942</guid>
      <dc:creator>allinone</dc:creator>
      <dc:date>2015-08-03T03:37:14Z</dc:date>
    </item>
    <item>
      <title>Re: Could not load type 'AuthorizeNet.DPMFormGenerator' from assembly</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Could-not-load-type-AuthorizeNet-DPMFormGenerator-from-assembly/m-p/51594#M26945</link>
      <description>&lt;P&gt;Start with the SIM sample code, DPM is about 90% the same as SIM, even the DPM doc is just an Appendix in SIM doc.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Aug 2015 11:33:34 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Could-not-load-type-AuthorizeNet-DPMFormGenerator-from-assembly/m-p/51594#M26945</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2015-08-03T11:33:34Z</dc:date>
    </item>
  </channel>
</rss>

