function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
poonam.8d1.3939297558988455E12poonam.8d1.3939297558988455E12 

Problem reading Outbound Message in Notification Service listener in C#

I have created a notification listener web service in C# which serve as a endpoint url in Outbound Message definition in Salesforce. I am trying to test the message recieved from Outbound Message. But couldnt find the way to test the same.

Endpoint Url - https://
WCF Service using Notification service - http://hostname/SalesforceNotification.asmx as a web reference
SuperfellSuperfell
You need to use a publicly accessable host name or IP address, not your local networks host name.
poonam.8d1.3939297558988455E12poonam.8d1.3939297558988455E12
Thanks for replying. Outbound enpoinr url is on https://domianname/service.asmx and through reverse proxy its redirecting to http://internalmachine/service.asmx. I am not able to test the Outbound message returned from the Salesforce and I have created a Notification listener asmx service which I have provided in the endpoint url.

Is there a way to test the Notification Service. I am dding Notification Service reference in anothe WCF project which will send the data to external application.

Please let me know if I am going in the right directon.