<?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: Problem with CIM hosted asp.net form in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Problem-with-CIM-hosted-asp-net-form/m-p/51709#M27055</link>
    <description>&lt;P&gt;I have the same problem! The token is set correctly, the javascript is set up as instructed, I see the iframeCommunicator.html loading, but I recieve no hash from the API, so the initial&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;callParentFunction(&lt;/SPAN&gt;&lt;SPAN&gt;window&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;location&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;hash&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;substring&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;Never gets called. This shouldn't require so much code foo. It's rediculous the hoops you have to go through to decipher this process.&lt;/P&gt;</description>
    <pubDate>Wed, 12 Aug 2015 15:38:22 GMT</pubDate>
    <dc:creator>rakmaster</dc:creator>
    <dc:date>2015-08-12T15:38:22Z</dc:date>
    <item>
      <title>Problem with CIM hosted asp.net form</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Problem-with-CIM-hosted-asp-net-form/m-p/34728#M19165</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So far I managed to get CIM working with hosted form. I can add CC and save it, edit and delete. I saw in the popup.js that there is a function called&amp;nbsp;AuthorizeNetPopup.onReceiveCommunication and I wanted to use it because of the&amp;nbsp;params["action"] param which returns&amp;nbsp;successfulSave or&amp;nbsp;cancel. But that function is never fired. I start debugging and everything in my client was OK. All events were wired up. Then I started to debug authorize's profile.js. Then I saw why that function was never fired up.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="sourceRow"&gt;&lt;SPAN&gt;,onSuccess: function(apiResp, i) { &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="sourceRow "&gt;&lt;SPAN&gt;if (g_singleItemMode) { &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="sourceRow"&gt;&lt;SPAN&gt;sendCommunicationToMerchant("action=successfulSave"); &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="sourceRow"&gt;&lt;SPAN&gt;this.showConfirmationText(i); &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="sourceRow"&gt;&lt;SPAN&gt;} else { &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="sourceRow"&gt;&lt;SPAN&gt;this.showEditMode(false, i); &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="sourceRow"&gt;&lt;SPAN&gt;setTimeout("reloadCustProf()", 1); &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="sourceRow"&gt;&lt;SPAN&gt;} &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="sourceRow"&gt;&lt;SPAN&gt;}&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="sourceRow"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="sourceRow"&gt;&lt;SPAN&gt;The field&amp;nbsp;&lt;SPAN&gt;g_singleItemMode is always false so it never send message to my client. Can you tell me how can I make the field&amp;nbsp;&lt;SPAN&gt;g_singleItemMode to be TRUE?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="sourceRow"&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 20 Jun 2013 06:57:07 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Problem-with-CIM-hosted-asp-net-form/m-p/34728#M19165</guid>
      <dc:creator>mynkow</dc:creator>
      <dc:date>2013-06-20T06:57:07Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with CIM hosted asp.net form</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Problem-with-CIM-hosted-asp-net-form/m-p/34768#M19191</link>
      <description>&lt;P&gt;In order for these actions to be sent, it's important that you are making use of the "iFrameCommunicator". This communicator is used to relay the actions to your page. You can see an example of this communicator page in the sample code that you referenced. You'll want to make sure that it is being loaded and that it is on precisely the same domain as your main script.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jun 2013 21:51:31 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Problem-with-CIM-hosted-asp-net-form/m-p/34768#M19191</guid>
      <dc:creator>Trevor</dc:creator>
      <dc:date>2013-06-24T21:51:31Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with CIM hosted asp.net form</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Problem-with-CIM-hosted-asp-net-form/m-p/34788#M19211</link>
      <description>&lt;P&gt;Of course we do. You can see the code bellow. The problem still remains :(&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;div id="divAuthorizeNetPopup" style="display:none;" class="AuthorizeNetPopupGrayFrameTheme"&amp;gt;&lt;BR /&gt;&amp;lt;div class="AuthorizeNetPopupOuter"&amp;gt;&lt;BR /&gt;&amp;lt;div class="AuthorizeNetPopupTop"&amp;gt;&lt;BR /&gt;&amp;lt;div class="AuthorizeNetPopupClose"&amp;gt;&lt;BR /&gt;&amp;lt;a href="javascript&amp;amp;colon;;" onclick="AuthorizeNetPopup.closePopup();" title="Close"&amp;gt; &amp;lt;/a&amp;gt;&lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;div class="AuthorizeNetPopupInner"&amp;gt;&lt;BR /&gt;&amp;lt;iframe name="iframeAuthorizeNet" id="iframeAuthorizeNet" src="~/Content/authorizenet/IframeCommunicator.html" frameborder="0" scrolling="no"&amp;gt;&amp;lt;/iframe&amp;gt;&lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;div class="AuthorizeNetPopupBottom"&amp;gt;&lt;BR /&gt;&amp;lt;div class="AuthorizeNetPopupLogo" title="Powered by Authorize.Net"&amp;gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;div class="AuthorizeNetShadow AuthorizeNetShadowT"&amp;gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;div class="AuthorizeNetShadow AuthorizeNetShadowR"&amp;gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;div class="AuthorizeNetShadow AuthorizeNetShadowB"&amp;gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;div class="AuthorizeNetShadow AuthorizeNetShadowL"&amp;gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;div class="AuthorizeNetShadow AuthorizeNetShadowTR"&amp;gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;div class="AuthorizeNetShadow AuthorizeNetShadowBR"&amp;gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;div class="AuthorizeNetShadow AuthorizeNetShadowBL"&amp;gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;div class="AuthorizeNetShadow AuthorizeNetShadowTL"&amp;gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;div id="divAuthorizeNetPopupScreen" style="display:none;"&amp;gt;&amp;lt;/div&amp;gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jun 2013 09:21:48 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Problem-with-CIM-hosted-asp-net-form/m-p/34788#M19211</guid>
      <dc:creator>mynkow</dc:creator>
      <dc:date>2013-06-27T09:21:48Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with CIM hosted asp.net form</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Problem-with-CIM-hosted-asp-net-form/m-p/34806#M19226</link>
      <description>&lt;P&gt;Bump.&amp;nbsp; I know I am passing values to the GetHostedProfilePage object because I can turn the "hostedProfilePageBorderVisible" feature.&amp;nbsp; For hostedProfileIFrameCommunicatorUrl I am passing the exact same URL as I am in my web.config file except the hostedProfileIFrameCommunicatorUrl value contains contentx/iFrameCommunicator.html.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've spent an entire day trying EVERYTHING I can think of.&amp;nbsp; I cannot get the IFrameCommunicator.html to fire.&amp;nbsp; EVERYTHING else works fine.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm thinking about trying another solution this has me so frustrated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Joe&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2013 16:05:27 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Problem-with-CIM-hosted-asp-net-form/m-p/34806#M19226</guid>
      <dc:creator>Alg0nquin</dc:creator>
      <dc:date>2013-06-28T16:05:27Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with CIM hosted asp.net form</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Problem-with-CIM-hosted-asp-net-form/m-p/34812#M19232</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I recommend that you take a look at the source code of the hosted form to see if the iFrame is loading.&amp;nbsp;If it is loading, then you'll need to take a look at your JavaScript to make sure that it is properly set to receive the signals from the iFrameCommunicator.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Joy&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2013 20:54:33 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Problem-with-CIM-hosted-asp-net-form/m-p/34812#M19232</guid>
      <dc:creator>Joy</dc:creator>
      <dc:date>2013-06-28T20:54:33Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with CIM hosted asp.net form</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Problem-with-CIM-hosted-asp-net-form/m-p/34828#M19247</link>
      <description>&lt;P&gt;What javascript setup I have to do to get this working?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The javascript located in the iframe is loaded and working.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Jul 2013 07:15:24 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Problem-with-CIM-hosted-asp-net-form/m-p/34828#M19247</guid>
      <dc:creator>mynkow</dc:creator>
      <dc:date>2013-07-01T07:15:24Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with CIM hosted asp.net form</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Problem-with-CIM-hosted-asp-net-form/m-p/34830#M19249</link>
      <description>&lt;P&gt;just tell me what is '&lt;SPAN&gt;g_singleItemMode' and when it is TRUE?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Jul 2013 07:34:47 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Problem-with-CIM-hosted-asp-net-form/m-p/34830#M19249</guid>
      <dc:creator>mynkow</dc:creator>
      <dc:date>2013-07-01T07:34:47Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with CIM hosted asp.net form</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Problem-with-CIM-hosted-asp-net-form/m-p/34831#M19250</link>
      <description>&lt;P&gt;On the &lt;A href="http://developer.authorize.net/downloads/samplecode/" target="_blank"&gt;http://developer.authorize.net/downloads/samplecode/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Is probably the one said "CIM - Hosted popup for single payment/shipping"&lt;/P&gt;</description>
      <pubDate>Mon, 01 Jul 2013 11:40:06 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Problem-with-CIM-hosted-asp-net-form/m-p/34831#M19250</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2013-07-01T11:40:06Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with CIM hosted asp.net form</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Problem-with-CIM-hosted-asp-net-form/m-p/51709#M27055</link>
      <description>&lt;P&gt;I have the same problem! The token is set correctly, the javascript is set up as instructed, I see the iframeCommunicator.html loading, but I recieve no hash from the API, so the initial&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;callParentFunction(&lt;/SPAN&gt;&lt;SPAN&gt;window&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;location&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;hash&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;substring&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;Never gets called. This shouldn't require so much code foo. It's rediculous the hoops you have to go through to decipher this process.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Aug 2015 15:38:22 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Problem-with-CIM-hosted-asp-net-form/m-p/51709#M27055</guid>
      <dc:creator>rakmaster</dc:creator>
      <dc:date>2015-08-12T15:38:22Z</dc:date>
    </item>
  </channel>
</rss>

