I'm writing a project in .Net Core 2.2. As a part of it, for the payment service I have to use this web service: The Payment Web Service
My problem is that I want to make a SOAP request, and I don't exactly know how and there are no available documentation about it!
I want to use the SalePaymentRequest
method. The sample code from the bank has the following code which uses in web reference: System.Web.Services.Protocols.SoapHttpClientProtocol
. Apparently, it is not available in .net core.
In the Following Question there are elements like BasicHttpBinding
which I really do not understand how to use! (My Bad!)
I just want to make a sale request and verify it afterwards.