Sponsored Content
Full Discussion: Publish notification
Top Forums Web Development Publish notification Post 302997971 by anil529 on Tuesday 23rd of May 2017 02:31:57 PM
Old 05-23-2017
Publish notification

hi All

I use tomcat server to publish war file. How to send an notification to users via the application screen and it should dismiss once user clicks X mark.

Any suggestions ?
 

5 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Publish FrontPage from Command Line

Does anyone know how to publish a FrontPage site from a command line? Thanks Stewart (2 Replies)
Discussion started by: SHaddock
2 Replies

2. UNIX for Dummies Questions & Answers

To publish xml in a textarea

Hi everyone, When I use echo "<textarea cols ="75" rows ="20" align="center">" echo |cat xyz.sh echo "</textarea>" I am able to view the file xyz.sh in the text area but when I try to echo an xml echo "<textarea cols ="75" rows ="20" align="center">" echo |cat xml.txt echo... (3 Replies)
Discussion started by: Kashnaz
3 Replies

3. Programming

Unable to publish data

Hi All, In my application, we are using Publish/subscribe model implemented in JAVA and when I implemented it on windows to windows os,it is working fine and able to publish the right data and even when I am trying the same between two different OS i.e between Windows and Solaris sparc or... (1 Reply)
Discussion started by: smartgupta
1 Replies

4. Programming

Publish notification via application front end

hi All I use tomcat server to publish war file. How to send an notification to users via the application screen and it should dismiss once user clicks X mark. Any suggestions ? (0 Replies)
Discussion started by: anil529
0 Replies

5. UNIX and Linux Applications

Publish notification

hi All I use tomcat server to publish war file. How to send an notification to users via the application screen and it should dismiss once user clicks X mark. Any suggestions ? (0 Replies)
Discussion started by: anil529
0 Replies
LISTEN(7)							   SQL Commands 							 LISTEN(7)

NAME
LISTEN - listen for a notification SYNOPSIS
LISTEN name DESCRIPTION
LISTEN registers the current session as a listener on the notification condition name. If the current session is already registered as a listener for this notification condition, nothing is done. Whenever the command NOTIFY name is invoked, either by this session or another one connected to the same database, all the sessions cur- rently listening on that notification condition are notified, and each will in turn notify its connected client application. See the dis- cussion of NOTIFY for more information. A session can be unregistered for a given notify condition with the UNLISTEN command. A session's listen registrations are automatically cleared when the session ends. The method a client application must use to detect notification events depends on which PostgreSQL application programming interface it uses. With the libpq library, the application issues LISTEN as an ordinary SQL command, and then must periodically call the function PQno- tifies to find out whether any notification events have been received. Other interfaces such as libpgtcl provide higher-level methods for handling notify events; indeed, with libpgtcl the application programmer should not even issue LISTEN or UNLISTEN directly. See the docu- mentation for the interface you are using for more details. NOTIFY [notify(7)] contains a more extensive discussion of the use of LISTEN and NOTIFY. PARAMETERS
name Name of a notify condition (any identifier). EXAMPLES
Configure and execute a listen/notify sequence from psql: LISTEN virtual; NOTIFY virtual; Asynchronous notification "virtual" received from server process with PID 8448. COMPATIBILITY
There is no LISTEN statement in the SQL standard. SEE ALSO
NOTIFY [notify(7)], UNLISTEN [unlisten(7)] SQL - Language Statements 2010-05-14 LISTEN(7)
All times are GMT -4. The time now is 01:02 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy