This documentation is archived and is not being maintained.

SoapRpcMethodAttribute.ResponseNamespace Property

Gets or sets the XML namespace associated with the SOAP response for an XML Web service method.

[Visual Basic]
Public Property ResponseNamespace As String
[C#]
public string ResponseNamespace {get; set;}
[C++]
public: __property String* get_ResponseNamespace();
public: __property void set_ResponseNamespace(String*);
[JScript]
public function get ResponseNamespace() : String;
public function set ResponseNamespace(String);

Property Value

The XML namespace associated with the SOAP response for an XML Web service method. The default is http://tempuri.org/.

Remarks

The ResponseNamespace property is used in the XSD schema for the XML Web service method in its service description.

Example

[Visual Basic, C#] The following code example sets the ResponseNamespace property to http://www.contoso.com.

[Visual Basic] 
<%@ WebService Language="VB" Class="SoapRpcMethodSample" %>
    
Imports System.Web.Services
Imports System.Web.Services.Protocols

Public Class SoapRpcMethodSample

   <WebMethod(),SoapRpcMethod(ResponseNamespace :="http://www.contoso.com",ResponseElementName := "MyCustomResponseElement")> _
   Public Function  ResponseRpc(numentries as Integer) As Integer()
    Dim intarray(numentries - 1) as Integer
        Dim i as Integer
        For i = 0 To numentries - 1
           intarray(i) = i
        Next
        Return intarray
   End Function
End Class

[C#] 
<%@ WebService Language="C#" Class="SoapRpcMethodSample" %>
    
using System.Web.Services;
using System.Web.Services.Protocols;

public class SoapRpcMethodSample
{
   [WebMethod]
   [SoapRpcMethod(ResponseNamespace="http://www.contoso.com",ResponseElementName="MyCustomResponseElement")]
   public int[] ResponseRpc(int numentries)
   {
    int[] intarray = new int[numentries];
        for (int i=0;i<numentries;i++)
        {
       intarray[i] = i;
        }
        return intarray;
   }
}

[C++, JScript] No example is available for C++ or JScript. To view a Visual Basic or C# example, click the Language Filter button Language Filter in the upper-left corner of the page.

Requirements

Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, .NET Compact Framework

See Also

SoapRpcMethodAttribute Class | SoapRpcMethodAttribute Members | System.Web.Services.Protocols Namespace

Show: