So I need a wary bacik interaction example of C# client using some PHP API (A remote service being called from a C# app). I want to see a simple php API conteining 2 methos sum(a, b):c and echo(string):string and a simple C# client able to use that methods. How to do such thing?
+1
A:
Create a PHP web service and a C# client defining a proxy to call it.
Otávio Décio
2010-04-23 20:53:02
+2
A:
I don't know what you mean by a PHP server but can't you write a script that will add two numbers:
<?php echo (int)$_GET["a"] + (int)$_GET["b"]; ?>
And in C#:
using (var client = new WebClient())
{
var a = 50;
var b = 100;
var result = client.DownloadString(string.Format("http://example.com/add.php?a={0}&b={1}", a, b));
Console.WriteLine(result);
}
Another and a better option is PHP SOAP.
Darin Dimitrov
2010-04-23 20:55:12
Simple API idea was to hendel at least 2 methods...
Blender
2010-04-23 20:58:52