C O M M E N T S
Comment display is being revamped. We apologize for the delay.
|
Fix/Work-Around
[Bobby Schuchert]
[Thursday, May 17, 2007 07:28 AM] |
|
It turns out that this really isn't a bug in ColdFusion, it seems to be a setting in IIS6 that needs to be changed. I did not find this fix, I found the post of the person who found the fix.
The fix:
"
The issue of the 50kb limit and client certificates has to do with IIS 6 Metabase settings and the client certificate requiements:
Use Metabase Explorer (included in IIS6 Resource Kit - iis60rkt.exe) to add the following entries to C:\WINDOWS\system32\inetsrv\Metabase.xml
(Do not use MetaEdit – will not work with IIS6)
w3svc/1/uploadreadaheadsize 800000000 (DWORD)
w3svc/1/SSLAlwaysNegoClientCert 1 (DWORD)
Metabase Explorer operates a lot like Regedit.
• Open Metabase Explorer
• Go to LM/W3SVC/1/
• Right click and choose New – DWORD Record
• Choose uploadreadaheadsize from the pulldown
• Once it’s added you can double-click it to change value (default is 49152) 48K
Change it to a larger value.
Then repeat the same steps above to add SSLAlwaysNegoClientCert and set that to 1 (True)
Open C:\WINDOWS\system32\inetsrv\Metabase.xml with notepad and search for the above settings to confirm that they were added.
Some support sites:
http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/1d1e5de4-fd63-40cd-bc5d-c20521548eed.mspx?mfr=true
http://technet2.microsoft.com/windowsserver/en/library/0ef55842-24d2-4060-bb98-d69e2877a6671033.mspx?mfr=true
http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/7e0d74d3-ca01-4d36-8ac7-6b2ca03fd383.mspx?mfr=true "
Here is a link to the user that figured this out along with his post
http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?catid=3&threadid=1255307&forumid=1
|
|