Re: How to show server log file on the client?

2010-07-28 Thread nacho
and if you have a timer that runs every 5 seconds for example and you call a rpc and get the last logs entries on the server? On 28 jul, 02:21, Magnus alpineblas...@googlemail.com wrote: Hi, I would like to show the contents of a log at the client side: There is a complex operation

Re: How to show server log file on the client?

2010-07-28 Thread Nick
http://logging.apache.org/chainsaw/index.html or build-your-own: // (You may need to synchronise the methods or events list, provide support for multiple HTTP sessions etc... public class BufferedAppender extends org.apache.log4j.AppenderSkeleton { private ListLoggingEvent events;

Re: How to show server log file on the client?

2010-07-28 Thread lineman78
I would prefer the log entries to be shown as they are created. I think that in this case the server has to contact the client. I have run into this use case a lot as a lot of my work has to do with operational environments. You are correct that the traditional way of doing a notification of

How to show server log file on the client?

2010-07-27 Thread Magnus
Hi, I would like to show the contents of a log at the client side: There is a complex operation (chess move analysis) on the server, triggered by a client's RPC serivce call. The operation produces a list of log entries, which should be presented at the client. My intuitive idea is to collect