RE: Using MS Exchange Server for email

2002-02-22 Thread Mark Derricutt
AFAIK smtp is used everywhere on the net, at least, between all the servers I see in my received headers. Unless someones using UUCP still... But I welcome education :P --On Friday, February 22, 2002 15:49:29 -0700 Eric George <[EMAIL PROTECTED]> wrote: > I can't say for sure, but I think t

Re: Working with two or more categories

2002-02-22 Thread Steve Ebersole
Here is an example (I'll use the new "Logger" syntax): # # Define the root logger # log4j.rootLogger=DEBUG, STDOUT log4j.appender.STDOUT=org.apache.log4j.ConsoleAppender log4j.a

Re: JMX support in 1.2beta3

2002-02-22 Thread Steve Ebersole
What still needs to be done on them. I could do some work on them starting next weekend. - Original Message - From: "Ceki Gülcü" <[EMAIL PROTECTED]> To: "Log4J Users List" <[EMAIL PROTECTED]> Sent: Wednesday, February 20, 2002 11:33 PM Subject: Re: JMX support in 1.2beta3 > Charlie, >

Re: log4j and weblogic 6.1

2002-02-22 Thread Steve Ebersole
I took a different spin on option #2. I have a logging.ear file which is deployed into the app server. It is made up of a "JMS-listening" MessageDrivenBean a singleton for processing the incoming JMS messages and a servlet for administrating/viewing log files. The singleton does some separate p

RE: Using MS Exchange Server for email

2002-02-22 Thread Eric George
On Fri, 2002-02-22 at 14:58, Jon Skeet wrote: > Actually if your mail server administrator is following MS security > guidelines, SMTP will be *disabled* on your Exchange server. Really? Completely disabled rather than just disabled in terms of being an open relay (which is cle

RE: Using MS Exchange Server for email

2002-02-22 Thread Eric George
I can't say for sure, but I think that MTAs (Mail Transfer Agents) use a different protocol to speak to each other than client apps use to speak to the MTAs (SMTP, POP, IMAP). Maybe somebody on the list who knows more about the intricacies of mail can clarify this for us? On Fri, 2002-02-22 at 1

Re: log4j:ERROR Could not parse input source[org.xml.sax.InputSource@42ee15]

2002-02-22 Thread Kevin Steppe
Your error is: "java.util.zip.ZipException: The system cannot find the file specified". Sounds like the system wants logConfiguration.xml the .ear file and can't find it. I recommend you ensure that logConfiguration.xml is in the proper .ear file. Kevin Tim Wei-TM wrote: > Hi all, > > I got

RE: Using MS Exchange Server for email

2002-02-22 Thread Mark Derricutt
If its compleatly disabled, how does external internet based email enter the server? --On Friday, February 22, 2002 21:58:44 + Jon Skeet <[EMAIL PROTECTED]> wrote: >> Actually if your mail server administrator is following MS security >> guidelines, SMTP will be *disabled* on your Exchange

RE: Using MS Exchange Server for email

2002-02-22 Thread Jon Skeet
> Actually if your mail server administrator is following MS security > guidelines, SMTP will be *disabled* on your Exchange server. Really? Completely disabled rather than just disabled in terms of being an open relay (which is clearly very bad)? > The easiest thing for you, the developer wo

RE: Using MS Exchange Server for email

2002-02-22 Thread Eric George
Actually if your mail server administrator is following MS security guidelines, SMTP will be *disabled* on your Exchange server. The easiest thing for you, the developer would be to get SMTP turned back on. However, it would definitely be nice to see an IMAPAppender or for those out there that

Working with two or more categories

2002-02-22 Thread Nair, Ranjini
Hi, Is it possible to have two or more categories in a properties file and get the log output to go to different log files based on category? How should the categories be defined to do this? Thanks, Ranjini. -- To unsubscribe, e-mail: For additional commands, e-m

RE: Using MS Exchange Server for email

2002-02-22 Thread Sara Prigge
You're right. I'm not the mail server expert so I didn't know that. Thanks! -Original Message- From: Jon Skeet [mailto:[EMAIL PROTECTED]] Sent: Friday, February 22, 2002 10:09 AM To: Log4J Users List Subject: RE: Using MS Exchange Server for email > I would like to use log4j to send e

RE: Using MS Exchange Server for email

2002-02-22 Thread Jon Skeet
> I would like to use log4j to send email upon critical > failures, however I'm > using MS Exchange Server (IMAP), so the SMTPAppender will not > work for me. > Has anyone done this? If so, I would be grateful for any > help/suggestions. > This is my first try at this so any help is appreciate

Using MS Exchange Server for email

2002-02-22 Thread Sara Prigge
Hello- I would like to use log4j to send email upon critical failures, however I'm using MS Exchange Server (IMAP), so the SMTPAppender will not work for me. Has anyone done this? If so, I would be grateful for any help/suggestions. This is my first try at this so any help is appreciated. I hav

Re: log4j and weblogic 6.1

2002-02-22 Thread Reg Sherwood
Hi, I have been investigating using log4j within the J2EE environment. I can get the log4j package to work, but I cannot do the following: For discussion purposes I want to setup my various applications within the App Server (in my case BEA 6.1 SP2) as follows: APP1.EAR + Servlet1.WAR APP

Re: log4j:ERROR Could not parse input source [org.xml.sax.InputSource @42ee15]

2002-02-22 Thread Scott Farquhar
I think that this line contains your answer: "The system cannot find the file specified" You have specified the location of the file wrong. Tim Wei-TM wrote: > Hi all, > > I got the "Could not parse input source" error as attached. I am using > weblogic5.1 for my testing environment. As you

Re: Log4j cannot find appenders

2002-02-22 Thread Reg Sherwood
Hi, I don't think so. What I have done is, placed a simple facade around the log4j package. Then in my test client I simply reference the facade to do the logging.. as shown below. Everything, including the logging is executing within the same thread. public class BatchTestClient { priva

Re: log4j and weblogic 6.1

2002-02-22 Thread Bobby Nations
Deepak, I've been using log4j in my web app and ejb's under BEA weblogic 6.1 on a linux box for some time with little trouble. The jar file is in the classpath for the server itself as well as the web-app's WEB-INF/lib directory. One of these days, I'm going to get around to using the Class

log4j:ERROR Could not parse input source [org.xml.sax.InputSource@42ee15]

2002-02-22 Thread Tim Wei-TM
Hi all, I got the "Could not parse input source" error as attached. I am using weblogic5.1 for my testing environment. As you can see that I am using DailyRollingFileAppenderExt from the file appender. The configuration file logConfiguration.xml is also attached. Anybody has any insights on these

DriverManager.setLogStream(???)

2002-02-22 Thread Ali Mesbah
I am using JDBC in my application. I was wondering if I could use log4j (a category) to pass to DriverManager.setLogStream method to get the log messages from the DriverManager in my log4j log-file. ??? The default is as follows in my application: DriverManager.setLogStream(System.Out) thanks,

Urgent - How to send output of different priorities/categories to different appenders ?

2002-02-22 Thread B Manikandan
Hi, I need to send the log messages from different categories to go to different appenders.If I have a log4j.rootCategory=DEBUG,console then any other appender addition for some category is not reflected. One more functionality that is needed is to send output of a particular priority of a