[
https://issues.apache.org/jira/browse/AXIS2-6043?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17880415#comment-17880415
]
Mehmudjan Mehmet commented on AXIS2-6043:
-----------------------------------------
so I guess, there is a chance that 'this' and 'parent' are pointing at the same
object, and 'this.parent' invocation gets into an infinite loop.
[~robertlazarski] I'd like to contribute this project (mostly because I'd like
to speed up the 1.8.3 release which is a blocker for a project at my day job),
starting by this easy jira, I've forked the repo, so what are the required
steps to make a PR? tests to run, quality check, static scan, etc. etc. ?
Thanks!
> StackOverflowError in org.apache.axis2.client.Options.getSoapVersionURI()
> --------------------------------------------------------------------------
>
> Key: AXIS2-6043
> URL: https://issues.apache.org/jira/browse/AXIS2-6043
> Project: Axis2
> Issue Type: Bug
> Components: kernel
> Affects Versions: 1.7.8
> Reporter: Ralf Hauser
> Priority: Major
> Fix For: 1.8.3
>
>
> The problem still persists on line 489 of
>
> [https://github.com/apache/axis-axis2-java-core/blob/master/modules/kernel/src/org/apache/axis2/client/Options.java]
>
> currently:
>
> if (soapVersionURI == null && parent != null) {
>
> better:
>
> if (null == soapVersionURI && null != parent && this != parent) {
>
>
> see also AXIS2-3441
--
This message was sent by Atlassian Jira
(v8.20.10#820010)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]