private static StringBuffer getRawAccountXML(String username, String password) {
String suffix = JConfig.queryConfiguration("ebay.browse.site");
if(suffix != null && !suffix.equals("0")) {
suffix = "?browse_to=" + suffix;
} else suffix = "";
HttpInterface http = new Http();
http.setAuthInfo(username, password);
return http.get("https://my.jbidwatcher.com/services/account" + suffix);
}