c# - PayPal IPN listener by WCF -


when send test ipn "instant payment notification (ipn) simulator" this: "ipn not sent, , handshake not verified. please review information." in case no reaction on server not happening :( doing wrong? p.s. server accessible internet , nothing blocking access. asked friend send me test message post request , server accepted it. on paypal method not react @ all!

[servicecontract] public interface ipaypalservice {    [operationcontract]    [webinvoke(method = "post", uritemplate = "/")]    void notify(stream data); }  public void notify(stream data) { }  <service name="paypal.paypalservice">    <endpoint address="http://myip:myport/paypalservice"              binding="webhttpbinding"              contract="paypal.ipaypalservice"/> </service> 


Comments

Popular posts from this blog

resizing Telegram inline keyboard -

command line - How can a Python program background itself? -

php - "cURL error 28: Resolving timed out" on Wordpress on Azure App Service on Linux -