11-29-2010 05:47 AM
12-01-2010 07:28 PM
String xml = "Your xml here";
HttpURLConnection connection = new HttpURLConnection("http://www.yoururl.com");
connection.setRequestMethod("POST");
connection.setRequestProperty("Content-Type", "text/xml; charset=\"utf-8\"");
connection.setDoOutput(true);
connection.OutputStreamWriter out = new OutputStreamWriter(c.getOutputStream(),
"UTF8");
out.write(xml);
out.close();
12-02-2010 03:50 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.