I am running Domino 6.5.1 and IBM HTTP Server 1.3.19 utilising the websphere plugin.
Everything appears to be working correctly except where servlets are being used.
The issues is where there is a ‘Space’ character included in the URI such as when accessing a DB bassed on the shipped discussion template.
When accessing through IHS it is being passed as a ‘Space’ and the page is not displaying.
From domlog.nsf
GET /discussion.nsf/Template Name?OpenForm
When accessing directly to the Domino server it is being passed as ‘%20’ and is displaying.
From domlog.nsf
GET /discussion.nsf/Template%20Name?OpenForm
Subject: Domino 6.5 and IHS URL issues
Basically, the space is not a valid character in a URL. I’m not 100% sure from your description what is generating the URIs containing spaces. If it is Domino, add @URLEncode (and @URLDecode) where appropriate. If something else is generating the bad URLs, search for these two @functions in the help and emulate the substitutions done there. You probably can find scripts and @functions posted for this exact purpose. Typically replacing slashes, spaces, and a few other characters is all you need to do.
Subject: RE: Domino 6.5 and IHS URL issues
GET /discussion.nsf/Template Name?OpenForm is posting to the domlog.nsf along with a few others. This is when trying to access a standard shipped V6 discussion database that has no customisation.