Hi,

I would like to know if there is a way to call a PHP web service from C# framework 2.0.

The service will implement

Code:
XmlDocument Login(string param1, string param2); 
XmlDocument Register(string param1, string param2);
The web service will be implemented in PHP by one of our client and in asp.net from another of our client. With soap and xml is there a way to implement it to make the type of technology transparent?

Thanks