From: Mark F. <mar...@ea...> - 2004-04-20 05:51:08
|
Paul, I'm testing the publishing part of UDDI::Lite. I can obtain an "authInfo" using this: =========================== $attrs{userID} = 'admin'; $attrs{cred} = 'changeit'; $authToken = get_authToken(\%attrs); my $authInfo = $authToken->authInfo; ============================== However, I can't seem to use $authInfo on subsequent calls which require it. For example: ====================== push @params, authInfo($authInfo); <== This is line 155 my $publisherAssertions = get_publisherAssertions(@params); Don't know what to do with 'authInfo' and 'authInfo' elements at publishv2 line 155 ====================== If I try to pass it as a parm to "get_publisherAssertions" ==================== my $publisherAssertions = get_publisherAssertions($authInfo); ==================== It generates the "authinfo" element as prefixed with "namesp1:". I thought this syntax is equivalent to the example "publish1.pl". Am I doing something wrong? Thanks Mark |