FROM: http://tomcat.apache.org/connectors-doc/reference/iis.html
"The ISAPI redirector can read it's configuration from a properties file instead of the registry. This has the advantage that you can use multiple ISAPI redirectors with independent configurations on the same server. The redirector will check for the properties file during initialization, and use it in preference to the registry if present. Create a properties file in the same directory as the ISAPI redirector called isapi_redirect.properties i.e. with the same name as the ISAPI redirector DLL but with a .properties extension. A sample isapi_redirect.properties can be found under the conf directory." This was actually quite easy to implement. I simply copied the redirect DLL isapi_redirect.dll to isapi_redirect_number2.dll created in the same directory as the DLL isapi_redirect_number2.properties ============================= # Configuration file for the Jakarta ISAPI Redirector # The path to the ISAPI Redirector Extension, relative to the website # This must be in a virtual directory with execute privileges extension_uri=/jakarta/isapi_redirect_number2.dll server_root=C:\jetty\connector\ # Full path to the log file for the ISAPI Redirector log_file=C:\jetty\connector\logs\number2.log # Log level (debug, info, warn, error or trace) log_level=info # Full path to the workers.properties file worker_file=c:\jetty\connector\conf\workers.properties # Full path to the uriworkermap.properties file worker_mount_file=c:\jetty\connector\conf\number2-workermap.properties ============================= I also needed to make sure my "web service extension" was updated as well. --~--~---------~--~----~------------~-------~--~----~ Open BlueDragon Public Mailing List http://groups.google.com/group/openbd?hl=en official site @ http://www.openbluedragon.org/ !! save a network - trim replies before posting !! -~----------~----~----~----~------~----~------~--~---
