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
AtlServer
Certificates
DebugDiag
HTTP Troubleshooting
HttpWebRequest
IE 8
IIS 7
Internet Explorer
ISAPI
MSXML
Push Notifications
SOAP
Soap ToolKit
SQL
SSL
System.Net
WebBrowser Control
Windows 8
Windows Azure Mobile Services
Windows Store applications
WinHttp
WinInet
WNS
WWSAPI
XMLHttp
Archive
Archives
May 2013
(4)
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)
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)
How To: Set the proxy for the WebBrowser control in .NET
Posted
over 2 years ago
by
Jeff Sanders
22
Comments
I see some horrible solutions for this out on the web. Most involve setting the proxy for the entire machine and then toggling it back off. Here is a class that will allow you to set it ONLY FOR THE PROCESS that the control is hosted in. You could call...
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)
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)
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)
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)
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)
WCF Client Inner Exception: "The Security Support Provider Interface (SSPI) negotiation failed."
Posted
over 3 years ago
by
Jeff Sanders
11
Comments
Creating a WCF Client in Visual Studio 2010, I struggled with this error. I was running as the currently logged on user and the service was as well so this made no sense to me. I found that this entry in the client app.config was the culprit: <identity>...
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)
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)
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)
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)
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)
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)
Using HttpWebRequest with Credential Manager
Posted
over 4 years ago
by
Jeff Sanders
7
Comments
A little know fact is that the .NET framework will use the stored credentials in the Credential Manager when accessing a network resource if the credentials exist for that particular resource (host). I intend to clear up how this functionality works for...
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)
Walkthrough–Creating an IIS server to use with WNS Push Notifications and Windows Store apps (RTM update)
Posted
over 2 years ago
by
Jeff Sanders
6
Comments
Moved to our new blog here: http://blogs.msdn.com/b/wsdevsol/archive/2012/10/04/walkthrough-creating-an-iis-server-to-use-with-wns-push-notifications-and-windows-store-apps.aspx
Http Client Protocol Issues (and other fun stuff I support)
WinHttp Proxy configuration on Windows 2003 x64
Posted
over 4 years ago
by
Jeff Sanders
5
Comments
You may get an error similar to this when running your WinHttp application: Error: The server name or address could not be resolved Code: 80072EE7 Source: WinHttp.WinHttpRequest The familiar ProxyCfg application allows you to set the proxy settings...
Http Client Protocol Issues (and other fun stuff I support)
WinHttp Proxy Settings in 64 Bit (x64) Environments
Posted
over 3 years ago
by
Jeff Sanders
5
Comments
There are two settings for WinHttp Proxy settings for a 64 Bit OS. One applies to the 64 bit environment and one for the 32 bit environment. You can use netsh for Windows 2008, Windows 7 and later OSes and proxycfg.exe for earlier OSes. If you are confused...
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)
Print from Internet Explorer without the Printer Selection Box
Posted
over 5 years ago
by
Jeff Sanders
4
Comments
Quickie post... If you have a default printer selected on your system, then this HTML page with jscript should print without showing the printer selection dialog (I will embellish this post later if I have time): <! DOCTYPE html PUBLIC "-...
Http Client Protocol Issues (and other fun stuff I support)
HttpWebRequest exception: "Unable to connect to the remote server" when using .INS config files
Posted
over 4 years ago
by
Jeff Sanders
3
Comments
Problem Taking a System.Net Trace (see My Favorite System.Net Tracing File ) you will see that the HttpWebRequest is trying to use a .INS file. System.Net Verbose: 0 : [0371] WebRequest::Create( http://myserver/ie/update/windows/IEConfig.INS ) ...
Http Client Protocol Issues (and other fun stuff I support)
400 Error from WebService using .NET 2.0 and PreAuthenticate
Posted
over 6 years ago
by
Jeff Sanders
3
Comments
Prashant from my team found this interesting issue. I will blog it here until the KB comes out on this. Problem ====== WebService server responds back with a HTTP 400 error when using PreAuthenticate on the WebServiceProxy class. This results in a...
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)
Windows 8 Video Driver for Inspiron 1521 - Radeon Xpress 1270
Posted
9 months ago
by
Jeff Sanders
3
Comments
I have an old (circa 2007) Dell Inspirion 1521 laptop and wanted to get a better Video driver installed for Windows 8. I found a Vista 64 bit driver on the Dell site that seems to work very well (compared to the generic drivers): http://www.dell.com/support...
Page 1 of 5 (103 items)
1
2
3
4
5