DocumentReaderGetDocumentsInCategory Method (ConnectionId, SessionId, String, Int32, String) Content Studio 5.7 SDK
Content Studio Web Content Management System

[This is preliminary documentation and is subject to change.]

Returns a pageable list of documents that exists in a category. It is possible to apply filters to this list.

Namespace: ContentStudio.Document
Assembly: CSServer5 (in CSServer5.dll) Version: 5.7.5016.0 (5.7.5016.0)
Syntax

public string GetDocumentsInCategory(
	ConnectionId connectionId,
	SessionId sessionId,
	string xmlParameterData,
	out int status,
	out string statusText
)

Parameters

connectionId
Type: ContentStudioConnectionId
A value that identifies the web site
sessionId
Type: ContentStudio.SecuritySessionId
A value that identifies the user's session. This value usually originates from a call to OpenSession(ConnectionId).
xmlParameterData
Type: SystemString
XML that contains the parameters that this call uses. This XML is according to the Content Studio parameters XML schema
status
Type: SystemInt32
An integer indicating result of the call. Zero is success.
statusText
Type: SystemString
The textual representation of the call result.

Return Value

Type: String
Xml with the following syntax when full return level is specified.

<root>
  <status>0</status>
  <statustext>Success</statustext>
  <pageno>1</pageno>
  <pagecount>1</pagecount>
  <recordcount>1</recordcount>
  <unitid>40</unitid>
  <parentid>561</parentid>
  <module>Dokument</module>
  <location>MyUnit/HTML/</location>
  <categoryid>561</categoryid>
  <isenabledforpdf>0</isenabledforpdf>
  <documents>
    <document publishstatus="2" 
                 id="4420" 
                 name="HelloCS5" 
                 type="text/html" 
                 modified="2007-02-28T15:27:57.323" 
                 filename="MyUnit/HTML/BCC7232E-BD9F-4112-9929-275EE7121204.aspx" 
                 checkoutstatus="1" 
                 publishdate="2007-02-28T15:25:00" 
                 filesize="996" 
                 revisionstatus="0" 
                 deleteddate="1900-01-01T00:00:00" 
                 wfstatustext="" 
                 description="" 
                 contentsize="0">
      <user createdby="John Oscar" />
    </document>
    <!-- more document elements follow -->
  </documents>
</root>
Element/AttributeDescription
root/statusInteger: Indicates the outcome of the call, always 0 which indicates success
root/statustextString: The textual representation of the status, always OK
root/pagenoInteger:
root/pagecountInteger: the number of data pages found.
root/recordcountInteger: the total number of records found.
root/unitidInteger: an identifier of the unit of the category .
root/parentidInteger: an identifier of the parent of the category.
root/moduleDescription
root/locationString: The relative path name to the category.
root/categoryidInteger: The category identifier.
root/isenabledforpdfBit: 1 if the category of the document uses a PDF-server; otherwise, 0.
root/documentsDocument list container element.
root/documents/documentElement that contains attributes that represents properties of a document returned.
root/documents/document/@publishstatusInteger: for more information see below
root/documents/document/@idInteger: The numeric identifier of the document
root/documents/document/@nameString: the document name
root/documents/document/@typeString: the mime type of the document e.g. text/html
root/documents/document/@modifiedSortable DateTime value: indicates when the document was last modified e.g. 2007-02-28T15:27:57.323.
root/documents/document/@filenameString: the name of the file in the file system that represents this document.
root/documents/document/@checkoutstatusInteger: for more information about this attribute: see section below.
root/documents/document/@publishdateSortable DateTime value: indicates when the document can be published e.g. 2007-02-28T15:27:57.323.
root/documents/document/@filesizeInteger: the size (in bytes) of the file in the file system that represents this document.
root/documents/document/@revisionstatusInteger: for more information see below
root/documents/document/@deleteddateSortable DateTime value: indicates when the document was deleted e.g. 2007-02-28T15:27:57.323. Empty or missing if not deleted.
root/documents/document/@wfstatustextString: the workflow status text. Empty unless workflow is used.
root/documents/document/@description>String: the description of the document.
root/documents/document/@contentsize>Integer: the size (in bytes) of the raw content of the document when stored in the database.
root/documents/document/@imagesavailableInteger: indicates how the image processor scales images uploaded. Value is one of the numeric values of the ImagesAvailable enumeration.
root/documents/document/@virtualpathString: the virtual path of the document or empty.
root/documents/document/userElement that contains attributes with information about the user that created the document.
root/documents/document/user/@createdby>String: the name of the user that created the document

The checkoutstatus attribute, specifies whether the document is checked out and if so, whether the document is checked out by the caller or someone else.

ValueMeaning
0Not checked out.
1Checked out by the caller.
2Checked out by someone else.

The publishstatus attribute, which is defined in the PublishStatuses enumeration, can have one of the following values and meaning

ValueNameDescription
0DraftOnlyThe document exists only as a draft (utkast).
5ExpiredThe document has expired.
3InRecyclingBinThe document is in the Recycling bin.
2PublishedThe document is published.
1QueuedThe document is waiting to be published.
6WithdrawnThe document is withdrawn.

The revisionstatus attribute, can have one of the following values and meaning

Possible values of the revision status attribute
ValueNameDescription
0NoneThe document has only a draft and is not deleted and has not been subject to versioning.
1RejectedThe document was on versioning but was rejected.
2VersioningThe document is on versioning
3DeletedThe document is deleted
4ApprovedThe document is approved.

When limited level is requested the following syntax is expected

<root>
  <status>0</status>
  <statustext>Success</statustext>
  <pageno>1</pageno>
  <pagecount>1</pagecount>
  <recordcount>1</recordcount>
  <unitid>40</unitid>
  <parentid>561</parentid>
  <module>Dokument</module>
  <location>MyUnit/HTML/</location>
  <categoryid>561</categoryid>
  <isenabledforpdf>0</isenabledforpdf>
  <documents>
    <document id="4420" 
                 name="HelloCS5" 
                 type="text/html" 
                 modified="2007-02-28T15:27:57.323" 
                 filename="MyUnit/HTML/BCC7232E-BD9F-4112-9929-275EE7121204.aspx" 
                 deleteddate="1900-01-01T00:00:00" 
                 description=""/>
    <!-- more document elements follow -->
  </documents>
</root>
Content Studio permissions

READ permission on the category is required.
Remarks

When listing deleted documents the passed in category id is ignored, thus all documents in the recycling bin are listed.
Note Note
In version 5.3 support for reading only the document deleted by the caller has been introduced as a new filter option.

Starting with version 5.3, programmers that write their own code to list documents in the recycling bin might like to use the alternative method GetDocumentsInRecyclingBin instead which is easier and more friendly to use.

Remarks

This is the backwards compatible implementation of this method. This implementation does not throw any exceptions, instead callers must examine the outcome of the call in the Status and StatusText output parameters.
See Also

Reference