you can also just use NFS and mount the log dir on another server. or use Syslog Appender http://jakarta.apache.org/log4j/docs/api/org/apache/log4j/net/SyslogAppender.html
or use socket appender http://jakarta.apache.org/log4j/docs/api/org/apache/log4j/net/SocketAppender.html or use jdbc appender http://jakarta.apache.org/log4j/docs/api/org/apache/log4j/jdbc/JDBCAppender.html or use JMS Appender http://jakarta.apache.org/log4j/docs/api/org/apache/log4j/net/JMSAppender.html or send mail with SMTP appender http://jakarta.apache.org/log4j/docs/api/org/apache/log4j/net/SMTPAppender.html all these do some sort of logging over a network, depends on your goals. -jp On Tue, 27 Aug 2002, Aghanian, Rostom wrote: > You can write your own Appender object which can send logging events over > the network. > For example, one thing we have implemented here is an HTTPAppender (extended > from AppenderSkeleton) which sends the Log4J LoggingEvent object over the > wire using the HTTP protocol. And on the recieving end we have an HTTP > server running a servlet, listening for incoming messages. Works out pretty > nicely for the most part. There are few issues with this method but you > should be fine if you aren't doing anything complex and are just logging > simple messages. > > Rostom Aghanian > > > -----Original Message----- > From: Hrishikesh Thombare [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, August 27, 2002 9:45 AM > To: [EMAIL PROTECTED] > Subject: query > > > hi > i am new to this group and i have one question. does > Log4J write over the network. i have an application > running on unix server and i want to see the log > messages on my local machine. how can i do that using > Log4J? > thank you in advance. > hrishi > > ===== > Hi > I am currently working as a Java consultant with FedEx, Orlando, FL and > looking for better opportunity. > Please find the resume attached with this mail and let me know if you have > any openings suitable to my experience. > Thank you. > Hrishi > ph: 407-661-3107 > > __________________________________________________ > Do You Yahoo!? > Yahoo! Finance - Get real-time stock quotes > http://finance.yahoo.com > > -- > To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> > > -- > To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> > -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
