/* * Copyright (c) 2005, 2006, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this * particular file as subject to the "Classpath" exception as provided * by Oracle in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ package com.sun.xml.internal.ws.transport.http.client; import com.sun.xml.internal.ws.api.EndpointAddress; import com.sun.xml.internal.ws.api.message.Packet; import com.sun.xml.internal.ws.client.BindingProviderProperties; import static com.sun.xml.internal.ws.client.BindingProviderProperties.*; import com.sun.xml.internal.ws.client.ClientTransportException; import com.sun.xml.internal.ws.resources.ClientMessages; import com.sun.xml.internal.ws.transport.Headers; import com.sun.xml.internal.ws.developer.JAXWSProperties; import com.sun.xml.internal.ws.util.RuntimeVersion; import com.sun.istack.internal.Nullable; import com.sun.istack.internal.NotNull; import javax.net.ssl.SSLSocketFactory; import javax.net.ssl.HttpsURLConnection; import javax.net.ssl.HostnameVerifier; import javax.net.ssl.SSLSession; import static javax.xml.bind.DatatypeConverter.printBase64Binary; import javax.xml.bind.JAXBContext; import javax.xml.bind.JAXBException; import javax.xml.ws.BindingProvider; import static javax.xml.ws.BindingProvider.SESSION_MAINTAIN_PROPERTY; import javax.xml.ws.WebServiceException; import javax.xml.ws.handler.MessageContext; import java.io.FilterInputStream; import java.io.FilterOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.net.HttpURLConnection; import java.util.Collections; import java.util.List; import java.util.Map; import java.util.zip.GZIPOutputStream; import java.util.zip.GZIPInputStream; /** * TODO: this class seems to be pointless. Just merge it with {@link HttpTransportPipe}. * * @author WS Development Team */ final class HttpClientTransport { // Need to use JAXB first to register DatatypeConverter static { try { JAXBContext.newInstance().createUnmarshaller(); } catch(JAXBException je) { // Nothing much can be done. Intentionally left empty } } /*package*/ int statusCode; /*package*/ String statusMessage; private final Map<String, List<String>> reqHeaders; private Map<String, List<String>> respHeaders = null; private OutputStream outputStream; private boolean https; private HttpURLConnection httpConnection = null; private final EndpointAddress endpoint; private final Packet context; private CookieJar cookieJar = null; private final Integer chunkSize; public HttpClientTransport(@NotNull Packet packet, @NotNull Map<String,List<String>> reqHeaders) { endpoint = packet.endpointAddress; context = packet; this.reqHeaders = reqHeaders; chunkSize = (Integer)context.invocationProperties.get(JAXWSProperties.HTTP_CLIENT_STREAMING_CHUNK_SIZE); } /* * Prepare the stream for HTTP request */ public OutputStream getOutput() { try { createHttpConnection(); sendCookieAsNeeded(); // for "GET" request no need to get outputStream if (requiresOutputStream()) { outputStream = httpConnection.getOutputStream(); if (chunkSize != null) { outputStream = new WSChunkedOuputStream(outputStream, chunkSize); } List<String> contentEncoding = reqHeaders.get("Content-Encoding"); // TODO need to find out correct encoding based on q value - RFC 2616 if (contentEncoding != null && contentEncoding.get(0).contains("gzip")) { outputStream = new GZIPOutputStream(outputStream); } } httpConnection.connect(); } catch (Exception ex) { throw new ClientTransportException( ClientMessages.localizableHTTP_CLIENT_FAILED(ex),ex); } return outputStream; } public void closeOutput() throws IOException { if (outputStream != null) { outputStream.close(); outputStream = null; } } /* * Get the response from HTTP connection and prepare the input stream for response */ public @Nullable InputStream getInput() { // response processing InputStream in; try { saveCookieAsNeeded(); in = readResponse(); if (in != null) { String contentEncoding = httpConnection.getContentEncoding(); if (contentEncoding != null && contentEncoding.contains("gzip")) { in = new GZIPInputStream(in); } } } catch (IOException e) { throw new ClientTransportException(ClientMessages.localizableHTTP_STATUS_CODE(statusCode, statusMessage), e); } return in; } public Map<String, List<String>> getHeaders() { if (respHeaders != null) { return respHeaders; } respHeaders = new Headers(); respHeaders.putAll(httpConnection.getHeaderFields()); return respHeaders; } protected @Nullable InputStream readResponse() { InputStream is; try { is = httpConnection.getInputStream(); } catch(IOException ioe) { is = httpConnection.getErrorStream(); } if (is == null) { return is; } // Since StreamMessage doesn't read </s:Body></s:Envelope>, there // are some bytes left in the InputStream. This confuses JDK and may // not reuse underlying sockets. Hopefully JDK fixes it in its code ! final InputStream temp = is; return new FilterInputStream(temp) { // Workaround for "SJSXP XMLStreamReader.next() closes stream". // So it doesn't read from the closed stream boolean closed; @Override public void close() throws IOException { if (!closed) { closed = true; byte[] buf = new byte[8192]; while(temp.read(buf) != -1); super.close(); } } }; } protected void readResponseCodeAndMessage() { try { statusCode = httpConnection.getResponseCode(); statusMessage = httpConnection.getResponseMessage(); } catch(IOException ioe) { throw new WebServiceException(ioe); } } protected void sendCookieAsNeeded() { Boolean shouldMaintainSessionProperty = (Boolean) context.invocationProperties.get(SESSION_MAINTAIN_PROPERTY); if (shouldMaintainSessionProperty != null && shouldMaintainSessionProperty) { cookieJar = (CookieJar) context.invocationProperties.get(HTTP_COOKIE_JAR); if (cookieJar == null) { cookieJar = new CookieJar(); // need to store in binding's context so it is not lost context.proxy.getRequestContext().put(HTTP_COOKIE_JAR, cookieJar); } cookieJar.applyRelevantCookies(httpConnection); } } private void saveCookieAsNeeded() { if (cookieJar != null) { cookieJar.recordAnyCookies(httpConnection); } } private void createHttpConnection() throws IOException { httpConnection = (HttpURLConnection) endpoint.openConnection(); if (httpConnection instanceof HttpsURLConnection) { https = true; boolean verification = false; // TODO The above property needs to be removed in future version as the semantics of this property are not preoperly defined. // One should use JAXWSProperties.HOSTNAME_VERIFIER to control the behavior // does the client want client hostname verification by the service String verificationProperty = (String) context.invocationProperties.get(HOSTNAME_VERIFICATION_PROPERTY); if (verificationProperty != null) { if (verificationProperty.equalsIgnoreCase("true")) verification = true; } // By default, JAX-WS should not disable any host verification. if (verification) { ((HttpsURLConnection) httpConnection).setHostnameVerifier(new HttpClientVerifier()); } // Set application's HostNameVerifier for this connection HostnameVerifier verifier = (HostnameVerifier) context.invocationProperties.get(JAXWSProperties.HOSTNAME_VERIFIER); if (verifier != null) { ((HttpsURLConnection) httpConnection).setHostnameVerifier(verifier); } // Set application's SocketFactory for this connection SSLSocketFactory sslSocketFactory = (SSLSocketFactory) context.invocationProperties.get(JAXWSProperties.SSL_SOCKET_FACTORY); if (sslSocketFactory != null) { ((HttpsURLConnection) httpConnection).setSSLSocketFactory(sslSocketFactory); } } writeBasicAuthAsNeeded(context, reqHeaders); // allow interaction with the web page - user may have to supply // username, password id web page is accessed from web browser httpConnection.setAllowUserInteraction(true); // enable input, output streams httpConnection.setDoOutput(true); httpConnection.setDoInput(true); String requestMethod = (String) context.invocationProperties.get(MessageContext.HTTP_REQUEST_METHOD); String method = (requestMethod != null) ? requestMethod : "POST"; httpConnection.setRequestMethod(method); //this code or something similiar needs t be moved elsewhere for error checking /*if (context.invocationProperties.get(BindingProviderProperties.BINDING_ID_PROPERTY).equals(HTTPBinding.HTTP_BINDING)){ method = (requestMethod != null)?requestMethod:method; } else if (context.invocationProperties.get(BindingProviderProperties.BINDING_ID_PROPERTY).equals(SOAPBinding.SOAP12HTTP_BINDING) && "GET".equalsIgnoreCase(requestMethod)) { } */ Integer reqTimeout = (Integer)context.invocationProperties.get(BindingProviderProperties.REQUEST_TIMEOUT); if (reqTimeout != null) { httpConnection.setReadTimeout(reqTimeout); } Integer connectTimeout = (Integer)context.invocationProperties.get(JAXWSProperties.CONNECT_TIMEOUT); if (connectTimeout != null) { httpConnection.setConnectTimeout(connectTimeout); } Integer chunkSize = (Integer)context.invocationProperties.get(JAXWSProperties.HTTP_CLIENT_STREAMING_CHUNK_SIZE); if (chunkSize != null) { httpConnection.setChunkedStreamingMode(chunkSize); } // set the properties on HttpURLConnection for (Map.Entry<String, List<String>> entry : reqHeaders.entrySet()) { httpConnection.addRequestProperty(entry.getKey(), entry.getValue().get(0)); } httpConnection.addRequestProperty("User-Agent", RuntimeVersion.VERSION.toString()); } public boolean isSecure() { return https; } private void writeBasicAuthAsNeeded(Packet context, Map<String, List<String>> reqHeaders) { String user = (String) context.invocationProperties.get(BindingProvider.USERNAME_PROPERTY); if (user != null) { String pw = (String) context.invocationProperties.get(BindingProvider.PASSWORD_PROPERTY); if (pw != null) { StringBuffer buf = new StringBuffer(user); buf.append(":"); buf.append(pw); String creds = printBase64Binary(buf.toString().getBytes()); reqHeaders.put("Authorization", Collections.singletonList("Basic "+creds)); } } } private boolean requiresOutputStream() { return !(httpConnection.getRequestMethod().equalsIgnoreCase("GET") || httpConnection.getRequestMethod().equalsIgnoreCase("HEAD") || httpConnection.getRequestMethod().equalsIgnoreCase("DELETE")); } public @Nullable String getContentType() { return httpConnection.getContentType(); } // overide default SSL HttpClientVerifier to always return true // effectively overiding Hostname client verification when using SSL private static class HttpClientVerifier implements HostnameVerifier { public boolean verify(String s, SSLSession sslSession) { return true; } } /** * HttpURLConnection.getOuputStream() returns sun.net.www.http.ChunkedOuputStream in chunked * streaming mode. If you call ChunkedOuputStream.write(byte[20MB], int, int), then the whole data * is kept in memory. This wraps the ChunkedOuputStream so that it writes only small * chunks. */ private static final class WSChunkedOuputStream extends FilterOutputStream { final int chunkSize; WSChunkedOuputStream(OutputStream actual, int chunkSize) { super(actual); this.chunkSize = chunkSize; } @Override public void write(byte b[], int off, int len) throws IOException { while(len > 0) { int sent = (len > chunkSize) ? chunkSize : len; out.write(b, off, sent); // don't use super.write() as it writes byte-by-byte len -= sent; off += sent; } } } }