active questions tagged session - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T21:54:36Zhttp://stackoverflow.com/feeds/tag/sessionhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/247573/how-can-web-form-content-be-preserved-for-the-back-button0How can web form content be preserved for the back buttonPeter Howe2008-10-29T16:54:43Z2009-11-29T18:42:24Z
<p>When a web form is submitted and takes the user to another page, it is quite often the case that the user will click the Back button in order to submit the form again (the form is an advanced search in my case.)</p>
<p>How can I reliably preserve the form options selected by the user when they click Back (so they don't have to start from scratch with filling the form in again if they are only changing one of many form elements?)</p>
<p>Do I have to go down the route of storing the form options in session data (cookies or server-side) or is there a way to get the browser to handle this for me?</p>
<p>(Environment is PHP/JavaScript - and the site must work on IE6+ and Firefox2+)</p>
http://stackoverflow.com/questions/1815990/can-i-use-struct-new-as-a-rails-model-or-how-to-create-anonymous-structured-non0Can I use Struct.new as a Rails model? Or: How to create anonymous structured non-db backed sessions?hurikhan772009-11-29T16:33:45Z2009-11-29T18:40:27Z
<p>Given the following example:</p>
<pre><code>class AnonymousSession << Struct.new(:location, :preferences)
def valid?
...
end
def new_record?
...
end
end
</code></pre>
<p>While this interface is sufficient to create resourceful form and so on, it fails as soon as I want to save my form data to the session:</p>
<pre><code>if session[:user] = AnonymousSession.create(params[:anonymous_session])
#--> fails with "unknown key(s): location..."
...
end
</code></pre>
<p>The error message is about "unknown keys". Any clue how to make it work? I just need anonymous sessions without database backend. They are completely disposable due to their short live nature.</p>
<p>Maybe my approach is wrong anyway and there's already an elegant solution to using anonymous sessions? I had a look at AuthLogic but any example I found always comes with an ActiveRecord model (and thus bound to a database).</p>
http://stackoverflow.com/questions/1815832/nhibernate-session-starts0nhibernate session startsChen Kinnrot2009-11-29T15:38:11Z2009-11-29T16:04:24Z
<p>When I just Create the Factory, It seems to do a lot of work (in the log4net console) when it start without me asking him to do anything. could it be that those are just tests he does for himself?</p>
http://stackoverflow.com/questions/1447649/session-state-in-asp-net-mvc0Session state in asp.net mvctiff2009-09-19T03:35:05Z2009-11-29T12:00:03Z
<p>I would like to know how to use session state in a simple log in log out in asp.net mvc..</p>
<p>I have a code here in my controller that I've retrieved from my mysql database for my session log in..but I don't really know how to manipulate it..</p>
<pre><code><AcceptVerbs(HttpVerbs.Post)> _
Function Index(ByVal username As String, ByVal password As String, ByVal department As String) As ActionResult
Dim user As DataTable
user = Account.userSelect(username:=username, password:=password, department:=department)
If user.Rows.Count = 0 Then
Return RedirectToAction("Index", "Home")
Else
Session("username") = user.Rows(0).Item("username")
Session("department") = user.Rows(0).Item("department")
Return RedirectToAction("News", "Administration")
End If
End Function
</code></pre>
<p>Thank you!</p>
http://stackoverflow.com/questions/1812638/where-to-store-user-login-information-in-asp-net1Where to store user login information in asp.netemre2009-11-28T14:33:14Z2009-11-29T01:18:57Z
<p>when I build asp.net applications that require user login, I write a method in my businees class that returns a Member object instance if the user is logged in, null if not. Then I do this: </p>
<pre><code>Session["User"] = user;
</code></pre>
<p>Then in every page load I have to implement this:</p>
<pre><code>User user = Session["User"] as User;
if(null==user){
//toggle the state of ascx, to show username/password boxes again,
//Response.Redirect("somewhere else") etc...
}
</code></pre>
<p>This looks like its working, but is this a good approach?
Because sometimes the Session does not return that object anymore. It happens before 20mins, which is default timeout for session. Is there any reson for that? It happens randomly, when I make several postbacks during testing.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1791818/losing-session-data-when-user-logs-in0Losing session data when user logs insico872009-11-24T17:58:11Z2009-11-28T23:07:16Z
<p>Hello, </p>
<p>I have been working on a shop that is built in Python on the back of the django framework, everything was working fine until I noticed that when a user proceeds to the checkout and is requested to log in they do so and their basket empties...obvioulsy this is not a great thing for a basket to do, I was wondering what is causing this, could some look over my code and give me some advice at what it could be? I am at my wits end.</p>
<p>=====Edit - Below is my code I would appreciate it if someone could give me a hit at how i can stop the basket clearing when a users logins=====</p>
<pre><code> def basket(request):
"""
Display the current state of the basket and allow the customer to modify
the discount and quantities of each row of the basket
"""
data = {}
basket = Basket(request)
discount_form = DiscountCodeForm(basket)
if request.method == "POST":
if 'update' in request.POST:
basket.post_update(request)
discount_form = DiscountCodeForm(basket, request.POST)
if discount_form.is_valid():
cleaned_data = discount_form.cleaned_data
if cleaned_data['discount_code']:
basket.set_discount(Offer.objects.get(code=cleaned_data['discount_code']))
if 'delete' in request.POST:
basket.post_delete(request)
if 'remove_discount' in request.POST:
basket.remove_discount()
data['discount_form'] = discount_form
data['logged_in'] = persistent_account(request)
data['pageclass'] = 'basket'
data['category'] = Category.objects.root_category()
data['products'] = Product.objects.all()
data['regions'] = Zone.objects.all()
data['currency'] = Currency.get_default_currency()
return render_to_response('basket.html', data, RequestContext(request))
def login(request):
"""
Log the user in.
The form is where the actual login occurs. If already logged in, then
forward to the last attempted page, or, if came directly to the login page,
the account page.
@todo: Incorrect guesses limit of 10 then deactive account
"""
data = {}
redirect_to = request.GET.get('next', reverse('account'))
account = persistent_account(request)
if account:
return HttpResponseRedirect(reverse('account'))
if request.method == "POST":
login_form = LoginForm(request, request.POST)
# This next line will also cause a login
if login_form.is_valid():
login_form.user.message_set.create(message="You have successfully logged in. Welcome back.")
return HttpResponseRedirect(redirect_to)
else:
login_form = LoginForm(request)
data['shop_login_form'] = login_form
data['pageclass'] = 'customer_login'
return render_to_response('login.html', data, RequestContext(request))
</code></pre>
<p>What i have given you is my login view and basket view hope that is enough, if not feel free to shout me.</p>
http://stackoverflow.com/questions/1813274/how-to-set-custom-period-of-facebook-session0How to set custom period of Facebook sessionvladimir-minsk2009-11-28T18:20:21Z2009-11-28T18:20:21Z
<p>Hi, May be somebody knows, how can I say to Facebook to expire it session, f.e. in 2 days. Now by default session is expired in 24 hours. thanks</p>
http://stackoverflow.com/questions/1812086/remove-deadlock-without-killing-session0Remove deadlock without killing sessionP Sharma2009-11-28T09:29:28Z2009-11-28T10:54:58Z
<p>Is there any workaround to remove deadlock without killing the session?</p>
http://stackoverflow.com/questions/1804113/how-to-implement-unique-hits-on-articles1How to implement unique hits on articlesSaif Bechan2009-11-26T14:50:21Z2009-11-27T22:04:09Z
<p>Hi, i was wondering what the best way is to implement a hit counter for articles, products, etc. Now if someone visits the page the counter just adds one in the database. If someone refreshes the page it counts continuously, misleading results, and unnecessary reads, writes.</p>
<p>I was thinking of storing their ip, but i don't know how to model this in mysql. If i make a db record for each hit it will be enormous.</p>
<p>I have read this article:
<a href="http://stackoverflow.com/questions/1535261/how-to-write-an-efficient-hit-counter-for-websites">http://stackoverflow.com/questions/1535261/how-to-write-an-efficient-hit-counter-for-websites</a></p>
<p>The best answer was using a log and then update this log to db. But then again.</p>
<blockquote>
<p>What is the best way to determine a new hit, is this with IP or another variable. And what is an acceptable amount of time to log the hit of particular user again.</p>
</blockquote>
<p>Any other types of implementations are welcome too.</p>
http://stackoverflow.com/questions/1810709/spring-security-cas-viewing-secured-page-without-login-in1Spring Security & CAS - Viewing secured page without login inLuciano2009-11-27T21:36:18Z2009-11-27T21:36:18Z
<p>Hello, I have a webapp that uses Spring Security and SSO with CAS. There's also another webapp (in Classic ASP) that connect to CAS. And this situation happens sometimes:</p>
<p>Logged in to Java webapp and do stuff. 12 hours later (session has expired long ago) user goes to same page and it displays without redirecting to login page. This page has nocache for various web browsers so that should not be an issue.</p>
<p>If the user goes to the asp webapp. It asks for login so my guess is that cas had no ticket assigned for the user but how could he see the java web page?</p>
<p>Any help will be appreciated. Thanks</p>
http://stackoverflow.com/questions/1809242/updating-the-server-cache-in-toplink0updating the server cache in toplinkMrityunjay2009-11-27T15:00:30Z2009-11-27T15:00:30Z
<p>hi all,
i am facing one problem. I need to update the server session's cache when we say writeChanges in unit of work. As in my application i do not say commit on unit of work instead i say commit on connection which indirectly commits the transaction but does not update the cache.
so can any one tell me how to do that in any of the cases that whether i can update the server cache on writeChanges or when i say commit on connection.??</p>
<p>please help me..</p>
http://stackoverflow.com/questions/1808195/storing-tab-positions-of-multiple-forms-in-cookie-how-to-prevent-cluttering0Storing tab positions of multiple forms in cookie - how to prevent clutteringPekka Gaiser2009-11-27T11:25:06Z2009-11-27T12:32:52Z
<p>I have a PHP and HTML based CMS. In each page of the CMS, there is a form with a <strong>Javascript-based tabbed dialog</strong> that switches between a number of DIVs.</p>
<p>From each page of the CMS, it is possible to open a preview page to see the changes made, and then return to the CMS. When the user returns, I would like the same tab page to be opened as when they left for the preview.</p>
<p>My current approach is to change the value of a cookie ("current_tab") each time the user changes a tab. </p>
<pre><code>onclick='setCookie("current_tab", 5);'
</code></pre>
<p>When the tabbed dialog is generated, I check for the cookie and set the appropriate DIV to "display: block".</p>
<p>However, I need the cookie setting to be limited to that specific CMS page, and not all of them. If the user changes to a different page, the tab must <em>not</em> be pre-selected.</p>
<p>My current approach is to create a cookie <em>for each page</em>, e.g. for page ID 10254:</p>
<pre><code>onclick='setCookie("current_tab_10254", 5);'
</code></pre>
<p>and, as an attempt of cleaning up, to remove that cookie when the page is rendered. But obviousy, this is not going to clean up every cookie that was set, because the user can choose not to return to the form, or navigate to a different page. I fear clutter through dozens of cookies in the system. </p>
<p>Does anybody have a better idea how to do this? </p>
http://stackoverflow.com/questions/1804947/nhibernate-session-strange-behavior0nhibernate session strange behaviorChen Kinnrot2009-11-26T17:47:30Z2009-11-27T09:24:28Z
<p>i have an app with fluent nhibernate mappings..</p>
<p>when i start the app first time and initiate a session and a configuration an a session factory for the first time i see in the console that the session do some updates inserts and select on my mapped class</p>
<p>any one can explain this please..?</p>
<p>i see stuff like AbstractEntityPersister.Insert</p>
http://stackoverflow.com/questions/1807464/session-key-session-id-and-cookies-in-rails-with-swfupload0session key , session id and cookies in rails with swfuploadStacia2009-11-27T08:40:50Z2009-11-27T08:40:50Z
<p>So I am trying to implement easy_swf_upload but I'm running into an error right away. There's a session key, which is defined like this:</p>
<pre><code> session_key = RAILS_GEM_VERSION < "2.3.0" ? ActionController::Base.session[0][:session_key] : ActionController::Base.session_options[:key]
</code></pre>
<p>Since I have the most recent version of rails I get the second option. This helper defines a few things, in particular being:</p>
<pre><code> <div class="session_key">#{session_key}</div>
<div class="session_id">#{CGI::escape(cookies[session_key])}</div>
</code></pre>
<p>I get the error at that last "session_id" line if I don't comment it out:</p>
<pre><code>You have a nil object when you didn't expect it!
The error occurred while evaluating nil.gsub
</code></pre>
<p>I don't know anything about these cookies keys and sessions. What could be going wrong?</p>
http://stackoverflow.com/questions/654310/cleanup-php-session-files1cleanup php session filesJack2009-03-17T13:43:34Z2009-11-27T07:47:32Z
<p>On my website I use PHP sessions. Session information is stored in files in my ./session path. After a few months I discovered that these session files are never deleted, by now there are 145.000 of them in this directory. </p>
<p>How should these be cleaned up? Do I have to do it programmatically, or is ther a setting I can use somewhere that would have this cleanup happen automatically?</p>
<p><strong>EDIT</strong> forgot to mention: This site runs at a provider, so I don't have access to a command line. I do have ftp-access, but the session files belong to another user (the one the webserver proces runs I guess) From the first answers I got I think it's not just a setting on the server or PHP, so I guess I'll have to implement something for it in PHP, and call that periodically from a browser (maybe from a cron job running on my own machine at home)</p>
http://stackoverflow.com/questions/1805983/how-long-will-my-current-session-still-last0How long will my current session still last? powtac2009-11-26T22:39:19Z2009-11-26T23:16:14Z
<ol>
<li>How can I figure out when my current session will run out?</li>
<li>Is the session timeout updated on every request?</li>
</ol>
http://stackoverflow.com/questions/1801730/session-expiring-and-giving-error-page1session expiring and giving error pageunknown (google)2009-11-26T05:38:05Z2009-11-26T16:53:13Z
<p>My application is throwing an error when the session expires.</p>
<p>I dont want the sessions to expire automatically....</p>
<p>but if there is no way to do that then instead of showing the error it should be redirected to the login page...</p>
<p>I tried to do this....</p>
<pre><code>Response.AppendHeader("Refresh", Convert.ToString((Session.Timeout * 60) + 10) + "; URL=Login.aspx");
</code></pre>
<p>this code not working when session expires.. i get an error message</p>
<blockquote>
<p>Response is not available in this context. </p>
</blockquote>
<p>the web config has this</p>
<pre><code><authentication mode="Forms">
<forms loginUrl="Login.aspx" name="Cookie" timeout="10080" path="/">
</forms>
</authentication>
<authorization>
<deny users="?"/>
<allow users="*"/>
</authorization>
</code></pre>
<p>Is there anything else i need to add in the web config...</p>
<p>any suggestions... thanks</p>
<p>this is my page load</p>
<pre><code> protected void Page_Load(object sender, EventArgs e)
{
Response.AppendHeader("Refresh", Convert.ToString((Session.Timeout * 60) + 10) + "; URL=Login.aspx");
string userName = Session["userName"].ToString();
string password = Session["password"].ToString();
string domain = Session["domain"].ToString();
impersonateValidUser(userName, domain, password);
}
</code></pre>
http://stackoverflow.com/questions/1804258/writing-crawler-that-stay-logged-in-with-any-server0Writing crawler that stay logged in with any serverVadi2009-11-26T15:18:31Z2009-11-26T16:48:12Z
<p>I am writing a crawler. Once after the crawler logs into a website I want to make the crawler to "stay-always-logged-in". How can I do that? Is a client (like browser, crawler etc.,) make a server to obey this rule? This scenario could occur when the server allows limited logins in day. </p>
http://stackoverflow.com/questions/1803886/difference-between-using-http-and-https-in-session-management-of-jsp0difference between using http and https in session management of jsppraveen2009-11-26T14:12:27Z2009-11-26T15:11:27Z
<p>When I am using HTTP protocol, there is no issue with sessions. But when I am using HTTPS protocol, I am facing problem in JSP. When it is moving from one tab to another tab, session is automatically getting expired. How can I resolve this issue?</p>
http://stackoverflow.com/questions/875778/logout-code-in-jsp0logout code in jsp.ajay2009-05-17T23:51:29Z2009-11-26T14:06:28Z
<p>I am using basic level authentication. and i need best logout code in JSP / servlet.
I am using JSP & servlet and MS-ACCESS as backend.</p>
<p>Is it require a session creation in JSP?</p>
<p>please reply as soon as possible.</p>
<p>Thanking you..... </p>
http://stackoverflow.com/questions/810673/connection-problems-with-sql-server-in-asp-net-applications-using-out-of-process0Connection problems with SQL Server in ASP.NET applications using out-of-process session stateDarin Dimitrov2009-05-01T08:42:52Z2009-11-26T13:14:49Z
<p>I have several ASP.NET applications deployed in a farm of 4 Windows 2003 machines. Each application uses a separate App Pool and Virtual Directory in IIS. They rely heavily on sessions which are persisted <a href="http://idunno.org/articles/277.aspx" rel="nofollow">out of process</a> on a single SQL Server 2000 (<code><sessionstate mode="sqlserver" ... /></code>). Applications are compiled against .NET 3.0 but .NET 3.5 SP1 is installed on servers.</p>
<p>Each web server receives approximately 10 requests/second. Every once in a while I get some exceptions in logs:</p>
<pre><code>System.Data.SqlClient.SqlException: A transport-level error has occurred when receiving results from the server. (provider: TCP Provider, error: 0 - The semaphore timeout period has expired.)
at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection)
at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection)
at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj)
at System.Data.SqlClient.TdsParserStateObject.ReadSniError(TdsParserStateObject stateObj, UInt32 error)
at System.Data.SqlClient.TdsParserStateObject.ReadSni(DbAsyncResult asyncResult, TdsParserStateObject stateObj)
at System.Data.SqlClient.TdsParserStateObject.ReadNetworkPacket()
at System.Data.SqlClient.TdsParserStateObject.ReadBuffer()
at System.Data.SqlClient.TdsParserStateObject.ReadByte()
at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj)
at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString)
at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async)
at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult result)
at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(DbAsyncResult result, String methodName, Boolean sendToPipe)
at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
at System.Web.SessionState.SqlSessionStateStore.SetAndReleaseItemExclusive(HttpContext context, String id, SessionStateStoreData item, Object lockId, Boolean newItem)
</code></pre>
<p>or another:</p>
<pre><code>System.Data.SqlClient.SqlException: A transport-level error has occurred when sending the request to the server. (provider: TCP Provider, error: 0 - An existing connection was forcibly closed by the remote host.)
at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection)
at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection)
at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj)
at System.Data.SqlClient.TdsParserStateObject.WriteSni()
at System.Data.SqlClient.TdsParserStateObject.WritePacket(Byte flushMode)
at System.Data.SqlClient.TdsParserStateObject.ExecuteFlush()
at System.Data.SqlClient.TdsParser.TdsExecuteRPC(_SqlRPC[] rpcArray, Int32 timeout, Boolean inSchema, SqlNotificationRequest notificationRequest, TdsParserStateObject stateObj, Boolean isCommandProc)
at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async)
at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult result)
at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(DbAsyncResult result, String methodName, Boolean sendToPipe)
at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
at System.Web.SessionState.SqlSessionStateStore.SetAndReleaseItemExclusive(HttpContext context, String id, SessionStateStoreData item, Object lockId, Boolean newItem)
</code></pre>
<p>or yet another:</p>
<pre><code>System.Data.SqlClient.SqlException: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection)
at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj)
at System.Data.SqlClient.TdsParserStateObject.ReadSniError(TdsParserStateObject stateObj, UInt32 error)
at System.Data.SqlClient.TdsParserStateObject.ReadSni(DbAsyncResult asyncResult, TdsParserStateObject stateObj)
at System.Data.SqlClient.TdsParserStateObject.ReadNetworkPacket()
at System.Data.SqlClient.TdsParserStateObject.ReadBuffer()
at System.Data.SqlClient.TdsParserStateObject.ReadByte()
at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj)
at System.Data.SqlClient.SqlDataReader.ConsumeMetaData()
at System.Data.SqlClient.SqlDataReader.get_MetaData()
at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString)
at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async)
at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult result)
at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)
at System.Data.SqlClient.SqlCommand.ExecuteReader()
at System.Web.SessionState.SqlSessionStateStore.DoGet(HttpContext context, String id, Boolean getExclusive, Boolean& locked, TimeSpan& lockAge, Object& lockId, SessionStateActions& actionFlags)
</code></pre>
<p>These errors occur a couple of times a day for a period of about 1-2 minutes and then disappear. Has anyone encountered such problems? What could you suggest me to do in order to further track down the problem? To me it looks more like network issues than application. Could it be some settings on the SQL Server which cannot handle so many concurrent connections? Any suggestions would be greatly appreciated.</p>
<p><hr></p>
<p>UPDATE:</p>
<p>I've solved the problem by performing major updates to the application in order to reduce the number and size of the objects being stored in the session.</p>
http://stackoverflow.com/questions/1802833/attributeremoved-not-being-called-after-session-invalidate1attributeRemoved not being called after session.invalidatescottyab2009-11-26T10:21:22Z2009-11-26T10:35:02Z
<p>I have a object that implements the <code>HttpSessionAttributeListener</code>, and as you'd expect it does some work when certain objects are added, replaced and removed from the session. </p>
<p>I thought that the if the session is ended [<code>session.invalidate()</code>], each object from that session is removed from the session as so the <code>attributeRemoved()</code> method would be called? I'm not seeing that behavour and wondered if I dreamt it. </p>
<p>To ensure I can be notified when the session is invalidated do I have to implement <code>HttpSessionBindingListener</code> on the object i'm interested in? or is there another way. </p>
http://stackoverflow.com/questions/1797626/something-like-viewstate-and-session1Something like viewstate and sessionBlankenshipMQ2009-11-25T15:19:08Z2009-11-25T19:08:59Z
<p>The problem that I am having is as follows:</p>
<p>I currently have a custom class that generates buttons and places them on a placeholder on a master page.</p>
<p>The events for these buttons put specific values into session that differs values for a database query. In essence, the buttons serve as filters for charts.</p>
<p>After creating all the buttons, I realized that session values will stay constant from page to page, so everytime a user enters a different page while another is open, the filters selected on the open page will remain constant for the new page that is opened.</p>
<p>At first, I wanted to use viewstate rather than session, but then realized that a master page and a content page do not share the same viewstate.</p>
<p>At the current time, I am thinking of using a prefix for the sesson key that will identify what page the filters actually exist for. However, I am not wanting to overload session with numerous values if the user wishes to have many pages open at the same time.</p>
<p>Any solutions that would entail a way to share viewstate (or some other way to store values) between app_code, the master, and the content page?</p>
http://stackoverflow.com/questions/1519072/how-to-maintain-logged-in-status-with-web-server-in-an-iphone-app0How to maintain logged in status with web server in an iPhone app?elioty2009-10-05T09:37:41Z2009-11-25T16:00:04Z
<p>Simply, I would like to have an iPhone app that logs in to a web server with inputted username and password values and then maintains this login, so that the user can POST data to the server. </p>
<p>Is this just an issue of using cookies? If so, how do you perform a check to verify the user is logged in?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1793520/php-losing-data-for-two-variables0PHP losing data for two variablesClem2009-11-24T22:55:16Z2009-11-25T15:34:18Z
<p>I have two scripts that I'm working on. The first receives $agentID via GET (as well as some other data via other GET variables), then looks up $firstName and $lastName in a database by $agentID. Once done, it displays $firstName, $lastName and $agentID on the screen, as text in a form (not in a form input). After the form is submitted, $agentID and the form data are to be written to the database as part of a new record, then $agentID, $firstName, $lastName, and the form data are stored in SESSION variables so the data can be displayed on a confirmation page. The trouble I'm having is that $agentID, $firstName, $lastName are not written to the database, to SESSION variables, <em>and</em> it won't even put the values in an email! Both scripts start a session as the first thing. I've checked the first script over and over to make sure the variables aren't being over-written, unset, or anything.</p>
<p>Here's some code and I hope someone can see what I apparently am not. This is from the first script:</p>
<pre><code>session_start();
$mySQLdb = EstablishConnection("table");
$agentID = $_GET['agent'];
$agentData = SurveyAgent($agentID);
$agentDataArray = explode(".", $agentData);
$agentFirstName = $agentDataArray[0];
$agentLastName = $agentDataArray[1];
$agentFullName = $agentFirstName." ".$agentLastName;
</code></pre>
<p>The call to SurveyAgent establishes its own connection to the database, using the same code as the first line in the previous block. SurveyAgent() is in an included file. Here's the important bits from SurveyAgent():</p>
<pre><code>$mySQLselect = "SELECT lname, fname FROM table WHERE id_no='$userID';";
$sponsorData = $mySQLrow[1].".".$mySQLrow[0];
return $sponsorData;
</code></pre>
<p>I had originally put the data returned from the database into an array and returned the array, but when things weren't working, I changed it to just concatenating the two pieces with a period between to use explode (as the code currently does). Finally, the first script wraps up this way (after the write to the database):</p>
<pre><code>$_SESSION['agentID'] = $agentID;
$_SESSION['agentName'] = $agentFullName;
$body = $agentFullName.", ".$agentID;
mail("email@address", "test", $body, "From: email@address");
header("Location: http://www.domain.com/path/to/script.php");
</code></pre>
<p>The second script starts like this:</p>
<pre><code>session_start();
$agentID = $_SESSION['agentID'];
$agentName = $_SESSION['agentName'];
</code></pre>
<p>The second script receives several other variables via SESSION from the first script. $agentID and $agentName are the only two variables I am having trouble with. I have tried changing the variables' names, including the SESSION keys' names. If I hard-code the value of $agentID, instead of receiving it via GET, everything works fine. It makes no sense to me why the first script is displaying the data received via GET and the database query, but won't pass them anywhere. Any help is appreciated. If I need to post more code, I will do that. Thanks!</p>
http://stackoverflow.com/questions/1795998/manage-session-when-broswer-has-disable-cookies2Manage Session when broswer has disable cookiesNirmal2009-11-25T10:24:31Z2009-11-25T11:54:43Z
<p>Hello All...</p>
<p>I wants to know that How can i Manage Session if the client browser has disabled cookie feature..</p>
<p>If I wants to implement it in simple JSP - Servlet, then how can I do that ?</p>
<p>Thanks in advance...</p>
http://stackoverflow.com/questions/1792765/generate-the-facebook-signature-using-my-applications-secret-key0Generate the facebook signature using my applications secret key?Derrick2009-11-24T20:36:55Z2009-11-25T06:43:38Z
<p>When you build a website with "facebook connect" and you log into facebook with your username and password, facebook then sets a session on your website.</p>
<p>In that session is a generated "signature"</p>
<p>This signature is created by combining the data of your "application secret" that only you and Facebook know, and the result MD5 hashed.</p>
<p>I need the algorithm used to generate that signature so that I can recreate it and make sure it matches the one signature created by facebook.</p>
<pre><code>if($_SESSION['facebookSignature'] == reGeneratedSignature){
// save to database
}else{
// go away I don't trust you
}
</code></pre>
<p>This way I can validate the user and I don't need to make unnecessary calls to Facebook and alow the user to continue to use the website.</p>
http://stackoverflow.com/questions/980236/amfphp-500-internal-server-error-sessions1Amfphp 500 internal server error (sessions)Andy Jacobs2009-06-11T09:42:23Z2009-11-25T06:31:16Z
<p>So to sketch out our situation</p>
<p>We have a html page(domain: hyves.nl) with an iframe </p>
<p>in that iframe we load a php file (domain : atik.nl)</p>
<p>in that php file we start a session
and we embed our swf file (domain : atik.nl )</p>
<p>in our swf file we access a special page "calls.php" (domain: atik.nl)
where we can get some special data. (that's why we needed to start a session in the first php file so that it can share some authorizing data)</p>
<p>but beside that in our swf we want to connect to our amfphp gateway.php file (domain: atik.nl)</p>
<p>but when i try to do that. Charles (web debugging proxy) tells me i have an 500 server internal error. </p>
<p>Is it because amfphp doesn't do well with a session that is already started on the same domain ? </p>
<p>because when i try to run my amfphp browser it works until i go to the dedicated page, my amfphp browser fails also until i restart my web browser.</p>
<p>anybody any ideas?</p>
http://stackoverflow.com/questions/1791868/problem-with-session-in-zend-framework1Problem with session in zend frameworksanders2009-11-24T18:06:18Z2009-11-24T18:12:28Z
<p>Hello everyone.<br/>
I am trying something in the zend Framework <br/>
I have create a project with zend_tool. </p>
<p>I have 2 controllers </p>
<ol>
<li>artist controler</li>
<li>account controler</li>
</ol>
<p>Within the accountcontroller whenever the user login the $_SESSION['id'] is set to the user id. But as soon as I leave the accountcontroller and go to the Artist controller, my session variable is empty.</p>
<p>Here is a link to both full files <a href="http://www.codedump.be/code/435/" rel="nofollow">http://www.codedump.be/code/435/</a></p>
<p>If you look at the saveArtistAction()</p>
<p>Here I am always redirected to the login form:</p>
<pre><code>if(!isset($_SESSION['id'])){
$this->_forward('login', 'account');
}
</code></pre>
<p>I am using zf 1.9.5</p>
<p>Can anyone tell me how to solve the problem?</p>
http://stackoverflow.com/questions/1791333/how-to-sharethe-web-application-session-with-a-webservice0how to sharethe web application session with a webservicerap-uvic2009-11-24T16:46:03Z2009-11-24T17:47:07Z
<p>Hello,</p>
<p>Here's the scenario. My page loads with certain objects in the session. The user clicks a button, and I need to update a certain section of my page using jquery. The jquery would make an ajax call to the web service which needs to access one of the objects in the session. How would I do this? How can my web service access the current session object?</p>
<p>update: I'm using asmx</p>