Comments for "HTTP_Request2_Hawk"

» Submit Your Comment
Please log in to enter your comment. If you are not a registered PEAR developer, you can comment by sending an email to pear-dev@lists.php.net.
» Comments
  • Alexey Borzov  [2014-02-23 12:43 UTC]

    Hi Bertrand,

    Unfortunately, your Observer will not work with HTTP_Request2's Curl adapter at all: it does not send 'connect' event you rely upon. Socket adapter tries to use keep-alive feature of HTTP protocol so it may reuse an existing connection and not send a 'connect' event either.

    That being said, it may make sense to add a new event sent to observers before any communication to remote server, making it possible for observers to modify the request.
  • Bertrand Mansion  [2014-02-24 09:12 UTC]

    Hi Alexey,
    Indeed, I think it would make sense to add a new event for when the adapter is about to initiate the connection to the remote end.
    Maybe HTTP Digest could also be implemented with an observer, then.
    Observers could become even more useful.