Executes the specified PUT request. @param is input stream (can be null) @param request query @throws IOException I/O exception
(final InputStream is, final String request)
| 171 | * @throws IOException I/O exception |
| 172 | */ |
| 173 | protected static void put(final InputStream is, final String request) throws IOException { |
| 174 | put(201, is, request); |
| 175 | } |
| 176 | |
| 177 | /** |
| 178 | * Executes the specified PUT request. |