1 28 29 import java.io.File ; 30 31 import org.apache.commons.httpclient.HttpClient; 32 import org.apache.commons.httpclient.methods.FileRequestEntity; 33 import org.apache.commons.httpclient.methods.PostMethod; 34 import org.apache.commons.httpclient.methods.RequestEntity; 35 36 49 public class PostSOAP { 50 51 62 public static void main(String [] args) throws Exception { 63 if (args.length != 3) { 64 System.out.println("Usage: java -classpath <classpath> [-Dorg.apache.commons.logging.simplelog.defaultlog=<loglevel>] PostSOAP <url> <soapaction> <filename>]"); 65 System.out.println("<classpath> - must contain the commons-httpclient.jar and commons-logging.jar"); 66 System.out.println("<loglevel> - one of error, warn, info, debug, trace"); 67 System.out.println("<url> - the URL to post the file to"); 68 System.out.println("<soapaction> - the SOAP action header value"); 69 System.out.println("<filename> - file to post to the URL"); 70 System.out.println(); 71 System.exit(1); 72 } 73 String strURL = args[0]; 75 String strSoapAction = args[1]; 77 String strXMLFilename = args[2]; 79 File input = new File (strXMLFilename); 80 PostMethod post = new PostMethod(strURL); 82 RequestEntity entity = new FileRequestEntity(input, "text/xml; charset=ISO-8859-1"); 85 post.setRequestEntity(entity); 86 post.setRequestHeader("SOAPAction", strSoapAction); 88 HttpClient httpclient = new HttpClient(); 90 try { 92 int result = httpclient.executeMethod(post); 93 System.out.println("Response status code: " + result); 95 System.out.println("Response body: "); 97 System.out.println(post.getResponseBodyAsString()); 98 } finally { 99 post.releaseConnection(); 101 } 102 } 103 } 104
| Popular Tags
|