Browse Source

Merge pull request #4645 from afishbeck/soapTestMsgGT9623

HPCC-9623 WsEcl xml test message shouldn't close tag prematurely

Reviewed-By: Richard Chapman <rchapman@hpccsystems.com>
Richard Chapman 12 years ago
parent
commit
4734a86cf1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      esp/services/ws_ecl/ws_ecl_service.cpp

+ 1 - 1
esp/services/ws_ecl/ws_ecl_service.cpp

@@ -603,7 +603,7 @@ static void buildReqXml(StringStack& parent, IXmlType* type, StringBuffer& out,
             parent.push_back(typeName);
             parent.push_back(typeName);
 
 
         int startlen = out.length();
         int startlen = out.length();
-        appendXMLOpenTag(out, tag);
+        appendXMLOpenTag(out, tag, NULL, false);
         if (ns)
         if (ns)
             out.append(' ').append(ns);
             out.append(' ').append(ns);
         out.append(">");
         out.append(">");