<?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 Debug sandbox webhook on visual studio in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Debug-sandbox-webhook-on-visual-studio/m-p/67771#M41104</link>
    <description>&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I created the sandbox account and registered an endpoint for the webhook on all the events and I would like to debug and see the notification message but whenever the payment is made or subscription is created or cancelled not receiveing any notifications on the endpoint.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Need experts help here.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;Note: Used the following to test the web app running in local with remote address.&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://marketplace.visualstudio.com/items?itemName=vs-publisher-1448185.ConveyorbyKeyoti" target="_blank"&gt;https://marketplace.visualstudio.com/items?itemName=vs-publisher-1448185.ConveyorbyKeyoti&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance.&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;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 20 May 2019 14:55:44 GMT</pubDate>
    <dc:creator>scott77</dc:creator>
    <dc:date>2019-05-20T14:55:44Z</dc:date>
    <item>
      <title>Debug sandbox webhook on visual studio</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Debug-sandbox-webhook-on-visual-studio/m-p/67771#M41104</link>
      <description>&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I created the sandbox account and registered an endpoint for the webhook on all the events and I would like to debug and see the notification message but whenever the payment is made or subscription is created or cancelled not receiveing any notifications on the endpoint.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Need experts help here.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;Note: Used the following to test the web app running in local with remote address.&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://marketplace.visualstudio.com/items?itemName=vs-publisher-1448185.ConveyorbyKeyoti" target="_blank"&gt;https://marketplace.visualstudio.com/items?itemName=vs-publisher-1448185.ConveyorbyKeyoti&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance.&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;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 May 2019 14:55:44 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Debug-sandbox-webhook-on-visual-studio/m-p/67771#M41104</guid>
      <dc:creator>scott77</dc:creator>
      <dc:date>2019-05-20T14:55:44Z</dc:date>
    </item>
    <item>
      <title>Re: Debug sandbox webhook on visual studio</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Debug-sandbox-webhook-on-visual-studio/m-p/67776#M41108</link>
      <description>&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/30521"&gt;@scott77&lt;/a&gt;&lt;BR /&gt;&lt;BR /&gt;The usual error VS people have is setting a parameterized endpoint. Those never work.</description>
      <pubDate>Tue, 21 May 2019 03:33:26 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Debug-sandbox-webhook-on-visual-studio/m-p/67776#M41108</guid>
      <dc:creator>Renaissance</dc:creator>
      <dc:date>2019-05-21T03:33:26Z</dc:date>
    </item>
    <item>
      <title>Re: Debug sandbox webhook on visual studio</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Debug-sandbox-webhook-on-visual-studio/m-p/67779#M41110</link>
      <description>&lt;P&gt;Thanks for the information.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I made it work by creating an endpoint which is accessible from the internet and received the notifications.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;sample endpoint&lt;/P&gt;&lt;P&gt;&lt;A href="http://12.12.133.45/Webhook" target="_blank" rel="noopener"&gt;http://12.12.133.45/Webhook&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Controller - Add the below action&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;[HttpPost]&lt;BR /&gt;public ActionResult Webhook()&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;string data = new StreamReader(Request.InputStream).ReadToEnd();&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;// Process the data&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;hope this helps for others&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2019 20:03:34 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Debug-sandbox-webhook-on-visual-studio/m-p/67779#M41110</guid>
      <dc:creator>scott77</dc:creator>
      <dc:date>2019-05-21T20:03:34Z</dc:date>
    </item>
    <item>
      <title>Re: Debug sandbox webhook on visual studio</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Debug-sandbox-webhook-on-visual-studio/m-p/67780#M41111</link>
      <description>&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/30521"&gt;@scott77&lt;/a&gt;&lt;BR /&gt;&lt;BR /&gt;Glad the info helped. And your post will help others too. Could you mark this question as solved?</description>
      <pubDate>Tue, 21 May 2019 22:40:46 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Debug-sandbox-webhook-on-visual-studio/m-p/67780#M41111</guid>
      <dc:creator>Renaissance</dc:creator>
      <dc:date>2019-05-21T22:40:46Z</dc:date>
    </item>
  </channel>
</rss>

