SoapHeader.Actor 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
SOAP 헤더의 수신자를 가져오거나 설정합니다.
public:
property System::String ^ Actor { System::String ^ get(); void set(System::String ^ value); };
public string Actor { get; set; }
member this.Actor : string with get, set
Public Property Actor As String
속성 값
SOAP 헤더의 수신자로, 기본값은 빈 문자열("")입니다.
예제
다음 XML 웹 서비스 클라이언트 호출을 MyWebMethod
형식의 사용자 지정 SOAP 헤더를 만든 후 XML 웹 서비스 메서드 MyHeader
설정는 Actor 속성을 http://www.contoso.com/MySoapHeaderHandler
입니다.
int main()
{
MyWebService^ ws = gcnew MyWebService;
try
{
MyHeader^ customHeader = gcnew MyHeader;
customHeader->MyValue = "Header Value for MyValue";
customHeader->Actor = "http://www.contoso.com/MySoapHeaderHandler";
ws->myHeader = customHeader;
int results = ws->MyWebMethod( 3, 5 );
}
catch ( Exception^ e )
{
Console::WriteLine( "Exception: {0}", e );
}
}
using System;
public class Sample {
public static void Main() {
MyWebService ws = new MyWebService();
try {
MyHeader customHeader = new MyHeader();
customHeader.MyValue = "Header Value for MyValue";
customHeader.Actor = "http://www.contoso.com/MySoapHeaderHandler";
ws.myHeader = customHeader;
int results = ws.MyWebMethod(3,5);
}
catch (Exception e) {
Console.WriteLine ("Exception: {0}", e.ToString());
}
}
}
Public Class Sample
Public Shared Sub Main()
Dim ws As New MyWebService()
Try
Dim customHeader As New MyHeader1()
customHeader.MyValue = "Header Value for MyValue"
customHeader.Actor = "http://www.contoso.com/MySoapHeaderHandler"
ws.myHeader = customHeader
Dim results As Integer
results = ws.MyWebMethod(3,5)
Catch e As Exception
Console.WriteLine("Exception: {0}", e.ToString())
End Try
End Sub
End Class
설명
SOAP 헤더의 수신자를 설정 하려면 설정의 Actor 속성입니다. XML 웹 서비스와 통신 하는 데 사용 된 SOAP 프로토콜의 버전에 관계 없이.NET Framework SOAP 프로토콜의 버전에 SOAP 메시지를 자동으로 생성 합니다. 특히 XML 요소 및 수신자를 나타내는 XML 네임 스페이스는 두 가지 버전 다릅니다.
SOAP 헤더를 수신 하는 XML 웹 서비스 중 하나를 가져오면 수신자를 가져올 수는 Role 또는 Actor 속성입니다.
에 대 한 받는 사람을 Body
요소와 각 SOAP 헤더 내에서 Header
SOAP 메시지의 요소 필요한 같을 수 없습니다. 경우는 Header
SOAP 메시지에 있는 요소, XML 웹 서비스 메서드 또는 중간에서 보낼 수 있는 추가 데이터를 나타냅니다. SOAP로 알려진 데이터를 받는 사람이 Actor
버전 1.1에서는 XML 웹 서비스 메서드에 대 한 URI 보다 다른 URI를 수 있습니다.
SOAP 특성에 대한 자세한 내용은 SOAP actor
사양을 참조하세요.