Here you can find the source of getHttpURLConnection(String uri, String soapAction, boolean soap12)
public static HttpURLConnection getHttpURLConnection(String uri, String soapAction, boolean soap12) throws Exception
//package com.java2s; /*/* w w w . ja v a2s. co m*/ * Copyright 2004,2005 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import java.net.HttpURLConnection; import java.net.URL; public class Main { /** * Sets up a connection to an HTTP endpoint * @return */ public static HttpURLConnection getHttpURLConnection(String uri, String soapAction, boolean soap12) throws Exception { // Open a connection to the endpoint URL endPointURL = new URL(uri); HttpURLConnection connection = (HttpURLConnection) endPointURL.openConnection(); connection.setDoOutput(true); connection.setDoInput(true); connection.setRequestMethod("POST"); connection.addRequestProperty("SOAPAction", soapAction); if (soap12) { connection.setRequestProperty("Content-Type", "application/soap+xml"); } else { connection.setRequestProperty("Content-Type", "text/xml"); } connection.connect(); return connection; } /** * A Soap 11 connection * @throws Exception */ public static HttpURLConnection getHttpURLConnection(String uri, String soapAction) throws Exception { // Open a connection to the endpoint return getHttpURLConnection(uri, soapAction, false); } }