ServiceContractAttribute.Namespace Property
Gets or sets the namespace of the <portType> element in Web Services Description Language (WSDL).
Assembly: System.ServiceModel (in System.ServiceModel.dll)
The following code example shows how to use the Name and Namespace properties of the ServiceContractAttribute to set the corresponding values in WSDL.
using System; using System.Collections.Generic; using System.ServiceModel; using System.Text; namespace Microsoft.WCF.Documentation { [ServiceContract( Name="HelloWorld", Namespace="http://Microsoft.WCF.Documentation" )] public interface ISampleService{ [OperationContract] string SampleMethod(string msg); } class SampleService : ISampleService { #region ISampleService Members public string SampleMethod(string msg) { return "The service greets you: " + msg; } #endregion } }
The following code example shows an client for the preceding service that imported WSDL using the Service Model Metadata Utility Tool (Svcutil.exe). This client uses a HelloWorldClient client rather than a SampleServiceClient client (as is the case with the sample in the Example section of ServiceContractAttribute).
using System; using System.ServiceModel; using System.ServiceModel.Channels; public class Client { public static void Main() { // Picks up configuration from the config file. HelloWorldClient wcfClient = new HelloWorldClient(); try { // Making calls. Console.WriteLine("Enter the greeting to send: "); string greeting = Console.ReadLine(); Console.WriteLine("The service responded: " + wcfClient.SampleMethod(greeting)); // Done with service. wcfClient.Close(); Console.WriteLine("Done!"); } catch (TimeoutException timeProblem) { Console.WriteLine("The service operation timed out. " + timeProblem.Message); wcfClient.Abort(); } catch (CommunicationException commProblem) { Console.WriteLine("There was a communication problem. " + commProblem.Message); wcfClient.Abort(); } finally { Console.WriteLine("Press ENTER to exit:"); Console.ReadLine(); } } }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.