I'm having problems getting ars_GetListEntry to work correctly/at all. I'm getting the error "qualifier is not of type ARQualifierStructPrt at test.pl line 11"
any ideas? script looks like this:
#!/usr/local/bin/perl
use ARS;
$c = ars_Login("my_server", "my_account", "my_password");
if (!$c) {print("Could not connect to ARS ($ars_errstr)\n");exit(1);}
# die "ars_Login: $ars_errstr";
($q = ars_LoadQualifier($c, "User", "'Login Name' = \"my_username\"")) ||
die $ars_errstr;
%entries = ars_GetListEntry($c, "User", $q , 100);
foreach $entry_id (sort keys %entries) {
print "EntryID: $entry_id Short-Descrip: $entries{$entry_id}\n";
I also tried qual of "1=1".