Java HttpURLConnection Create getHttpURLConnection(String uri, String soapAction, boolean soap12)

Here you can find the source of getHttpURLConnection(String uri, String soapAction, boolean soap12)

Description

Sets up a connection to an HTTP endpoint

License

Apache License

Declaration

public static HttpURLConnection getHttpURLConnection(String uri, String soapAction, boolean soap12)
        throws Exception 

Method Source Code

//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);
    }
}

Related

  1. getHttpConnection(URL url)
  2. getHttpConnection(URL url, int expectedResponseCode, int connectionTimeout)
  3. getHttpURLConnection(@Nonnull String urlStr)
  4. getHttpURLConnection(String postUrl)
  5. getHttpURLConnection(String strUrl)
  6. getHttpUrlConnection(String url)
  7. getHttpURLConnection(String urlAsString)
  8. getHttpUrlConnection(String urlStr)
  9. getHttpUrlConnection(URL url)