jdk/src/share/classes/java/net/HttpURLConnection.java
author michaelm
Thu, 16 Sep 2010 08:08:06 -0700
changeset 6875 81d6ec3397e5
parent 5506 202f599c92aa
child 7668 d4a77089c587
permissions -rw-r--r--
6981426: limit use of TRACE method in HttpURLConnection Reviewed-by: chegar
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1639
diff changeset
     2
 * Copyright (c) 1996, 2008, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1639
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1639
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1639
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1639
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1639
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.net;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.io.InputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.io.IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.security.Permission;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.util.Date;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * A URLConnection with support for HTTP-specific features. See
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * <A HREF="http://www.w3.org/pub/WWW/Protocols/"> the spec </A> for
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * details.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * Each HttpURLConnection instance is used to make a single request
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * but the underlying network connection to the HTTP server may be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * transparently shared by other instances. Calling the close() methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * on the InputStream or OutputStream of an HttpURLConnection
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * after a request may free network resources associated with this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * instance but has no effect on any shared persistent connection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * Calling the disconnect() method may close the underlying socket
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * if a persistent connection is otherwise idle at that time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * <P>The HTTP protocol handler has a few settings that can be accessed through
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * System Properties. This covers
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * <a href="doc-files/net-properties.html#Proxies">Proxy settings</a> as well as
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * <a href="doc-files/net-properties.html#MiscHTTP"> various other settings</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * </P>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * @see     java.net.HttpURLConnection#disconnect()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * @since JDK1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
abstract public class HttpURLConnection extends URLConnection {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    /* instance variables */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
     * The HTTP method (GET,POST,PUT,etc.).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    protected String method = "GET";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
     * The chunk-length when using chunked encoding streaming mode for output.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
     * A value of <code>-1</code> means chunked encoding is disabled for output.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    protected int chunkLength = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
     * The fixed content-length when using fixed-length streaming mode.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
     * A value of <code>-1</code> means fixed-length streaming mode is disabled
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
     * for output.
1576
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
    76
     *
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
    77
     * <P> <B>NOTE:</B> {@link #fixedContentLengthLong} is recommended instead
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
    78
     * of this field, as it allows larger content lengths to be set.
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
    79
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    protected int fixedContentLength = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    /**
1576
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
    85
     * The fixed content-length when using fixed-length streaming mode.
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
    86
     * A value of {@code -1} means fixed-length streaming mode is disabled
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
    87
     * for output.
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
    88
     *
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
    89
     * @since 1.7
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
    90
     */
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
    91
    protected long fixedContentLengthLong = -1;
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
    92
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
    93
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
     * Returns the key for the <code>n</code><sup>th</sup> header field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
     * Some implementations may treat the <code>0</code><sup>th</sup>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     * header field as special, i.e. as the status line returned by the HTTP
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     * server. In this case, {@link #getHeaderField(int) getHeaderField(0)} returns the status
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     * line, but <code>getHeaderFieldKey(0)</code> returns null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     * @param   n   an index, where n >=0.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     * @return  the key for the <code>n</code><sup>th</sup> header field,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     *          or <code>null</code> if the key does not exist.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    public String getHeaderFieldKey (int n) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     * This method is used to enable streaming of a HTTP request body
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     * without internal buffering, when the content length is known in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     * advance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     * An exception will be thrown if the application
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     * attempts to write more data than the indicated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     * content-length, or if the application closes the OutputStream
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * before writing the indicated amount.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     * When output streaming is enabled, authentication
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * and redirection cannot be handled automatically.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * A HttpRetryException will be thrown when reading
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * the response if authentication or redirection are required.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     * This exception can be queried for the details of the error.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     * This method must be called before the URLConnection is connected.
1576
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   125
     * <p>
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   126
     * <B>NOTE:</B> {@link #setFixedLengthStreamingMode(long)} is recommended
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   127
     * instead of this method as it allows larger content lengths to be set.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     * @param   contentLength The number of bytes which will be written
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     *          to the OutputStream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     * @throws  IllegalStateException if URLConnection is already connected
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     *          or if a different streaming mode is already enabled.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     * @throws  IllegalArgumentException if a content length less than
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     *          zero is specified.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     * @see     #setChunkedStreamingMode(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    public void setFixedLengthStreamingMode (int contentLength) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        if (connected) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
            throw new IllegalStateException ("Already connected");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
        if (chunkLength != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
            throw new IllegalStateException ("Chunked encoding streaming mode set");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
        if (contentLength < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
            throw new IllegalArgumentException ("invalid content length");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        fixedContentLength = contentLength;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
1576
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   154
    /**
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   155
     * This method is used to enable streaming of a HTTP request body
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   156
     * without internal buffering, when the content length is known in
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   157
     * advance.
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   158
     *
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   159
     * <P> An exception will be thrown if the application attempts to write
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   160
     * more data than the indicated content-length, or if the application
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   161
     * closes the OutputStream before writing the indicated amount.
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   162
     *
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   163
     * <P> When output streaming is enabled, authentication and redirection
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   164
     * cannot be handled automatically. A {@linkplain HttpRetryException} will
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   165
     * be thrown when reading the response if authentication or redirection
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   166
     * are required. This exception can be queried for the details of the
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   167
     * error.
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   168
     *
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   169
     * <P> This method must be called before the URLConnection is connected.
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   170
     *
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   171
     * <P> The content length set by invoking this method takes precedence
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   172
     * over any value set by {@link #setFixedLengthStreamingMode(int)}.
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   173
     *
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   174
     * @param  contentLength
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   175
     *         The number of bytes which will be written to the OutputStream.
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   176
     *
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   177
     * @throws  IllegalStateException
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   178
     *          if URLConnection is already connected or if a different
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   179
     *          streaming mode is already enabled.
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   180
     *
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   181
     * @throws  IllegalArgumentException
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   182
     *          if a content length less than zero is specified.
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   183
     *
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   184
     * @since 1.7
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   185
     */
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   186
    public void setFixedLengthStreamingMode(long contentLength) {
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   187
        if (connected) {
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   188
            throw new IllegalStateException("Already connected");
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   189
        }
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   190
        if (chunkLength != -1) {
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   191
            throw new IllegalStateException(
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   192
                "Chunked encoding streaming mode set");
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   193
        }
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   194
        if (contentLength < 0) {
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   195
            throw new IllegalArgumentException("invalid content length");
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   196
        }
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   197
        fixedContentLengthLong = contentLength;
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   198
    }
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   199
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
    /* Default chunk size (including chunk header) if not specified;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     * we want to keep this in sync with the one defined in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     * sun.net.www.http.ChunkedOutputStream
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
    private static final int DEFAULT_CHUNK_SIZE = 4096;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     * This method is used to enable streaming of a HTTP request body
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     * without internal buffering, when the content length is <b>not</b>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     * known in advance. In this mode, chunked transfer encoding
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     * is used to send the request body. Note, not all HTTP servers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     * support this mode.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     * When output streaming is enabled, authentication
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     * and redirection cannot be handled automatically.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     * A HttpRetryException will be thrown when reading
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
     * the response if authentication or redirection are required.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
     * This exception can be queried for the details of the error.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     * This method must be called before the URLConnection is connected.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     * @param   chunklen The number of bytes to write in each chunk.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     *          If chunklen is less than or equal to zero, a default
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
     *          value will be used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     * @throws  IllegalStateException if URLConnection is already connected
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     *          or if a different streaming mode is already enabled.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     * @see     #setFixedLengthStreamingMode(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
    public void setChunkedStreamingMode (int chunklen) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
        if (connected) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
            throw new IllegalStateException ("Can't set streaming mode: already connected");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
        }
1576
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   235
        if (fixedContentLength != -1 || fixedContentLengthLong != -1) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
            throw new IllegalStateException ("Fixed length streaming mode set");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
        chunkLength = chunklen <=0? DEFAULT_CHUNK_SIZE : chunklen;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
     * Returns the value for the <code>n</code><sup>th</sup> header field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
     * Some implementations may treat the <code>0</code><sup>th</sup>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
     * header field as special, i.e. as the status line returned by the HTTP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
     * server.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
     * This method can be used in conjunction with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
     * {@link #getHeaderFieldKey getHeaderFieldKey} method to iterate through all
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     * the headers in the message.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
     * @param   n   an index, where n>=0.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
     * @return  the value of the <code>n</code><sup>th</sup> header field,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
     *          or <code>null</code> if the value does not exist.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
     * @see     java.net.HttpURLConnection#getHeaderFieldKey(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
    public String getHeaderField(int n) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
     * An <code>int</code> representing the three digit HTTP Status-Code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
     * <li> 1xx: Informational
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
     * <li> 2xx: Success
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
     * <li> 3xx: Redirection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
     * <li> 4xx: Client Error
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
     * <li> 5xx: Server Error
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
    protected int responseCode = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     * The HTTP response message.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
    protected String responseMessage = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
    /* static variables */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
    /* do we automatically follow redirects? The default is true. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
    private static boolean followRedirects = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
     * If <code>true</code>, the protocol will automatically follow redirects.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
     * If <code>false</code>, the protocol will not automatically follow
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
     * redirects.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
     * This field is set by the <code>setInstanceFollowRedirects</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
     * method. Its value is returned by the <code>getInstanceFollowRedirects</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
     * method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
     * Its default value is based on the value of the static followRedirects
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
     * at HttpURLConnection construction time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
     * @see     java.net.HttpURLConnection#setInstanceFollowRedirects(boolean)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
     * @see     java.net.HttpURLConnection#getInstanceFollowRedirects()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
     * @see     java.net.HttpURLConnection#setFollowRedirects(boolean)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
    protected boolean instanceFollowRedirects = followRedirects;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
    /* valid HTTP methods */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
    private static final String[] methods = {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
        "GET", "POST", "HEAD", "OPTIONS", "PUT", "DELETE", "TRACE"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
    };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
     * Constructor for the HttpURLConnection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
     * @param u the URL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
    protected HttpURLConnection (URL u) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
        super(u);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
     * Sets whether HTTP redirects  (requests with response code 3xx) should
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
     * be automatically followed by this class.  True by default.  Applets
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
     * cannot change this variable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
     * If there is a security manager, this method first calls
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
     * the security manager's <code>checkSetFactory</code> method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
     * to ensure the operation is allowed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     * This could result in a SecurityException.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
     * @param set a <code>boolean</code> indicating whether or not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
     * to follow HTTP redirects.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
     * @exception  SecurityException  if a security manager exists and its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
     *             <code>checkSetFactory</code> method doesn't
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
     *             allow the operation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
     * @see        SecurityManager#checkSetFactory
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
     * @see #getFollowRedirects()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
    public static void setFollowRedirects(boolean set) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
        SecurityManager sec = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
        if (sec != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
            // seems to be the best check here...
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
            sec.checkSetFactory();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
        followRedirects = set;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
     * Returns a <code>boolean</code> indicating
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
     * whether or not HTTP redirects (3xx) should
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
     * be automatically followed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
     * @return <code>true</code> if HTTP redirects should
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
     * be automatically followed, <tt>false</tt> if not.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
     * @see #setFollowRedirects(boolean)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
    public static boolean getFollowRedirects() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
        return followRedirects;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
     * Sets whether HTTP redirects (requests with response code 3xx) should
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
     * be automatically followed by this <code>HttpURLConnection</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
     * instance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
     * The default value comes from followRedirects, which defaults to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
     * true.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
     * @param followRedirects a <code>boolean</code> indicating
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
     * whether or not to follow HTTP redirects.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
     * @see    java.net.HttpURLConnection#instanceFollowRedirects
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
     * @see #getInstanceFollowRedirects
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
     * @since 1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
     public void setInstanceFollowRedirects(boolean followRedirects) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
        instanceFollowRedirects = followRedirects;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
     }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
     /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
     * Returns the value of this <code>HttpURLConnection</code>'s
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
     * <code>instanceFollowRedirects</code> field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     * @return  the value of this <code>HttpURLConnection</code>'s
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
     *          <code>instanceFollowRedirects</code> field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
     * @see     java.net.HttpURLConnection#instanceFollowRedirects
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
     * @see #setInstanceFollowRedirects(boolean)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
     * @since 1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
     public boolean getInstanceFollowRedirects() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
         return instanceFollowRedirects;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
     }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
     * Set the method for the URL request, one of:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
     * <UL>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
     *  <LI>GET
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
     *  <LI>POST
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
     *  <LI>HEAD
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
     *  <LI>OPTIONS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
     *  <LI>PUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
     *  <LI>DELETE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
     *  <LI>TRACE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
     * </UL> are legal, subject to protocol restrictions.  The default
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
     * method is GET.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
     * @param method the HTTP method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
     * @exception ProtocolException if the method cannot be reset or if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
     *              the requested method isn't valid for HTTP.
6875
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   402
     * @exception SecurityException if a security manager is set and the
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   403
     *              "allowHttpTrace" NetPermission is not granted.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
     * @see #getRequestMethod()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
    public void setRequestMethod(String method) throws ProtocolException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
        if (connected) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
            throw new ProtocolException("Can't reset method: already connected");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
        // This restriction will prevent people from using this class to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
        // experiment w/ new HTTP methods using java.  But it should
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
        // be placed for security - the request String could be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
        // arbitrarily long.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
        for (int i = 0; i < methods.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
            if (methods[i].equals(method)) {
6875
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   417
                if (method.equals("TRACE")) {
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   418
                    SecurityManager s = System.getSecurityManager();
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   419
                    if (s != null) {
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   420
                        s.checkPermission(new NetPermission("allowHttpTrace"));
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   421
                    }
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   422
                }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
                this.method = method;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
                return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
        throw new ProtocolException("Invalid HTTP method: " + method);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
     * Get the request method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
     * @return the HTTP request method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
     * @see #setRequestMethod(java.lang.String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
    public String getRequestMethod() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
        return method;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
     * Gets the status code from an HTTP response message.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
     * For example, in the case of the following status lines:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
     * <PRE>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
     * HTTP/1.0 200 OK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
     * HTTP/1.0 401 Unauthorized
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
     * </PRE>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
     * It will return 200 and 401 respectively.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
     * Returns -1 if no code can be discerned
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
     * from the response (i.e., the response is not valid HTTP).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
     * @throws IOException if an error occurred connecting to the server.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
     * @return the HTTP Status-Code, or -1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
    public int getResponseCode() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
         * We're got the response code already
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
        if (responseCode != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
            return responseCode;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
         * Ensure that we have connected to the server. Record
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
         * exception as we need to re-throw it if there isn't
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
         * a status line.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
        Exception exc = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
            getInputStream();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
        } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
            exc = e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
         * If we can't a status-line then re-throw any exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
         * that getInputStream threw.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
        String statusLine = getHeaderField(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
        if (statusLine == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
            if (exc != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
                if (exc instanceof RuntimeException)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
                    throw (RuntimeException)exc;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
                else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
                    throw (IOException)exc;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
            return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
         * Examine the status-line - should be formatted as per
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
         * section 6.1 of RFC 2616 :-
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
         * Status-Line = HTTP-Version SP Status-Code SP Reason-Phrase
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
         * If status line can't be parsed return -1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
        if (statusLine.startsWith("HTTP/1.")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
            int codePos = statusLine.indexOf(' ');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
            if (codePos > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
                int phrasePos = statusLine.indexOf(' ', codePos+1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
                if (phrasePos > 0 && phrasePos < statusLine.length()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
                    responseMessage = statusLine.substring(phrasePos+1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
                // deviation from RFC 2616 - don't reject status line
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
                // if SP Reason-Phrase is not included.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
                if (phrasePos < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
                    phrasePos = statusLine.length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
                    responseCode = Integer.parseInt
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
                            (statusLine.substring(codePos+1, phrasePos));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
                    return responseCode;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
                } catch (NumberFormatException e) { }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
     * Gets the HTTP response message, if any, returned along with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
     * response code from a server.  From responses like:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
     * <PRE>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
     * HTTP/1.0 200 OK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
     * HTTP/1.0 404 Not Found
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
     * </PRE>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
     * Extracts the Strings "OK" and "Not Found" respectively.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
     * Returns null if none could be discerned from the responses
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
     * (the result was not valid HTTP).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
     * @throws IOException if an error occurred connecting to the server.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
     * @return the HTTP response message, or <code>null</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
    public String getResponseMessage() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
        getResponseCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
        return responseMessage;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
    public long getHeaderFieldDate(String name, long Default) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
        String dateString = getHeaderField(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
            if (dateString.indexOf("GMT") == -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
                dateString = dateString+" GMT";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
            return Date.parse(dateString);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
        } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
        return Default;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
     * Indicates that other requests to the server
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
     * are unlikely in the near future. Calling disconnect()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
     * should not imply that this HttpURLConnection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
     * instance can be reused for other requests.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
    public abstract void disconnect();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
     * Indicates if the connection is going through a proxy.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
     * @return a boolean indicating if the connection is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
     * using a proxy.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
    public abstract boolean usingProxy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
     * Returns a {@link SocketPermission} object representing the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
     * permission necessary to connect to the destination host and port.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
     * @exception IOException if an error occurs while computing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
     *            the permission.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
     * @return a <code>SocketPermission</code> object representing the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
     *         permission necessary to connect to the destination
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
     *         host and port.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
    public Permission getPermission() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
        int port = url.getPort();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
        port = port < 0 ? 80 : port;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
        String host = url.getHost() + ":" + port;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
        Permission permission = new SocketPermission(host, "connect");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
        return permission;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
   /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
    * Returns the error stream if the connection failed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
    * but the server sent useful data nonetheless. The
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
    * typical example is when an HTTP server responds
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
    * with a 404, which will cause a FileNotFoundException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
    * to be thrown in connect, but the server sent an HTML
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
    * help page with suggestions as to what to do.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
    *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
    * <p>This method will not cause a connection to be initiated.  If
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
    * the connection was not connected, or if the server did not have
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
    * an error while connecting or if the server had an error but
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
    * no error data was sent, this method will return null. This is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
    * the default.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
    *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
    * @return an error stream if any, null if there have been no
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
    * errors, the connection is not connected or the server sent no
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
    * useful data.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
    */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
    public InputStream getErrorStream() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
     * The response codes for HTTP, as of version 1.1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
    // REMIND: do we want all these??
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
    // Others not here that we do want??
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
    /* 2XX: generally "OK" */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
     * HTTP Status-Code 200: OK.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
    public static final int HTTP_OK = 200;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
     * HTTP Status-Code 201: Created.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
    public static final int HTTP_CREATED = 201;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
     * HTTP Status-Code 202: Accepted.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
    public static final int HTTP_ACCEPTED = 202;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
     * HTTP Status-Code 203: Non-Authoritative Information.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
    public static final int HTTP_NOT_AUTHORITATIVE = 203;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
     * HTTP Status-Code 204: No Content.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
    public static final int HTTP_NO_CONTENT = 204;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
     * HTTP Status-Code 205: Reset Content.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
    public static final int HTTP_RESET = 205;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
     * HTTP Status-Code 206: Partial Content.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
    public static final int HTTP_PARTIAL = 206;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
    /* 3XX: relocation/redirect */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
     * HTTP Status-Code 300: Multiple Choices.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
    public static final int HTTP_MULT_CHOICE = 300;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
     * HTTP Status-Code 301: Moved Permanently.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
    public static final int HTTP_MOVED_PERM = 301;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
     * HTTP Status-Code 302: Temporary Redirect.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
    public static final int HTTP_MOVED_TEMP = 302;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
     * HTTP Status-Code 303: See Other.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
    public static final int HTTP_SEE_OTHER = 303;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
     * HTTP Status-Code 304: Not Modified.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
    public static final int HTTP_NOT_MODIFIED = 304;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
     * HTTP Status-Code 305: Use Proxy.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
    public static final int HTTP_USE_PROXY = 305;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
    /* 4XX: client error */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
     * HTTP Status-Code 400: Bad Request.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
    public static final int HTTP_BAD_REQUEST = 400;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
     * HTTP Status-Code 401: Unauthorized.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
    public static final int HTTP_UNAUTHORIZED = 401;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
     * HTTP Status-Code 402: Payment Required.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
    public static final int HTTP_PAYMENT_REQUIRED = 402;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
     * HTTP Status-Code 403: Forbidden.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
    public static final int HTTP_FORBIDDEN = 403;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
     * HTTP Status-Code 404: Not Found.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
    public static final int HTTP_NOT_FOUND = 404;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
     * HTTP Status-Code 405: Method Not Allowed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
    public static final int HTTP_BAD_METHOD = 405;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
     * HTTP Status-Code 406: Not Acceptable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
    public static final int HTTP_NOT_ACCEPTABLE = 406;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
     * HTTP Status-Code 407: Proxy Authentication Required.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
    public static final int HTTP_PROXY_AUTH = 407;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
     * HTTP Status-Code 408: Request Time-Out.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
    public static final int HTTP_CLIENT_TIMEOUT = 408;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
     * HTTP Status-Code 409: Conflict.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
    public static final int HTTP_CONFLICT = 409;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
     * HTTP Status-Code 410: Gone.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
    public static final int HTTP_GONE = 410;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
     * HTTP Status-Code 411: Length Required.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
    public static final int HTTP_LENGTH_REQUIRED = 411;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
     * HTTP Status-Code 412: Precondition Failed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
    public static final int HTTP_PRECON_FAILED = 412;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
     * HTTP Status-Code 413: Request Entity Too Large.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
    public static final int HTTP_ENTITY_TOO_LARGE = 413;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
     * HTTP Status-Code 414: Request-URI Too Large.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
    public static final int HTTP_REQ_TOO_LONG = 414;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
     * HTTP Status-Code 415: Unsupported Media Type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
    public static final int HTTP_UNSUPPORTED_TYPE = 415;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
    /* 5XX: server error */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
     * HTTP Status-Code 500: Internal Server Error.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
     * @deprecated   it is misplaced and shouldn't have existed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
    @Deprecated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
    public static final int HTTP_SERVER_ERROR = 500;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
     * HTTP Status-Code 500: Internal Server Error.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
    public static final int HTTP_INTERNAL_ERROR = 500;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
     * HTTP Status-Code 501: Not Implemented.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
    public static final int HTTP_NOT_IMPLEMENTED = 501;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
     * HTTP Status-Code 502: Bad Gateway.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
    public static final int HTTP_BAD_GATEWAY = 502;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
     * HTTP Status-Code 503: Service Unavailable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
    public static final int HTTP_UNAVAILABLE = 503;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
     * HTTP Status-Code 504: Gateway Timeout.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
    public static final int HTTP_GATEWAY_TIMEOUT = 504;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
     * HTTP Status-Code 505: HTTP Version Not Supported.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
    public static final int HTTP_VERSION = 505;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
}