Go to the directory install/registry-samples/query-declarative.
To run the JAXRQueryDeclarative example, type the following command:
Ant-base/ant get-free |
The output of the get-free target looks something like this:
get-free:
[java] Query URL is http://localhost:6480/soar/registry/soap
[java] Query string is SELECT ro.* FROM RegistryObject ro, Name nm, Description d
WHERE upper(nm.value) LIKE upper('%free%') AND upper(d.value) LIKE upper('%free%')
AND (ro.id = nm.parent AND ro.id = d.parent)
[java] Created connection to registry
[java] Got registry service and query manager
[java] Object type is Federation
[java] Object name is freebXMLRegistryFederation
[java] Object description is freebXML Registry Federation
[java] ---
[java] Object type is Organization
[java] Object name is freebXMLRegistry
[java] Object description is freebXML Registry
[java] ---
[java] Object type is Registry
[java] Object name is freebXMLRegistry
[java] Object description is freebXML Registry
[java] ---
|
To run the JAXRGetAllSchemes example, type the following command:
Ant-base/ant get-schemes |
The output of the get-schemes target begins something like this:
get-schemes:
[java] Query URL is http://localhost:6480/soar/registry/soap
[java] Created connection to registry
[java] Got registry service and query manager
[java] Query string is SELECT * FROM ClassScheme s ORDER BY s.id
[java] All classification schemes and their URNs:
[java] 1. NASDAQ -- urn:devguide:samples:ClassificationScheme:NASDAQ
[java] 2. HL7 -- urn:freebxml:registry:demo:schemes:HL7
[java] 3. iso-ch:3166:1999 -- urn:freebxml:registry:demo:schemes:iso-ch:3166:1999
[java] 4. DUNS -- urn:freebxml:registry:demoDB:classificationScheme:DUNS
[java] 5. NYSE Ticker -- urn:freebxml:registry:demoDB:classificationScheme:NYSETicker
...
|