Sign in
Http Client Protocol Issues (and other fun stuff I support)
If you use any of these solutions, Please let me know so I can track if any of this is useful to you! Thanks!
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
ATL Controls
AtlServer
Certificates
DebugDiag
HTTP Troubleshooting
HttpWebRequest
IE 8
IIS 7
Internet Explorer
ISAPI
MSXML
Push Notifications
SOAP
Soap ToolKit
SSL
System.Net
WebBrowser Control
Windows 8
Windows Azure Mobile Services
Windows Store applications
WinHttp
WinInet
WNS
WWSAPI
XMLHttp
Archive
Archives
May 2013
(3)
April 2013
(2)
March 2013
(4)
January 2013
(1)
December 2012
(2)
November 2012
(1)
August 2012
(2)
July 2012
(1)
March 2012
(1)
December 2011
(2)
October 2011
(1)
June 2011
(1)
May 2011
(1)
April 2011
(2)
March 2011
(2)
February 2011
(1)
October 2010
(1)
September 2010
(2)
August 2010
(1)
June 2010
(1)
May 2010
(1)
April 2010
(1)
March 2010
(2)
October 2009
(2)
September 2009
(5)
August 2009
(2)
July 2009
(2)
June 2009
(10)
May 2009
(4)
April 2009
(3)
March 2009
(7)
February 2009
(1)
January 2009
(2)
December 2008
(4)
November 2008
(1)
October 2008
(2)
September 2008
(2)
June 2008
(1)
April 2008
(1)
March 2008
(2)
January 2008
(2)
December 2007
(2)
November 2007
(1)
October 2007
(2)
July 2007
(1)
June 2007
(1)
May 2007
(4)
April 2007
(2)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Http Client Protocol Issues (and other fun stuff I support)
Troubleshooting ASP.NET - The remote certificate is invalid according to the validation procedure
Posted
over 4 years ago
by
Jeff Sanders
21
Comments
This error message is caused because the process is not being able to validate the Server Certificate supplied by the Server during an HTTPS (SSL) request. The very first troubleshooting step should be to see if the server supplied certificate and every...
Http Client Protocol Issues (and other fun stuff I support)
WWSAPI samples in Windows 7 SDK for RC: "Unable to add URL to HTTP URL group."
Posted
over 4 years ago
by
Jeff Sanders
2
Comments
I like to build and run with UAC on. When running the HttpCalculatorService example I got this error: Failure: errorCode=0x80070005 Unable to add URL to HTTP URL group. Access is denied. Running from an administrator command prompt I do not get the...
Http Client Protocol Issues (and other fun stuff I support)
You receive one or more error messages when you try to make an HTTP request in an application that is built on the .NET Framework 2.0
Posted
over 4 years ago
by
Jeff Sanders
18
Comments
Please send me a message or leave a comment to let me know if this Post helped you! When you try to make an HTTP request in an application that is built on the .NET Framework, you may receive one or more of the following error messages or Exceptions...
Http Client Protocol Issues (and other fun stuff I support)
msxml3.dll: Access is denied. msxml4.dll: Access is denied.
Posted
over 5 years ago
by
Jeff Sanders
11
Comments
The following vb Script can fail with an "Access is denied" error message: Dim aRequest Set aRequest = CreateObject ("Microsoft.XMLHTTP") aRequest.Open "POST"," http://www.contoso.com/PostAccepter.aspx",False aRequest.setRequestHeader "Content-Type...
Http Client Protocol Issues (and other fun stuff I support)
HttpWebRequest WebExcepton: The remote server returned an error: (407) Proxy Authentication Required.
Posted
over 4 years ago
by
Jeff Sanders
2
Comments
Problem System.Net Tracing (see My Favorite System.Net Tracing File ) revealed that we are getting the 407 error and the .NET framework is not retrying the request with Credentials. System.Net Error: 0 : [4811] Exception in the HttpWebRequest#33574938...
Http Client Protocol Issues (and other fun stuff I support)
IIS 7 ADSI Error: System.Runtime.InteropServices.COMException (0x80005000): Unknown error (0x80005000)
Posted
over 4 years ago
by
Jeff Sanders
8
Comments
The following code worked fine on IIS 6 but when used on IIS it failed: System.DirectoryServices. DirectoryEntry iisServer; iisServer = new System.DirectoryServices. DirectoryEntry ( "IIS://jsanders4/W3SVC/1" ); System.DirectoryServices. DirectoryEntry...
Http Client Protocol Issues (and other fun stuff I support)
A script on this page is causing Internet Explorer to run slowly. If it continues to run, your computer may become unresponsive.
Posted
over 5 years ago
by
Jeff Sanders
11
Comments
Your get one of these errors when running Internet Explorer: Stop running this script? A script on this page is causing Internet Explorer to run slowly. If it continues to run, your computer might become unresponsive. "A script on this page is causing...
Http Client Protocol Issues (and other fun stuff I support)
Some .chm files do not work on Windows 7 - Process Monitor - Navigation to the webpage was canceled
Posted
over 4 years ago
by
Jeff Sanders
25
Comments
This took me a couple of minutes to find so I thought I would share this here. I downloaded ProcMon (process monitor) and could view the help file. It would open but the right pane had a message: "Navigation to the webpage was canceled" The left pane...
Http Client Protocol Issues (and other fun stuff I support)
The underlying connection was closed: An unexpected error occurred on a receive.
Posted
over 5 years ago
by
Jeff Sanders
0
Comments
This article is a great help http://support.microsoft.com/kb/915599 however, there is another potential cause. If the target server resets the connection without replying with an HTTP status (for example 200 OK) you can also get this error. Solution,...
Http Client Protocol Issues (and other fun stuff I support)
Troubleshooting code that uses the HTTP protocol
Posted
over 5 years ago
by
Jeff Sanders
1
Comments
Overview You can solve issues encountered when using the HTTP protocol by applying the principles in this article. By simplifying the issue into a small reproducible problem you can effectively troubleshoot and resolve most problems encountered in code...
Http Client Protocol Issues (and other fun stuff I support)
The ServicePointManager does not support proxies of https scheme (.NET 1.1 SP1)
Posted
over 6 years ago
by
Jeff Sanders
9
Comments
This was an interesting error that I had to hunt down. When specifying a proxy server in .NET like this: WebProxy("https://someproxyserver") you will get this error. You will get this error for whatever scheme that you enter before the "://" characters...
Http Client Protocol Issues (and other fun stuff I support)
Understanding MaxServicePointIdleTime and DefaultConnectionLimit
Posted
over 4 years ago
by
Jeff Sanders
7
Comments
To understand these settings you need to understand how the HttpWebRequest class relates to the ServicePointManager and ServicePoint classes. When you make a request with the HttpWebRequest class, the ServicePointManager provides a ServicePoint object...
Http Client Protocol Issues (and other fun stuff I support)
How To: Walkthrough Using HttpListener or Http Server unmanaged code (C++) as an SSL Simple Server
Posted
over 4 years ago
by
Jeff Sanders
10
Comments
There seems to be no simple end-to-end walkthrough for creating a simple HttpListener based SSL Listener that includes how to configure the computer by generating and installing a Certificate for this listener. Basic concepts covered: Write the...
Http Client Protocol Issues (and other fun stuff I support)
Understanding Problems with MS10-049, KB 980436 and IETF RFC5746
Posted
over 3 years ago
by
Jeff Sanders
7
Comments
Understanding Problems with MS10-049, KB 980436 and IETF RFC5746 Microsoft released a Security update MS10-049: Vulnerabilities in SChannel could allow remote code execution. This update patches vulnerabilities in SChannel (TLS) that can be exploited...
Http Client Protocol Issues (and other fun stuff I support)
My Favorite System.Net trace configuration file dumps Process ID and Date Time Information
Posted
over 4 years ago
by
Jeff Sanders
0
Comments
Often you need to correlate a .NET trace with a Netmon trace. To do that you need the date and time of the call from the System.Net trace . This will do it! NOTE: This section is configures where the log file is and where it should be written: initializeData...
Http Client Protocol Issues (and other fun stuff I support)
CHttpServer not included in Visual Studio 2008
Posted
over 6 years ago
by
Jeff Sanders
0
Comments
CHttpServer and CHttpFilter are not included in Visual Studio 2008. You will get error messages such as: fatal error RC1015: cannot open include file 'afxisapi.rc' fatal error C1083: Cannot open include file: 'afxisapi.h': No such file or directory ....
Http Client Protocol Issues (and other fun stuff I support)
How to Send SOAP call using MSXML (replace STK)
Posted
over 6 years ago
by
Jeff Sanders
0
Comments
I know... This is a simple thing, but there is no documentation on it so here it is: UPDATE: You can now use Windows Webservica API (WWSAPI) to create native code WebService calls! The SoapToolkit (STK) is out of support. So what if you need to...
Http Client Protocol Issues (and other fun stuff I support)
How to get Certificate Information Using WinInet APIs
Posted
over 4 years ago
by
Jeff Sanders
9
Comments
There are two different structures you can query in order to retrieve server certificate information. You must do some sort of request to complete the SSL server certificate exchange, and then you can retrieve this information. Here is an example of that...
Http Client Protocol Issues (and other fun stuff I support)
Windows 8 on Acer Aspire One Netbook - Screen Resolution etc...
Posted
over 2 years ago
by
Jeff Sanders
6
Comments
I was anxious to see what real memory usage would look like on my low end netbook. It was better than Windows 7! Less than 500M. One problem I had was the native resolution of my netbook is1024X600 and the will not load Windows Store applications at that...
Http Client Protocol Issues (and other fun stuff I support)
How To: Close the Form hosting the WebBrowser control when scripting calls window.close in the .Net Framework version 2.0
Posted
over 6 years ago
by
Jeff Sanders
3
Comments
By design the WebBrowser Control does not close the parent Form when WebBrowser Control is closed. Here is one way you can accomplish this. The WebBrowser will send a WM_NOTIFYPARENT notification that can be captured and an event raised that a host...
Http Client Protocol Issues (and other fun stuff I support)
How to enable WinHttp Tracing on Vista, 2008 and Windows 7
Posted
over 4 years ago
by
Jeff Sanders
4
Comments
WinhttpTracecfg.exe for Vista does not exist, so how can you get a WinHttp trace in Vista and above? WinHttpTraceCfg.exe has been replaced in Vista and above with the netsh winhttp command. see this blog: http://blogs.msdn.com/wndp/archive/2007/03...
Http Client Protocol Issues (and other fun stuff I support)
Building with ATLServer based SOAP project with Visual Studio 2008
Posted
over 5 years ago
by
Jeff Sanders
0
Comments
UPDATE: Replace ATLServer with WWSAPI! Windows Web Services API Client code walkthrough When I tried to build an old ATLServer WebClient SOAP project I got these errors: fatal error C1083: Cannot open include file: 'atlsrvres.h': No such...
Http Client Protocol Issues (and other fun stuff I support)
Certificate Revocation List (CRL) Check and WinHttp Proxy settings
Posted
over 2 years ago
by
Jeff Sanders
2
Comments
Starting with Windows XP SP2, the Crypto API CRL check uses WinHttp (see: http://support.microsoft.com/kb/887196 ). This can cause some confusion with network administrators and developers since they might have set proxy information for WinInet or applications...
Http Client Protocol Issues (and other fun stuff I support)
ASP.NET asp:menu does not display Child Menu items in IE 8
Posted
over 4 years ago
by
Jeff Sanders
16
Comments
Strange. I found in my personal website the Child menus were not showing when I hovered over the root menu item. There is nothing special about the menus. They are standard asp:menu items created when I dragged the menu tool from the navigation tools...
Http Client Protocol Issues (and other fun stuff I support)
Internet Explorer WebBrowser Control loses state when JScript performs a call to Window.Open
Posted
over 6 years ago
by
Jeff Sanders
0
Comments
Session state for a web site is often stored in cookies. If you use the WebBrowser control in an program and the target website responds to an action with a call to Window.Open , then mysteriously the cookies for that site are not transmitted with the...
Page 1 of 5 (102 items)
1
2
3
4
5