Skip to content

Commit

Permalink
Pull request #784: fix npe
Browse files Browse the repository at this point in the history
Merge in MC/connect from ROCKSOLID-12154-fix-npe-from-soapui-removal to development

* commit '236575c4ba3b73a291447f02abe4269d242b9af2':
  fix npe
  • Loading branch information
lmillergithub authored and narupley committed Jan 17, 2024
2 parents 0223229 + 236575c commit 196f418
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ private String buildEnvelope(Definition definition, String operationName, boolea
String name = node.getAttributes().getNamedItem("name") != null ? node.getAttributes().getNamedItem("name").getNodeValue() : null;

// go through child nodes of all elements related to operationName
if (name.equals(operationName)) {
if (StringUtils.equalsIgnoreCase(name, operationName)) {
while (node.getChildNodes().getLength() != 0) {
int j = node.getChildNodes().getLength();
for (int k = 1; k < j; k += 2) {
Expand Down

0 comments on commit 196f418

Please sign in to comment.