getFolderEntriesAsXML

Returns a string containing XML providing summary information about entries in a folder. (V1—V1.0.3)

Syntax

public String getFolderEntriesAsXML( long folderId );

Description

The getFolderEntriesAsXML operation returns XML elements containing summary information about each entry in the specified folder.

Parameter and Return Value

folderId

The binder identifier of the folder containing the entries for which you want information.

return_value

A string containing XML elements containing summary information for each entry in the folder specified by folderId.

Example

call.setOperationName(new QName("getFolderEntriesAsXML")); Object result = call.invoke(new Object[] {new Long(21)});

This code returns a string containing XML information for all of the entries in the folder whose binder identifier is 21.

See Also