Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 45670 invoked from network); 1 Dec 2004 22:06:34 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 1 Dec 2004 22:06:34 -0000 Received: (qmail 29642 invoked by uid 500); 1 Dec 2004 22:06:31 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 29618 invoked by uid 500); 1 Dec 2004 22:06:31 -0000 Mailing-List: contact axis-dev-help@ws.apache.org; run by ezmlm Precedence: bulk Reply-To: axis-dev@ws.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list axis-dev@ws.apache.org Received: (qmail 29598 invoked by uid 99); 1 Dec 2004 22:06:31 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (hermes.apache.org: local policy) Received: from ptb-relay01.plus.net (HELO ptb-relay01.plus.net) (212.159.14.212) by apache.org (qpsmtpd/0.28) with ESMTP; Wed, 01 Dec 2004 14:06:29 -0800 Received: from [80.229.20.133] (helo=[192.168.2.68]) by ptb-relay01.plus.net with esmtp (Exim) id 1CZccC-0003wm-Be for axis-dev@ws.apache.org; Wed, 01 Dec 2004 22:06:24 +0000 Subject: Re: how I can configure commons logger in log4j.properties. From: Steve Loughran To: axis-dev@ws.apache.org Content-Type: text/plain Message-Id: <1101938783.6746.5.camel@k2> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Wed, 01 Dec 2004 22:06:23 +0000 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N On Wed, 1 Dec 2004 16:39:27 -0500, Pasula, Venugopal (Consultant) wrote: > Hi Marwan, > Thanx for responding my mail. I tried that too but it didn't work. so what > I did is I took all the axis source code and changed the references from > commons Log to log4j.Logger class. then it worked out. still I am not > understanding why it is not working for commons,logging.Log?? That was unneeded. Commons logging hands off to log4j if it is on the classpath; java1.4 logging if not. So you dont need to alter the axis code to change logging levels; that is the whole point. > Actually I am doing this debug to figure out one problem. After > processing some traction succesfully, axis is throwing a '500 Internal > server error'. that time request is reaching the request handler but not the > webservice. is there any limitation in axis to process request for certain > amount of transactions?? none known >or is there any bug in axis?? There are definitely bugs in axis, but it isnt clear that this is it. > I am getting this > error very freequently(for every 2-3 hours). please let me know if you have > any solution for this problem. > Could be the app server. is it reaching Axis itself? if axis throws a fault, we go to places in the AxisServlet that you could set breakpoints on. Is the fault a soapfault (i.e. contains structured SOAPFault data), or is it some random HTTP text? The body of the 500 error is probably your best cue to debugging it.