HttpClientConnection.ServerURL 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
서버의 위치를 지정하는 URL을 가져오거나 설정합니다.
public:
property System::String ^ ServerURL { System::String ^ get(); void set(System::String ^ value); };
public string ServerURL { get; set; }
member this.ServerURL : string with get, set
Public Property ServerURL As String
속성 값
서버의 위치를 포함하는 문자열입니다.
예제
다음 코드 예제에서는 패키지에 대한 HTTP 연결을 만들고 클라이언트 연결을 만드는 방법을 보여줍니다. 그런 다음 속성을 포함하여 BypassProxyOnLocal 여러 속성을 설정합니다.
// Create an HTTP connection.
ConnectionManager httpConn = pkg.Connections.Add("HTTP");
HttpClientConnection clientConn = new
HttpClientConnection(httpConn.AcquireConnection(null));
string HTTPUrl = @"http://<yourserver>/<yourfolder>/test.asmx?wsdl";
clientConn.UseProxy = true;
clientConn.ProxyURL = @"http://<yourproxy>";
clientConn.BypassProxyOnLocal = true;
clientConn.ServerURL = HTTPUrl;
' Create an HTTP connection.
Dim httpConn As ConnectionManager = pkg.Connections.Add("HTTP")
HttpClientConnection clientConn = New
HttpClientConnection(httpConn.AcquireConnection(Nothing))
Dim HTTPUrl As String = "http:// <yourserver>/<yourfolder>/test.asmx?wsdl"
clientConn.UseProxy = True
clientConn.ProxyURL = "http://<yourproxy>"
clientConn.BypassProxyOnLocal = True
clientConn.ServerURL = HTTPUrl