ReportingService2005.CreateFolder Method
Assembly: ReportService2005 (in reportingservice2005.dll)
[SoapDocumentMethodAttribute("http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices/CreateFolder", RequestNamespace="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices", ResponseNamespace="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices", Use=SoapBindingUse.Literal, ParameterStyle=SoapParameterStyle.Wrapped)] [SoapHeaderAttribute("ServerInfoHeaderValue", Direction=SoapHeaderDirection.Out)] [SoapHeaderAttribute("BatchHeaderValue")] public void CreateFolder ( string Folder, string Parent, Property[] Properties )
/** @attribute SoapDocumentMethodAttribute("http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices/CreateFolder", RequestNamespace="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices", ResponseNamespace="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices", Use=SoapBindingUse.Literal, ParameterStyle=SoapParameterStyle.Wrapped) */
/** @attribute SoapHeaderAttribute("ServerInfoHeaderValue", Direction=SoapHeaderDirection.Out) */
/** @attribute SoapHeaderAttribute("BatchHeaderValue") */
public void CreateFolder (
String Folder,
String Parent,
Property[] Properties
)
SoapDocumentMethodAttribute("http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices/CreateFolder", RequestNamespace="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices", ResponseNamespace="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices", Use=SoapBindingUse.Literal, ParameterStyle=SoapParameterStyle.Wrapped) SoapHeaderAttribute("ServerInfoHeaderValue", Direction=SoapHeaderDirection.Out) SoapHeaderAttribute("BatchHeaderValue") public function CreateFolder ( Folder : String, Parent : String, Properties : Property[] )
Parameters
- Folder
The name of the new folder.
- Parent
The full path name of the parent folder to which to add the new folder.
- Properties
An array of Property objects that defines the property names and values to set for the folder.
The length of the full path name for the new folder cannot exceed 260 characters; otherwise, a SOAP exception is thrown with the error code rsItemLengthExceeded.
Folder names cannot be null, consist of empty strings, or contain the following reserved characters: : ? ; @ & = + $ , \ * > < | . ". You can use the forward slash character (/) to separate items in the full path name of the folder, but you cannot use it at the end of the folder name.
If My Reports is enabled, a SOAP exception is thrown with the error code rsItemAlreadyExists if you attempt to create a folder named "My Reports" in the root folder of the report server database.
Adding a folder to the report server database modifies the ModifiedBy and ModifiedDate properties of the parent folder.
To compile this code example, you must reference the Reporting Services WSDL and import certain namespaces. For more information, see Compiling and Running Code Examples. The following code example uses the CreateFolder method to create a folder in the report server database:
using System; using System.Web.Services.Protocols; class Sample { public static void Main() { ReportingService rs = new ReportingService2005(); rs.Credentials = System.Net.CredentialCache.DefaultCredentials; // Create a custom property for the folder. Property newProp = new Property(); newProp.Name = "Department"; newProp.Value = "Finance"; Property[] props = new Property[1]; props[0] = newProp; string folderName = "Budget"; try { rs.CreateFolder(folderName, "/", props); Console.WriteLine("Folder created: {0}", folderName); } catch(SoapException e) { Console.WriteLine(e.Detail.InnerXml); } } }
