Skip to content

Latest commit

 

History

History
66 lines (49 loc) · 2.6 KB

File metadata and controls

66 lines (49 loc) · 2.6 KB
title RemoveURL Method (WMI MSReportServer_ConfigurationSetting) | Microsoft Docs
ms.custom
ms.date 06/13/2017
ms.prod sql-server-2014
ms.reviewer
ms.technology reporting-services-native
ms.topic conceptual
helpviewer_keywords
RemoveURL method
ms.assetid 3d98bd97-e152-48ce-ab1c-bd2c4f8b7fe9
author maggiesMSFT
ms.author maggies
manager kfile

RemoveURL Method (WMI MSReportServer_ConfigurationSetting)

Removes a URL reserved for the report server. If there are multiple URLs that need to be removed, this must be done one by one calling this API.

Syntax

Public Sub RemoveURL(ByVal Application As String, _  
    ByVal UrlString As String, ByVal Lcid As Int32, _  
    ByRef [Error] As String, ByRef HRESULT As Int32)  
public void RemoveURL(string Application, string UrlString, int Lcid,   
    out string Error, out int HRESULT);  

Parameters

Application
The name of application for which to remove the reservation.

URLString
The URL for the reservation.

lcid
The locale to use for the error messages returned.

Error
[out] The description of the error that occurred.

HRESULT
[out] Value indicating whether the call succeeded or failed.

Return Value

Returns an HRESULT indicating success or failure of the method call. A value of 0 indicates that the method call was successful; an error code indicates the call was not successful.

Remarks

UrlString does not include the Virtual Directory name - the SetVirtualDirectory Method (WMI MSReportServer_ConfigurationSetting) method is provided for that purpose.

Before calling the ReserveURL method, you must supply a value for the VirtualDirectory configuration property for the Application parameter. Use the SetVirtualDirectory Method (WMI MSReportServer_ConfigurationSetting) method to set the VirtualDirectory property.

If an SSL Certificate was provisioned by [!INCLUDEssRSnoversion] and no other URLs need it, it is removed.

This method causes all non-configuration app domains to hard recycle and stop during this operation; app domains are restarted after this operation complete.

Requirements

Namespace: [!INCLUDEssRSWMInmspcA]

See Also

MSReportServer_ConfigurationSetting Members