JAVA SOAP returning server message - "browser doesnot support"

hello All,

I am trying to apply AML through JAVA , but the server response is coming in table format with statement "The browser has failed the browser requirement check. Please contact your system administrator to confirm your client against the platform requirements." , I dont understand what is wrong with my code , can someone help please?

below is my code : 

public class AMLCall {

/**
* @param args
*/
public static void main(String[] args)throws Exception {
// TODO Auto-generated method stub
String innovatorServer = "">172.28.3.48/.../";
String database = "InnovatorSolutions";
String userName = "admin";
String password = "default";
String request = "<AML><Item type='PART' action='get' select='name' page='1' pagesize='5'/></AML>";

String nameSpace = "www.aras-corp.com/";
String remoteMethod = "ApplyAML";
String characterEncoding = "UTF-8";
 String SOAPmessage = "<SOAP-ENV:Envelope xmlns:SOAP-ENV='schemas.xmlsoap.org/.../' encodingStyle='schemas.xmlsoap.org/.../'><SOAP-ENV:Body><"+remoteMethod+" xmlns:m='"+nameSpace+"'>" + request + "</"+remoteMethod+"></SOAP-ENV:Body></SOAP-ENV:Envelope>";

//String SOAPmessage = "<SOAP-ENV:Envelope xmlns:SOAP-ENV='schemas.xmlsoap.org' encodingStyle='schemas.xmlsoap.org'><SOAP-ENV:Body><"+remoteMethod+" xmlns:m='"+nameSpace+"'>" + request + "</"+remoteMethod+"></SOAP-ENV:Body></SOAP-ENV:Envelope>";


// Create new URL object and HttpURLConnection object
java.net.URL url = new java.net.URL(innovatorServer);
java.net.HttpURLConnection httpConnection = (java.net.HttpURLConnection) url.openConnection();
System.out.println("Connected" + SOAPmessage);

// Convert the message to a byte array
byte[] messageBytes = SOAPmessage.getBytes();

// Set headers
httpConnection.setRequestProperty("Content-Length", String.valueOf(messageBytes.length));
httpConnection.setRequestProperty("Content-Type","text/xml; charset=" + characterEncoding + "");
httpConnection.setRequestProperty("SOAPAction", remoteMethod);
httpConnection.setRequestMethod("POST");
httpConnection.setRequestProperty("AUTHUSER", userName);
httpConnection.setRequestProperty("AUTHPASSWORD", MD5(password));
httpConnection.setRequestProperty("DATABASE", database);
httpConnection.setDoInput(true);
httpConnection.setDoOutput(true);

// Write and send the SOAP message
java.io.OutputStream out = httpConnection.getOutputStream();
out.write(messageBytes);
out.close();

// Read server response
java.io.BufferedReader in = new java.io.BufferedReader(new java.io.InputStreamReader(httpConnection.getInputStream()));
String inputLine;
while ((inputLine = in.readLine()) != null) {
System.out.println(inputLine);
}
}

public static String MD5(String s) throws Exception{
java.security.MessageDigest m = java.security.MessageDigest.getInstance("MD5");
m.update(s.getBytes(),0,s.length());
return new java.math.BigInteger(1,m.digest()).toString(16);
}

}