[
https://issues.apache.org/jira/browse/AXIS2-5115?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13085033#comment-13085033
]
Hudson commented on AXIS2-5115:
-------------------------------
Integrated in axis2-1.6 #71 (See [https://builds.apache.org/job/axis2-1.6/71/])
AXIS2-5115: Merged r1157373, r1157415 and r1157424 to the 1.6 branch.
veithen :
Files :
*
/axis/axis2/java/core/branches/1_6/modules/metadata/src/org/apache/axis2/jaxws/description/impl/EndpointInterfaceDescriptionImpl.java
*
/axis/axis2/java/core/branches/1_6/modules/jaxws-integration/test/org/apache/axis2/jaxws/jaxb/string/JAXBStringUTF16Tests.java
*
/axis/axis2/java/core/branches/1_6/modules/metadata/src/org/apache/axis2/jaxws/description/impl/OperationDescriptionImpl.java
*
/axis/axis2/java/core/branches/1_6/modules/jaxws-integration/test/org/apache/axis2/jaxws/framework/AbstractTestCase.java
* /axis/axis2/java/core/branches/1_6
> 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: [email protected]
For additional commands, e-mail: [email protected]