I have form in PHP, and I should generate some data from form and send it to c# web service. What is the best way to call my c# web service method from PHP web site? This is my C# web service
public string Methode1(string Par1, int Par2, List<String> par3)
My list Par3 should contain few thousand elements. Should I use JSON or should I make an array in PHP and send it to C# via SOAP call? How should I create request?
What if connection drops, what will happen to request in JSON or in SOAP?
I recently used PHP to call a C# ServiceStack service. it goes like this: