MediBin 4.5.2
TS 6.5
Dear All,
I have to use use SOAP:Lite to connect to medibin and get some asset information. I can connect fine but I am having trouble calling the operation
GetAsset, which should just need the asset Id. So the following is working fine :-
$service->GetMediaBinServerName->result;
But the following is not working :-
my $assetID = '{BB9D4E1D-D47B-4213-B3D9-66CC0CEA685A}';
my $response = $service-> GetAsset(SOAP:

ata->name("assetID" => $assetID));
I get the following error message :-
soap

erverSystem.Web.Services.Protocols.SoapException: Server was unable to process request. ---> MBPNetModel.MBObjects.MBException: MBException: Invalid asset id.
at MBPNetModel.MediaBinScriptModel.MediaBinServerImpl.GetAsset(String assetID, Int32 revisionNumber, String groupID, MBConnection mbConnection)
at MBPNetModel.WebServices.MediaBinServer.GetAsset(String assetID)
--- End of inner exception stack trace ---
I guess the problem is with the construction if the operation.
Any ideas and thanks in advance ?