Sample Work Flow
The following procedure illustrates the creation of a WSConfigElement the defines a specific network interface, and associated keep-alive mechanisms. Refer to WSConfigElement for details.
- Use the login administrative API to access a Oracle Communications Session Delivery Manager SOAP API server
- Use the newConfigElement API to create a template (actually a WSConfigElement data structure with default attribute values) of the networkInterface Type.
- Construct an ArrayList of WSConfigAttribute data structures to assign local attribute values to the default networkInterface template returned by newConfigElement. Refer to WSConfigAttribute for details.
- Add this attribute ArrayList to the networkInterface WSConfigElement data structure. This step completes configuration of the top-level networkInterface.
- Use the newConfigElement API to create a second-level (child) template of the networkInterface/GWHeartbeat Type.
- Construct an ArrayList of WSConfigAttribute data structures to assign local attribute values to the default networkInterface/GWHeartbeat template returned by newConfigElement.
- Add the attribute ArrayList to the child template. This step completes configuration of the second-level child.
- Construct an ArrayList of child WSConfigElements; in this case the array contains only a single element.
- Append this child ArrayList to the WSConfigElement data structure.
- Use the addConfigElement API to commit the WSConfigElement to the configuration database.
- Logout, using the logOut API