GoXML::XQI - Perl extension for the XML Query Interface at xqi.goxml.com.


GoXML-XQI documentation  | view source Contained in the GoXML-XQI distribution.

Index


NAME

Top

GoXML::XQI - Perl extension for the XML Query Interface at xqi.goxml.com.

SYNOPSIS

Top

  use GoXML::XQI;
  $q = new GoXML::XQI(
	HOST => 'www.goxml.com',
	PORT => '5910',
  );
  $fh = $q->Query(
		KEYWORD => $keywd,
		TAG => $tag,
		CATEGORY => $categ);

  while (<$fh>) {
	# Do something with the search results..
  }

  $resp = $q->Submit(
		HREF => $url,
		DESCRIPTION => $description,
		CATEGORY => $category);

  print "Succeeded.\n" if $resp;

DESCRIPTION

Top

This module was designed to allow authorized third parties to connect to the XML index at www.goxml.com:5910. While generally a trivial task, this module will stay up to date and backwards compatible with newer and older versions of XQI.

Everyone is _authorized_ to use this service, but people who are paying us get first priority :).

CATEGORIES

Top

Below is a list of categories currently accepted by Submit():

1 = Arts & Humanities 2 = Health 3 = Business & Economy 4 = News & Media 5 = Computers & Internet 6 = Recreation & Sports 7 = Education 8 = Reference [DEFAULT] 9 = Entertainment 10 = Science 11 = Family 12 = Shopping 13 = Government 14 = Society & Culture 15 = News Groups (XSL-List, ebXML-*, your-list??)

AUTHOR

Top

C. Matthew MacKenzie <matt@xmlglobal.com>

SEE ALSO

Top

http://www.goxml.com


GoXML-XQI documentation  | view source Contained in the GoXML-XQI distribution.