Howdy All.

I'm trying to get at some form data on HTML pages in
a dedicated data collection environment where there
is no display.

It would be very convenient to use the KDE DOM
methods as well. It seems like a natural choice.

However, even very simple programs like this

Qt Code:
  1. int
  2. main(int argc, char *argv[])
  3. {
  4. QApplication *qa = new QApplication(argc, argv, false); // attempt non-gui operation
  5. KHTMLPart *html = new KHTMLPart();
  6. }
To copy to clipboard, switch view to plain text mode 

error out with:

Qt Code:
  1. QPixmap: Cannot create a QPixmap when no GUI is being used
To copy to clipboard, switch view to plain text mode 

Can I really not access the DOM and HTML parsing routines without a window?

If so, does anybody have a sense for how hard that might be to "fix"??

Finally, alternate suggestions are quite welcome!

Thanks!
Andy