<?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: Authorization using AcceptJS nonce causing OTS Service Error in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57079#M31819</link>
    <description>&lt;P&gt;Yes, it's still broken. Using &lt;A href="http://developer.authorize.net/api/reference/#payment-transactions-authorize-a-credit-card" target="_blank"&gt;http://developer.authorize.net/api/reference/#payment-transactions-authorize-a-credit-card&lt;/A&gt; and I still get the OTS field validation error, although I just generated the nonce and haven't used it anywhere.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The (sandbox) login ID I'm using is:&lt;/P&gt;&lt;P&gt;5JNKx9n3F&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And the public client key is&amp;nbsp;&lt;/P&gt;&lt;P&gt;26QzsnrpZT2kGQA9y9P9vgb5FSB6Rx9PdyCK53gAEPrKt4834vPB5zHrJhu44sSu&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The last nonce I generated&amp;nbsp;&lt;/P&gt;&lt;P&gt;eyJ0b2tlbiI6Ijk0ODgyMTI0NTczNjUwNTQ0MDQ2MDQiLCJ2IjoiMS4xIn0&lt;/P&gt;</description>
    <pubDate>Mon, 27 Feb 2017 16:32:42 GMT</pubDate>
    <dc:creator>glyoder</dc:creator>
    <dc:date>2017-02-27T16:32:42Z</dc:date>
    <item>
      <title>Authorization using AcceptJS nonce causing OTS Service Error</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57042#M31782</link>
      <description>&lt;P&gt;Is anyone else suddenly getting&amp;nbsp;OTS Service Errors for transactions that use a payment nonce?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have an AcceptJS solution that has been working just fine until a couple days ago:&lt;/P&gt;&lt;P&gt;- uses AcceptJS library to create payment nonce&lt;/P&gt;&lt;P&gt;- use the payment nonce in Java to perform an authOnly transaction (anet-java-sdk 1.9.2)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This has been working just fine until a couple days ago, but now every time I try to perform a transaction with a new payment nonce, I get the OTS field validation error. Yes, I've double/triple-checked that the client public key and login id match the sandbox I'm using.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's how I build the transaction in Java:&lt;/P&gt;&lt;PRE&gt;TransactionRequestType txnRequest = new TransactionRequestType();
txnRequest.setTransactionType(TransactionTypeEnum.AUTH_ONLY_TRANSACTION.value());

OpaqueDataType opaqueData = new OpaqueDataType();
opaqueData.setDataDescriptor("COMMON.ACCEPT.INAPP.PAYMENT");
opaqueData.setDataValue(nonce);
PaymentType paymentType = new PaymentType();
paymentType.setOpaqueData(opaqueData);

txnRequest.setPayment(paymentType);
txnRequest.setAmount(amount);
CustomerAddressType cat = new CustomerAddressType();
cat.setFirstName(firstName);
cat.setLastName(lastName);
txnRequest.setBillTo(cat);

// Make the API Request
CreateTransactionRequest apiRequest = new CreateTransactionRequest();
apiRequest.setTransactionRequest(txnRequest);
CreateTransactionController controller = new CreateTransactionController(apiRequest);
controller.execute();

CreateTransactionResponse response = controller.getApiResponse();
...&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Feb 2017 16:15:09 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57042#M31782</guid>
      <dc:creator>glyoder</dc:creator>
      <dc:date>2017-02-24T16:15:09Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization using AcceptJS nonce causing OTS Service Error</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57043#M31783</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/21288"&gt;@glyoder&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is this occuring in the sandbox or production?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Richard&lt;/P&gt;</description>
      <pubDate>Fri, 24 Feb 2017 16:30:30 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57043#M31783</guid>
      <dc:creator>RichardH</dc:creator>
      <dc:date>2017-02-24T16:30:30Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization using AcceptJS nonce causing OTS Service Error</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57044#M31784</link>
      <description>&lt;P&gt;Sandbox - we've not gone to prod with this yet.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Feb 2017 16:47:07 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57044#M31784</guid>
      <dc:creator>glyoder</dc:creator>
      <dc:date>2017-02-24T16:47:07Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization using AcceptJS nonce causing OTS Service Error</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57046#M31786</link>
      <description>&lt;P&gt;For what it's worth, I've been able to replicate the error using the "try it" functionality on the API reference page.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For the authOnly example, I replaced the payment info with&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;payment&amp;gt;&lt;BR /&gt;&amp;lt;opaqueData&amp;gt;&lt;BR /&gt;&amp;lt;dataDescriptor&amp;gt;COMMON.ACCEPT.INAPP.PAYMENT&amp;lt;/dataDescriptor&amp;gt;&lt;BR /&gt;&amp;lt;dataValue&amp;gt;eyJ0b2tlbiI6Ijk0ODc5NTU1NzE3ODUzODQ1MDQ2MDMiLCJ2IjoiMS4xIn0&amp;lt;/dataValue &amp;gt;&lt;BR /&gt;&amp;lt;/opaqueData&amp;gt;&lt;BR /&gt;&amp;lt;/payment&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And set the sandbox login id and transaction id. I get the same OTS error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Feb 2017 17:02:19 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57046#M31786</guid>
      <dc:creator>glyoder</dc:creator>
      <dc:date>2017-02-24T17:02:19Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization using AcceptJS nonce causing OTS Service Error</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57048#M31788</link>
      <description>&lt;P&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/21288"&gt;@glyoder&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you provide the exact error message returned?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Richard&lt;/P&gt;</description>
      <pubDate>Fri, 24 Feb 2017 17:10:55 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57048#M31788</guid>
      <dc:creator>RichardH</dc:creator>
      <dc:date>2017-02-24T17:10:55Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization using AcceptJS nonce causing OTS Service Error</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57050#M31790</link>
      <description>&lt;P&gt;&lt;SPAN class="error"&gt;&lt;A href="http://developer.authorize.net/api/reference/responseCodes.html?code=E00117" target="_blank"&gt;E00117&lt;/A&gt; : OTS Service Error 'Field validation error.'&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Feb 2017 17:35:49 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57050#M31790</guid>
      <dc:creator>glyoder</dc:creator>
      <dc:date>2017-02-24T17:35:49Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization using AcceptJS nonce causing OTS Service Error</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57051#M31791</link>
      <description>&lt;P&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/21288"&gt;@glyoder&lt;/a&gt;&amp;nbsp;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 Feb 2017 17:37:42 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57051#M31791</guid>
      <dc:creator>RichardH</dc:creator>
      <dc:date>2017-02-24T17:37:42Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization using AcceptJS nonce causing OTS Service Error</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57062#M31802</link>
      <description>&lt;P&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/21288"&gt;@glyoder&lt;/a&gt;&amp;nbsp; We've detected some unusually activity in the logs for this service and our operation center team is investigating.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Once a solution is found, we'll also request that additional monitoring be added to avoid similar issues in the future.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Richard&lt;/P&gt;</description>
      <pubDate>Fri, 24 Feb 2017 23:37:04 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57062#M31802</guid>
      <dc:creator>RichardH</dc:creator>
      <dc:date>2017-02-24T23:37:04Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization using AcceptJS nonce causing OTS Service Error</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57075#M31815</link>
      <description>&lt;P&gt;Any ETA on when this might be fixed? Thanks.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Feb 2017 15:29:19 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57075#M31815</guid>
      <dc:creator>glyoder</dc:creator>
      <dc:date>2017-02-27T15:29:19Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization using AcceptJS nonce causing OTS Service Error</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57076#M31816</link>
      <description>&lt;P&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/21288"&gt;@glyoder&lt;/a&gt;&amp;nbsp; It should have returned to normal, are you still getting an error?&lt;/P&gt;</description>
      <pubDate>Mon, 27 Feb 2017 16:13:19 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57076#M31816</guid>
      <dc:creator>RichardH</dc:creator>
      <dc:date>2017-02-27T16:13:19Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization using AcceptJS nonce causing OTS Service Error</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57077#M31817</link>
      <description>&lt;P&gt;Yep.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://developer.authorize.net/api/reference/#payment-transactions-authorize-a-credit-card" target="_blank"&gt;http://developer.authorize.net/api/reference/#payment-transactions-authorize-a-credit-card&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I just generated a new payment nonce using our sandbox login id 5JNKx9n3F and client key&amp;nbsp;26QzsnrpZT2kGQA9y9P9vgb5FSB6Rx9PdyCK53gAEPrKt4834vPB5zHrJhu44sSu.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The request I sent was:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&amp;lt;createTransactionRequest xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd"&amp;gt;
  &amp;lt;merchantAuthentication&amp;gt;
    &amp;lt;name&amp;gt;5JNKx9n3F&amp;lt;/name&amp;gt;
    &amp;lt;transactionKey&amp;gt;*****&amp;lt;/transactionKey&amp;gt;
  &amp;lt;/merchantAuthentication&amp;gt;
  &amp;lt;refId&amp;gt;123456&amp;lt;/refId&amp;gt;
  &amp;lt;transactionRequest&amp;gt;
    &amp;lt;transactionType&amp;gt;authOnlyTransaction&amp;lt;/transactionType&amp;gt;
    &amp;lt;amount&amp;gt;5&amp;lt;/amount&amp;gt;
    &amp;lt;payment&amp;gt;
      &amp;lt;opaqueData&amp;gt;
        &amp;lt;dataDescriptor&amp;gt;COMMON.ACCEPT.INAPP.PAYMENT&amp;lt;/dataDescriptor&amp;gt;
        &amp;lt;dataValue&amp;gt;eyJ0b2tlbiI6Ijk0ODgyMTI0NTczNjUwNTQ0MDQ2MDQiLCJ2IjoiMS4xIn0&amp;lt;/dataValue &amp;gt;
      &amp;lt;/opaqueData&amp;gt;
    &amp;lt;/payment&amp;gt;
    &amp;lt;order&amp;gt;
      &amp;lt;invoiceNumber&amp;gt;INV-12345&amp;lt;/invoiceNumber&amp;gt;
      &amp;lt;description&amp;gt;Product Description&amp;lt;/description&amp;gt;
    &amp;lt;/order&amp;gt;
    &amp;lt;lineItems&amp;gt;
      &amp;lt;lineItem&amp;gt;
        &amp;lt;itemId&amp;gt;1&amp;lt;/itemId&amp;gt;
        &amp;lt;name&amp;gt;vase&amp;lt;/name&amp;gt;
        &amp;lt;description&amp;gt;Cannes logo &amp;lt;/description&amp;gt;
        &amp;lt;quantity&amp;gt;18&amp;lt;/quantity&amp;gt;
        &amp;lt;unitPrice&amp;gt;45.00&amp;lt;/unitPrice&amp;gt;
      &amp;lt;/lineItem&amp;gt;
    &amp;lt;/lineItems&amp;gt;
    &amp;lt;tax&amp;gt;
      &amp;lt;amount&amp;gt;4.26&amp;lt;/amount&amp;gt;
      &amp;lt;name&amp;gt;level2 tax name&amp;lt;/name&amp;gt;
      &amp;lt;description&amp;gt;level2 tax&amp;lt;/description&amp;gt;
    &amp;lt;/tax&amp;gt;
    &amp;lt;duty&amp;gt;
      &amp;lt;amount&amp;gt;8.55&amp;lt;/amount&amp;gt;
      &amp;lt;name&amp;gt;duty name&amp;lt;/name&amp;gt;
      &amp;lt;description&amp;gt;duty description&amp;lt;/description&amp;gt;
    &amp;lt;/duty&amp;gt;
    &amp;lt;shipping&amp;gt;
      &amp;lt;amount&amp;gt;4.26&amp;lt;/amount&amp;gt;
      &amp;lt;name&amp;gt;level2 tax name&amp;lt;/name&amp;gt;
      &amp;lt;description&amp;gt;level2 tax&amp;lt;/description&amp;gt;
    &amp;lt;/shipping&amp;gt;
    &amp;lt;poNumber&amp;gt;456654&amp;lt;/poNumber&amp;gt;
    &amp;lt;billTo&amp;gt;
      &amp;lt;firstName&amp;gt;Ellen&amp;lt;/firstName&amp;gt;
      &amp;lt;lastName&amp;gt;Johnson&amp;lt;/lastName&amp;gt;
      &amp;lt;company&amp;gt;Souveniropolis&amp;lt;/company&amp;gt;
      &amp;lt;address&amp;gt;
      14 Main Street
      &amp;lt;/address&amp;gt;
      &amp;lt;city&amp;gt;Pecan Springs&amp;lt;/city&amp;gt;
      &amp;lt;state&amp;gt;TX&amp;lt;/state&amp;gt;
      &amp;lt;zip&amp;gt;44628&amp;lt;/zip&amp;gt;
      &amp;lt;country&amp;gt;USA&amp;lt;/country&amp;gt;
    &amp;lt;/billTo&amp;gt;
    &amp;lt;shipTo&amp;gt;
      &amp;lt;firstName&amp;gt;China&amp;lt;/firstName&amp;gt;
      &amp;lt;lastName&amp;gt;Bayles&amp;lt;/lastName&amp;gt;
      &amp;lt;company&amp;gt;Thyme for Tea&amp;lt;/company&amp;gt;
      &amp;lt;address&amp;gt;
      12 Main Street
      &amp;lt;/address&amp;gt;
      &amp;lt;city&amp;gt;Pecan Springs&amp;lt;/city&amp;gt;
      &amp;lt;state&amp;gt;TX&amp;lt;/state&amp;gt;
      &amp;lt;zip&amp;gt;44628&amp;lt;/zip&amp;gt;
      &amp;lt;country&amp;gt;USA&amp;lt;/country&amp;gt;
    &amp;lt;/shipTo&amp;gt;
    &amp;lt;customerIP&amp;gt;192.168.1.1&amp;lt;/customerIP&amp;gt;
    &amp;lt;!-- Uncomment this section for Card Present Sandbox Accounts --&amp;gt; 
    &amp;lt;!-- &amp;lt;retail&amp;gt;&amp;lt;marketType&amp;gt;2&amp;lt;/marketType&amp;gt;&amp;lt;deviceType&amp;gt;1&amp;lt;/deviceType&amp;gt;&amp;lt;/retail&amp;gt; --&amp;gt;
    &amp;lt;transactionSettings&amp;gt;
      &amp;lt;setting&amp;gt;
        &amp;lt;settingName&amp;gt;testRequest&amp;lt;/settingName&amp;gt;
        &amp;lt;settingValue&amp;gt;false&amp;lt;/settingValue&amp;gt;
      &amp;lt;/setting&amp;gt;
    &amp;lt;/transactionSettings&amp;gt;
    &amp;lt;userFields&amp;gt;
      &amp;lt;userField&amp;gt;
        &amp;lt;name&amp;gt;MerchantDefinedFieldName1&amp;lt;/name&amp;gt;
        &amp;lt;value&amp;gt;MerchantDefinedFieldValue1&amp;lt;/value&amp;gt;
      &amp;lt;/userField&amp;gt;
      &amp;lt;userField&amp;gt;
        &amp;lt;name&amp;gt;favorite_color&amp;lt;/name&amp;gt;
        &amp;lt;value&amp;gt;blue&amp;lt;/value&amp;gt;
      &amp;lt;/userField&amp;gt;
    &amp;lt;/userFields&amp;gt;
  &amp;lt;/transactionRequest&amp;gt;
&amp;lt;/createTransactionRequest&amp;gt;
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;The result is:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;A href="http://developer.authorize.net/api/reference/responseCodes.html?code=E00117" target="_blank"&gt;E00117&lt;/A&gt; : OTS Service Error 'Field validation error.'&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Feb 2017 20:25:40 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57077#M31817</guid>
      <dc:creator>glyoder</dc:creator>
      <dc:date>2017-02-27T20:25:40Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization using AcceptJS nonce causing OTS Service Error</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57079#M31819</link>
      <description>&lt;P&gt;Yes, it's still broken. Using &lt;A href="http://developer.authorize.net/api/reference/#payment-transactions-authorize-a-credit-card" target="_blank"&gt;http://developer.authorize.net/api/reference/#payment-transactions-authorize-a-credit-card&lt;/A&gt; and I still get the OTS field validation error, although I just generated the nonce and haven't used it anywhere.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The (sandbox) login ID I'm using is:&lt;/P&gt;&lt;P&gt;5JNKx9n3F&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And the public client key is&amp;nbsp;&lt;/P&gt;&lt;P&gt;26QzsnrpZT2kGQA9y9P9vgb5FSB6Rx9PdyCK53gAEPrKt4834vPB5zHrJhu44sSu&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The last nonce I generated&amp;nbsp;&lt;/P&gt;&lt;P&gt;eyJ0b2tlbiI6Ijk0ODgyMTI0NTczNjUwNTQ0MDQ2MDQiLCJ2IjoiMS4xIn0&lt;/P&gt;</description>
      <pubDate>Mon, 27 Feb 2017 16:32:42 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57079#M31819</guid>
      <dc:creator>glyoder</dc:creator>
      <dc:date>2017-02-27T16:32:42Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization using AcceptJS nonce causing OTS Service Error</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57084#M31824</link>
      <description>&lt;P&gt;OK, I found the problem, and it's on our side! &lt;IMG border="0" alt="☹" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It's actually Chrome's fault.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Basically, I created a html form to generate the payment nonce and display it in a text field. When I double-click the field (select all) and&amp;nbsp;copy, chrome is for some reason leaving off the last character (an "="). So when I use the nonce it then gets rejected because of a missing character. Sorry for the trouble. I don't know why my browser started behaving this way.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2017 13:21:38 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57084#M31824</guid>
      <dc:creator>glyoder</dc:creator>
      <dc:date>2017-02-28T13:21:38Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization using AcceptJS nonce causing OTS Service Error</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57141#M31874</link>
      <description>&lt;P&gt;My implementation also just stopped working today and I keep getting different reasons. All start with E00117:OTS Service Error. The first time I saw this it said "The OTS Service cannot complete the request due to a validation or configuration error".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I added some debugging logs to verify the data I passed to Accept.dispatchData() and now I get "The request was aborted: Could not create SSL/TLS secure channel". I changed nothing, I only logged the secureData to see what I was sending. My browser dev tools tell me that the Accept request's parameters are empty JSON, but my debug log says the object I passed contains the same data that worked fine yesterday.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Mar 2017 17:59:31 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57141#M31874</guid>
      <dc:creator>kbrockert</dc:creator>
      <dc:date>2017-03-03T17:59:31Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization using AcceptJS nonce causing OTS Service Error</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57144#M31877</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/21324"&gt;@kbrockert&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is this with your sandbox or production account?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Richard&lt;/P&gt;</description>
      <pubDate>Fri, 03 Mar 2017 18:12:08 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57144#M31877</guid>
      <dc:creator>RichardH</dc:creator>
      <dc:date>2017-03-03T18:12:08Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization using AcceptJS nonce causing OTS Service Error</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57145#M31878</link>
      <description>&lt;P&gt;This is with my sandbox account, but it looks like we're having issues with the production site as well. I can't seem to figure out why two orders got 200 OK and were marked processing yet they do not show up under unsettled transactions.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Mar 2017 18:18:54 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57145#M31878</guid>
      <dc:creator>kbrockert</dc:creator>
      <dc:date>2017-03-03T18:18:54Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization using AcceptJS nonce causing OTS Service Error</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57146#M31879</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/21324"&gt;@kbrockert&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For your production account, I would recommend contacting customer support by phone to report the issue. &amp;nbsp;They can be reached at 877-447-3938.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For your sandbox account, we're aware of the issue and I don't yet have the all clear that everything has returned to normal.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Richard&lt;/P&gt;</description>
      <pubDate>Fri, 03 Mar 2017 18:22:16 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57146#M31879</guid>
      <dc:creator>RichardH</dc:creator>
      <dc:date>2017-03-03T18:22:16Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization using AcceptJS nonce causing OTS Service Error</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57149#M31881</link>
      <description>&lt;P&gt;Thanks, &lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/7546"&gt;@RichardH&lt;/a&gt;. I'll be sure to call the number and subscribe to this thread.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Mar 2017 19:01:02 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57149#M31881</guid>
      <dc:creator>kbrockert</dc:creator>
      <dc:date>2017-03-03T19:01:02Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization using AcceptJS nonce causing OTS Service Error</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57166#M31898</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/7546"&gt;@RichardH&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;Is there any update to this error message? We are unable to process any transactions in our sandbox environment and we are starting to get the same error message from our customers who are in production.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 06 Mar 2017 19:22:43 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57166#M31898</guid>
      <dc:creator>locateinventory</dc:creator>
      <dc:date>2017-03-06T19:22:43Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization using AcceptJS nonce causing OTS Service Error</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57706#M32401</link>
      <description>&lt;P&gt;I'm also getting this error. I tried it with the sandbox account and with the production account and it made no difference as to which one i used. I'm using a secure key locally so it shouldn't be an ssl issue but I'm stuck at this point&lt;/P&gt;</description>
      <pubDate>Fri, 14 Apr 2017 16:09:01 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorization-using-AcceptJS-nonce-causing-OTS-Service-Error/m-p/57706#M32401</guid>
      <dc:creator>zoltena</dc:creator>
      <dc:date>2017-04-14T16:09:01Z</dc:date>
    </item>
  </channel>
</rss>

