Hi,

    I am testing a simple Jetty 9 http client with the following code:

            HttpClient httpClient = new HttpClient();
URI uri = new URI("http://myserver.com/serverprog?param=http://someuri.com";);
            httpClient.start();
            HttpRequest r = new HttpRequest(httpClient, uri);
            r.method(HttpMethod.POST);

It works beautifully for POST, but if I change it to PUT, the "?param=http://someuri.com"; doesn't get passed to the server where it does with the POST. Any thoughts? Thanks, Erich
_______________________________________________
jetty-users mailing list
[email protected]
https://dev.eclipse.org/mailman/listinfo/jetty-users

Reply via email to