Publish notification

 
Thread Tools Search this Thread
Special Forums UNIX and Linux Applications Publish notification
# 1  
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 ?
Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. Web Development

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 ? (1 Reply)
Discussion started by: anil529
1 Replies

2. 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

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. 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

5. 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
Login or Register to Ask a Question
Net::Rendezvous::Publish(3pm)				User Contributed Perl Documentation			     Net::Rendezvous::Publish(3pm)

NAME
Net::Rendezvous::Publish - publish Rendezvous services SYNOPSIS
use Net::Rendezvous::Publish; my $publisher = Net::Rendezvous::Publish->new or die "couldn't make a Responder object"; my $service = $publisher->publish( name => "My HTTP Server", type => '_http._tcp', port => 12345, ); while(1) { $publisher->step( 0.01 ) } DESCRIPTION
METHODS
new Creates a new publisher handle publish( %definition ) Returns a Net::Rendezvous::Publish::Service object. The following keys are meaningful in the service definition hash. name A descriptive name for the service. type The type of service. This is string of the form _service._protocol. port The port on which you're advertising the service. If you're not using a port (and instead just using mDNS as a way of propogating other service information) it's common practice to use 9 (the discard service) domain The domain in which to advertise a service. Defaults to "local." step( $seconds ) Spend at most $seconds seconds handling network events and updating internal state. TODO
At some point I may learn enough of the mDNS protocol to write a pure-perl responder. That'll be nifty. AUTHOR
Richard Clamp <richardc@unixbeard.net> COPYRIGHT
Copyright 2004, 2005, 2006, Richard Clamp. All Rights Reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSO
Net::Rendezous - for service browsing. Net::Rendezvous::Publish::Backend::* - you'll need one of these to talk to your local mDNS responder. perl v5.10.1 2010-06-07 Net::Rendezvous::Publish(3pm)