We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With org.apache.axis2.saaj.SOAPMessageImpl there is NullPointerException at StandardXRoadConsumerMessageExtractor at RR76AndmIK response parsing:
for (int i = 0; i < kehaNodes.getLength(); i++) { if (kehaNodes.item(i).getParentNode().getParentNode().equals(body)) {
. . .
First node is whitespace node where parent node is null.
It works with following modification:
if (kehaNodes.item(i).getParentNode() != null && kehaNodes.item(i).getParentNode().getParentNode() != null && kehaNodes.item(i).getParentNode().getParentNode().equals(body)) {
The text was updated successfully, but these errors were encountered:
No branches or pull requests
With org.apache.axis2.saaj.SOAPMessageImpl there is NullPointerException at StandardXRoadConsumerMessageExtractor at RR76AndmIK response parsing:
. . .
First node is whitespace node where parent node is null.
It works with following modification:
The text was updated successfully, but these errors were encountered: