473,804 Members | 2,273 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Session object is NULL in HTTP handler

Hi,
I m new with aspnet. I am trying to do an application that writes the
session in a cookie but the context.session is null.

Here in the code, the cookieValue is allways without session, ...
I dont know how to get the session, maybe I cant...

thanks in advance

Miguel

The code is the following:

using System;
using System.Collecti ons;
using System.Componen tModel;
using System.Web;
using System.Web.Sess ionState;

public class SetIdentity : IHttpModule
{

public void Init(HttpApplic ation context)
{
context.EndRequ est += (new
EventHandler(th is.Application_ AuthenticateReq uest));
}

protected void Application_Beg inRequest(objec t sender, EventArgs e){
}

private void Application_Aut henticateReques t(object source, EventArgs e)
{
HttpApplication application = (HttpApplicatio n)source;
HttpContext context = application.Con text;

HttpSessionStat e session = context.Session ;
String cookieValue = "without session";
if (session != null) cookieValue = session.Session ID;
// Put it into a cookie
HttpCookie hc = new
HttpCookie("Ses sionSharePoint" , cookieValue);
hc.Expires = DateTime.New.Ad dMinutes(20);
// Add it to the cookies collection
context.Respons e.Cookies.Add(h c);
}
public void Dispose()
{
}
}

Nov 19 '05 #1
3 9589
=?Utf-8?B?TWlndWVs?= <Mi****@discuss ions.microsoft. com> wrote in
news:AB******** *************** ***********@mic rosoft.com:
I m new with aspnet. I am trying to do an application that writes the
session in a cookie but the context.session is null.


Q: I am writing my own HttpHandler. Why is session state not working?
A: Your HttpHandler has to implement the "marker" interface
IRequiresSessio nState or IReadOnlySessio nState in order to use session
state.

--
Lucas Tam (RE********@rog ers.com)
Please delete "REMOVE" from the e-mail address when replying.
http://members.ebay.com/aboutme/coolspot18/
Nov 19 '05 #2
thanks!
I will see how to do it.
Do I have to add new methods? Well, I'll take a look

thank you

Miguel

"Lucas Tam" wrote:
=?Utf-8?B?TWlndWVs?= <Mi****@discuss ions.microsoft. com> wrote in
news:AB******** *************** ***********@mic rosoft.com:
I m new with aspnet. I am trying to do an application that writes the
session in a cookie but the context.session is null.


Q: I am writing my own HttpHandler. Why is session state not working?
A: Your HttpHandler has to implement the "marker" interface
IRequiresSessio nState or IReadOnlySessio nState in order to use session
state.

--
Lucas Tam (RE********@rog ers.com)
Please delete "REMOVE" from the e-mail address when replying.
http://members.ebay.com/aboutme/coolspot18/

Nov 19 '05 #3
=?Utf-8?B?TWlndWVs?= <Mi****@discuss ions.microsoft. com> wrote in
news:1A******** *************** ***********@mic rosoft.com:
thanks!
I will see how to do it.
Do I have to add new methods? Well, I'll take a look

Nope, you just inherit the classes... that's all : )
--
Lucas Tam (RE********@rog ers.com)
Please delete "REMOVE" from the e-mail address when replying.
http://members.ebay.com/aboutme/coolspot18/
Nov 19 '05 #4

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

Similar topics

2
11292
by: oliver.wulff | last post by:
Hi I wrote a IHttpModule which should store an object in the session. Unfortunately, the session is empty: public void OnAuthenticateRequest(object o, EventArgs ea) { HttpApplication httpApp = (HttpApplication) o; HttpSessionState session = httpApp.Context.Session; If I set the WebMethod attribute 'EnableSession' of my webservice (HttpModule is active either) I can access the session in the web service
1
3278
by: Bartosz Krzywicki | last post by:
I have the problem with Session object witch is null, when I implement IHttpHandlerFactory. Implementing IRequiresSessionState interface doesn't help. My code is like this: class MyController : IHttpHandlerFactory, System.Web.SessionState.IRequiresSessionState { public virtual IHttpHandler GetHandler (HttpContext context, string requestType, string url, string path) { //some stuff here context.Session = "aaa"; // here Session object is...
7
2763
by: mortb | last post by:
I have written a custom http handler and added it to the web.config file <httpHandlers> <add verb="GET" path="ITImageService.axd" type="ITImageService.ITImageGetter,ITImageService" /> </httpHandlers> The code for the handler looks like: public bool IsReusable { get { return true; } }
4
5055
by: Jeremy Lew | last post by:
When my HttpHandler is processing a request when installed on a particular 2003 Server machine, the Context.Session object is null. Any idea why this might be? My handler implements IRequiresSessionState and works normally on other machines. Thanks, Jeremy
3
1346
by: Raghu Raman | last post by:
Hi, am in c#.net project. am using the session object for some logic. e-g:session="Add"; i can refer this by using if(Session=="Add") { logic
2
528
by: Eric Dan | last post by:
Hi, I have written a simple HTTP handler (inherited IHttpHandler) to handle requests for specific extensions. Basically it works. However when trying to access the context.Session object inside the "public void ProcessRequest(HttpContext context)" method, it seems to be null reference (context.Session is not a valid object). There are no problems with other objects like context.Application or context.Request etc. Other regular aspx...
3
1668
by: ESmith | last post by:
I have multi-page form where I pass an object between pages as follows: On each page: // What page to go to next private void btnContinue_Click(object sender, System.EventArgs e) { if (Page.IsValid) { MyXferObj obj = new MyXferObj();
3
3754
by: kingski | last post by:
I have a web site created with ASP.NET 1.1. availability Global.asax: protected void Application_PreRequestHandlerExecute(Object sender, EventArgs e)
7
2688
by: Ty | last post by:
Hi, All- I have a custom httphandler that outputs an image to the browser based upon some user input. I'd like to be able to store information about that image in session and have them accessible to all aspx pages in my project. Session state seems to be working normally in my handler, however, the session variables are not accessible anywhere outside the handler itself. Any ideas?
8
996
by: eric | last post by:
I have a 2.0 asp.net project. In a class contained within a seperate project, I am trying to reference HttpContext.Current.Session but Session is always null. I've tried implementing IRequiresSessionState but it does not seem to matter. For a test I created a small solution consisting of a web project and a seperate project to hold a test class. In the test class I reference HttpContext.Current.Session and it works fine with or without...
0
9712
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9594
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10595
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10343
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10341
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
6862
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5530
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
3831
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3001
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.