-
Today I encountered a problem with accessing the metadata for a WCF service that was deployed on a Windows Server 2003 machine. The WSDL part worked just fine for the metadata exchange endpoint ( url ?wsdl, url ?wsdl=wsdl0, etc.). These WSDL files refer to XSD files for the message types. Requesting...
-
When you create a Windows Communication Foundation (WCF) service proxy class for a service by using svcutil.exe , it creates a proxy that derives from System.ServiceModel.ClientBase<TChannel> . This class implements IDisposable so you think you can use your proxy safely in a C# using statement...