I need to send a SOAP request to a URL. But i find this harder then i thought it would be.
The request that i have to send is:
string bla = "" +
"<?xml version='\"1.0\" encoding=\"UTF-8\"?>" +
"<soap:Envelope xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\">" +
"<soap:Body>" +
"<ns1:sendNotificationResponse" +
"xmlns=\"http://notification.services.adyen.com\"" +
"xmlns:ns2=\"http://common.services.adyen.com\">" +
"<notificationResponse>[accepted]</notificationResponse>" +
"</sendNotificationResponse>" +
"</soap:Body>" +
"</soap:Envelope>";
I've been given an URL: https://ca-test.adyen.com/ca/services/Notification?wsdl
The problem is, is that I'm not sure how to go on from here. Can i simply just send a request to that URL? Or do I have to import the WSDL somehow first?
I've found a lot of examples on the net, but I couldn't really make sense out of most of them. Some were even out dated, because they were still using: Microsoft.Web.Services3
So in short, I'm kinda clueless on what I exactly have to do here and how. I simply want to send that 'SOAP' message...