329330331332333334335336337338
private static String toString(InputStream stream) { try { return new BufferedReader(new InputStreamReader(stream)).readLine(); } catch (IOException wontHappen) { throw new FaultException(wontHappen); } finally { IOUtils.closeQuietly(stream); } }