I am trying to connect IIS 10 (Windows 10) to a Co...
# box-products
j
I am trying to connect IIS 10 (Windows 10) to a Commandbox server with AJP and the BonCode connector. The issue I am having is that cgi.PATH_INFO is now /somedir/index.cfm/login instead of /login. I am assuming this is an IIS issue but wanted to check here in case someone else has encountered this. This seems to indicate that this is the IIS default behavior. I tried setting allowPathInfo = true in the BonCode handler but this did not change the cgi.path_info value. https://learn.microsoft.com/en-us/iis/web-dev-reference/server-variables
b
You may also need to enable
EnableHeaderDataSupport
as well
j
I have not. I was focused on IIS rather than the connector. I will give those settings a try and report back. Thanks!
b
From my understanding, that's something the connector needs to send, but I could be wrong
Also, have you seen/tested the new MultiSite features of CommandBox 6? 🙂
It allows you to basically replace IIS and Boncode entirely and just use CommandBox for everything
j
I will check that out. Right now I am trying to reproduce an issue in prod involving IIS.
👍 1
I failed to mention I was on ACF. I also added this setting to the connector and is working as expected now.
Copy code
<EnableAdobeMode>True</EnableAdobeMode>
👍 1
b
Ahh yes, I've always flipped that on when using Adobe which explains why it always worked for me 🙂
j
Thanks for the nudge in the right direction.