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
Post a Comment