public Profile[] findProfilesByNames(String... names) {
List<Profile> profiles = new ArrayList<Profile>();
try {
List<HttpHeader> headers = new ArrayList<HttpHeader>();
headers.add(new HttpHeader("Content-Type", "application/json"));
int namesCount = names.length;
int start = 0;
int i = 0;
do {