You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cxf.apache.org by Naresh Tallapelli <na...@gmail.com> on 2010/02/23 15:10:13 UTC

Excessive SSL warnings in logs

Hi All,

I am using cxf -2.1.2 in my web service application. I have enabled logging
interceptors for all the operations. And when web service client sends any
request to the server, following messages are getting logged all the times,


Jun 22, 2009 2:55:17 PM
org.apache.cxf.service.factory.ReflectionServiceFactoryBean
buildServiceFromClass
Jun 22, 2009 2:55:17 PM org.apache.cxf.transport.https.SSLUtils
getCiphersuites
INFO: The cipher suites have not been configured, falling back to cipher
suite filters.
Jun 22, 2009 2:55:17 PM org.apache.cxf.transport.https.SSLUtils
getCiphersuites
INFO: The cipher suite filters have not been configured, falling back to
default filters.
Jun 22, 2009 2:55:17 PM org.apache.cxf.transport.https.SSLUtils
getCiphersFromList
INFO: The cipher suites have been set to SSL_RSA_WITH_RC4_128_MD5,
SSL_RSA_WITH_RC4_128_SHA, TLS_RSA_WITH_AES_128_CBC_SHA,
TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_DSS_WITH_AES_128_CBC_SHA,
SSL_RSA_WITH_3DES_EDE_CBC_SHA, SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA,
SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA, SSL_RSA_WITH_DES_CBC_SHA,
SSL_DHE_RSA_WITH_DES_CBC_SHA, SSL_DHE_DSS_WITH_DES_CBC_SHA,
SSL_RSA_EXPORT_WITH_RC4_40_MD5, SSL_RSA_EXPORT_WITH_DES40_CBC_SHA,
SSL_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA,
SSL_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA, TLS_KRB5_WITH_RC4_128_SHA,
TLS_KRB5_WITH_RC4_128_MD5, TLS_KRB5_WITH_3DES_EDE_CBC_SHA,
TLS_KRB5_WITH_3DES_EDE_CBC_MD5, TLS_KRB5_WITH_DES_CBC_SHA,
TLS_KRB5_WITH_DES_CBC_MD5, TLS_KRB5_EXPORT_WITH_RC4_40_SHA,
TLS_KRB5_EXPORT_WITH_RC4_40_MD5, TLS_KRB5_EXPORT_WITH_DES_CBC_40_SHA,
TLS_KRB5_EXPORT_WITH_DES_CBC_40_MD5.
Jun 22, 2009 2:55:17 PM
org.apache.cxf.interceptor.LoggingOutInterceptor$LoggingCallback onClose

Is there any way to supres these messages ?. I just wan to print only soap
messages in the logs.

Any help will be much appreciated.

Thank you,
Naresh.

Re: Excessive SSL warnings in logs

Posted by Daniel Kulp <dk...@apache.org>.
Are you sure you are using Log4J for CXF logging?  (aka: followed instructions 
at: http://cxf.apache.org/docs/debugging-and-logging.html to turn on log4j)

The formatting of that log looks more like the default j.u.l logging in which 
case you would need to configure a logging.properties file for j.u.l.
   

Dan





On Wed February 24 2010 12:08:17 am Naresh Tallapelli wrote:
> I am using log4j to log the statements into a file. But when i add
> log4j.logger.org.apache.cxf.
> 
> > transport.https.SSLUtils=WARN
> 
> statement in log4j.properties also it did not work. All the below mentioned
> statements are getting logged into a file. Please let me know is there any
> other way.
> 
> Thank you,
> Naresh.
> 
> On Wed, Feb 24, 2010 at 1:58 AM, Tsering Shrestha 
<ts...@lab49.com>wrote:
> > Assuming u are using log4j, wouldn't
> > log4j.logger.org.apache.cxf.transport.https.SSLUtils=WARN
> > in the log4j.properties file not work?
> > (I am assuming that org.apache.cxf.transport.https.SSLUtils is not the
> > class which prints the soap messages)
> > 
> > -----Original Message-----
> > From: Naresh Tallapelli [mailto:naresh.tallapelli@gmail.com]
> > Sent: Tuesday, February 23, 2010 9:10 AM
> > To: users@cxf.apache.org; dev@cxf.apache.org
> > Subject: Excessive SSL warnings in logs
> > 
> > Hi All,
> > 
> > I am using cxf -2.1.2 in my web service application. I have enabled
> > logging interceptors for all the operations. And when web service client
> > sends any request to the server, following messages are getting logged
> > all the times,
> > 
> > 
> > Jun 22, 2009 2:55:17 PM
> > org.apache.cxf.service.factory.ReflectionServiceFactoryBean
> > buildServiceFromClass
> > Jun 22, 2009 2:55:17 PM org.apache.cxf.transport.https.SSLUtils
> > getCiphersuites
> > INFO: The cipher suites have not been configured, falling back to cipher
> > suite filters.
> > Jun 22, 2009 2:55:17 PM org.apache.cxf.transport.https.SSLUtils
> > getCiphersuites
> > INFO: The cipher suite filters have not been configured, falling back to
> > default filters.
> > Jun 22, 2009 2:55:17 PM org.apache.cxf.transport.https.SSLUtils
> > getCiphersFromList
> > INFO: The cipher suites have been set to SSL_RSA_WITH_RC4_128_MD5,
> > SSL_RSA_WITH_RC4_128_SHA, TLS_RSA_WITH_AES_128_CBC_SHA,
> > TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_DSS_WITH_AES_128_CBC_SHA,
> > SSL_RSA_WITH_3DES_EDE_CBC_SHA, SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA,
> > SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA, SSL_RSA_WITH_DES_CBC_SHA,
> > SSL_DHE_RSA_WITH_DES_CBC_SHA, SSL_DHE_DSS_WITH_DES_CBC_SHA,
> > SSL_RSA_EXPORT_WITH_RC4_40_MD5, SSL_RSA_EXPORT_WITH_DES40_CBC_SHA,
> > SSL_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA,
> > SSL_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA, TLS_KRB5_WITH_RC4_128_SHA,
> > TLS_KRB5_WITH_RC4_128_MD5, TLS_KRB5_WITH_3DES_EDE_CBC_SHA,
> > TLS_KRB5_WITH_3DES_EDE_CBC_MD5, TLS_KRB5_WITH_DES_CBC_SHA,
> > TLS_KRB5_WITH_DES_CBC_MD5, TLS_KRB5_EXPORT_WITH_RC4_40_SHA,
> > TLS_KRB5_EXPORT_WITH_RC4_40_MD5, TLS_KRB5_EXPORT_WITH_DES_CBC_40_SHA,
> > TLS_KRB5_EXPORT_WITH_DES_CBC_40_MD5.
> > Jun 22, 2009 2:55:17 PM
> > org.apache.cxf.interceptor.LoggingOutInterceptor$LoggingCallback onClose
> > 
> > Is there any way to supres these messages ?. I just wan to print only
> > soap messages in the logs.
> > 
> > Any help will be much appreciated.
> > 
> > Thank you,
> > Naresh.

-- 
Daniel Kulp
dkulp@apache.org
http://www.dankulp.com/blog

Re: Excessive SSL warnings in logs

Posted by Daniel Kulp <dk...@apache.org>.
Are you sure you are using Log4J for CXF logging?  (aka: followed instructions 
at: http://cxf.apache.org/docs/debugging-and-logging.html to turn on log4j)

The formatting of that log looks more like the default j.u.l logging in which 
case you would need to configure a logging.properties file for j.u.l.
   

Dan





On Wed February 24 2010 12:08:17 am Naresh Tallapelli wrote:
> I am using log4j to log the statements into a file. But when i add
> log4j.logger.org.apache.cxf.
> 
> > transport.https.SSLUtils=WARN
> 
> statement in log4j.properties also it did not work. All the below mentioned
> statements are getting logged into a file. Please let me know is there any
> other way.
> 
> Thank you,
> Naresh.
> 
> On Wed, Feb 24, 2010 at 1:58 AM, Tsering Shrestha 
<ts...@lab49.com>wrote:
> > Assuming u are using log4j, wouldn't
> > log4j.logger.org.apache.cxf.transport.https.SSLUtils=WARN
> > in the log4j.properties file not work?
> > (I am assuming that org.apache.cxf.transport.https.SSLUtils is not the
> > class which prints the soap messages)
> > 
> > -----Original Message-----
> > From: Naresh Tallapelli [mailto:naresh.tallapelli@gmail.com]
> > Sent: Tuesday, February 23, 2010 9:10 AM
> > To: users@cxf.apache.org; dev@cxf.apache.org
> > Subject: Excessive SSL warnings in logs
> > 
> > Hi All,
> > 
> > I am using cxf -2.1.2 in my web service application. I have enabled
> > logging interceptors for all the operations. And when web service client
> > sends any request to the server, following messages are getting logged
> > all the times,
> > 
> > 
> > Jun 22, 2009 2:55:17 PM
> > org.apache.cxf.service.factory.ReflectionServiceFactoryBean
> > buildServiceFromClass
> > Jun 22, 2009 2:55:17 PM org.apache.cxf.transport.https.SSLUtils
> > getCiphersuites
> > INFO: The cipher suites have not been configured, falling back to cipher
> > suite filters.
> > Jun 22, 2009 2:55:17 PM org.apache.cxf.transport.https.SSLUtils
> > getCiphersuites
> > INFO: The cipher suite filters have not been configured, falling back to
> > default filters.
> > Jun 22, 2009 2:55:17 PM org.apache.cxf.transport.https.SSLUtils
> > getCiphersFromList
> > INFO: The cipher suites have been set to SSL_RSA_WITH_RC4_128_MD5,
> > SSL_RSA_WITH_RC4_128_SHA, TLS_RSA_WITH_AES_128_CBC_SHA,
> > TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_DSS_WITH_AES_128_CBC_SHA,
> > SSL_RSA_WITH_3DES_EDE_CBC_SHA, SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA,
> > SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA, SSL_RSA_WITH_DES_CBC_SHA,
> > SSL_DHE_RSA_WITH_DES_CBC_SHA, SSL_DHE_DSS_WITH_DES_CBC_SHA,
> > SSL_RSA_EXPORT_WITH_RC4_40_MD5, SSL_RSA_EXPORT_WITH_DES40_CBC_SHA,
> > SSL_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA,
> > SSL_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA, TLS_KRB5_WITH_RC4_128_SHA,
> > TLS_KRB5_WITH_RC4_128_MD5, TLS_KRB5_WITH_3DES_EDE_CBC_SHA,
> > TLS_KRB5_WITH_3DES_EDE_CBC_MD5, TLS_KRB5_WITH_DES_CBC_SHA,
> > TLS_KRB5_WITH_DES_CBC_MD5, TLS_KRB5_EXPORT_WITH_RC4_40_SHA,
> > TLS_KRB5_EXPORT_WITH_RC4_40_MD5, TLS_KRB5_EXPORT_WITH_DES_CBC_40_SHA,
> > TLS_KRB5_EXPORT_WITH_DES_CBC_40_MD5.
> > Jun 22, 2009 2:55:17 PM
> > org.apache.cxf.interceptor.LoggingOutInterceptor$LoggingCallback onClose
> > 
> > Is there any way to supres these messages ?. I just wan to print only
> > soap messages in the logs.
> > 
> > Any help will be much appreciated.
> > 
> > Thank you,
> > Naresh.

-- 
Daniel Kulp
dkulp@apache.org
http://www.dankulp.com/blog

Re: Excessive SSL warnings in logs

Posted by Naresh Tallapelli <na...@gmail.com>.
I am using log4j to log the statements into a file. But when i add
log4j.logger.org.apache.cxf.
>
> transport.https.SSLUtils=WARN


statement in log4j.properties also it did not work. All the below mentioned
statements are getting logged into a file. Please let me know is there any
other way.

Thank you,
Naresh.



On Wed, Feb 24, 2010 at 1:58 AM, Tsering Shrestha <ts...@lab49.com>wrote:

> Assuming u are using log4j, wouldn't
> log4j.logger.org.apache.cxf.transport.https.SSLUtils=WARN
> in the log4j.properties file not work?
> (I am assuming that org.apache.cxf.transport.https.SSLUtils is not the
> class which prints the soap messages)
>
> -----Original Message-----
> From: Naresh Tallapelli [mailto:naresh.tallapelli@gmail.com]
> Sent: Tuesday, February 23, 2010 9:10 AM
> To: users@cxf.apache.org; dev@cxf.apache.org
> Subject: Excessive SSL warnings in logs
>
> Hi All,
>
> I am using cxf -2.1.2 in my web service application. I have enabled logging
> interceptors for all the operations. And when web service client sends any
> request to the server, following messages are getting logged all the times,
>
>
> Jun 22, 2009 2:55:17 PM
> org.apache.cxf.service.factory.ReflectionServiceFactoryBean
> buildServiceFromClass
> Jun 22, 2009 2:55:17 PM org.apache.cxf.transport.https.SSLUtils
> getCiphersuites
> INFO: The cipher suites have not been configured, falling back to cipher
> suite filters.
> Jun 22, 2009 2:55:17 PM org.apache.cxf.transport.https.SSLUtils
> getCiphersuites
> INFO: The cipher suite filters have not been configured, falling back to
> default filters.
> Jun 22, 2009 2:55:17 PM org.apache.cxf.transport.https.SSLUtils
> getCiphersFromList
> INFO: The cipher suites have been set to SSL_RSA_WITH_RC4_128_MD5,
> SSL_RSA_WITH_RC4_128_SHA, TLS_RSA_WITH_AES_128_CBC_SHA,
> TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_DSS_WITH_AES_128_CBC_SHA,
> SSL_RSA_WITH_3DES_EDE_CBC_SHA, SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA,
> SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA, SSL_RSA_WITH_DES_CBC_SHA,
> SSL_DHE_RSA_WITH_DES_CBC_SHA, SSL_DHE_DSS_WITH_DES_CBC_SHA,
> SSL_RSA_EXPORT_WITH_RC4_40_MD5, SSL_RSA_EXPORT_WITH_DES40_CBC_SHA,
> SSL_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA,
> SSL_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA, TLS_KRB5_WITH_RC4_128_SHA,
> TLS_KRB5_WITH_RC4_128_MD5, TLS_KRB5_WITH_3DES_EDE_CBC_SHA,
> TLS_KRB5_WITH_3DES_EDE_CBC_MD5, TLS_KRB5_WITH_DES_CBC_SHA,
> TLS_KRB5_WITH_DES_CBC_MD5, TLS_KRB5_EXPORT_WITH_RC4_40_SHA,
> TLS_KRB5_EXPORT_WITH_RC4_40_MD5, TLS_KRB5_EXPORT_WITH_DES_CBC_40_SHA,
> TLS_KRB5_EXPORT_WITH_DES_CBC_40_MD5.
> Jun 22, 2009 2:55:17 PM
> org.apache.cxf.interceptor.LoggingOutInterceptor$LoggingCallback onClose
>
> Is there any way to supres these messages ?. I just wan to print only soap
> messages in the logs.
>
> Any help will be much appreciated.
>
> Thank you,
> Naresh.
>

Re: Excessive SSL warnings in logs

Posted by Naresh Tallapelli <na...@gmail.com>.
I am using log4j to log the statements into a file. But when i add
log4j.logger.org.apache.cxf.
>
> transport.https.SSLUtils=WARN


statement in log4j.properties also it did not work. All the below mentioned
statements are getting logged into a file. Please let me know is there any
other way.

Thank you,
Naresh.



On Wed, Feb 24, 2010 at 1:58 AM, Tsering Shrestha <ts...@lab49.com>wrote:

> Assuming u are using log4j, wouldn't
> log4j.logger.org.apache.cxf.transport.https.SSLUtils=WARN
> in the log4j.properties file not work?
> (I am assuming that org.apache.cxf.transport.https.SSLUtils is not the
> class which prints the soap messages)
>
> -----Original Message-----
> From: Naresh Tallapelli [mailto:naresh.tallapelli@gmail.com]
> Sent: Tuesday, February 23, 2010 9:10 AM
> To: users@cxf.apache.org; dev@cxf.apache.org
> Subject: Excessive SSL warnings in logs
>
> Hi All,
>
> I am using cxf -2.1.2 in my web service application. I have enabled logging
> interceptors for all the operations. And when web service client sends any
> request to the server, following messages are getting logged all the times,
>
>
> Jun 22, 2009 2:55:17 PM
> org.apache.cxf.service.factory.ReflectionServiceFactoryBean
> buildServiceFromClass
> Jun 22, 2009 2:55:17 PM org.apache.cxf.transport.https.SSLUtils
> getCiphersuites
> INFO: The cipher suites have not been configured, falling back to cipher
> suite filters.
> Jun 22, 2009 2:55:17 PM org.apache.cxf.transport.https.SSLUtils
> getCiphersuites
> INFO: The cipher suite filters have not been configured, falling back to
> default filters.
> Jun 22, 2009 2:55:17 PM org.apache.cxf.transport.https.SSLUtils
> getCiphersFromList
> INFO: The cipher suites have been set to SSL_RSA_WITH_RC4_128_MD5,
> SSL_RSA_WITH_RC4_128_SHA, TLS_RSA_WITH_AES_128_CBC_SHA,
> TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_DSS_WITH_AES_128_CBC_SHA,
> SSL_RSA_WITH_3DES_EDE_CBC_SHA, SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA,
> SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA, SSL_RSA_WITH_DES_CBC_SHA,
> SSL_DHE_RSA_WITH_DES_CBC_SHA, SSL_DHE_DSS_WITH_DES_CBC_SHA,
> SSL_RSA_EXPORT_WITH_RC4_40_MD5, SSL_RSA_EXPORT_WITH_DES40_CBC_SHA,
> SSL_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA,
> SSL_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA, TLS_KRB5_WITH_RC4_128_SHA,
> TLS_KRB5_WITH_RC4_128_MD5, TLS_KRB5_WITH_3DES_EDE_CBC_SHA,
> TLS_KRB5_WITH_3DES_EDE_CBC_MD5, TLS_KRB5_WITH_DES_CBC_SHA,
> TLS_KRB5_WITH_DES_CBC_MD5, TLS_KRB5_EXPORT_WITH_RC4_40_SHA,
> TLS_KRB5_EXPORT_WITH_RC4_40_MD5, TLS_KRB5_EXPORT_WITH_DES_CBC_40_SHA,
> TLS_KRB5_EXPORT_WITH_DES_CBC_40_MD5.
> Jun 22, 2009 2:55:17 PM
> org.apache.cxf.interceptor.LoggingOutInterceptor$LoggingCallback onClose
>
> Is there any way to supres these messages ?. I just wan to print only soap
> messages in the logs.
>
> Any help will be much appreciated.
>
> Thank you,
> Naresh.
>

RE: Excessive SSL warnings in logs

Posted by Tsering Shrestha <ts...@lab49.com>.
Assuming u are using log4j, wouldn't 
log4j.logger.org.apache.cxf.transport.https.SSLUtils=WARN
in the log4j.properties file not work?
(I am assuming that org.apache.cxf.transport.https.SSLUtils is not the class which prints the soap messages)

-----Original Message-----
From: Naresh Tallapelli [mailto:naresh.tallapelli@gmail.com] 
Sent: Tuesday, February 23, 2010 9:10 AM
To: users@cxf.apache.org; dev@cxf.apache.org
Subject: Excessive SSL warnings in logs

Hi All,

I am using cxf -2.1.2 in my web service application. I have enabled logging
interceptors for all the operations. And when web service client sends any
request to the server, following messages are getting logged all the times,


Jun 22, 2009 2:55:17 PM
org.apache.cxf.service.factory.ReflectionServiceFactoryBean
buildServiceFromClass
Jun 22, 2009 2:55:17 PM org.apache.cxf.transport.https.SSLUtils
getCiphersuites
INFO: The cipher suites have not been configured, falling back to cipher
suite filters.
Jun 22, 2009 2:55:17 PM org.apache.cxf.transport.https.SSLUtils
getCiphersuites
INFO: The cipher suite filters have not been configured, falling back to
default filters.
Jun 22, 2009 2:55:17 PM org.apache.cxf.transport.https.SSLUtils
getCiphersFromList
INFO: The cipher suites have been set to SSL_RSA_WITH_RC4_128_MD5,
SSL_RSA_WITH_RC4_128_SHA, TLS_RSA_WITH_AES_128_CBC_SHA,
TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_DSS_WITH_AES_128_CBC_SHA,
SSL_RSA_WITH_3DES_EDE_CBC_SHA, SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA,
SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA, SSL_RSA_WITH_DES_CBC_SHA,
SSL_DHE_RSA_WITH_DES_CBC_SHA, SSL_DHE_DSS_WITH_DES_CBC_SHA,
SSL_RSA_EXPORT_WITH_RC4_40_MD5, SSL_RSA_EXPORT_WITH_DES40_CBC_SHA,
SSL_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA,
SSL_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA, TLS_KRB5_WITH_RC4_128_SHA,
TLS_KRB5_WITH_RC4_128_MD5, TLS_KRB5_WITH_3DES_EDE_CBC_SHA,
TLS_KRB5_WITH_3DES_EDE_CBC_MD5, TLS_KRB5_WITH_DES_CBC_SHA,
TLS_KRB5_WITH_DES_CBC_MD5, TLS_KRB5_EXPORT_WITH_RC4_40_SHA,
TLS_KRB5_EXPORT_WITH_RC4_40_MD5, TLS_KRB5_EXPORT_WITH_DES_CBC_40_SHA,
TLS_KRB5_EXPORT_WITH_DES_CBC_40_MD5.
Jun 22, 2009 2:55:17 PM
org.apache.cxf.interceptor.LoggingOutInterceptor$LoggingCallback onClose

Is there any way to supres these messages ?. I just wan to print only soap
messages in the logs.

Any help will be much appreciated.

Thank you,
Naresh.

RE: Excessive SSL warnings in logs

Posted by Tsering Shrestha <ts...@lab49.com>.
Assuming u are using log4j, wouldn't 
log4j.logger.org.apache.cxf.transport.https.SSLUtils=WARN
in the log4j.properties file not work?
(I am assuming that org.apache.cxf.transport.https.SSLUtils is not the class which prints the soap messages)

-----Original Message-----
From: Naresh Tallapelli [mailto:naresh.tallapelli@gmail.com] 
Sent: Tuesday, February 23, 2010 9:10 AM
To: users@cxf.apache.org; dev@cxf.apache.org
Subject: Excessive SSL warnings in logs

Hi All,

I am using cxf -2.1.2 in my web service application. I have enabled logging
interceptors for all the operations. And when web service client sends any
request to the server, following messages are getting logged all the times,


Jun 22, 2009 2:55:17 PM
org.apache.cxf.service.factory.ReflectionServiceFactoryBean
buildServiceFromClass
Jun 22, 2009 2:55:17 PM org.apache.cxf.transport.https.SSLUtils
getCiphersuites
INFO: The cipher suites have not been configured, falling back to cipher
suite filters.
Jun 22, 2009 2:55:17 PM org.apache.cxf.transport.https.SSLUtils
getCiphersuites
INFO: The cipher suite filters have not been configured, falling back to
default filters.
Jun 22, 2009 2:55:17 PM org.apache.cxf.transport.https.SSLUtils
getCiphersFromList
INFO: The cipher suites have been set to SSL_RSA_WITH_RC4_128_MD5,
SSL_RSA_WITH_RC4_128_SHA, TLS_RSA_WITH_AES_128_CBC_SHA,
TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_DSS_WITH_AES_128_CBC_SHA,
SSL_RSA_WITH_3DES_EDE_CBC_SHA, SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA,
SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA, SSL_RSA_WITH_DES_CBC_SHA,
SSL_DHE_RSA_WITH_DES_CBC_SHA, SSL_DHE_DSS_WITH_DES_CBC_SHA,
SSL_RSA_EXPORT_WITH_RC4_40_MD5, SSL_RSA_EXPORT_WITH_DES40_CBC_SHA,
SSL_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA,
SSL_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA, TLS_KRB5_WITH_RC4_128_SHA,
TLS_KRB5_WITH_RC4_128_MD5, TLS_KRB5_WITH_3DES_EDE_CBC_SHA,
TLS_KRB5_WITH_3DES_EDE_CBC_MD5, TLS_KRB5_WITH_DES_CBC_SHA,
TLS_KRB5_WITH_DES_CBC_MD5, TLS_KRB5_EXPORT_WITH_RC4_40_SHA,
TLS_KRB5_EXPORT_WITH_RC4_40_MD5, TLS_KRB5_EXPORT_WITH_DES_CBC_40_SHA,
TLS_KRB5_EXPORT_WITH_DES_CBC_40_MD5.
Jun 22, 2009 2:55:17 PM
org.apache.cxf.interceptor.LoggingOutInterceptor$LoggingCallback onClose

Is there any way to supres these messages ?. I just wan to print only soap
messages in the logs.

Any help will be much appreciated.

Thank you,
Naresh.