[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Condor-users] Webservice - how to assure that it is running?



Kandesbunzler@xxxxxx wrote:

I'm trying to run Condor(7.0.1) as a webservice on Win XP, and have therefore configured Condor with these options in condor_config:

WEB_ROOT_DIR = $(RELEASE_DIR)/web
ENABLE_SOAP = TRUE
ALLOW_SOAP = */*
ENABLE_WEB_SERVER = TRUE
QUEUE_ALL_USERS_TRUSTED = TRUE

Condor (w/o SOAP) is running fine, but I cannot get any connection to the webservice.
How can I make sure, it is running properly? Any connections via browser on all the different ports(80,8080,8181,9601,..) I found have not shown a result.
Is there usually any sign of life visible? I'd guess there should be some output in the browser window, even if there's no post request, but maybe I'm wrong.
If I can post any log snippet that's helpful please let me know.

Thanks for any input pointing me in the right direction

--
Juval Koebi
reply to: condor@xxxxxxxxxxxxxx

The WS interface is listening on the Schedd's command port.

This should give you a list of all the Schedds in your pool with a WS interface:

	condor_status -schedd -constraint "HasSOAPInterface=?=TRUE"

Take that and look at the MyAddress attributes to find the port number to use:

condor_status -schedd -constraint "HasSOAPInterface=?=TRUE" -l | grep MyAddress


Best,


matt