Re: Troubles with Deployment (WO5.1.3, W2K, IIS, ISAPI)
Stefan Apelt <[email protected]>
| Newsgroups | gmane.comp.web.webobjects.admin |
|---|---|
| Message-ID | <[email protected]> |
Hi Peter,
your mail from 18.03.2004, 18:01:
> Hello list
>
> I've got big troubles with the deployment under W2K and ISAPI.
>
> I read all the docu about deployment (several times) and started to
> play around
> with Multicast, Hostlists, WOAdaptorInfo etc., etc,
>
> http://myServer:1085 (works)
> http://myServer/scripts/WebObjects.dll/WOAdaptorInfo (does not work !)
>
> CONF_URL = http://myServer:1085
Where do you set CONF_URL? Environment variable or registry? For
WebObjects.exe (CGI), you should set it in the env. vars but
WebObjects.dll (ISAPI) needs the setting in the registry. Open
regedit, go to
HKEY_LOCAL_MACHINE\SOFTWARE\Apple\WebObjects\Configuration
and create an new key "CONF_URL" there (type REG_SZ). The value should
look like this:
http://banana:1085,http://kiwi:1085
e.g. host:port, separated by commata and without any spaces in
between. Other useful settings in the registry would be:
CONF_INTERVAL (REG_SZ) <a integer number>
TEMP (REG_SZ) <a path like "c:/xyz", without quotation
marks, you have to use "/" instead of "\">
TEMP is the path where you can create the "logWebObjects" file to get
the debug output from the ISAPI adaptor.
You don't have to restart wotaskd, just restarting IIS and hitting the
URL to one of your applications is enough to reload the settings. You
can restart IIS from the commandline like this:
net stop iisadmin /y
net start w3svc
Hope this helps.
--
Regards,
Stefan