- From: New Developer <developer.new@gmail.com>
- Date: Thu, 10 Apr 2008 17:07:27 -0400
- To: www-lib@w3.org
- Message-ID: <95f5886d0804101407j352101dax978495cfcec13b15@mail.gmail.com>
Hi I'm just starting to use libwww and had a question regarding multiple requests. I am using libwww to parse data from websites and fill up my internal data structures. I checked the sample codes that are up and specifically I am using the techniques used in showtag.c and showtext.c. What I a doing right now is registering the callback functions beginElement(), endElement() and addText() with: HText_registerElementCallback(beginElement, endElement); HText_registerTextCallback(addText) This achieves what I am trying to do. However, these callback functions are not tied to a particular HTequest. What if I want to issue two separate HTRequests (to different URLs, of course) and want two different sets of callback functions to be called once the data start coming back? Is there any way to tie the HTText_register*() functions with specific requests? Or do I have to use the HTStream class to achieve what I am trying to do? In case I have to use HTStream class, I'd really appreciate if someone can give some high level pointers on how to get started. Thanks in advance!
Received on Friday, 11 April 2008 06:41:48 UTC