Skip to content

Commit

Permalink
HPCC4J-631 Provide meaningful version error message
Browse files Browse the repository at this point in the history
- Ensures version response is not HTML based
- Adds relevant message to parsing errors

Signed-off-by: Rodrigo Pastrana <[email protected]>
  • Loading branch information
rpastrana committed Aug 23, 2024
1 parent 5551ce8 commit 9dc1a1b
Showing 1 changed file with 25 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package org.hpccsystems.ws.client;

import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URL;
import java.nio.charset.StandardCharsets;
Expand Down Expand Up @@ -159,24 +160,43 @@ private String getTargetHPCCBuildVersionString() throws Exception
if (wsconn == null)
throw new Exception("Cannot get target HPCC build version, client connection has not been initialized.");

String response = wsconn.sendGetRequest("WsSMC/Activity?rawxml_");//throws
String response = wsconn.sendGetRequest("WsSMC/Activity?rawxml_");//throws IOException if http != ok

if (response == null || response.isEmpty())
throw new Exception("Cannot get target HPCC build version, received empty " + wsconn.getBaseUrl() + " wssmc/activity response");

if (response.startsWith("<html")) //crude, but can prevent wasteful overhead
throw new Exception("Received invalid HTML response, expected XML HPCC build version: \"" + response.substring(0, 100) + "\"...");

setUpBuildVersionParser();

String versionString = null;
Document document = null;
synchronized(m_XMLParser)
try
{
document = m_XMLParser.parse(new ByteArrayInputStream(response.getBytes(StandardCharsets.UTF_8)));
synchronized(m_XMLParser)
{
document = m_XMLParser.parse(new ByteArrayInputStream(response.getBytes(StandardCharsets.UTF_8)));
}
}
catch (Exception e)
{
throw new Exception("Could not parse XML HPCC Version response: \"" + response.substring(0, 100) + "\"...", e);
}

if (document == null)
throw new Exception("Cannot parse HPCC build version response.");
throw new Exception("Could not parse XML HPCC Version response: \"" + response.substring(0, 100) + "\"...");

return (String) m_buildVersionXpathExpression.evaluate(document,XPathConstants.STRING);
try
{
versionString = (String) m_buildVersionXpathExpression.evaluate(document,XPathConstants.STRING);
}
catch (XPathExpressionException e)
{
throw new Exception("Could not extract build version from HPCC Build/Version response: \"" + response + "\"");
}

return versionString;
}

public SpanBuilder getWsClientSpanBuilder(String spanName)
Expand Down

0 comments on commit 9dc1a1b

Please sign in to comment.