Compartir a través de


HttpClientConnection.ServerURL Propiedad

Gets or sets the URL that specifies the location of the server.

Espacio de nombres:  Microsoft.SqlServer.Dts.Runtime
Ensamblado:  Microsoft.SqlServer.ManagedDTS (en Microsoft.SqlServer.ManagedDTS.dll)

Sintaxis

'Declaración
Public Property ServerURL As String 
    Get 
    Set
'Uso
Dim instance As HttpClientConnection 
Dim value As String 

value = instance.ServerURL

instance.ServerURL = value
public string ServerURL { get; set; }
public:
property String^ ServerURL {
    String^ get ();
    void set (String^ value);
}
member ServerURL : string with get, set
function get ServerURL () : String 
function set ServerURL (value : String)

Valor de la propiedad

Tipo: System.String
A String that contains the location of the server.

Ejemplos

The following code example shows how to create an HTTP connection for a package and create a client connection. It then sets several properties, including the BypassProxyOnLocal property.

// 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

Vea también

Referencia

HttpClientConnection Clase

Espacio de nombres Microsoft.SqlServer.Dts.Runtime