Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

23
votes
6answers
21k views

How to get working path of a wcf application?

I want to get the working folder of a WCF application. How can I get it? If I try HttpContext.Current.Request.MapPath(HttpContext.Current.Request.ApplicationPath) I get a null reference exception ...
21
votes
5answers
7k views

How do I mock the HttpContext in ASP.NET MVC using Moq?

[TestMethod] public void Home_Message_Display_Unknown_User_when_coockie_does_not_exist() { var context = new Mock<HttpContextBase>(); var request = new Mock<HttpRequestBase>(); ...
17
votes
1answer
9k views

What is the WCF equivalent of HttpContext.Current.Request.RawUrl?

I've got some RESTful services running in a pure WCF context (i.e. ASP.NET compatibility is not enabled, and thus there is no HttpContext.Current object available). The URLs to the services are ...
17
votes
6answers
8k views

How to access the HttpServerUtility.MapPath method in a Thread or Timer?

I use a System.Timers.Timer in my Asp.Net application and I need to use the HttpServerUtility.MapPath method which seems to be only available via HttpContext.Current.Server.MapPath. The problem is ...
15
votes
5answers
10k views

How do I retrieve the HttpContext properties when it returns null?

I am doing some asynchronous work on a separate thread using: ThreadPool.QueueUserWorkItem() and in this separate thread, I need to call HttpContext.Current so that I can access: ...
11
votes
3answers
5k views

How do I get an HttpContext object from HttpContextBase in ASP.NET MVC 1?

I'm working with some WebForms/MVC-agnostic tools, and I need to get an instance of HttpContext given a reference to an HttpContextBase object. I can't use HttpContext.Current because I need this to ...
10
votes
3answers
4k views

HttpContext.Items with ASP.NET MVC

I'm implimenting my own ApplicationContext class that uses the singleton pattern. I want to store my instance of it in HttpContext.Items, since it is accessible in all parts of the request. I've ...
9
votes
1answer
3k views

Mock HttpContext.Current in Test Init Method

I'm trying to add unit testing to an ASP.NET MVC application i have built. In my unit tests i use the following code: [TestMethod] public void IndexAction_Should_Return_View() { var controller = ...
9
votes
3answers
3k views

ASP.NET MVC: HTTPContext and Dependency Injection

Currently I have an ActionFilter that gets the current users name from HttpContext and passes it into the action which uses it on a service method. eg: Service.DoSomething(userName); I now have a ...
8
votes
2answers
221 views

What is the most complete mocking framework for HttpContext

I'm looking for as comprehensive as possible of a mock replacement and wrapper for the ASP.NET HttpContext in my applications. A comprehensive mock replacement could potentially increase the ...
8
votes
1answer
2k views

Get application path without using httpcontext. (asp.net)

How to do it? I don't want to use this: HttpContext.Current.Server.MapPath Is there a similar function that I can call without requiring a httpcontext? For example if a start a thread doing some ...
8
votes
3answers
2k views

What's the difference between the HttpRuntime Cache and the HttpContext Cache?

I know there is a very similar question here but I was hoping to get a better explination. Why would I ever use HttpContext.Cache instead of HttpRuntime.Cache if the HttpContext really uses the ...
8
votes
3answers
12k views

HttpContext.Current.User.Identity.Name is always string.Empty

Hi I use a custom MembershipProvider. I want to know the current username during an application scenario, but when I try accessing HttpContext.Current.User.Identity.Name it always returns ...
7
votes
3answers
351 views

Entity Framework: Storing Entities without saving to Database

How to store temporary item in ObjectContext without saving to database? Context storing in HttpContext, providing by class: public static class HttpContextExtension { public static ...
7
votes
3answers
517 views

HttpContext in WCF

I have written a simple REST API in WCF, and the authentication mechanism uses an API key. Once the client submits the API key in the request header, I check it on the server side (in the BaseService ...
7
votes
2answers
1k views

How to unit test ValueProviderFactories in ASP.NET MVC3?

We wanted to upgrade our projects from ASP.NET MVC 2 to 3. Most of our tests succeeded, but there are some that fail on ValueProviderFactories.Factories.GetValueProvider(context). Here is a simple ...
7
votes
2answers
768 views

elmah: exceptions without HttpContext?

I spawn a thread on Application_Start and would like to log exceptions. There is no Context/HttpContext/HttpContext.Current, so how might i get it to log? ATM it does not catch any exception in my ...
7
votes
6answers
8k views

How can I use System.Web.Caching.Cache in a Console application?

Context: .Net 3.5, C# I'd like to have caching mechanism in my Console application. Instead of re-inventing the wheel, I'd like to use System.Web.Caching.Cache (and that's a final decision, I can't ...
7
votes
1answer
2k views

Can you do HtmlDecode & HtmlEncode in Silverlight?

So since System.Web & HttpContext isn't available in Silverlight is there a way to do HtmlDecode & HtmlEncode inside a Silverlight app without some horrendous Regex?
6
votes
4answers
2k views

Get host name without using HttpRequest

I'm want to run a "background job" in my ASP.NET application (periodically, as separate thread). And I need host name (DNS name or IP) to do my tasks. The problem - HttpContext.Current may be not ...
6
votes
4answers
3k views

Using an HTTPContext across threads

User hits page spawn.aspx which then spawns a half-dozen threads, rendering pages all using ((System.Web.IHttpHandler)instance).ProcessRequest(reference to spawn's HTTPContext); Don't worry about ...
6
votes
6answers
12k views

HttpContext on instances of Controllers are null in ASP.net MVC

This may not be the correct way to use controllers, but I did notice this problem and hadn't figured out a way to correct it. public JsonResult SomeControllerAction() { //The current method has ...
5
votes
2answers
50 views

System.Web.HttpContext.Current.User.Identity.Name Vs System.Environment.UserName in ASP.Net/C#

What is the difference between System.Web.HttpContext.Current.User.Identity.Name and System.Environment.UserName in the context of a ASP.Net Web Application Project? Here's the code of what I'm ...
5
votes
1answer
122 views

asp.net cache within httpcontext

I want to cache objects being pulled from a database that do not often get modified, because every time the page loads nearly 2000 items are selected, causing a noticable performance issue during page ...
5
votes
1answer
949 views

Add session to fake httpContext in C# MVC project

How can i add the session to a fakeContext ? This function have we build for partial request where the content must be returned as a string. Only we don't have sessions now in the partial request. ...
5
votes
2answers
2k views

How can I fake HttpContext for unit tests?

I need to fake HttpContext.Current.Application table to access it from my unit tests. I need to store my data somewhere. I thought that I can just pass instance of NameValueCollectionBase but as I ...
5
votes
2answers
1k views

asp.net mvc compress stream and remove whitespace

So I am compressing my output stream via an action filter: var response = filterContext.HttpContext.Response; response.Filter = new DeflateStream(response.Filter), CompressionMode.Compress); Which ...
5
votes
4answers
605 views

Elmah for non-HTTP protocol applications OR Elmah without HttpContext

We are working on a 3-tier application, and we've been allowed to use the latest and greatest (MVC2, IIS7.5, WCF, SQL2k8, etc). The application tier is exposed to the various web applications by WCF ...
5
votes
2answers
566 views

ASP.NET MVC - Generate Routes Without Http/Request Context

I'd like to be able to generate URLs from a RouteCollection without having access to the HttpContext. Looking at the way RouteCollection is implemented, all methods require access to a RequestContext ...
5
votes
3answers
1k views

Why mock HttpContext if it can be constructed?

I have always been faking/mocking/stubbing HttpContext somehow in ASP.NET (much easier in ASP.NET MVC/MonoRail). But I can see that HttpContext itself can be constructed easily, literally with ...
5
votes
1answer
2k views

Access HttpContext inside WCF RequestInterceptor

I am using the WCF REST stater kit to build a plain xml over HTTP service. As part of this Im using a RequestInterceptor to do authentication. Inside of the RequestInterceptor I have access to a ...
5
votes
6answers
1k views

What is the performance impact of tracing in C# and ASP.NET?

I found this in some production login code I was looking at recently... HttpContext.Current.Trace.Write(query + ": " + username + ", " + password)); ...where query is a short SQL query to grab ...
5
votes
4answers
8k views

NHibernate thread safety with session

I've been using NHibernate for a while now and have found from time to time that if I try to request two pages simultaniously (or as close as I can) it will occasionally error. So I assumed that it ...
4
votes
2answers
267 views

get application url from current request

I am writing a c# application. I am accessing a page eg http://dev.mysite.com/page.aspx How can I retrieve from the current context this http://dev.mysite.com/ I want to use this when creating ...
4
votes
2answers
267 views

Per-Request static data in ASP.NET

I'm wanting to cache the roles a user is in for each request that comes in. There are several places throughout any given page where where we have something like: <% ...
4
votes
5answers
1k views

Unit Testing Web Services - HttpContext

I want to write unit tests for a web service. I create my test project, reference my web project (not service reference, assembly reference), then write some code to test the web services - they work ...
4
votes
1answer
482 views

Injecting HttpContext in Ninject 2

In my asp.net mvc application I'm using Ninject as a DI framework. My HttpAccountService is used by my controllers to get info from and to cookies. For this I need the HttpContext.Current in the ...
4
votes
1answer
2k views

Storing data in HttpContext.Current.Items vs ViewData

When is it appropriate to store data in HttpContext.Current.Items[...] vs storing data in ViewData[...]? I'm trying to figure out the best practices for storing data in this collection and I'm not ...
4
votes
3answers
1k views

HttpContext.Current.Response inside a static method

I have the following static method inside a static class. My question is it safe to use HttpContext.Current.Response inside a static method? I want to be 100% sure that it is thread safe and is only ...
4
votes
4answers
7k views

How do I access GetGlobalResourceObject function from a class that is not a page?

I have a class in my asp.net proj, I would like to get access GetGlobalResourceObject (that page exposes), from anywhere in the site, possible? In other words I wanna access the global resources from ...
4
votes
2answers
4k views

How to use Rhino Mocks to Mock an HttpContext.Application

I'm new to Mocking frameworks and have started using RhinoMocks to assist with my MVC App Unit Testing. I'm using Scott Hanselmanns MVC Mock Helper to assist in mocking the HttpContext. I've ...
4
votes
7answers
18k views

Request.Url.Host and ApplicationPath in one call

Is there any way to get HttpContext.Current.Request.Url.Host and HttpContext.Current.Request.ApplicationPath in one call? Something like "full application url"? EDIT: Clarification - what I need is ...
3
votes
1answer
72 views

How HttpContext works in .NET

I am trying to understand the detail of how httpcontext works in .NET ? What I couldnt understand is the class of HttpContext has a field of static HttpContext object. So for each request from ...
3
votes
1answer
305 views

HttpContext in MVC Attributes - threading issues?

I had my NHibernate session management setup like follows: protected MvcApplication() { BeginRequest += delegate { ...
3
votes
2answers
196 views

Saving the username in MVC2 + EF4

I am working on a simple MVC2 project with EF4. I am also using Repository pattern which is instantiated in the controller's constructor. I have 34 tables each with CreatedBy and LastModifiedBy fields ...
3
votes
2answers
359 views

How can I make HttpContext available to be used by my Unit Tests?

I want to write a unit test which tests the function of a class called UploadedFile. The problem I face is this class' static constructor uses HttpContext.Current property and because I am running ...
3
votes
2answers
1k views

accessing HttpContext.Request in a controller's constructor

I'm following this ASP.NET MVC tutorial from Microsoft: My code is slightly different, where I'm trying to access HttpContext.Request.IsAuthenticated in the controller's constructor. namespace ...
3
votes
2answers
222 views

Can I render html from ASP.NET Page objects outside ASP.NET applications?

I'm not talking about hosting ASP.NET with the 'ApplicationHost' class. For example, if I create a Console application, create a valid HttpContext object and pass it to the ProcessRequest of a custom ...
3
votes
4answers
1k views

Using HttpContext.Current.Application to store simple data

I want to store a small list of a simple object (containing three strings) in my ASP.NET MVC application. The list is loaded from the database and it is updated rarely by editing some values in the ...
3
votes
3answers
885 views

StrongNameKeyPair problem when attempting to use MoQ

I'm trying to create a mock HttpContextBase for unit test. var fakePrinciple = new GenericPrincipal( new GenericIdentity(userId), rolesList.ToArray()); var ...

1 2 3 4 5 6