Reputation: 5661
I am looking for a way to send raw HTTP requests, i.e. from a string containing the full request. It seems XmlHttpRequest
does not provide such a method.
My final need is to "forward" HTTP requests by executing them and receiving their answers as a string too.
Any idea of what could I use ?
Upvotes: 0
Views: 2369
Reputation: 18610
Chrome Apps can open a TCP connection with chrome.socket, and you can send raw requests.
Upvotes: 1