<?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: CIM AuthorizeAndCapture Invalid Response on Sandbox in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-AuthorizeAndCapture-Invalid-Response-on-Sandbox/m-p/49205#M24804</link>
    <description>&lt;P&gt;Hello and thanks for the reply. &amp;nbsp;It appears the CIM SDK for IGatewayResponse is broken or I'm missing something here.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I do something I expect to be wrong (i.e. -&amp;gt; enter an amount for a transaction I know will be too high for the sandbox, enter an invalid profile and paymentprofileId) I see only this as the raw response you asked about:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"ErrorE00027The transaction amount submitted was greater than the maximum amount allowed."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The remaining properties I would expect to be populated are all their initialized values only, all string empty, all false, etc.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I successfully do a transaction I can see on the sandbox the transaction detail or it worked correctly. The raw response is simply:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"OkI00001Successful"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am wondering if the issue is the actual web service and the method it is consuming OR that the SDK is expecting the response to be similiar to that of AIM responses so it tries to return a IGatewayresponse parsed and build off of a property which never comes back...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Either way, I'm sort of stuck here...&lt;/P&gt;</description>
    <pubDate>Wed, 31 Dec 2014 12:59:56 GMT</pubDate>
    <dc:creator>mgk145</dc:creator>
    <dc:date>2014-12-31T12:59:56Z</dc:date>
    <item>
      <title>CIM AuthorizeAndCapture Invalid Response on Sandbox</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-AuthorizeAndCapture-Invalid-Response-on-Sandbox/m-p/49201#M24800</link>
      <description>&lt;P&gt;Hello:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have just started using Authorize.net and I am using the CIM to create simple profiles, add credit cards, etc. The primary goal is to use a stored credit card for transaction purposes. I am using C#/.Net 4.5 and the SDK. &amp;nbsp;Please note, I need to actually test that CIM payment profile based transaction work BEFORE I can move to production.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When using test mode, the following line of code DOES NOT return what the SDK assumes it should. &amp;nbsp;If we look at CustomerGateway.cs and AuthorizeAndCapture method:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;public IGatewayResponse AuthorizeAndCapture(Order order)...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It assumes the result will be populated with a "directResponse" property:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;var response = (createCustomerProfileTransactionResponse)_gateway.Send(req);&lt;BR /&gt;return new GatewayResponse(response.directResponse.Split(','));&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Stepping through the code the response seems to have NOTHING but the&amp;nbsp;ANetApiResponse property "messages" populated and that simply has a result of "OK" or "Error" with a string message of "Successful" or the error code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is unacceptable because I expect this to work like other IGatewayResponse methods in the SDK (setting the Approved property, and parsing the directResponse) and I have no idea what the production result will be. &amp;nbsp;Is this just an issue on Test? How am I supposed to test this? &amp;nbsp;Has anyone else seen this with the CustomerGateway? I am using the newest code from NuGet/.Net package manager&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;&lt;BR /&gt;&amp;lt;packages&amp;gt;&lt;BR /&gt;&amp;lt;package id="AuthorizeNet" version="1.8.3" targetFramework="net45" /&amp;gt;&lt;BR /&gt;&amp;lt;/packages&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And the HttpXmlUtility for test seems to be pointing to the standard url:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;public const string TEST_URL = "&lt;A target="_blank" href="https://apitest.authorize.net/xml/v1/request.api&amp;quot;;"&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;I have hit a brick wall here. &amp;nbsp;Can anyone shed some light on this? &amp;nbsp;AIM and AuthenticationRequests via the SDK work complete fine as well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Dec 2014 04:53:49 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-AuthorizeAndCapture-Invalid-Response-on-Sandbox/m-p/49201#M24800</guid>
      <dc:creator>mgk145</dc:creator>
      <dc:date>2014-12-31T04:53:49Z</dc:date>
    </item>
    <item>
      <title>Re: CIM AuthorizeAndCapture Invalid Response on Sandbox</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-AuthorizeAndCapture-Invalid-Response-on-Sandbox/m-p/49204#M24803</link>
      <description>&lt;P&gt;Debug and post the raw response from&lt;/P&gt;&lt;P&gt;var response = (createCustomerProfileTransactionResponse)_gateway.Send(req);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Personally, I would just use the CIM webservice. from the CIM soap doc&lt;/P&gt;&lt;DIV&gt;Web Service URL in Production &lt;A target="_blank" href="https://api.authorize.net/soap/v1/Service.asmx"&gt;https://api.authorize.net/soap/v1/Service.asmx&lt;/A&gt;&lt;/DIV&gt;&lt;DIV&gt;Web Service URL in DeveloperTest &lt;A target="_blank" href="https://apitest.authorize.net/soap/v1/Service.asmx"&gt;https://apitest.authorize.net/soap/v1/Service.asmx&lt;/A&gt;&lt;/DIV&gt;&lt;DIV&gt;WSDL &lt;A target="_blank" href="https://api.authorize.net/soap/v1/Service.asmx?WSDL"&gt;https://api.authorize.net/soap/v1/Service.asmx?WSDL&lt;/A&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 31 Dec 2014 12:39:38 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-AuthorizeAndCapture-Invalid-Response-on-Sandbox/m-p/49204#M24803</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2014-12-31T12:39:38Z</dc:date>
    </item>
    <item>
      <title>Re: CIM AuthorizeAndCapture Invalid Response on Sandbox</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-AuthorizeAndCapture-Invalid-Response-on-Sandbox/m-p/49205#M24804</link>
      <description>&lt;P&gt;Hello and thanks for the reply. &amp;nbsp;It appears the CIM SDK for IGatewayResponse is broken or I'm missing something here.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I do something I expect to be wrong (i.e. -&amp;gt; enter an amount for a transaction I know will be too high for the sandbox, enter an invalid profile and paymentprofileId) I see only this as the raw response you asked about:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"ErrorE00027The transaction amount submitted was greater than the maximum amount allowed."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The remaining properties I would expect to be populated are all their initialized values only, all string empty, all false, etc.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I successfully do a transaction I can see on the sandbox the transaction detail or it worked correctly. The raw response is simply:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"OkI00001Successful"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am wondering if the issue is the actual web service and the method it is consuming OR that the SDK is expecting the response to be similiar to that of AIM responses so it tries to return a IGatewayresponse parsed and build off of a property which never comes back...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Either way, I'm sort of stuck here...&lt;/P&gt;</description>
      <pubDate>Wed, 31 Dec 2014 12:59:56 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-AuthorizeAndCapture-Invalid-Response-on-Sandbox/m-p/49205#M24804</guid>
      <dc:creator>mgk145</dc:creator>
      <dc:date>2014-12-31T12:59:56Z</dc:date>
    </item>
    <item>
      <title>Re: CIM AuthorizeAndCapture Invalid Response on Sandbox</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-AuthorizeAndCapture-Invalid-Response-on-Sandbox/m-p/49206#M24805</link>
      <description>&lt;P&gt;The problem is with the EXXXXX error, it do not return directResponse.&lt;/P&gt;&lt;P&gt;I use VS and it so much easier just to use the web service call, check the code, if it I00001, do this ..., if EXXXX do something else.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"OkI00001Successful" should be more if you doing an transaction.&lt;/P&gt;</description>
      <pubDate>Wed, 31 Dec 2014 13:30:42 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-AuthorizeAndCapture-Invalid-Response-on-Sandbox/m-p/49206#M24805</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2014-12-31T13:30:42Z</dc:date>
    </item>
    <item>
      <title>Re: CIM AuthorizeAndCapture Invalid Response on Sandbox</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-AuthorizeAndCapture-Invalid-Response-on-Sandbox/m-p/49207#M24806</link>
      <description>&lt;P&gt;OK, well there is definately a problem with the C# SDK. &amp;nbsp;As a test I used your suggestion of hitting the "test" SOAP end point directly. &amp;nbsp;I used the same test credentials, nothing at all is different besides using the SOAP end point and then "wrapping the result" so I get back the same IGatewayResponse I need. &amp;nbsp;I have a few interfaces I've build for the SDK so I need the proper object to come back.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;var profile = new net.authorize.apitest.ProfileTransAuthCaptureType&lt;BR /&gt;{&lt;BR /&gt;customerProfileId = 30825860,&lt;BR /&gt;customerPaymentProfileId = 27922978,&lt;BR /&gt;amount = 334.00M,&lt;BR /&gt;order = new net.authorize.apitest.OrderExType {invoiceNumber = "inv-" + DateTime.Now.Ticks}&lt;BR /&gt;};&lt;BR /&gt;var trans = new net.authorize.apitest.ProfileTransactionType {Item = profile};&lt;BR /&gt;var response = new net.authorize.apitest.Service().CreateCustomerProfileTransaction(auth, trans, null);&lt;/P&gt;&lt;P&gt;var hackedGatewayResponse = new GatewayResponse(response.directResponse.Split(','));&lt;/P&gt;&lt;P&gt;Assert.IsTrue(hackedGatewayResponse.Approved);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So as you can see the direct SOAP method actually populates the .directResponse object unlike the SDK method. Then I generate my own GatewayResponse from it. &amp;nbsp;I assume this is easily re-produced by someone. The SDK uses the following url for test (XML end point) &lt;A target="_blank" href="https://apitest.authorize.net/xml/v1/request.api,"&gt;https://apitest.authorize.net/xml/v1/request.api,&lt;/A&gt; and something is broken there (no directResponse property is returned).&lt;/P&gt;</description>
      <pubDate>Wed, 31 Dec 2014 13:33:01 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-AuthorizeAndCapture-Invalid-Response-on-Sandbox/m-p/49207#M24806</guid>
      <dc:creator>mgk145</dc:creator>
      <dc:date>2014-12-31T13:33:01Z</dc:date>
    </item>
    <item>
      <title>Re: CIM AuthorizeAndCapture Invalid Response on Sandbox</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-AuthorizeAndCapture-Invalid-Response-on-Sandbox/m-p/49208#M24807</link>
      <description>&lt;P&gt;Yep something is broken&lt;/P&gt;&lt;P&gt;Look like it in HttpXmlUtility.cs&lt;/P&gt;&lt;P&gt;method&lt;/P&gt;&lt;P&gt;void CheckForErrors(ANetApiResponse response)&lt;/P&gt;&lt;P&gt;in there it check for&lt;/P&gt;&lt;P&gt;if (response.GetType() == typeof(createCustomerProfileTransactionResponse))&lt;/P&gt;&lt;P&gt;they mess up there, directResponse had the right info, but in the code they loop thru the response and get the wrong node. ??? Did they ran into problem for some scenario?&lt;/P&gt;</description>
      <pubDate>Wed, 31 Dec 2014 14:11:15 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-AuthorizeAndCapture-Invalid-Response-on-Sandbox/m-p/49208#M24807</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2014-12-31T14:11:15Z</dc:date>
    </item>
    <item>
      <title>Re: CIM AuthorizeAndCapture Invalid Response on Sandbox</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-AuthorizeAndCapture-Invalid-Response-on-Sandbox/m-p/49211#M24810</link>
      <description>&lt;P&gt;I have narrowed down the problem is definately with the SDK but I didn't get as far as you have yet :), to track down where it goes wrong. One issue I have with using the SOAP method directly, unless I don't see it, is I would like to add LineItems to the "Order" object, similar to how I can do it via the SDK version. &amp;nbsp;However, using the SOAP serialized classes, it appears the request wants an OrderExType and I don't see any way to include an array of LineItem...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So now I am at the point where the SDK lets me craft a request how I need it, but the response is broken. &amp;nbsp;The SOAP web service calls allow to create a standard response, but I can't include line items in the request.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I appreciate your help. What would your suggestion be?&lt;/P&gt;</description>
      <pubDate>Wed, 31 Dec 2014 18:39:41 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-AuthorizeAndCapture-Invalid-Response-on-Sandbox/m-p/49211#M24810</guid>
      <dc:creator>mgk145</dc:creator>
      <dc:date>2014-12-31T18:39:41Z</dc:date>
    </item>
    <item>
      <title>Re: CIM AuthorizeAndCapture Invalid Response on Sandbox</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-AuthorizeAndCapture-Invalid-Response-on-Sandbox/m-p/49212#M24811</link>
      <description>&lt;P&gt;OK, yes I just looked at the same area you mentioned. I don't understand the point of this CheckErrors method at all :). Yes, it looks like they purposely mangle this response type and never set it back. So the directResponse is set to null and it's never "re-assigned" in the for loop check of child nodes..gross.I'm also not a fan of the "else" in this statement, the check for messages length and then if the an error response code, throwing an invalidexception.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am hesitant to update the source and even attempt to do a real pull or fork request, since I don't really understand the full intent of this code.&lt;/P&gt;</description>
      <pubDate>Wed, 31 Dec 2014 18:51:32 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-AuthorizeAndCapture-Invalid-Response-on-Sandbox/m-p/49212#M24811</guid>
      <dc:creator>mgk145</dc:creator>
      <dc:date>2014-12-31T18:51:32Z</dc:date>
    </item>
    <item>
      <title>Re: CIM AuthorizeAndCapture Invalid Response on Sandbox</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-AuthorizeAndCapture-Invalid-Response-on-Sandbox/m-p/49213#M24812</link>
      <description>&lt;P&gt;LineItem is not in Order is in the transaction&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var order = new AuthorizeNet.Order(profileID, paymentProfileID, "");&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; order.Amount = 10;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var req = new createCustomerProfileTransactionRequest();&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var trans = new profileTransAuthOnlyType();&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; trans.lineItems = new lineItemType[1];&lt;/P&gt;</description>
      <pubDate>Wed, 31 Dec 2014 19:02:55 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-AuthorizeAndCapture-Invalid-Response-on-Sandbox/m-p/49213#M24812</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2014-12-31T19:02:55Z</dc:date>
    </item>
    <item>
      <title>Re: CIM AuthorizeAndCapture Invalid Response on Sandbox</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-AuthorizeAndCapture-Invalid-Response-on-Sandbox/m-p/49264#M24863</link>
      <description>&lt;P&gt;Is there any update on this yet. Even I'm facing the same issue for transactions using CIM.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jan 2015 11:35:01 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-AuthorizeAndCapture-Invalid-Response-on-Sandbox/m-p/49264#M24863</guid>
      <dc:creator>nik_0811</dc:creator>
      <dc:date>2015-01-07T11:35:01Z</dc:date>
    </item>
    <item>
      <title>Re: CIM AuthorizeAndCapture Invalid Response on Sandbox</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-AuthorizeAndCapture-Invalid-Response-on-Sandbox/m-p/49270#M24869</link>
      <description>&lt;P&gt;I wound up just using the SOAP web service directly. &amp;nbsp;You could do the same with the XML end point as well. &amp;nbsp;I am not going to touch the C# SDK code since I think it needs quite a bit of work and I can't dedicate any time to updating it via proper channels (fork of github, communicate with the creators, etc). &amp;nbsp;I'd be more inclined to try to clean up an SDK after the JSON based services are available. I read somewhere they are still in BETA. &amp;nbsp;I'd like a much cleaner web api to begin with.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jan 2015 19:31:39 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-AuthorizeAndCapture-Invalid-Response-on-Sandbox/m-p/49270#M24869</guid>
      <dc:creator>mgk145</dc:creator>
      <dc:date>2015-01-07T19:31:39Z</dc:date>
    </item>
    <item>
      <title>Re: CIM AuthorizeAndCapture Invalid Response on Sandbox</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-AuthorizeAndCapture-Invalid-Response-on-Sandbox/m-p/49271#M24870</link>
      <description>&lt;P&gt;I've opened this up as &lt;A href="https://github.com/AuthorizeNet/sdk-dotnet/issues/57" target="_self"&gt;an issue &lt;/A&gt;on the github project and reported it directly to our internal developers so that they can take a look at it as soon as possible.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jan 2015 22:40:29 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-AuthorizeAndCapture-Invalid-Response-on-Sandbox/m-p/49271#M24870</guid>
      <dc:creator>Trevor</dc:creator>
      <dc:date>2015-01-07T22:40:29Z</dc:date>
    </item>
    <item>
      <title>Re: CIM AuthorizeAndCapture Invalid Response on Sandbox</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-AuthorizeAndCapture-Invalid-Response-on-Sandbox/m-p/49279#M24874</link>
      <description>&lt;P&gt;Added some info on our new API capabilities to use CreateTransaction with profiles and additionally how to call CreateTransaction from the SDK using the controller model. &amp;nbsp;Sample code for the scenario also added to github:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/AuthorizeNet/sdk-dotnet/issues/57" target="_blank"&gt;https://github.com/AuthorizeNet/sdk-dotnet/issues/57&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;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jan 2015 07:55:35 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-AuthorizeAndCapture-Invalid-Response-on-Sandbox/m-p/49279#M24874</guid>
      <dc:creator>brianmc</dc:creator>
      <dc:date>2015-01-09T07:55:35Z</dc:date>
    </item>
    <item>
      <title>Re: CIM AuthorizeAndCapture Invalid Response on Sandbox</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-AuthorizeAndCapture-Invalid-Response-on-Sandbox/m-p/49373#M24946</link>
      <description>&lt;P&gt;OK, thanks for providing another SDK related method to handling this scenerio. One question however. In the test C# file I don't see what "RefId" is. &amp;nbsp;You have this in the code block:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;var createRequest = new createTransactionRequest&lt;BR /&gt;{&lt;BR /&gt;refId = RefId,&lt;BR /&gt;transactionRequest = transactionRequestType&lt;BR /&gt;};&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is RefId simply a GUID or any unique identifier for the request? Or is this supposed to be populated from something else in the transaction or request?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jan 2015 04:44:47 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-AuthorizeAndCapture-Invalid-Response-on-Sandbox/m-p/49373#M24946</guid>
      <dc:creator>mgk145</dc:creator>
      <dc:date>2015-01-20T04:44:47Z</dc:date>
    </item>
    <item>
      <title>Re: CIM AuthorizeAndCapture Invalid Response on Sandbox</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-AuthorizeAndCapture-Invalid-Response-on-Sandbox/m-p/49378#M24951</link>
      <description>&lt;P&gt;&lt;A target="_blank" href="http://developer.authorize.net/api/reference/"&gt;http://developer.authorize.net/api/reference/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;refId&lt;/TD&gt;&lt;TD&gt;Merchant-assigned reference ID for the request.&lt;BR /&gt;If included in the request, this value will be included in the response. This feature might be especially useful for multi-threaded applications. This element is not used for mobile device requests. Use mobileDeviceId instead.&lt;/TD&gt;&lt;TD&gt;Up to 20 characters.&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Tue, 20 Jan 2015 12:32:03 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-AuthorizeAndCapture-Invalid-Response-on-Sandbox/m-p/49378#M24951</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2015-01-20T12:32:03Z</dc:date>
    </item>
    <item>
      <title>Re: CIM AuthorizeAndCapture Invalid Response on Sandbox</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-AuthorizeAndCapture-Invalid-Response-on-Sandbox/m-p/49774#M25310</link>
      <description>&lt;P&gt;I couldn't agree more.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've commented out the call to CheckErrors completely and have&amp;nbsp;yet to notice any issues in my testing. &amp;nbsp;All my automated tests still pass with the added bonus of being able to run transactions using the CIM API methods.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Life is better, so far!&lt;/P&gt;</description>
      <pubDate>Wed, 25 Feb 2015 00:20:34 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-AuthorizeAndCapture-Invalid-Response-on-Sandbox/m-p/49774#M25310</guid>
      <dc:creator>aland</dc:creator>
      <dc:date>2015-02-25T00:20:34Z</dc:date>
    </item>
    <item>
      <title>Re: CIM AuthorizeAndCapture Invalid Response on Sandbox</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-AuthorizeAndCapture-Invalid-Response-on-Sandbox/m-p/50577#M26010</link>
      <description>&lt;P&gt;Has anyone at authorize.net even looked at this?&amp;nbsp; Only they can explain the intent of the CheckForErrors method that sets directResponse to null without resetting it to another value.&amp;nbsp; I also have been successful getting all of the CIM methods to work by simply commenting this one line of code out.&amp;nbsp; However, I would ideally like to not have to have a customized assembly and would rather simply use NuGet package manager.&lt;/P&gt;</description>
      <pubDate>Thu, 07 May 2015 00:18:27 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-AuthorizeAndCapture-Invalid-Response-on-Sandbox/m-p/50577#M26010</guid>
      <dc:creator>stone216</dc:creator>
      <dc:date>2015-05-07T00:18:27Z</dc:date>
    </item>
  </channel>
</rss>

