petr.nehez Posted August 18, 2011 Posted August 18, 2011 Hi, I would like to deploy ISAPI module on the domain only, it means I'd like to have uniGUI app running on xxx.domain.com - now it's possible to run it only as xxx.domain.com/module.dll. We already use this technique where we have ISAPI handler for any * address. Is that possible? Thanks. Petr Quote
AMIT Posted August 19, 2011 Posted August 19, 2011 Hi, I would like to deploy ISAPI module on the domain only, it means I'd like to have uniGUI app running on xxx.domain.com - now it's possible to run it only as xxx.domain.com/module.dll. We already use this technique where we have ISAPI handler for any * address. Is that possible? Thanks. Petr This isn't uniGUI problem. You have to config your web server for the default document. In Apache, look into httpd.conf <IfModule dir_module> DirectoryIndex YourDLL.dll index.php index.html index.htm </IfModule> Please See more info from Apache and/or IIS Help. Quote
petr.nehez Posted August 19, 2011 Author Posted August 19, 2011 Oops, you're right. I forgot to add the module into the "Default Document" list (I use IIS). After that it's working without problems. Thank you. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.