473,396 Members | 1,995 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Need to get the HTTP version

Hi,

The Request.SaveAs method stores in a file the complete
HTTP request including the HttpVersion. However when I try
to reproduce in memory the same thing, I cannot find
the "HTTP/1.1" anywhere. I looked around and found a class
called HttpWorkerRequest which has a method called
GetHttpVersion() which returns the exact thing I am
missing. However, I can't see how to get at the
HttpWorkerRequest from a Page or from the HttpApplication.

What am I missing?
Thanks!
Juan
Nov 17 '05 #1
1 2460
Hello Juan,
After some research, I found the property that you need to look at. It is
part of HttpRequest.ServerVariables.
From that collection, look at SERVER_PROTOCOL property. This will give you
the HTTP version.
If you turn trace on the aspx page, you will see this property part of the
Server Variables.

Please let me know if you have more questions on this.

Thanks,
Bassel Tabbara
Microsoft, ASP.NET

This posting is provided "AS IS", with no warranties, and confers no rights.
--------------------
| Content-Class: urn:content-classes:message
| From: "Juan Dent" <ju***@dev.com>
| Sender: "Juan Dent" <ju***@dev.com>
| References: <36****************************@phx.gbl>
<Hl**************@cpmsftngxa09.phx.gbl>
| Subject: RE: Need to get the HTTP version
| Date: Tue, 1 Jul 2003 15:00:32 -0700
| Lines: 122
| Message-ID: <39****************************@phx.gbl>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="iso-8859-1"
| Content-Transfer-Encoding: 7bit
| X-Newsreader: Microsoft CDO for Windows 2000
| Thread-Index: AcNAHDD3hOYTHlkISaumJPMKmwaj9A==
| X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| Path: cpmsftngxa09.phx.gbl
| Xref: cpmsftngxa09.phx.gbl microsoft.public.dotnet.framework.aspnet:31552
| NNTP-Posting-Host: TK2MSFTNGXA12 10.40.1.164
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| Thanks for your answer.
| The doubt still remains though, you say:
|
| >You can't get the WebRequest from the Page Class, but you
| >can get the Request object which doesn't have the
| >property that you need.
| So what good is it to me to get the Request object, since
| it does not have a reference to the WebRequest?
| Do I need to add a class implementing the
| IAuthenticationModule interface just so I can access
| WebRequest? Seems a lot of work to access something that
| should be easily accessible.
|
| Am I reading you incorrectly?
| Thanks again,
| Juan
|
|
| >-----Original Message-----
| >Hello Juan,
| >You have to use HttpWebRequest.ProtocolVersion Property.
| This property gets
| >or sets the version of HTTP to use for the request.
| >The following sample use the HttpWebRequest and the
| version of HTTP:
| >
| >System.Net.HttpWebRequest rqst =
| >(HttpWebRequest)System.Net.WebRequest.Create
| ("http://www.microsoft.com");
| >rqst.Method = "POST";
| >rqst.ProtocolVersion = HttpVersion.Version10;//sets the
| version to 1.0
| >
| >In some method you can get the WebRequest from ASP.NET
| such as Authenticate
| >of the IAuthenticationModule,
| >
| >The following sample illustrates this:
| >
| >using System;
| >using System.Net;
| >using System.Text;
| >
| >namespace MyAuthenticationModule
| >{
| > public class MyAuthenticationModule :
| IAuthenticationModule
| > {
| > private string _authType = "Basic";
| > public Authorization Authenticate(String
| challenge, WebRequest
| >request, ICredentials credentials)
| > {
| > HttpWebRequest httpWebRequest = request as
| HttpWebRequest;
| > //...
| > }
| > }
| >}
| >
| >You can't get the WebRequest from the Page Class, but you
| can get the
| >Request object which doesn't have the property that
| >you need.
| >
| >Does this answer your question?
| >
| >
| >
| >Thanks,
| >Bassel Tabbara
| >Microsoft, ASP.NET
| >
| >This posting is provided "AS IS", with no warranties, and
| confers no rights.
| >
| >--------------------
| >| Content-Class: urn:content-classes:message
| >| From: "Juan Dent" <ju***@dev.com>
| >| Sender: "Juan Dent" <ju***@dev.com>
| >| Subject: Need to get the HTTP version
| >| Date: Tue, 1 Jul 2003 09:59:29 -0700
| >| Lines: 14
| >| Message-ID: <36****************************@phx.gbl>
| >| MIME-Version: 1.0
| >| Content-Type: text/plain;
| >| charset="iso-8859-1"
| >| Content-Transfer-Encoding: 7bit
| >| X-Newsreader: Microsoft CDO for Windows 2000
| >| Thread-Index: AcM/8iLS2I/EFPTaT+S9YAxvzvaopQ==
| >| X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
| >| Newsgroups: microsoft.public.dotnet.framework.aspnet
| >| Path: cpmsftngxa09.phx.gbl
| >| Xref: cpmsftngxa09.phx.gbl
| microsoft.public.dotnet.framework.aspnet:31453
| >| NNTP-Posting-Host: TK2MSFTNGXA12 10.40.1.164
| >| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
| >|
| >| Hi,
| >|
| >| The Request.SaveAs method stores in a file the complete
| >| HTTP request including the HttpVersion. However when I
| try
| >| to reproduce in memory the same thing, I cannot find
| >| the "HTTP/1.1" anywhere. I looked around and found a
| class
| >| called HttpWorkerRequest which has a method called
| >| GetHttpVersion() which returns the exact thing I am
| >| missing. However, I can't see how to get at the
| >| HttpWorkerRequest from a Page or from the
| HttpApplication.
| >|
| >| What am I missing?
| >| Thanks!
| >| Juan
| >|
| >
| >
| >
| >
| >.
| >
|
Nov 17 '05 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: bin_P19 P | last post by:
the code i have got is as follows and now im stuck <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Shopping...
0
by: comic_rage | last post by:
Hi, I need to use C# to print the xml schema root <?xml version="1.0" encoding="UTF-8"?> <xsd:schema targetNamespace="http://www.ciber.com/myfile" xmlns="http://www.ciber.com/myfile"...
6
by: seansan | last post by:
Hi, Does anyone know how to read the full access version number in visual basic? I need to know if the current program instance is SR-1 or SP-3, etc... I currently use: DB_DAO =...
2
by: M Skabialka | last post by:
I installed Visual Studio Beta 2005 but setting up the SQL server was so complex I uninstalled it and put Visual Studio 2003 Academic on. I am totally new to Visual Studio and trying to teach...
3
by: Richard Lewis Haggard | last post by:
We are having a lot of trouble with problems relating to failures relating to 'The located assembly's manifest definition with name 'xxx' does not match the assembly reference" but none of us here...
3
by: batman | last post by:
we have a group of developers which have created and asked us (DBAs) to create many objects in the databases including tables / stored procedures / functions / etc. since our company is growing,...
8
by: David Thielen | last post by:
Hi; In our setup program how do I determine if I need to run "aspnet_regiis –i" and if so, is there an API I can calll rather than finding that program on the user's disk and calling it? --...
51
by: Steven Spits | last post by:
Hi, Plannig to buy Vista, but not sure what version to get. I do VS.NET development, mostly ASP.NET. Can IIS be installed on Vista home premium? Or do I need business or ultimate? Steven
1
by: =?ISO-8859-1?Q?Lasse_V=E5gs=E6ther_Karlsen?= | last post by:
I get the above error in some of the ASP.NET web applications on a server, and I need some help figuring out how to deal with it. This is a rather long post, and I hope I have enough details that...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.