Re: notification system

2010-01-19 Thread Ernesto Reinaldo Barreiro
If you have a common denominator  on your pages why not have there some
panel that inform the user about new messages? e.g. with a link that opens
up some kind of modal (or non modal) window with the messages. This panel
could contain and AJAX timer that gets back to the server once in a while
and checks for new messages... If you need real time notifications then
maybe you want to use some kind of push solution.

Regards,

Ernesto

On Tue, Jan 19, 2010 at 4:33 PM, chinedu efoagui chinedub...@gmail.comwrote:

 hello

 please am trying to build a notification system on an application.I
 have completed most of
 work. where I am stuck is how to trigger events that will fire the
 notifications in the following scenerios
 1. when the user logs into the application. it informs the user of x
 number of messages.
 2. when the user session is on if a new message come it will alert the
 user.
 how do i accomplish this?please any help would be appreciated.

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




Re: notification system

2010-01-19 Thread chinedu efoagui
thank you Ernesto
I was actually looking for a push solution
but i will look at what you just described

On 1/19/10, Ernesto Reinaldo Barreiro reier...@gmail.com wrote:
 If you have a common denominator  on your pages why not have there some
 panel that inform the user about new messages? e.g. with a link that opens
 up some kind of modal (or non modal) window with the messages. This panel
 could contain and AJAX timer that gets back to the server once in a while
 and checks for new messages... If you need real time notifications then
 maybe you want to use some kind of push solution.

 Regards,

 Ernesto

 On Tue, Jan 19, 2010 at 4:33 PM, chinedu efoagui
 chinedub...@gmail.comwrote:

 hello

 please am trying to build a notification system on an application.I
 have completed most of
 work. where I am stuck is how to trigger events that will fire the
 notifications in the following scenerios
 1. when the user logs into the application. it informs the user of x
 number of messages.
 2. when the user session is on if a new message come it will alert the
 user.
 how do i accomplish this?please any help would be appreciated.

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



RE: notification system

2010-01-19 Thread Stefan Droog
Maybe you can have a look at Wicketstuff's solution:

http://wicket-stuff.svn.sourceforge.net/viewvc/wicket-stuff/trunk/wicketstuff-core/push-parent/push/


-Original Message-
From: chinedu efoagui [mailto:chinedub...@gmail.com]
Sent: Tuesday, January 19, 2010 5:05 PM
To: users@wicket.apache.org
Subject: Re: notification system

thank you Ernesto
I was actually looking for a push solution
but i will look at what you just described

On 1/19/10, Ernesto Reinaldo Barreiro reier...@gmail.com wrote:
 If you have a common denominator  on your pages why not have there some
 panel that inform the user about new messages? e.g. with a link that opens
 up some kind of modal (or non modal) window with the messages. This panel
 could contain and AJAX timer that gets back to the server once in a while
 and checks for new messages... If you need real time notifications then
 maybe you want to use some kind of push solution.

 Regards,

 Ernesto

 On Tue, Jan 19, 2010 at 4:33 PM, chinedu efoagui
 chinedub...@gmail.comwrote:

 hello

 please am trying to build a notification system on an application.I
 have completed most of
 work. where I am stuck is how to trigger events that will fire the
 notifications in the following scenerios
 1. when the user logs into the application. it informs the user of x
 number of messages.
 2. when the user session is on if a new message come it will alert the
 user.
 how do i accomplish this?please any help would be appreciated.

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org


The information contained in this communication is confidential, intended 
solely for the use of the individual or entity to whom it is addressed and may 
be legally privileged and protected by professional secrecy. Access to this 
message by anyone else is unauthorized. If you are not the intended recipient, 
any disclosure, copying, or distribution of the message, or any action or 
omission taken by you in reliance on it is prohibited and may be unlawful. 
Please immediately contact the sender if you have received this message in 
error. This email does not constitute any commitment from Cordys Holding BV or 
any of its subsidiaries except when expressly agreed in a written agreement 
between the intended recipient and Cordys Holding BV or its subsidiaries. 
Cordys is neither liable for the proper and complete transmission of the 
information contained in this communication nor for any delay in its receipt. 
Cordys does not guarantee that the integrity of this communication has been 
maintained nor that the communication is free of viruses, interceptions or 
interference. If you are not the intended recipient of this communication 
please return the communication to the sender and delete and destroy all copies.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: notification system

2010-01-19 Thread Pedro Santos
Can look how FeedbackMessages and FeedbackPanel work too

On Tue, Jan 19, 2010 at 1:33 PM, chinedu efoagui chinedub...@gmail.comwrote:

 hello

 please am trying to build a notification system on an application.I
 have completed most of
 work. where I am stuck is how to trigger events that will fire the
 notifications in the following scenerios
 1. when the user logs into the application. it informs the user of x
 number of messages.
 2. when the user session is on if a new message come it will alert the
 user.
 how do i accomplish this?please any help would be appreciated.

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




-- 
Pedro Henrique Oliveira dos Santos


Re: notification system

2010-01-19 Thread chinedu efoagui
is there any documentation on how to use the wicket stuff push solution?

On 1/19/10, Pedro Santos pedros...@gmail.com wrote:
 Can look how FeedbackMessages and FeedbackPanel work too

 On Tue, Jan 19, 2010 at 1:33 PM, chinedu efoagui
 chinedub...@gmail.comwrote:

 hello

 please am trying to build a notification system on an application.I
 have completed most of
 work. where I am stuck is how to trigger events that will fire the
 notifications in the following scenerios
 1. when the user logs into the application. it informs the user of x
 number of messages.
 2. when the user session is on if a new message come it will alert the
 user.
 how do i accomplish this?please any help would be appreciated.

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




 --
 Pedro Henrique Oliveira dos Santos


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: notification system

2010-01-19 Thread nino martinez wael
I last time I did this I ended up using
http://wicketstuff.org/wicketdojo13/?wicket:bookmarkablePage=%3Aorg.wicketstuff.dojo.examples.toaster.ToasterSample
, it's a pull solution though using a ajax timer. But I had the exact
same requirement as you or so it looks.

2010/1/19 chinedu efoagui chinedub...@gmail.com:
 hello

 please am trying to build a notification system on an application.I
 have completed most of
 work. where I am stuck is how to trigger events that will fire the
 notifications in the following scenerios
 1. when the user logs into the application. it informs the user of x
 number of messages.
 2. when the user session is on if a new message come it will alert the user.
 how do i accomplish this?please any help would be appreciated.

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org



-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



RE: notification system

2010-01-19 Thread Stefan Droog
There are some examples:

http://wicket-stuff.svn.sourceforge.net/viewvc/wicket-stuff/trunk/wicketstuff-core/push-parent/





Van: chinedu efoagui [chinedub...@gmail.com]
Verzonden: dinsdag 19 januari 2010 17:38
Aan: users@wicket.apache.org
Onderwerp: Re: notification system

is there any documentation on how to use the wicket stuff push solution?

On 1/19/10, Pedro Santos pedros...@gmail.com wrote:
 Can look how FeedbackMessages and FeedbackPanel work too

 On Tue, Jan 19, 2010 at 1:33 PM, chinedu efoagui
 chinedub...@gmail.comwrote:

 hello

 please am trying to build a notification system on an application.I
 have completed most of
 work. where I am stuck is how to trigger events that will fire the
 notifications in the following scenerios
 1. when the user logs into the application. it informs the user of x
 number of messages.
 2. when the user session is on if a new message come it will alert the
 user.
 how do i accomplish this?please any help would be appreciated.

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




 --
 Pedro Henrique Oliveira dos Santos


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org


The information contained in this communication is confidential, intended 
solely for the use of the individual or entity to whom it is addressed and may 
be legally privileged and protected by professional secrecy. Access to this 
message by anyone else is unauthorized. If you are not the intended recipient, 
any disclosure, copying, or distribution of the message, or any action or 
omission taken by you in reliance on it is prohibited and may be unlawful. 
Please immediately contact the sender if you have received this message in 
error. This email does not constitute any commitment from Cordys Holding BV or 
any of its subsidiaries except when expressly agreed in a written agreement 
between the intended recipient and Cordys Holding BV or its subsidiaries. 
Cordys is neither liable for the proper and complete transmission of the 
information contained in this communication nor for any delay in its receipt. 
Cordys does not guarantee that the integrity of this communication has been 
maintained nor that the communication is free of viruses, interceptions or 
interference. If you are not the intended recipient of this communication 
please return the communication to the sender and delete and destroy all copies.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: notification system

2010-01-19 Thread Ernesto Reinaldo Barreiro
One more thing... just take into account that using push will introduce
additional JS dependencies (dojo)... while using AJAX timer will not. If you
don't need your messages refreshed the very second they arrive then probably
the AJAX timer will be  more than enough.

Regards,

Ernesto

On Tue, Jan 19, 2010 at 5:38 PM, chinedu efoagui chinedub...@gmail.comwrote:

 is there any documentation on how to use the wicket stuff push solution?

 On 1/19/10, Pedro Santos pedros...@gmail.com wrote:
  Can look how FeedbackMessages and FeedbackPanel work too
 
  On Tue, Jan 19, 2010 at 1:33 PM, chinedu efoagui
  chinedub...@gmail.comwrote:
 
  hello
 
  please am trying to build a notification system on an application.I
  have completed most of
  work. where I am stuck is how to trigger events that will fire the
  notifications in the following scenerios
  1. when the user logs into the application. it informs the user of x
  number of messages.
  2. when the user session is on if a new message come it will alert the
  user.
  how do i accomplish this?please any help would be appreciated.
 
  -
  To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
  For additional commands, e-mail: users-h...@wicket.apache.org
 
 
 
 
  --
  Pedro Henrique Oliveira dos Santos
 

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org