Tagged Questions
The invalidation tag has no wiki summary.
2
votes
4answers
92 views
C++ Iterator randomly gets invalidated
I'm lost: An iterator of a vector of std::string works perfectly unless there is a function call (Z_UB->set() ) before it++. Here's the code:
std::vector< std::string >::iterator it = ...
2
votes
3answers
1k views
This story was invalidated because: The object at app_url doesn't have a title
From the last two days, my Facebook application showed some weird text like on my application's usage story feeds:
This story was invalidated because: The object at ...
2
votes
2answers
82 views
How to detect a control being invalidated?
I'm implementing producer/consumer problem. the code looks like this:
void producer()
{
// produce item
// update some control in form
}
void consumer()
{
// consume item
// update some ...
2
votes
4answers
429 views
Problem with invalidation of STL iterators when calling erase
The STL standard defines that when an erase occurs on containers such as std::deque, std::list etc iterators are invalidated.
My question is as follows, assuming the list of integers contained in a ...
2
votes
4answers
149 views
What does container invalidation in C++ mean?
I learned today about the term invalidation in context of C++ containers. Can anyone explain what it means?
It seems like you're not allowed to modify elements of a container in some way when looping ...
1
vote
0answers
36 views
Invalidating session in struts based portlet in Jboss portal
I am working on a Portal web application which was developed with Struts Portlets in JBoss portal. It uses struts-portlet-bridge.
I was trying to add code to invalidate the session before the user ...
1
vote
1answer
91 views
JSF remove invalid component from page
i'm using JSF 1.2 with IceFaces 1.8.
On my page i got an selectOneListbox, which content (e.g. EQUAL TO, BETWEEN, IN) triggers inputText fields to be rendered. If EQUAL TO is choosen one field is ...
1
vote
1answer
193 views
JBoss TreeCache vs PojoCache when using invaludation rather than replication
We are setting up a Jboss cluster and we are building an own distributed cache solution built upon Jboss cache (Cant use it as 2nd level cache to ORM layer in our case). We want to use invalidation ...
0
votes
0answers
176 views
HttpSessionListener.sessionDestroyed(HttpSessionEvent) not always called in WAS 7.0.0.3
I have a class which implements HttpSessionListener and logs information about the creation and invalidation of sessions. Yesterday I saw that the are some records for session creation which don't ...
0
votes
4answers
411 views
How to debug/track when a dialog is invalidated?
My MFC application has a CView and a couple of floating non-modal dialogs. I am currently trying to figure why an invalidation/repaint of my view also causes the dialogs to be redrawn. This even ...
0
votes
1answer
233 views
WPF application fail to update the rectangle around the mouse pointer on click
I’m a WPF newbie. Everything is nice and shining, and I managed to write a small application that meets my needs, but I noticed that many times, for instance when I click a button or a list view, the ...
0
votes
2answers
119 views
How do I find out whether a control is currently invalidating?
I'm writing a custom DataGridView cell class that hosts a control. I'm listening to the Invalidated event to know whether I should reposition and repaint the cell, but I'm getting loops because ...