Hello, On Mon, Jul 23, 2007 at 10:49:31AM +0800, Ding Tao wrote: > i have three question here: > 1. how can i register my own service which is deployed in container to > DefaultIndexService so that i can query it?
You can add some code to your service to do a registration on startup (e.g. like the "registerToMDS" method in ws-transfer/reliable/service/java/source/src/org/globus/transfer/reliable/service/factory/ReliableFileTransferFactoryService.java), or write an information provider to push/pull data into the container at any time after startup. The latest MDS4 docs are here: http://www.globus.org/toolkit/docs/4.0/info/ > 2. how can i get service URL list like in $GLOBUS_LOCATION/var/container.log? You can query for that information: $GLOBUS_LOCATION/bin/wsrf-query -s http(s)://HOST:PORT/wsrf/services/ContainerRegistryService > 3. there are many services available when container starts, how can i call > these services? are there any docs? > thanks a lot! Our documentation is here for the latest stable release: http://www.globus.org/toolkit/docs/4.0/ Interfacing with each service is different, and you'll have to read about how to use each. Some services have special command line clients that interact with them (and you can check out the code if you're interested in the calls) like the (sample) $GLOBUS_LOCATION/bin/counter-client (etc) -Neill.
