apm_load_xml_packages

one of the documented procedures in this installation of the ACS
Usage:
apm_load_xml_packages
What it does:
Loads XML packages into the running interpreter, if they're not already there. We need to load these packages once per connection, since AOLserver doesn't seem to deal with packages very well.
Defined in: /web/philip/packages/acs-core/apm-procs.tcl

Source code:


    global ad_conn
    if { ![info exists ad_conn(xml_loaded_p)] } {
	foreach file [glob "[acs_package_root_dir acs-core]/xml-*-procs.tcl"] {
	    apm_source $file
	}
	set ad_conn(xml_loaded_p) 1
    }

    package require xml 1.9


philg@mit.edu