Julio Guerra
Julio Guerra

Reputation: 5661

Send a raw HTTP request

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

Answers (1)

Vincent Scheib
Vincent Scheib

Reputation: 18610

Chrome Apps can open a TCP connection with chrome.socket, and you can send raw requests.

Upvotes: 1

Related Questions