Discussion:
Call webservice WCF from .NET 2.0
Gabriel
2007-06-28 14:38:35 UTC
Permalink
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,

===================================
This list is hosted by DevelopMentorĀ® http://www.develop.com

View archives and manage your subscription(s) at http://discuss.develop.com
Gabriel
2007-06-29 08:04:45 UTC
Permalink
The solution is to create the proxy via :Web Services Enhancements
(WSE) 3.0From Microsoft .NET

http://www.microsoft.com/downloads/details.aspx?FamilyID=018a09fd-3a74-43c5-8ec1-8d789091255d&displaylang=en#Overview

Regards,

===================================
This list is hosted by DevelopMentorĀ® http://www.develop.com

View archives and manage your subscription(s) at http://discuss.develop.com
Loading...