I have an application which expose WCF services from distance , here is an example of my services :
[OperationContract(Name = "AddClient")]
bool AddClient(Client c);
I tried to consume the WCF service from a Console Application , although the ConsoleAp. doesn't have any defenition of "Client" class, I can make an instance of "Client" through my ConsoleAp, and it works perfectly fine.
My question is , is it possible to call this function from a php based application, and will it let me insert the "Client" object or defined it in an equivalent way as .NET?
I thought I might jump over my head here, and all i should do is send simple parameters, the thing is that "Client" has 10+ properties/fields, and it doesn't seem clean/purify enough.
Thanks