0
votes
5answers
1k 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 …
0
votes
1answer
88 views
Seeking One-Size-Fits-All Context Based Storage
First off, I wish context based storage was consistent across the framework!
With that said, I'm looking for an elegant solution to make these properties safe across ASP.NET, WCF …
0
votes
3answers
63 views
ASP.NET UrlReferrer
I have an ASP.Net application which generates short url for sharing. I want to track the url from where (source) click occured when it hits my asp.net page. I tried using Context.R …
2
votes
3answers
42 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 threa …
3
votes
2answers
46 views
HttpContext IP Problem
Hi, I have a problem when I use HttpContext.Current.Request.UserHostAddress, some times returns "192.168.0.17" (IPv4) and some times returns "fe80::99be:a05d:7938:1c30%8" (IPv6), c …
0
votes
2answers
62 views
“System.Web.HttpContext cannot be serialized because it does not have a parameterless constructor.”
I've created a web service that other sites can use to store errors in my database. They can then come to my site to view their errors, search through errors, filter errors, etc. …
0
votes
1answer
82 views
How to use HTTPContext for SPList
I have the following requirement.
public void GetSubSite(SPWeb site)
{
site.AllowUnsafeUpdates = true;
SPList destinationList = site.Lists[TASKS];
SPWebCollection sub …
1
vote
2answers
30 views
cache problem in asp.net with c#
hi,
I am using the fileuplaod control to upload the images. For this I used to stored it in the cache
for 2 hours in byte format and show this image using the HttpContext in the …
3
votes
3answers
83 views
Why mock HttpContext if it can be constructed?
Hi,
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 ea …
0
votes
2answers
58 views
What is the difference between HttpContext.Current.Response and Page.Response?
I'm troubleshooting a caching issue on a set of secured pages and have realized that the Header needs to be modified for all Responses. As I put together a solution, I want to kno …
0
votes
1answer
67 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 ha …
0
votes
3answers
72 views
How to obtain the HttpContext in Event Handler
Hello,
I’m trying to obtain the HTTPContext within an Event Handler in a Document Library in MOSS, but all I have is a null value of the HTTPContext.Current, I do the same thing o …
0
votes
1answer
128 views
HttpContext.Current.User.Identity.Name is Empty
I have a silverlight application (using MVC) and when i'm building in visual studio, using Visual Studio Development center, there's no problem, the HttpContext.Current.User.Identi …
0
votes
1answer
76 views
How to ensure HTTPContext has value?
I am building a version of the MVC Storefront. I have two themes, one is the standard ui, and the other is the admin ui. I have some HTML Helper methods, which deliver .ascx files …
1
vote
7answers
1k 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: Clarificat …
