Documentation on SPS XML programming - Where are they?
In order to take advantage of SPS it appears that the XML for N1 SPS (Service Provisioning System" needs to be known well to manage systems.
I found the "Sun N1 Service Provisioning System 5.2 XML Schema Reference Guide". That describes the constructs with a minimal amount of in context examples.
Where can I find tutorials and examples that will teach us how to use the features SUN provides in SPS XML?
[424 byte] By [
peter_Ca] at [2007-11-26 14:34:17]

# 2
You can also extract the schema files from an SPS CLI installation and configure a schema aware editor (Like the one in the latest version of netbeans enterprise pack) with these files make editing of SPS XML much easier.
Moreover some XML Schema tools help you via the XML schema graphically, like netbeans enterprise pack or XML Spy. If you are visual person, you'll find such views help in understanding the XML structure.
Once you have that you can look at the latest XML Reference documentation for the details. Here's a link to the 5.2.1 XML reference
http://docs.sun.com/app/docs/doc/819-4451
Here is how you can get to the schema files in a CLI installation.
Find the <CLI-Install>/common/lib/rox.jar
file in the CLI installation.
Extract the schema files by running the following command on unix
>jar xvf rox.jar $(jar tf rox.jar |grep 'xml_schema/$')
Refer to these schema files when editing the corresponding XML file. If the XML editor adds a reference to this file in the schemaLocation attribute you may have to edit it back to its original value before checking the XML into SPS.
aj.a at 2007-7-8 2:30:23 >
