Call webservice WCF from .NET 2.0
Gabriel <[email protected]>
| Newsgroups | gmane.comp.windows.devel.dotnet.winforms |
|---|---|
| Message-ID | <[email protected]> |
Hello, On the server, I have WCF webservice. On the client side, I have tu use .NET 2.0, the .NET 3.0 is installed too, I generated proxy class with WSDL. The server is running. I do this on the client : MyProxy myProxy = new MyProxy (); string sessionData = ""; myProxy .MyMethod(ref sessionData); Console.ReadLine(); When I debug I stay stuck on the third line, when I stop the server, there is an exception on the client. But I never receive an answer and no trace on the server side. When I used generated proxy class but it's .NET 3.0 that'w work Do you have an idea ? Thanks,