You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following should output just the body of the HTTP response:
<http url="http://domain/etc"
entityProperty = "HttpResponse"
failonunexpected = "false"
printrequestheaders = "false"
printresponseheaders = "false"
/>
<echo>${HttpResponse}</echo>
Instead, it is preceeding the echo with:
[http] HTTP Request
[http] ********************
[http] URL: http://domain/etc
[http] Method: GET
[http] HTTP Response
[http] ********************
[http] Status: 200
Which is clogging up the output.
Using missing-link 1.1.3 with Ant 1.8.2
Original issue reported on code.google.com by [email protected] on 8 Jan 2012 at 8:07
The text was updated successfully, but these errors were encountered:
Looking at the source it seems you already have accounted for this except the
if statement @ line 283 in HttpClientTask.java
if (httpClient.getHeaders().size() > 0 && printRequestHeaders) {
Great library by the way.. Thanks !
Original issue reported on code.google.com by
[email protected]
on 8 Jan 2012 at 8:07The text was updated successfully, but these errors were encountered: