473,770 Members | 5,880 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

HttpError "Session state has created a session id..."

PL

I've seen a few of these in the eventlog, what in the world would cause something like this,
why can't it save the session id cookie ??

Exception type: HttpException
Exception message: Session state has created a session id, but cannot save it because the response was already flushed by the
application.

System.Web.Sess ionState.Sessio nIDManager.Save SessionID(HttpC ontext context, String id, Boolean& redirected, Boolean& cookieAdded)
at System.Web.Sess ionState.Sessio nStateModule.Cr eateSessionId()
at System.Web.Sess ionState.Sessio nStateModule.De layedGetSession Id()
at System.Web.Sess ionState.Sessio nStateModule.On ReleaseState(Ob ject source, EventArgs eventArgs)
at System.Web.Sess ionState.Sessio nStateModule.On EndRequest(Obje ct source, EventArgs eventArgs)
at System.Web.Http Application.Syn cEventExecution Step.System.Web .HttpApplicatio n.IExecutionSte p.Execute()
at System.Web.Http Application.Exe cuteStep(IExecu tionStep step, Boolean& completedSynchr onously)

PL.
Nov 19 '05 #1
2 3158
Never had this one. My guess would be defining a session variable after
having flushed the response buffer. Try perhaps a sequence such
Response.Write, Response.Flush, Session("Test") ="A".

Let' us know...

--
Patrice

"PL" <pb****@yahoo.s e> a écrit dans le message de
news:ut******** *****@TK2MSFTNG P15.phx.gbl...

I've seen a few of these in the eventlog, what in the world would cause something like this, why can't it save the session id cookie ??

Exception type: HttpException
Exception message: Session state has created a session id, but cannot save it because the response was already flushed by the application.

System.Web.Sess ionState.Sessio nIDManager.Save SessionID(HttpC ontext context, String id, Boolean& redirected, Boolean& cookieAdded) at System.Web.Sess ionState.Sessio nStateModule.Cr eateSessionId()
at System.Web.Sess ionState.Sessio nStateModule.De layedGetSession Id()
at System.Web.Sess ionState.Sessio nStateModule.On ReleaseState(Ob ject source, EventArgs eventArgs) at System.Web.Sess ionState.Sessio nStateModule.On EndRequest(Obje ct source, EventArgs eventArgs) at System.Web.Http Application.Syn cEventExecution Step.System.Web .HttpApplicatio n
..IExecutionSte p.Execute() at System.Web.Http Application.Exe cuteStep(IExecu tionStep step, Boolean& completedSynchr onously)
PL.

Nov 19 '05 #2
PL

But this happens on a page where I don't use any session variables at all,
it seems it happen on the very first request and only intermittently.

Seems like a bug to me, if someone from MS could give any insight that would be nice.

PL.

"Patrice" <no****@nowhere .com> skrev i meddelandet news:eW******** *****@TK2MSFTNG P15.phx.gbl...
Never had this one. My guess would be defining a session variable after
having flushed the response buffer. Try perhaps a sequence such
Response.Write, Response.Flush, Session("Test") ="A".

Let' us know...

--
Patrice

"PL" <pb****@yahoo.s e> a écrit dans le message de
news:ut******** *****@TK2MSFTNG P15.phx.gbl...

I've seen a few of these in the eventlog, what in the world would cause

something like this,
why can't it save the session id cookie ??

Exception type: HttpException
Exception message: Session state has created a session id, but cannot save

it because the response was already flushed by the
application.

System.Web.Sess ionState.Sessio nIDManager.Save SessionID(HttpC ontext

context, String id, Boolean& redirected, Boolean& cookieAdded)
at System.Web.Sess ionState.Sessio nStateModule.Cr eateSessionId()
at System.Web.Sess ionState.Sessio nStateModule.De layedGetSession Id()
at System.Web.Sess ionState.Sessio nStateModule.On ReleaseState(Ob ject

source, EventArgs eventArgs)
at System.Web.Sess ionState.Sessio nStateModule.On EndRequest(Obje ct source,

EventArgs eventArgs)
at

System.Web.Http Application.Syn cEventExecution Step.System.Web .HttpApplicatio n
.IExecutionStep .Execute()
at System.Web.Http Application.Exe cuteStep(IExecu tionStep step, Boolean&

completedSynchr onously)

PL.


Nov 19 '05 #3

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

Similar topics

6
1290
by: Steve - DND | last post by:
I'm currently creating an application with an n-tier design(not separate boxes for each layer, just separation of pres/logic/data) that will have both a web and windows interface. I'm trying to find out if there is a way to maintain user information and access it in either my business logic or data layer, without having to pass some custom object around that contains the information. For the web there's of course the Session, or...
14
5920
by: dale zhang | last post by:
Hi groups, Can anyone give me the equivalent C# sharp code for this VB.ET code, :: VB.NET :: Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) _ Handles MyBase.Load 'This event routine in the loginCheck user control fires when the
3
2428
by: Peter Theill | last post by:
Hi, I'm trying to include the content of a request into an Xml document: if (System.Web.HttpContext.Current.Session != null) { XmlDocument d = new XmlDocument(); d.Load(new XmlTextReader("http://localhost/page.aspx")); } The requested page (page.aspx) is an XHTML page so I'm able to parse it as a
5
1873
by: jensen bredal | last post by:
I need to keep track on user "session data" while still turning session off as i do not want users login to expire? Thanks JB
3
2124
by: Arnost Sobota | last post by:
Dear ASP community, I have a question regarding ASP session variables. My assumption was that a session variable has the same lifetime as the session itself: as a consequence, given that closing the browser doesn't terminate the session, the session variable is kept alive until the session expires. But, surprisingly, I've found this to be true for the session variables
3
34477
by: Paul | last post by:
Hi All, In my application, I wished to check certain things on each page load, so rather than paste the same code in each pages constructor, I thought it would be more logical to inherit from Page and place the code in there. Then each webpage will inherit from my modified page class. This works fine, but if I try and access the Session from the modified page class, I get the following error: Session state can only be used when...
4
2107
by: R.A.M. | last post by:
Hello, I am writing ASP.NET application in which I need to use User Profiles and Session mechanisms. Here I include part of my source code (Admin.cs): using System; using System.Data; using System.Data.Sql; using System.Data.SqlClient; using System.Data.SqlTypes;
1
2095
by: Dilruba | last post by:
I want the suggestion what is better for use between Session.abandon & Session.Contents.Remove
10
26065
by: Kurda Yon | last post by:
Hi, I set the register_globals off and try to get my code working under the new conditions. I stuck on the following problem: Warning: Unknown(): Your script possibly relies on a session side- effect which existed until PHP 4.2.3. Please be advised that the session extension does not consider global variables as a source of data, unless register_globals is enabled. You can disable this functionality and this warning by setting...
0
9595
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
9432
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
9873
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8891
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7420
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6682
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
5313
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...
0
5454
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
2822
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.