http.sys is Microsoft Windows HTTP protocol stack file
0
votes
0answers
4 views
That implicity disable kernel cache in ASP.NET?
I research kernel cache in IIS 7 and how it work with ASP.NET. I found list of conditions when not use kernel cache http://support.microsoft.com/kb/817445/en-us
I found information about disabled ...
0
votes
0answers
17 views
Difference between Windows Sockets API and http.sys?
What is the difference between Windows Sockets API and http.sys? Why has IIS replaced windows sockets API with http.sys?
0
votes
1answer
138 views
Changing HTTP.sys kernel queue limit when using .Net HttpListener?
I have an application that uses the HttpListener class in .Net 4.0 to service http requests.
Under load I have noticed that I get 503 - QueueFull - errors reported in the log. A search for this error ...
0
votes
0answers
78 views
Why doesn't my Web Api proxy receive https requests when set as browser proxy, but can normally?
I have written a http proxy using WebApi.
I have it registered on port 4443, and if I enter https://localhost:4443 into a browser, and set a breakpoint in my DelegatingHandler, it will be hit (and I ...
1
vote
1answer
298 views
WCF Service Behavior
I have a self hosted WCF service I'm hosting in a Windows Service. My binding is setup as a basicHttpBinding.
When I am running the service, I run netsh http show servicestate and I see my service ...
0
votes
1answer
75 views
HTTP_LOG_FIELDS_DATA and Method logging
I'm hitting a snag: the HTTP_LOG_FIELDS_DATA has three fields to specify the Method:
USHORT MethodLength;
PCHAR Method;
HTTP_VERB MethodNum;
But AFAICT MethodNum is ignored (any value comes up as ...
0
votes
3answers
184 views
http.sys implementation
We all know that there's a big sweet piece o' binary named http.sys kernel-mode driver in our Windows that does HTTP handling for us. That is basically all we know about it.
But today I thought: ...
1
vote
0answers
69 views
Windows http.sys alternative for linux platform
Windows has a Kernel based http.sys Web server. The main advantage of it is that it is kernel based. This gives performance advantages but (for me) more importantly: flexibility.
For example two ...
0
votes
0answers
162 views
WCF Windows Process Activation Service (WAS) max requests 1000
I am hosting service:
static void Main(string[] args)
{
using (ServiceHost serviceHost = new ServiceHost(typeof(RoutingService)))
{
serviceHost.Open();
...
3
votes
0answers
177 views
How do I see which files are in the usermode cache in IIS7.5?
The kernelmode static content cache is part of HTTP.SYS and is rather straightforward to configure. When debugging, you can always inspect the contents of the kernelmode cache with the command:
netsh ...
0
votes
1answer
301 views
What is phrase “URL reservation in HTTP.SYS” means?
Can't understand the meaning of this phrase. People on forums suggests each other to reserve url in HTTP.sys, but what does it mean? What is it for? How does it works?
All it comes from ...
0
votes
0answers
203 views
High volume ASP page calling an ASP.NET to leverage cache results in 503 Service Unavailable
A high volume classic ASP page is using an ASP.NET page to return xml data, taking advantage of .NET caching capabilities. The cache being used in the .net page is the Context Cache. Recently after 1 ...
0
votes
1answer
741 views
Round #2: HttpListener not receiving outside requests
Same situation as this question, HttpListener not receiving remote requests, even with the firewall down and all prefixes registered, namely:
the HttpListener is only receiving requests from the ...
0
votes
1answer
533 views
Can you use SQL Server Reporting Services, SSRS 2008, to host an intranet site?
The project I'm on has a single server running both the SQL Server 2008 R2 database and the SSRS Reporting Services. Can I utilize SSRS to host a simple intranet site that would allow users to modify ...
2
votes
1answer
278 views
Difference between https://+:8080 and https://*:8080
what are the basic differences between these two in terms of HTTPListener or any other?
https://+:8080
https://*:8080
1
vote
1answer
570 views
Error 503 with WCF service
I've got a self-hosted WCF service listening on port 80. When I attempt to connect to it, I get a 503 Service Unavailable.
My WCF process is running, IIS is running. My URL ACLs are correct. Control ...
0
votes
1answer
330 views
HttpListener throttling?
MSDN says HttpListener is based on http.sys and "HTTP.sys provides connection management, bandwidth throttling, and Web server logging."
I need to limit the maximum amount of connections to server. ...
0
votes
1answer
198 views
Does Http.sys support full duplex communication?
Is this possible? Can we access the underlying socket, used by http.sys to serve a response for a given request. I want to be able to support full duplex communication over the http protocol on port ...
3
votes
2answers
186 views
HttpAddFragmentToCache and OS error 50
I am trying to create an embedded web server in an application. For this I use the http.sys HTTP server component from Windows. Everything works well when I do not try to use HttpAddFragmentToCache.
...
5
votes
3answers
1k views
C# NET HTTP.SYS web server
I just need to create an extremely basic web server that will basically allow me to go to http://1.2.3.4:8080 and browse a list of files in C:\web or something.
I found this ...
13
votes
1answer
1k views
How are threads tied to requests through Http.sys, IIS and ASP.NET
I'm currently reading a lot about node.js. There is a frequent comparison between servers using a traditional thread per request model (Apache), and servers that use an event loop (Nginx, node, ...
12
votes
1answer
975 views
WCF without HTTP.SYS
When using a HTTP binding in WCF, I need to grant myself special permissions to be able to bind to that port/path. I understand this is because WCF accepts HTTP traffic through the http.sys driver.
...
4
votes
2answers
565 views
Change http.sys registry settings on Windows Azure?
I would need to raise the UrlSegmentMaxLength of the Http.sys registry settings on Windows Azure. Does anyone knows how to do that? (or do something that leads to an equivalent behavior)
13
votes
2answers
1k views
How to maximize http.sys file upload performance
I'm building a tool that transfers very large streaming data sets (possibly on the order of terabytes in a single stream; routinely in the tens of gigabytes) from one server to another. The client ...
0
votes
2answers
995 views
How to register your application into\with Http.sys?
So I created a TCP\HTTP server (IN C#). I want to give to it namespace on my 80's port near to other HTTP servers I have. How to do such thing (step - by step)?
