I'm using vertx.io to make several HTTP requests, the input to the program is a file containing several full URLs. Checking the vertx.io HttpClient it seems like it can only query hosts but not full URLs. For example: it will successfully query http://www.yahoo.com/ but will fail on something like: http://finance.yahoo.com/news/us-stocks-slip-wal-mart-154834426.html
And so my questions are:
- Is it possible to query the full URL using the Vertx.io native HttpClient?
- Is it possible to use other HttpClients with vertx? For example use Apache asynchronous HTTP client with callbacks and vertx?
Googling these didn't find any good answers...
Thanks in advance!