<?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: Accept Hosted not working. in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-not-working/m-p/57028#M31769</link>
    <description>&lt;P&gt;I got my sandbox account working:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ID:&amp;nbsp;84EG2H9Sdv3&lt;/P&gt;&lt;P&gt;Tkey:&amp;nbsp;22q9jK5aEEmwj245&lt;/P&gt;&lt;P&gt;SKey:&amp;nbsp;E7F5827B76A8FC82C6F67B20F2BE1004F7F6924A5E11BB07021D0E82E7C19F3FE5B85B0E0AA0BD6F9B1EE62F454F825AFE27094F6FE35D83AEB2602719AD538B&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;url:&amp;nbsp;&lt;A href="https://apitest.authorize.net/xml/v1/request.api" target="_blank"&gt;https://apitest.authorize.net/xml/v1/request.api&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, production in TEST or LIVE mode doesn't work:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ID: lemmeknow&lt;BR /&gt;Tkey: generated&lt;BR /&gt;Skey: and also generated&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;url:&amp;nbsp;&lt;SPAN&gt;&lt;A href="https://api.authorize.net/xml/v1/request.api" target="_blank"&gt;https://api.authorize.net/xml/v1/request.api&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please let me know if you need me to post at least the API Login ID. Thanks!&lt;/P&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;</description>
    <pubDate>Thu, 23 Feb 2017 17:47:34 GMT</pubDate>
    <dc:creator>ferdie33</dc:creator>
    <dc:date>2017-02-23T17:47:34Z</dc:date>
    <item>
      <title>Accept Hosted not working.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-not-working/m-p/57022#M31763</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;we are on a time constraint to have our site working and Accept Hosted is not working upon using the name and transactionKey begin generated in my merchant admin whether if I toggle it in LIVE or TEST.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It doesn't &amp;nbsp;even work in my sandbox generated account.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can somebody pretty please look into this.&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;for your reference:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;/** Authorize **/

    public function get_payment_request_token() {

        $request = $_POST;
        $errorMessage = array();

        if($request) {

            parse_str($request['formdata'], $formdata);

            $this-&amp;gt;load-&amp;gt;model("System_model");

            $authorize = $this-&amp;gt;system_model-&amp;gt;get_authorize_credentials(array('auth_active'=&amp;gt;1));

            $loginID = $authorize['auth_client'];
            $transKey = $authorize['auth_key'];
            $url = $authorize['auth_url'];

	    $state = isset($formdata['cust_billing_state'])?$formdata['cust_billing_state']:"";

            $jsonStr = '{
                        "getHostedPaymentPageRequest": {
                            "merchantAuthentication": {
                                "name": "'.$loginID.'",
                                "transactionKey": "'.$transKey.'"
                            },
                            "transactionRequest": {
                                "transactionType": "authCaptureTransaction",
                                "amount": "'.$formdata['or_total_amount'].'",
                                "customer": {
                                    "email": "'.$formdata['cust_billing_email'].'"
                                },
                                "billTo": {
                                    "firstName": "'.ucwords($formdata['cust_billing_first_name']).'",
                                    "lastName": "'.ucwords($formdata['cust_billing_last_name']).'",
                                    "company": "",
                                    "address": "'.$formdata['cust_billing_address1'].' '.$formdata['cust_billing_address2'].'",
                                    "city": "'.$formdata['cust_billing_city'].'",
                                    "state": "'.$state.'",
                                    "zip": "'.$formdata['cust_billing_postal_code'].'",
                                    "country": "USA",
                                    "phoneNumber": "'.$formdata['cust_billing_phone_number'].'",
                                }
                            },
                            "hostedPaymentSettings": {
                                "setting": [{
                                    "settingName": "hostedPaymentIFrameCommunicatorUrl",
                                    "settingValue": "{\"url\": \"http://lyfelite.com/beta/cart.php\"}"
                                }, {
                                    "settingName": "hostedPaymentBillingAddressOptions",
                                    "settingValue": "{\"show\": true, \"required\":true}"
                                }, {
                                    "settingName": "hostedPaymentButtonOptions",
                                    "settingValue": "{\"text\": \"Pay Now\"}"
                                }, {
                                    "settingName": "hostedPaymentCustomerOptions",
                                    "settingValue": "{\"showEmail\":true,\"requiredEmail\":true}"
                                }, {
                                    "settingName": "hostedPaymentPaymentOptions",
                                    "settingValue": "{\"cardCodeRequired\":true}"
                                }, {
                                    "settingName": "hostedPaymentReturnOptions",
                                    "settingValue": "{\"showReceipt\": true,\"url\":\"http://lyfelite.com/beta/continue\",\"urlText\":\"Continue\",\"cancelUrl\":\"http://lyfelite.com/beta/cancel\",\"cancelUrlText\":\"Cancel\"}"
                                }, {
                                    "settingName": "hostedPaymentSecurityOptions",
                                    "settingValue": "{\"captcha\": true}"
                                }, {
                                    "settingName": "hostedPaymentShippingAddressOptions",
                                    "settingValue": "{\"show\":true,\"required\":true}"
                                }, {
                                    "settingName": "hostedPaymentStyleOptions",
                                    "settingValue": "{\"bgColor\": \"blue\"}"
                                }]
                            }
                        }
                    }';

                   //$url = "https://apitest.authorize.net/xml/v1/request.api";

                    try{                                                                                                                     
                        $ch = curl_init($url);

                        curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");                                                                     
                        curl_setopt($ch, CURLOPT_POSTFIELDS, $jsonStr);                                                                  
                        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);                                                                      
                        curl_setopt($ch, CURLOPT_HTTPHEADER, array(                                                                          
                            'Content-Type: application/json',                                                                                
                            'Content-Length: ' . strlen($jsonStr))                                                                       
                        ); 
                        
                        $content = curl_exec($ch);
                        echo $content;die;
                        $data = $content;
                        
                        curl_close($ch);

                    }catch(Exception $e) {
                        trigger_error(sprintf('Curl failed with error #%d: %s', $e-&amp;gt;getCode(), $e-&amp;gt;getMessage()), E_USER_ERROR);
                    }
        } else {
            $errorMessage[] = "Invalid Request";
        }

        echo json_encode(array('data'=&amp;gt;json_decode($data, true), 'error'=&amp;gt;implode(". &amp;lt;br&amp;gt;", $errorMessage)));

    }&lt;/PRE&gt;</description>
      <pubDate>Thu, 23 Feb 2017 16:15:36 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-not-working/m-p/57022#M31763</guid>
      <dc:creator>ferdie33</dc:creator>
      <dc:date>2017-02-23T16:15:36Z</dc:date>
    </item>
    <item>
      <title>Re: Accept Hosted not working.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-not-working/m-p/57028#M31769</link>
      <description>&lt;P&gt;I got my sandbox account working:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ID:&amp;nbsp;84EG2H9Sdv3&lt;/P&gt;&lt;P&gt;Tkey:&amp;nbsp;22q9jK5aEEmwj245&lt;/P&gt;&lt;P&gt;SKey:&amp;nbsp;E7F5827B76A8FC82C6F67B20F2BE1004F7F6924A5E11BB07021D0E82E7C19F3FE5B85B0E0AA0BD6F9B1EE62F454F825AFE27094F6FE35D83AEB2602719AD538B&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;url:&amp;nbsp;&lt;A href="https://apitest.authorize.net/xml/v1/request.api" target="_blank"&gt;https://apitest.authorize.net/xml/v1/request.api&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, production in TEST or LIVE mode doesn't work:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ID: lemmeknow&lt;BR /&gt;Tkey: generated&lt;BR /&gt;Skey: and also generated&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;url:&amp;nbsp;&lt;SPAN&gt;&lt;A href="https://api.authorize.net/xml/v1/request.api" target="_blank"&gt;https://api.authorize.net/xml/v1/request.api&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please let me know if you need me to post at least the API Login ID. Thanks!&lt;/P&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;</description>
      <pubDate>Thu, 23 Feb 2017 17:47:34 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-not-working/m-p/57028#M31769</guid>
      <dc:creator>ferdie33</dc:creator>
      <dc:date>2017-02-23T17:47:34Z</dc:date>
    </item>
    <item>
      <title>Re: Accept Hosted not working.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-not-working/m-p/57037#M31778</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/21285"&gt;@ferdie33&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Again, I'm sorry about the troubles you're having. If you can answer the following questions, that would be great.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Previously you said it didn't work in sandbox, but now it does. What changed? Was it creating the signature key or something else?&lt;/LI&gt;&lt;LI&gt;Just to clarify, it's the E00001 error you're getting in response to the token request, right?&lt;/LI&gt;&lt;LI&gt;Do you have an easy way to capture the output of the curl request (the actual HTTP request that's getting sent to our server) for us to see?&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Thu, 23 Feb 2017 22:04:30 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-not-working/m-p/57037#M31778</guid>
      <dc:creator>Aaron</dc:creator>
      <dc:date>2017-02-23T22:04:30Z</dc:date>
    </item>
    <item>
      <title>Re: Accept Hosted not working.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-not-working/m-p/57038#M31779</link>
      <description>&lt;P&gt;Hello Aaron:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. Yes the signature key passed on the header made the thing worked (on my sandbox account).&lt;/P&gt;&lt;P&gt;2. I et to see the payment page but as soon as I hit pay button an error authentication prompts me.&lt;/P&gt;&lt;P&gt;3. Now it giving me a different error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;IMG src="https://ip1.i.lithium.com/322d7afeb0dafe737acdce70bf5479716ed2911d/687474703a2f2f7777772e6c7966656c6974652e636f6d2f626574612f6572726f722e6a706567" border="0" alt="error" width="676" height="728" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Feb 2017 22:23:05 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-not-working/m-p/57038#M31779</guid>
      <dc:creator>ferdie33</dc:creator>
      <dc:date>2017-02-23T22:23:05Z</dc:date>
    </item>
    <item>
      <title>Re: Accept Hosted not working.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-not-working/m-p/57039#M31780</link>
      <description>&lt;P&gt;Any way you can post the HTTP request curl is sending, either by using Fiddler or similar, or setting 'curl_setopt verbose'?&lt;/P&gt;</description>
      <pubDate>Thu, 23 Feb 2017 22:56:55 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-not-working/m-p/57039#M31780</guid>
      <dc:creator>Aaron</dc:creator>
      <dc:date>2017-02-23T22:56:55Z</dc:date>
    </item>
    <item>
      <title>Re: Accept Hosted not working.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-not-working/m-p/57041#M31781</link>
      <description>&lt;P&gt;Good Morning:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's the report:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;* About to connect() to api.authorize.net port 443 (#0)
   Trying 64.94.118.84...  connected
* Connected to api.authorize.net (64.94.118.84) port 443 (#0)
*   CAfile: /etc/pki/tls/certs/ca-bundle.crt
  CApath: none
* SSL connection using TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
* Server certificate:
*  subject: CN=*.authorize.net,O=Authorize.Net,L=Bellevue,ST=Washington,C=US
*  start date: Mar 25 18:50:09 2015 GMT
*  expire date: May 26 04:15:57 2018 GMT
  common name: .authorize.net
*  issuer: CN=Entrust Certification Authority - L1K,OU="(c) 2012 Entrust, Inc. - for authorized use only"
,OU=See www.entrust.net/legal-terms,O="Entrust, Inc.",C=US
&amp;gt; POST /xml/v1/request.api HTTP/1.1
Host: api.authorize.net
Accept: /
Content-Type: application/json
Content-Length: 3377
Authorization: HHMAC; signature={$signature}
Expect: 100-continue

&amp;lt; HTTP/1.1 100 Continue
&amp;lt; HTTP/1.1 200 OK
&amp;lt; Cache-Control: private
&amp;lt; Content-Type: application/json; charset=utf-8
&amp;lt; Server: Microsoft-IIS/7.5
&amp;lt; Access-Control-Allow-Origin: *
&amp;lt; Access-Control-Allow-Methods: PUT,OPTIONS,POST,GET
&amp;lt; Access-Control-Allow-Headers: x-requested-with,cache-control,content-type,origin,method,SOAPAction

&amp;lt; X-AspNet-Version: 4.0.30319
&amp;lt; X-Powered-By: ASP.NET
&amp;lt; Date: Fri, 24 Feb 2017 14:36:03 GMT
&amp;lt; Connection: close
&amp;lt; Content-Length: 1878
&amp;lt; 
* Closing connection #0&lt;/PRE&gt;</description>
      <pubDate>Fri, 24 Feb 2017 14:38:37 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-not-working/m-p/57041#M31781</guid>
      <dc:creator>ferdie33</dc:creator>
      <dc:date>2017-02-24T14:38:37Z</dc:date>
    </item>
    <item>
      <title>Re: Accept Hosted not working.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-not-working/m-p/57059#M31799</link>
      <description>&lt;P&gt;So sorry, I thought verbose would get me the http post body. Can you instead maybe add a line like this after you set the curl options:&lt;/P&gt;&lt;PRE&gt;print_r($jsonStr-&amp;gt;asXML());&lt;/PRE&gt;&lt;P&gt;Then, can you post the output?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to get an example of exactly how the posted data looks after it runs through your code in exactly the same format it would be hitting our server.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 24 Feb 2017 22:17:19 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-not-working/m-p/57059#M31799</guid>
      <dc:creator>Aaron</dc:creator>
      <dc:date>2017-02-24T22:17:19Z</dc:date>
    </item>
    <item>
      <title>Re: Accept Hosted not working.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-not-working/m-p/57061#M31801</link>
      <description>&lt;PRE&gt;{
                        "getHostedPaymentPageRequest": {
                            "merchantAuthentication": {
                                "name": "#########",
                                "transactionKey": "#############"
                            },
                            "transactionRequest": {
                                "transactionType": "authCaptureTransaction",
                                "amount": "29.95",
                                "customer": {
                                    "email": "##########"
                                },
                                "billTo": {
                                    "firstName": "Ann",
                                    "lastName": "Test",
                                    "company": "",
                                    "address": "addr ",
                                    "city": "city",
                                    "state": "ca",
                                    "zip": "34222",
                                    "country": "USA",
                                    "phoneNumber": "8756765345",
                                }
                            },
                            "hostedPaymentSettings": {
                                "setting": [{
                                    "settingName": "hostedPaymentIFrameCommunicatorUrl",
                                    "settingValue": "{\"url\": \"http://lyfelite.com/beta/cart.php\"
}"
                                }, {
                                    "settingName": "hostedPaymentBillingAddressOptions",
                                    "settingValue": "{\"show\": true, \"required\":true}"
                                }, {
                                    "settingName": "hostedPaymentButtonOptions",
                                    "settingValue": "{\"text\": \"Pay Now\"}"
                                }, {
                                    "settingName": "hostedPaymentCustomerOptions",
                                    "settingValue": "{\"showEmail\":true,\"requiredEmail\":true}"
                                }, {
                                    "settingName": "hostedPaymentPaymentOptions",
                                    "settingValue": "{\"cardCodeRequired\":true}"
                                }, {
                                    "settingName": "hostedPaymentReturnOptions",
                                    "settingValue": "{\"showReceipt\": true,\"url\":\"http://lyfelite
.com/beta/continue\",\"urlText\":\"Continue\",\"cancelUrl\":\"http://lyfelite.com/beta/cancel\",\"cancelUrlText
\":\"Cancel\"}"
                                }, {
                                    "settingName": "hostedPaymentSecurityOptions",
                                    "settingValue": "{\"captcha\": true}"
                                }, {
                                    "settingName": "hostedPaymentShippingAddressOptions",
                                    "settingValue": "{\"show\":true,\"required\":true}"
                                }, {
                                    "settingName": "hostedPaymentStyleOptions",
                                    "settingValue": "{\"bgColor\": \"blue\"}"
                                }]
                            }
                        }
                    }&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's the code I've hashed out keys there.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Feb 2017 22:36:45 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-not-working/m-p/57061#M31801</guid>
      <dc:creator>ferdie33</dc:creator>
      <dc:date>2017-02-24T22:36:45Z</dc:date>
    </item>
    <item>
      <title>Re: Accept Hosted not working.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-not-working/m-p/57066#M31806</link>
      <description>&lt;P&gt;Thanks for this. I spaced it earlier, and forgot your were using JSON instead of XML, so inappropriately suggested using asXML() in the php code. Glad you got the request anyway.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Good news is I can reproduce the issue with the code you posted. I'm investigating now to see what's actually triggering it. Stay tuned.&lt;/P&gt;</description>
      <pubDate>Sat, 25 Feb 2017 00:02:14 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-not-working/m-p/57066#M31806</guid>
      <dc:creator>Aaron</dc:creator>
      <dc:date>2017-02-25T00:02:14Z</dc:date>
    </item>
    <item>
      <title>Re: Accept Hosted not working.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-not-working/m-p/57069#M31809</link>
      <description>&lt;P&gt;No, sorry, I spoke too soon. I introduced an error when I copied and pasted. Once I fixed that, the token request works correctly for me, and calls a payment form that works without error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;One more thing to double check: When you switch from test to production, you're changing all the URLs that you might hit, right? Like you're requesting the token from the production URL,&amp;nbsp;&lt;EM&gt;and&lt;/EM&gt; sending the token in the form request to&amp;nbsp;&lt;EM&gt;that&amp;nbsp;&lt;/EM&gt;production URL, right? Sending a test token to build the production form and vice versa would obviously fail, although I don't think it would error out this way.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, you're inadvertantly triggering some bug or error condition, but as of yet, I can't see how. I'll need to dig into this a little deeper, and I'd love it if you could help me. Can you contact me directly at aawright@authorize.net and tell me what your availability is for a phone call to work on this?&lt;/P&gt;</description>
      <pubDate>Sat, 25 Feb 2017 00:19:24 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-not-working/m-p/57069#M31809</guid>
      <dc:creator>Aaron</dc:creator>
      <dc:date>2017-02-25T00:19:24Z</dc:date>
    </item>
    <item>
      <title>Re: Accept Hosted not working.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-not-working/m-p/57098#M31837</link>
      <description>&lt;P&gt;I've shoot an email two days ago. I'm going to forward that email to you again.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 01 Mar 2017 15:00:21 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-not-working/m-p/57098#M31837</guid>
      <dc:creator>ferdie33</dc:creator>
      <dc:date>2017-03-01T15:00:21Z</dc:date>
    </item>
  </channel>
</rss>

