in reply to Re^2: Asyncron Https-Requests with HTTP::Async
in thread Asyncron Https-Requests with HTTP::Async

Hello andal,
thank you very much for your help. :-)
I'm going to try out your hacking. I'm going to inform you how it works on my server.
  • Comment on Re^3: Asyncron Https-Requests with HTTP::Async

Replies are listed 'Best First'.
Re^4: Asyncron Https-Requests with HTTP::Async
by andal (Hermit) on Nov 10, 2010 at 09:08 UTC

    I don't know if you still need it. Anyway, I've created small HTTP parser module that can be used to parse HTTP protocol (either requests or responses). This module does not care where the data comes from, so you can open either regular connection or use IO::Socket::SSL to open secure connection and then simply pass the obtained chunks of data to the parser and get from it the pieces of parsed information.

    The module is available at http://vandal.sdf-eu.org/HttpProto.pm Just save it into file. The perldoc on that file shall give you detailed usage information.

    I feel, it is cleaner to use this module than the hack I've provided in previous message :)

Re^4: Asyncron Https-Requests with HTTP::Async
by atmosfearpete (Initiate) on Feb 23, 2011 at 09:02 UTC
    Hi andal,
    after a few month in action I can say that your skript works well for my requirement.
    Thanks!