Mail with attachment

2009-12-10 Thread Markus Mehrwald
Hi,

I have a problem with the commons mail package. I send mails with
attachments but only the attachment from the first mail comes in. The
second mail is there but without attachment. When I use the debugger it
works so it seems for me that it is a time problem. Do I have the
possibility to get informed when the first mail is gone and send then
the second one?

Thanks,
Markus

-
To unsubscribe, e-mail: user-unsubscr...@commons.apache.org
For additional commands, e-mail: user-h...@commons.apache.org



how to change log label at the run time

2009-12-10 Thread vijay shanker
Hi all

I am using commons-logging with aspectj.

Once I created a log object by below code


private Log log = LogFactory.getLog(LoggingAspect.class);


When i print log with this object; i get output like


2009-12-11 11:31:41,558 INFO  [LoggingAspect] com.stpl.pocs.logs.BaseService
: Entering method getName.
2009-12-11 11:31:41,558 INFO  [LoggingAspect] com.stpl.pocs.logs.BaseService
: Exiting method getName.


Is there any way I can change the  [LoggingAspect] to the class name
 com.stpl.pocs.logs.BaseService.

So this is requirement I presume is to change log label dynamically.

Please suggest.

Regards,
Vijay Shanker Dubey


Re: how to change log label at the run time

2009-12-10 Thread Jörg Schaible
Hi Vijay,

vijay shanker wrote at Freitag, 11. Dezember 2009 07:07:

 Hi all
 
 I am using commons-logging with aspectj.
 
 Once I created a log object by below code
 
 
 private Log log = LogFactory.getLog(LoggingAspect.class);
 
 
 When i print log with this object; i get output like
 
 
 2009-12-11 11:31:41,558 INFO  [LoggingAspect]
 com.stpl.pocs.logs.BaseService
 : Entering method getName.
 2009-12-11 11:31:41,558 INFO  [LoggingAspect]
 com.stpl.pocs.logs.BaseService
 : Exiting method getName.
 
 
 Is there any way I can change the  [LoggingAspect] to the class name
  com.stpl.pocs.logs.BaseService.
 
 So this is requirement I presume is to change log label dynamically.
 
 Please suggest.

Actually you cannot. Simply because commons-logging does not log ;-)

See, commons-logging is only a bridge for various logging systems. Therefore 
you have to look into the documentation of the log implementation in use, 
how to configure the output. Looking at yours, the log seems to be handled 
by the JDK logger, so consult the JDK documentation for the logger 
configuration. Or select a logging implementation you're more familiar with: 
http://commons.apache.org/logging/commons-
logging-1.1.1/guide.html#Configuration

- Jörg


-
To unsubscribe, e-mail: user-unsubscr...@commons.apache.org
For additional commands, e-mail: user-h...@commons.apache.org



Re: how to change log label at the run time

2009-12-10 Thread vijay shanker
Hi joerg;

I am using log4j as log4j as log implementation.

Can you suggest any thing relevant to my situation and requirement



Regards,
Vijay Shanker Dubey
Ph: +91-9818311884


2009/12/11 Jörg Schaible joerg.schai...@gmx.de

 Hi Vijay,

 vijay shanker wrote at Freitag, 11. Dezember 2009 07:07:

  Hi all
 
  I am using commons-logging with aspectj.
 
  Once I created a log object by below code
 
  
  private Log log = LogFactory.getLog(LoggingAspect.class);
  
 
  When i print log with this object; i get output like
 
  
  2009-12-11 11:31:41,558 INFO  [LoggingAspect]
  com.stpl.pocs.logs.BaseService
  : Entering method getName.
  2009-12-11 11:31:41,558 INFO  [LoggingAspect]
  com.stpl.pocs.logs.BaseService
  : Exiting method getName.
  
 
  Is there any way I can change the  [LoggingAspect] to the class name
   com.stpl.pocs.logs.BaseService.
 
  So this is requirement I presume is to change log label dynamically.
 
  Please suggest.

 Actually you cannot. Simply because commons-logging does not log ;-)

 See, commons-logging is only a bridge for various logging systems.
 Therefore
 you have to look into the documentation of the log implementation in use,
 how to configure the output. Looking at yours, the log seems to be handled
 by the JDK logger, so consult the JDK documentation for the logger
 configuration. Or select a logging implementation you're more familiar
 with:
 http://commons.apache.org/logging/commons-
 logging-1.1.1/guide.html#Configuration

 - Jörg


 -
 To unsubscribe, e-mail: user-unsubscr...@commons.apache.org
 For additional commands, e-mail: user-h...@commons.apache.org