HttpClientConnection.ServerURL Property
Gets or sets the URL that specifies the location of the server.
Namespace: Microsoft.SqlServer.Dts.Runtime
Assembly: Microsoft.SqlServer.ManagedDTS (in microsoft.sqlserver.manageddts.dll)
Syntax
'Declaration
Public Property ServerURL As String
public string ServerURL { get; set; }
public:
property String^ ServerURL {
String^ get ();
void set (String^ value);
}
/** @property */
public String get_ServerURL ()
/** @property */
public void set_ServerURL (String value)
public function get ServerURL () : String
public function set ServerURL (value : String)
Property Value
A String that contains the location of the server.
Example
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
Thread Safety
Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms
Development Platforms
For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server 2005.
Target Platforms
For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server 2005.
See Also
Reference
HttpClientConnection Class
HttpClientConnection Members
Microsoft.SqlServer.Dts.Runtime Namespace