IIS、XP、SSL 与 KeepAlives

发布于 2024-07-09 18:47:01 字数 411 浏览 11 评论 0原文

我进退两难。 我正在使用 Studio 2005/IIS 在 XP 上进行开发。 到目前为止,这对我来说一直没有问题,直到今天。

我需要添加 SSL 证书,以便可以使用仅在安全模式下允许的会话完成以 SSL 运行的网站部分的开发。

因此,我安装了证书并在调试模式/F5 下启动工作室,然后使用浏览器访问安全页面。 当使用 https 并启用保持活动时,页面会加载一些图像,而不是其他图像。 关闭保持活动,所有页面图像都会在每个请求上加载,但工作室不会附加调试器来抱怨身份验证失败。 重新打开 keep-alives,工作室可以很好地调试,但图像会变得混乱。

我确信这是 XP 中 IIS 的连接限制。 有解决这种疯狂的方法吗? 反复点击复选框来完成工作正在扼杀我的理智。 Vista 和/或服务器操作系统是不可能的。

I'm stuck between a rock and a hard place. I'm developing on XP using Studio 2005/IIS. Thus far, this has been problem free for me, until today.

I needed to add an SSL cert so I could finish development for a part of the site that runs in SSL using sessions that are only allowed in secure mode.

So, I install the cert and fire up studio in debug mode/F5 and hit a secure page with the browser. The pages load some images, not other images when using https and keep alives are enabled. Turn off keep alives, and all page images load on every request, but studio won't attach the debugger griping about an auth failure. Turn keep alives back on, studio will debug just fine but images go screwy.

I'm sure this is the connection limit imposed upon IIS in XP. Is there a work around for this madness? Flip flopping the checkbox to get work done is killing my sanity. Vista and/or Server Operating Systems aren't a possibility.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

中二柚 2024-07-16 18:47:01

您可以将 MaxConnections 值更改为更高的值:

C:\Inetpub\scripts>adsutil.vbs get W3SVC/MaxConnections
MaxConnections                  : (INTEGER) 10
C:\Inetpub\scripts>adsutil.vbs set W3SVC/MaxConnections 100
MaxConnections                  : (INTEGER) 100

You can change the MaxConnections value to something higher:

C:\Inetpub\scripts>adsutil.vbs get W3SVC/MaxConnections
MaxConnections                  : (INTEGER) 10
C:\Inetpub\scripts>adsutil.vbs set W3SVC/MaxConnections 100
MaxConnections                  : (INTEGER) 100
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文