Read this: http://ift.tt/15tUlcR, http://ift.tt/15tUn4x, http://ift.tt/15tUn4z and a lot more.
Working on an mvc website which is using Data Inseration API to send data(through POST request) to Adobe data collecting servers.
This is the XML request body :
<?xml version="1.0" encoding="utf-8"?>
<Request xmlns:xsi="http://ift.tt/ra1lAU" xmlns:xsd="http://ift.tt/tphNwY">
<Sc_xml_ver>1.0</Sc_xml_ver>
<VisitorId>myVisitorId</VisitorId>
<IpAddress>myIpAddress</IpAddress>
<UserAgent>Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0), Mozilla/5.0 (Macintosh; U; Intel Mac OS X; es-ES; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6</UserAgent>
<PageName>dummyPageName</PageName>
<ReportSuiteId>myReportSuitId</ReportSuiteId>
<Events>myCustomEvent</Events>
</Request>
This is the response:
<?xml version=\"1.0\" encoding=\"UTF-8\"?>
<status>SUCCESS</status>
My intention is to have a report for this custom event that I'm sending. I was able generate this report a few days ago. The weird thing is that, now it's not working anymore ( no changes were made to the code or to the xml). By this, I mean that the data is not displayed in the report.
I tried multiple times making the request(in multiple days) and modifying the values from the xml. Nothing happens in my report. Since this custom event that I'm using it's counter, I would expect it to be incremented with each successful request that I make.
Can anybody help? Thanks a lot.
No comments:
Post a Comment