The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
60 views

Accessing HttpApplicationState where there is no current HttpContext available

Normally, when we need a reference to the current Application state, we'd use: HttpContext.Current.Appliction But there are times that there's no current HttpContext (HttpContext.Current returns ...
1
vote
0answers
82 views

Is it a good practice to use an Singleton to Application State object in MVC 4?

Recently I have been busy writing an MVC 4 Website and I need to hold some values across all the sessions so I deciede to use the "Application State" object. Because the MvcApplication class which ...
2
votes
2answers
54 views

Application state save/restore

I want to know if application state save/restore is mandatory or optional in order to get application approved for App Store?
0
votes
1answer
219 views

Start thread when iOS application enters background state

I have a Requirement where I need to Create and Start a thread when application enters the Background State. The function of the Created Thread is to fetch data from local DB and upload to server, and ...
1
vote
1answer
54 views

Why is applicationState being returned as nil?

I'm trying to check the application state of my iOS app, but when I check [UIApplication sharedApplication].applicationState I'm getting nil. I checked that [UIApplication sharedApplication] is not ...
0
votes
0answers
39 views

Find the Playing state of the currently active video player?

In android i know how to find out which app is currently in the forground. Assuming the user has provided a list of installed video players , now i can find if one of them is in the foregound. My ...
0
votes
1answer
241 views

Windows Store App Saving State Information

I'm just starting to work with windows 8 development (using c#), and am working on porting one of my applications to a windows store app. Essentially my application takes a user input string, ...
0
votes
1answer
44 views

How to detect the state of an app other than mine?

I have looked around, but all suggestions are for checking state of my own app/activity. using the Life Cycle. I need to check if another app is in foreground/ running in background / paused . Is it ...
1
vote
0answers
16 views

How can I get the current state of another android application as a bitmap?

Is it possible on android to get a Bitmap object (regular size, not a thumbnail) which represents the current state of another application running in the background, or a Bitmap object which ...
1
vote
1answer
123 views

ASP.net beginner really confused about StaticObjects and how to declare it

I'm a beginner in ASP.net, i did some research about Application state. I know about declaring new application state inside the Application_start event. But when i looked inside MSDN library (which ...
0
votes
1answer
37 views

Unable to retrieve Application State in Model class

Im facing a problem in one of MVC projects, that problem is about retrieving values from Application State object. I am storing some value into the Application state in Application_Start() method of ...
1
vote
1answer
473 views

The application variable in ASP.net(c#).

I have a problem with the application state in Asp.net. I need a list of Strings that i would use in different forms in the same application. Here I add the list: Application.Add("users", new ...
3
votes
1answer
133 views

What Exactly Does HttpApplicationState.Lock Do?

My application stores two related bits of data in application state. Each time I read these two values, I may (depending on their values) need to update both of them. So to prevent updating them ...
1
vote
1answer
246 views

how to access application.get from generic handler

I have a global.asax in which I define some variables that I want to be available throughout the application, such as a class to handle certain database requests. In an aspx page, I can access these ...
4
votes
3answers
420 views

“persistent state” vs. “current state”

Attempting to decide (for my application) what to save in onPause() and what to save in onSaveInstanceState(), I combed the entire SO for hints and clear guidelines. If I understand correctly, ...
1
vote
3answers
273 views

Persisting application state in ASP.NET website

I am storing some web site settings for my ASP.NET website in the application state. I have also initialized the state in the Application_Start() method. Specific users can change these settings, but ...
1
vote
2answers
118 views

What is the preferred approach to initialize one-time logic in ASP.NET 3.5 WebForms?

Scenario: I have a ASP.NET 3.5 WebForms based website. It contains Foo.aspx, Bar.aspx and baz.html (jQuery template). Typical traffic seen is Foo.aspx (N times), Bar.aspx (N times) and baz.html ...
0
votes
1answer
181 views

applicationDidBecomeActive: Fails to push appropriate view

With reference to my question asked Change Tab view after certain time interval received as response from Server request, I used following code to show the session timeout message when application ...
0
votes
1answer
202 views

storing and updating a 2d array in application state in Asp.Net MVC 3

I plan to create a simple browser game based on ajax requests. I have a map that consists of 10x10 divs on the client. On the server I have an array[10,10] that represents the state of my divs, so for ...
3
votes
3answers
369 views

How to ensure saving of application state on crash c#

I am very new to c# programming, so that in mind: I have an in-memory data object with data I need to save the information when(if) my application were to crash OR closed. Is there a way to do this ...
0
votes
3answers
236 views

Refreshing iOS application or checking for connection in advance

I'm having some issues determining what the proper application design pattern is for initially alerting users that they need to enable an internet connection. I have an iOS app that requires an ...
0
votes
3answers
314 views

Application variable across load balanced servers (ASP.Net)

We have a website that runs on two load balanced servers. We used the ASP.Net Application variable to make application state "online/ offline", or for some important messages across the application, ...
0
votes
3answers
153 views

Storing classes in Application State (ASP.NET)

Let's say I wish to store an instance of the following in Application State, to be accessed very often. public class Example { public string A; public string B; public bool C; public int D; ...
0
votes
1answer
189 views

Is there a way to get a current state of the application?

I have an application that periodically checks the server for some flag. And then displays a message depending on the value of this flag. I don't want to display a message then the application is not ...
0
votes
1answer
493 views

Application variables get lost after post-back

My ASP.Net application has a Server Control developed by us which needs to store some keys in the Application level (i.e. across users and sessions) for future use. However, I found that the count ...
1
vote
3answers
650 views

windows phone 7 keep application running on back button

I'm implementing an application that should not stop running on clicking any button on the device. Is this possible and how can I achieve this? Regards
1
vote
1answer
888 views

Receiveing push notifications while in different states

I know this topic has been discussed however i keep seeing conflicting stements and im just getting more and more lost. I just want to know what happens when my app is in the background and it ...
0
votes
1answer
468 views

How to save app state(custom object, Vector, Object) on runtime?

I am a new developer for Android and searching about how to save custom object as persistent data. How can I save an object and restore it ? I've researched several methods such as ...
3
votes
1answer
374 views

global.asax scope and lifetime clarification

I need to implement several application-level behavior in a project I'm currently working on. There are several things I need to get my head around: 1. Where and how do I define application level ...
0
votes
1answer
165 views

Events through application scope to multiple clients?

First of all, I am creating a something like a client/server solution using a standard ASP.NET website - I do know this method is not adviced, and most people would love to scream "COMET!" or "HTML5 ...
4
votes
2answers
3k views

where is session state, application state in page life cycle?

where is session state, application state in page life cycle?
4
votes
3answers
290 views

Silverlight and Application State

I have a Silverlight app that always needs to know what Customer (domain object) is currently loaded. There can only be one loaded at a time. If the Customer is null, no Customer is loaded currently. ...
9
votes
5answers
9k views

Does asp.net MVC have Application variables?

I am busy converting a web application to MVC and have some information saved to Application variables used across multiple tenants/accounts to make things a bit more efficient. I realise the point ...
1
vote
2answers
808 views

How to add a System.Xml.XmlDocument type to applications state

I am using Asp.net 3.5 and C# I have to add an XmlDocument to my application state so that everytime my application doesnt access the XML file on my filesystem, I will add this at the ...
2
votes
1answer
177 views

is it possible to get back to my application after clicking google maps?

We have made an application for a city in the netherlands that wants tourists to visit their lovely museums. when they reach the page fo a museum we have a little icon that they press and they get ...
0
votes
2answers
109 views

A question regarding application state

I have a question regarding the application state in asp.net. As i know, data stored in application state is not permanent, data lost when the application is restarted/stopped. So, what does the ...
2
votes
2answers
578 views

HttpApplicationState - Why does Race condition exist if it is thread safe?

I just read an article that describes how HttpApplicationState has AcquireRead() / AcquireWrite() functions to manage concurrent access. It continues to explain, that in some conditions however we ...
0
votes
2answers
138 views

Should I store localization content in the application state

I am developing my first multilingual C# site and everything is going ok except for one crucial aspect. I'm not 100% sure what the best option is for storing strings (typically single words) that will ...
4
votes
3answers
572 views

Preserving ASP.NET Application State Across Restarts

Any good way to preserve ASP.NET Application state across restarts? I want to be able to set some values restart the app and have them still be there. I want to primarily do this for small ...
0
votes
2answers
625 views

Recycling Options for ASP.Net Application State Object

What are the options for recycling the ASP.Net application state object? I'm using that object to store queues of database connections for a web serviced based data access layer. I'm concerned that ...
5
votes
3answers
2k views

How best to generate a random salt for a Web Site?

i'm wanting to generate a random salt value and put it into the Application state. Now, i'm using a web farm, so the Application state will be different per machine. I don't want to purchase ...
4
votes
2answers
2k views

in IIS, what's the difference between “application” and “session”?

A Session is per browser (determined via cookies), but when does an "Application" start, and end, and how does IIS know know when a request is a part of the same same "Application" instance (if not ...
24
votes
1answer
6k views

ASP.NET Application state vs a Static object

if i have a standard ASP.NET application, is there any difference between making an object static as opposed to putting the object instance in the Application state? from my understanding, both ...
0
votes
3answers
2k views

Accessing HttpApplicationState during Session_End

In my ASP.NET application using InProc sessions, Session_End calls a static method in another object to do session-specific clean up. This clean up uses a shared database connection that I am storing ...
572
votes
14answers
222k views

Saving Activity state in Android

I've been playing around with the Android SDK, and I am a little unclear on saving an applications state. So given this minor re-tooling of the 'Hello, Android' example: package com.android.hello; ...