The tag has no wiki summary.

learn more… | top users | synonyms (1)

0
votes
0answers
15 views

Document Download does not work when content is being served via HTTPS on C# .Net

I have an ASHX which I use to render a document. The initial issue was that I couldn't get the docx file to stream and I'm just getting a javascript error ("An invalid character was found in text ...
0
votes
2answers
53 views

MVC 3 Entity Framework Error - Item has already been added. Key in dictionary

I am making a MVC 3 web application using Entity Framework but I am getting this error. In my data layer I used a class connection helper. Error is followig: Item has already been added. Key in ...
7
votes
1answer
125 views

Writing to ZipArchive using the HttpContext OutputStream

I've been trying to get the "new" ZipArchive included in .NET 4.5 (System.IO.Compression.ZipArchive) to work in a ASP.NET site. But it seems like it doesn't like writing to the stream of ...
0
votes
0answers
17 views

Worker queue and user context

We have a worker queue that a user can add work to. When the worker item is added the context is the users (HttpContext). But its a background thread that polls the queue and executes the items one by ...
0
votes
1answer
46 views

Multiple identical forms on a page in asp.net. How do I get variables?

I'm having trouble figuring this out. I can't explain it that well, so here some html/asp first: <%for(int i=0; i<getCountRows(); i++) { setLabelsFestivals(i); %> <form ...
0
votes
0answers
16 views

How do you add headers to httpcontext in unit testing?

I am working with a method that generates an HTMLContext for use in my tests. Whenever I try to add headers to the httpresponse object, i get the error "This operation requires IIS integrated pipeline ...
0
votes
0answers
129 views

Why does HttpContext.Current.Request.InputStream always have length 0?

Sorry, but I don't have a better description of my problem. I'll edit the post if I discover something. I am building an F#-C# MVC4 application (in Windows 8, using Visual Studio 2012 Express for ...
0
votes
1answer
51 views

Pulling string from xml

The xml is coming from a url and all I need is the pull the string "N0014E1" from it. I am not sure why this code is not working. I put a try block around it and I get a "Data root level is invalid" ...
0
votes
1answer
25 views

Calling ScriptManager from a class

I'm trying to execute a javascript function from a C# class in an asp.net application. I'm using the ScriptManager. I have a class UpdateUI, which contains the following method: public static void ...
1
vote
1answer
52 views

How to pass HttpContext.Current to methods called using Parallel.Invoke() in .net

I have two methods which makes use of HttpContext.Current to get the userID. When I call these method individually, I get the userID but when the same method is called using Parallel.Invoke() ...
0
votes
1answer
11 views

I need help figuring out what _HttpContext.QueryString() does

I can't understand what some of my code is doing exactly. Here's what I have: model.People = _PersonProvider.GetListByIds(_HttpContext.QueryString()["people"]) I know that the model.People = ...
0
votes
0answers
68 views

Calling API Controller from another Controller with httpcontext in ASP.net MVC

I have a requirement in my ASP.net MVC 4 project to be able to call a web API controller from another controller or class elsewhere in the same project. The subroutine in the API controller has code ...
0
votes
0answers
93 views

Web API DelegatingHandler Async HttpContext = null Error

I have a very strange error that pops up in my application ONLY when i have a certain DelegatingHandler intercepting calls. The gist of it is that when requests go through my DelegatingHandler, ...
0
votes
0answers
34 views

How can I determine name and value for all parameters when I have HttpRequest object?

So, my current task: do some HTTP request manipulation via browsermob-proxy and Selenium WebDriver Java code below: import java.io.IOException; import org.apache.http.HttpException; import ...
1
vote
2answers
24 views

HttpContex null on wcf

i have 2 servers web server and the app server on the app server i have WCF running . in any function on the wcf i"m trying to get the current user with System.Web.HttpContext.Current.User but i"m ...
1
vote
3answers
198 views

adding header to http response in an action inside a controller in asp.net/mvc

I am streaming data from server to client for download using filestream.write. In that case what is happening is that I am able to download the file but it does not appear as download in my browser. ...
1
vote
1answer
80 views

How to handle httpcontext in UnitTest MVC

I am getting the following error when running unit test: NullReferenceException was unhandled by usercode. Object reference was not set to an instance of an object. Not sure where I am going wrong. ...
0
votes
2answers
40 views

Is there any difference between HttpContext.Current.Request and HttpContext.Request?

If I want to access Request object in controller action I need to write HttpContext.Request, whereas if I want to access the same object in MVC view, I need to write HttpContext.Current.Request. Is ...
0
votes
2answers
146 views

ASP.NET HttpContext Items vanish on server

We are currently seeing an issue with the use of HttpContext.Current.Items where the local environments of the developers show no issues (all works as expected) in the server environment we are ...
4
votes
2answers
69 views

Is GetHashCode just cargo-cult here?

HttpContext.Current.Items["ctx_" + HttpContext.Current.GetHashCode().ToString("x")] I see this exact code all ... over ... the ... place but I must be overlooking something. It's common in responses ...
0
votes
1answer
196 views

ASP.NET MVC4 - Session_End - How can I get the currently logged on user's name in Session_End of Global.asax?

My issue is that once Session_End executes in my Global.asax, the HttpContext.Current object no longer exists- probably as expected, I would imagine. So, what I'm trying to do is once the session ...
0
votes
0answers
32 views

Web App not passing CustomProfile properties to WCF service in AJAX call

We have an IIS hosted web app that uses a custom profile provider to retain and pass authentication information. The web app has a single aspx page that hosts an ExtJS 4 MVC javascript application ...
2
votes
1answer
31 views

How to release and dispose all Http-scoped objects on Container instance?

In StructureMap, how can I release and dispose al Http-scoped objects on a specific Container instance? For the default intance in Object Factory, I can execute the method ...
4
votes
2answers
69 views

Simplest way to Force HTTPS during Page_Init [duplicate]

On very few pages of my site i want to make sure they can only be accessed though HTTPS connections. What is the best way of accomplishing that. All the examples i see seem like they are trying to do ...
1
vote
1answer
78 views

How to write a cookie inside a static method

i need to write a cookie inside static method (i need static because i want to call this method from others classes). I found solution with HttpContex.Current, but it is not work for me. I get this ...
0
votes
1answer
104 views

Why is httpclient is refreshing the jsession id for every request?

I am trying to hit a url(login screen), get the jsessionid(J2EEJSESSIONID) and add it in the cookie store and in turn in to the context and hit the same url with credentials. I am expecting a login ...
0
votes
0answers
64 views

HttpContext.Current.Request.UserHostAddress in PHP [closed]

How can I get HttpContext.Current.Request.UserHostAddress using php. Please provide an example for bettert understand.
3
votes
4answers
345 views

Access TextBox value of an ASP.NET page from C# class

Say there is a TextBox on an ASP.NET page <asp:TextBox id="DateTextBox" runat="server" /> with some value set in the code-behind. How to access that value from another class of C# code-file ...
1
vote
0answers
24 views

Tasks spawned from a request thread accessing a common store

I'm working on some code which could be thought of as a message bus. Everything has been working fine until I started playing around with Tasks. In my particular implementation, as I am in a web ...
0
votes
1answer
53 views

How to simulate a call to HttpContext.Cache[“MyKey”] with Rhino Mocks?

Short version: How to get Rhino Mocks to simulate a call to HttpContext.Cache["MyKey"] and return expected data? Long version: I need to simulate a return value from the HttpContext.Cache with ...
0
votes
1answer
255 views

MVC 4 - Losing custom principal between beginrequest and endrequest

In my project (c#), we have an HttpModule that creates a custom Principal that we attach to the CurrentPrincipal. This is working in all of our MVC3 apps and in our classic ASP.Net apps. We have an ...
1
vote
1answer
24 views

How does the Ihttphandler interface expose the httpcontext object

Hello I see on msnd that anything that inherits from the Ihttphandler interface has access to a httpcontext object (under the remarks section of the page in below link) msdn HTTPContext My question ...
0
votes
1answer
151 views

How do access the HttpServerUtility in a WebAPI controller (MVC 4)

I need to access the Server.MapPath(virtualPath) method in a controller in an MVC 4 ApiController. The answer is usually to access it from ControllerContext.HttpContext.Server. However, unlike ...
0
votes
1answer
183 views

Pass HttpContext.Request parameter around or use static instance?

In an MVC3 application, I need to construct a domain object from values contained in the incoming Http Request. The logic is sufficiently complex that I have created a factory class with the ...
0
votes
1answer
79 views

Current user identity in ObjectContext.SavingChanges

I am using ObjectContext.SavingChanges event to update CreatedDate/UpdatedDate columns based on the object state like this partial void OnContextCreated() { //Extension of the Command Timeout to ...
0
votes
1answer
127 views

How can I get my controller by HttpContextBase?

I have base controller, assume that, it has a property named AnyProperty: public class MyBaseController : Controller { public MyObject AnyProperty { get; set; } public ...
0
votes
2answers
182 views

How can I use the HttpContext.Current.User.Identity to provide authentication to my SmtpClient.Credentials?

I have a weird situation. In my website, I impersonate a lab account for access to a database, but for the front-end, I allow Windows authentication. So that means ...
0
votes
0answers
74 views

Is ReportViewer rendered before the AcquireRequestState event (and can we prevent that)?

I normally use HttpContext.Current.ResolveUrl to build absolute urls. However, I find that HttpContext.Current is null when referenced in an object property that is used during the rendering of ...
2
votes
2answers
149 views

Unit testing with dependency on HttpContext

I need to test some static methods that rely on the current context. Now, I can certainly use the HttpContextWrapper to remove this dependency from my own code. The problem lies with the 3rd party ...
1
vote
1answer
145 views

What is the difference between HttpContext's Cache and Items Properties?

What is the difference between the HttpContext class's Cache and Items properties? From the MSDN Documentation: Cache Gets the Cache object for the current application domain. Items Gets ...
1
vote
1answer
221 views

HttpContext.Current returning null inside ErrorMail_Mailing handler (in Global.asax) for ELMAH

We are using ELMAH for our MVC asp.net application. When any exception occurs ELMAH sends error mail which has an event ErrorMail_Mailing, I am writing handler for this event inside my Global.asax and ...
0
votes
0answers
319 views

MVC.NET HttpSessionStateWrapper - what is best usage practice?

We are developing large MVC project and we have an intension to use HttpSessionStateWrapper (as well as HttpRequestWrapper, HttpResponseWrapper, etc) to add extended functionalities do this objects. ...
1
vote
2answers
298 views

Access HttpContext in Application_Start ASP.NET MVC 4.0

I would like to access my host and build my bundles. I know it is not straight to access httpcontext in Application_start. Can you advise any other work around to find the Request.url.host in ...
1
vote
0answers
351 views

ASP.NET MVC 4 How to manage userid and user content inside controllers

To learn the ASP.NET MVC 4 patter I'm developing and application that has to manage some data and user content. This is the database: public DbSet<UserProfile> UserProfiles { get; set; } ...
1
vote
2answers
75 views

Context.Handler conversion error

Trying to do the following conversion: CType(Context.Handler, MyCustomHandler) But it is throwing following error. Unable to cast object of type 'ASP.MyWebForm_aspx' to type 'MyCustomHandler'. ...
1
vote
0answers
47 views

Mock data for HttpContect.ApplicationInstance.Application variable

I have the following line in my controller method: string str = HttpContext.ApplicationInstance.Application["String"].ToString(); How do I write unit test to get data for this?
2
votes
1answer
198 views

In MVC3, how to get the current controller name?

From the http context class is there a method to get the current Controller name?
0
votes
0answers
43 views

If a specific event has been called and executed all events stop to respond

I created a SharePoint2010 Web Site with custom Web Parts. The use of the complete page is to be able to login onto a webservice. Use the webservice to get all documents with fitlers. And be able to ...
0
votes
0answers
144 views

How to Get Session which having textbox in another page vb.net

I want to create a xtraReport using collumns from a datatable("TEMPORARY") which includes ("HNAME" like John Smith) and ("SUM" like 08:12:12). i have a web form for loading the xtraReport and i want ...
2
votes
1answer
59 views

How many bits have sessionid in asp.net

I want to ensure that the sessionid in asp.net have at least 128 bits. Does anyone know how many bits the ASP.NET_SessionId have? Can you find it somewhere in IIS?

1 2 3 4 5 9