m_httpStatus = httpConn.getResponseCode();
if (m_httpStatus != 200) {
System.out.println("Response: " + httpConn.getResponseMessage());
} else {
InputStream content = httpConn.openInputStream();
String xml = convertStreamToString(content);
DomProfileParser profileParser = new DomProfileParser();
profileParser.m_Xml = xml;
Profile profile = (Profile)profileParser.parse();