VendURL — specify base URL of the Interchange catalog link program
VendURL is one of mandatory settings in every catalog.cfg.
The directive specifies a base catalog URL, that is, it's entry point (usually a cgi-bin link program).
Example: Setting VendURL
Put the following lines in catalog.cfg:
VendURL http://myhost.mydomain.local/cgi-bin/ic/tutorial
VendURL value can also be a relative path, with or without the
protocol and hostname specification.
Interchange 5.9.0:
Source: lib/Vend/Config.pm
Line 4002 (context shows lines 4002-4006)
sub parse_url {
my($var, $value) = @_;
$value =~ s,/+$,,;
$value;
}