Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ public static Command commandtoCommand(SOAPElement element) {
}

public static Optional<Session> getSession(SOAPElement soapHeader) {
NodeList nl = soapHeader.getElementsByTagName("Session");
NodeList nl = soapHeader.getElementsByTagNameNS("urn:schemas-microsoft-com:xml-analysis", "Session");
if (nl != null && nl.getLength() > 0) {
NamedNodeMap nnm = nl.item(0).getAttributes();
org.w3c.dom.Node n = nnm.getNamedItem("SessionId");
Expand All @@ -541,7 +541,7 @@ public static Optional<Session> getSession(SOAPElement soapHeader) {
}

public static Optional<EndSession> getEndSession(SOAPElement soapHeader) {
NodeList nl = soapHeader.getElementsByTagName("EndSession");
NodeList nl = soapHeader.getElementsByTagNameNS("urn:schemas-microsoft-com:xml-analysis", "EndSession");
if (nl != null && nl.getLength() > 0) {
NamedNodeMap nnm = nl.item(0).getAttributes();
org.w3c.dom.Node n = nnm.getNamedItem("SessionId");
Expand All @@ -560,7 +560,7 @@ public static Optional<EndSession> getEndSession(SOAPElement soapHeader) {
}

public static Optional<BeginSession> getBeginSession(SOAPElement soapHeader) {
NodeList nl = soapHeader.getElementsByTagName("BeginSession");
NodeList nl = soapHeader.getElementsByTagNameNS("urn:schemas-microsoft-com:xml-analysis", "BeginSession");
if (nl != null && nl.getLength() > 0) {
NamedNodeMap nnm = nl.item(0).getAttributes();
org.w3c.dom.Node n = nnm.getNamedItem("mustUnderstand");
Expand Down
Loading