Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
1k views

C# using HttpListener and Request.ServerVariables on Windows Forms or Console

Project Objectives: Create a local Proxy Judge using a Console or Windows Form application for debugging and testing connections. Project must request and receive proxy ServerVariables to display on ...
3
votes
3answers
247 views

What is the form collection in asp.net/html?

Simple question but one i need to clarify for myself. In terms of collections that can be accessed in the request object there is: Cookies: (whats in a text file in the browser) Querystring: ...
2
votes
1answer
48 views

Access Mocked Request.ServerVariables in classes

I have mocked Server Variables which are used in Controller. request.SetupGet(x => x.ServerVariables) .Returns(new System.Collections.Specialized.NameValueCollection { ...
2
votes
1answer
487 views

Is Request.ServerVariables[“REMOTE_ADDR”] reliable enough?

Currently I am using Request.ServerVariables["REMOTE_ADDR"] to get the IP from the client. What guarantees I get when calling this Method. Or should I look in other ServerVariables as well?
2
votes
2answers
739 views

Sharepoint stripping HTTP Headers

I have a custom sharepoint app whose security model depends on an HTTP header. When a request is made from the mobile device, an http header called HTTP_RIM_DEVICE_EMAIL is added to each request. I ...
1
vote
4answers
269 views

How do I get server variables (or at least client IP address) in C# in Elmah's ErrorMail_Mailing event when HttpContext.Current is null?

I am working on some error handling code and I want to determine if its a local connection (developer) or not. Typically I look at HttpContext.Current.Request.ServerVariables however in the error ...
1
vote
3answers
224 views

ASP.NET - Telling the difference between localhost and 127.0.0.1

How can you tell the difference between a request going to 127.0.0.1 and localhost. This line of code on Windows 7 and VS2010 built-in web server can not tell the difference. if ...
1
vote
1answer
1k views

asp.net mvc when should i read servervariables?

When is the apropriate time (part of code) that i can gather information from servervariables? I mean, i have tried calling this string temp = Request.ServerVariables.Get("HTTP_REMOTE_USER"); in ...
1
vote
3answers
2k views

request.serverVariables() “URL” vs “Script_Name”

I am maintaining a classic asp application and while going over the code I came across two similar lines of code: request.serverVariables("URL") ''# Output: "/path/to/file.asp" ...
0
votes
1answer
54 views

ServerVariables[“UNENCODED_URL”] is empty when I try to access it in my MVC Action

I'm writing a catch-all action method for a 404 page that takes the requested URL, extracts the wordy bits with a regex (\w+)* and sends those bits, space-separated, to the search engine to generate a ...
0
votes
1answer
784 views

why does HttpContext.Request.Url and Request.ServerVariables[“HTTP_HOST”] return different values

I have 3 websites that run from a load-balanced pool of servers. Load-balancer uses sticky sessions to ensure that session stays on initial pool. In the website, I need to generate a url specific ...
0
votes
2answers
443 views

comparing http_referer against http_host

Hi I need to check whether the http_referer is the same site as the current site. I have the following code Dim strReferer As String strReferer = Request.ServerVariables("HTTP_REFERER") If ...
0
votes
2answers
198 views

ASP.NET question regarding getting the IP address of a user

I am trying to fetch the IP address using this:- protected void Page_Load(object sender, EventArgs e) { string ClientIP; ClientIP = ...
0
votes
1answer
338 views

Request.ServerVariables(“REMOTE_ADDR”) retrieving the same IP for multiple logins inside and outside my company

I've been asked to write code to track IP addresses of visitors to one of my company's online applications in .NET. This is actually the second one I've done, having done another site late last year. ...
0
votes
1answer
293 views

xsl server variable returns null

xsl server variable URL returns null. I tried all the other server variable and they all returns nulls. Is there anything I need to do (like in IIS or web.config) in order for xsl to show server ...
0
votes
1answer
139 views

ServerVariables and POST Data

I've got a piece of tracking code which is capturing REMOTE_HOST, SERVER, REQUEST_METHOD, SCRIPT_NAME and QUERY_STRING. It grabs these from ServerVariables and sticks them in a database by user and ...
0
votes
4answers
1k views

ASP.NET: UrlReferer has wrong value, interrogating in a static (webmethod) page called from jquery

Can anyone help? I am trying to interrogate the UrlReferer whcih should contain Google.com but it contains my current site. My web page is a standard HTM page and jquery calls a static method like so ...