Hi All -
Am having problems trying to use Perl and SOAP and a getExtendedAttributes method from the FileSys WSDL.
Here is the snippet from the WSDL
<wsdl

peration name="getExtendedAttributes" parameterOrder="context fileVPath eaNameList">
<wsdl:documentation>
Gets the extended attributes for a file. For use only with small
EAs.
</wsdl:documentation>
<wsdl:input message="impl:getExtendedAttributesRequest"/>
<wsdl

utput message="impl:getExtendedAttributesResponse"/>
<wsdl:fault message="impl:CSException" name="CSException"/>
</wsdl

peration>
What I am curious about is eaNameList. What format is it expecting?
This is what I am constructing:
my $eaTitle=SOAP:

ata->type(string=>'TeamSite/Metadata/dc.title')->name('eaNameList');
and passing it to:
$result=$filesys->getExtendedAttributes($context, $fileVPath, $eaTitle);
Does this make sense?