Return-Path: X-Original-To: apmail-axis-java-dev-archive@www.apache.org Delivered-To: apmail-axis-java-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 973D979E0 for ; Sat, 13 Aug 2011 12:47:53 +0000 (UTC) Received: (qmail 55442 invoked by uid 500); 13 Aug 2011 12:47:52 -0000 Delivered-To: apmail-axis-java-dev-archive@axis.apache.org Received: (qmail 55141 invoked by uid 500); 13 Aug 2011 12:47:51 -0000 Mailing-List: contact java-dev-help@axis.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: java-dev@axis.apache.org Delivered-To: mailing list java-dev@axis.apache.org Received: (qmail 55125 invoked by uid 99); 13 Aug 2011 12:47:50 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 13 Aug 2011 12:47:50 +0000 X-ASF-Spam-Status: No, hits=-2000.8 required=5.0 tests=ALL_TRUSTED,RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 13 Aug 2011 12:47:48 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id 326D1BB051 for ; Sat, 13 Aug 2011 12:47:27 +0000 (UTC) Date: Sat, 13 Aug 2011 12:47:27 +0000 (UTC) From: "Andreas Veithen (JIRA)" To: java-dev@axis.apache.org Message-ID: <1529897655.35880.1313239647203.JavaMail.tomcat@hel.zones.apache.org> In-Reply-To: <340666525.18615.1312853307043.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Commented] (AXIS2-5115) debug log level makes the EndpointInterfaceDescriptionImpl not initialized correctly MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/AXIS2-5115?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13084605#comment-13084605 ] Andreas Veithen commented on AXIS2-5115: ---------------------------------------- Confirmed. I see test failures in jaxws-integration when debug logs are enabled. > debug log level makes the EndpointInterfaceDescriptionImpl not initialized correctly > ------------------------------------------------------------------------------------ > > Key: AXIS2-5115 > URL: https://issues.apache.org/jira/browse/AXIS2-5115 > Project: Axis2 > Issue Type: Bug > Components: jaxws > Affects Versions: 1.6.0 > Reporter: Ivan > Labels: Geronimo > > While constructing the EndpointInterfaceDescriptionImpl instance from WSDL on the line 1222 of EndpointDescriptionImpl, if the log level is configured with debug, some internal variable like soapParameterStyle is initialized, and even after updating the SEI in the following codes, they will not be re-initialized again. > {code} > endpointInterfaceDescription = new EndpointInterfaceDescriptionImpl(this); > // Update the EndpointInterfaceDescription created with WSDL with information from the > // annotations in the SEI > ((EndpointInterfaceDescriptionImpl)endpointInterfaceDescription) > .updateWithSEI(composite.getCorrespondingClass()); > {code} > {code} > EndpointInterfaceDescriptionImpl(EndpointDescriptionImpl parent) { > parentEndpointDescription = parent; > dbc = new DescriptionBuilderComposite(); > AxisService axisService = parentEndpointDescription.getAxisService(); > if (axisService != null) { > ArrayList publishedOperations = axisService.getPublishedOperations(); > Iterator operationsIterator = publishedOperations.iterator(); > while (operationsIterator.hasNext()) { > AxisOperation axisOperation = (AxisOperation)operationsIterator.next(); > addOperation(new OperationDescriptionImpl(axisOperation, this)); > } > } > } > {code} -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe, e-mail: java-dev-unsubscribe@axis.apache.org For additional commands, e-mail: java-dev-help@axis.apache.org