Changes between Version 10 and Version 11 of Internal/Infrastructure/OMF/GridServicesApi
- Timestamp:
- Mar 24, 2006, 4:44:47 PM (19 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Internal/Infrastructure/OMF/GridServicesApi
v10 v11 1 1 = Using ORBIT Web based services = 2 2 3 ORBIT support services have web based XML interfaces. They all use the same framework and, therefore, have like syntax. The services are accessed using the following scheme:3 ORBIT support services have web based XML interfaces. They all use the same framework and, therefore, have like syntax. The services are accessed using either of the following schemes: 4 4 {{{ 5 http://<serviceGroup name>:5012/<serviceGroup name> ?<service name>&<1st arg>=<arg_1_value>&<2nd_arg>=<arg_2_value>5 http://<serviceGroup name>:5012/<serviceGroup name>/<service name>?<1st arg>=<arg_1_value>&<2nd_arg>=<arg_2_value> 6 6 }}} 7 7 8 8 For instance, to turn on node1-1 using the CMC (from the console of one of the sandboxes or the grid), you would issue the following: 9 9 {{{ 10 wget -O - "http://cmc:5012/cmc/nodeSetOn &nodes=[1,1]"10 wget -O - "http://cmc:5012/cmc/nodeSetOn?nodes=[1,1]" 11 11 }}} 12 12