Home > Contents > Index >
SPGetProperties
Retrieves the properties for the specified node ID.
Syntax
SPGetProperties(java.lang.String authusername, java.lang.String authpassword, java.lang.String NODEID)Parameters
authusername (required)
- (String) Name of the user to log in, as registered in Sites .
authpassword(required)
- (String) Password for the associated user name.
NODEID (required)
- (String) ID number of the parent SitePlan node. Sites generates the node ID.
Description
Retrieves the properties for the specified node ID.To get the NodeID, first call the AssetLoad operation to retrieve the asset, and then call the AssetGetSiteNode operation to extract the node ID number.
Returns
A list that contains the SitePlan node properties.
Error Numbers
The possible values of
errno
include:
Value Description -10004 A required parameter is missing. -10005 The requested object is not in the object pool (is not loaded into memory).
Example
This code extracts the child pages for the page asset identified as the node ID of the page:
SitePlanService service = new SitePlanServiceLocator(); SitePlanPortType port = service.getSitePlanPort(); IList myList = port.SPGetProperties("user_author", "demo", "968685129229");
Home > Contents > Index > ![]()
Oracle Web Services Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.