Hi,
I'm pretty new to Mediabin. We're busy migrating to TS 7.4 and Mediabin 8.0.3.
I'm trying to get the browse for an image in mediabin in a DCT to work.
I've set the immediate=true, so that it will populate the arearelpath, but then it also needs a taskId.
I've put in the taskId from the retrieval task, but I get an error saying
Error during import.
Permissions Access Denied!
I've checked the permissions on the task and it is read for everyone. I've also checked the permissions on the folders and that is ok too.
Below is the snippet of code from the DCT.
Any idea's of where I am going wrong would be greatly appreciated. I couldn't find an example of how the taskId should be inserted, so suspect this may be the issue, but not sure of alternatives.
<container combination="and" min="0" max="6"
name="related_image" location="related_image">
<label>Photo</label>
<description>This is an image related to the press release</description>
<item name="image" pathid="image">
<text />
</item>
<item name="file" pathid="file" rowcontinue="t">
<label>File</label>
<description>The area relative path to the image</description>
<text required="t" size="65" />
</item>
<dialog type="mediabin" label="MediaBin">
<dialog-param name="immediate">
<dialog-input>true</dialog-input>
</dialog-param>
<dialog-param name="taskId">
<dialog-input>7D906662-1E20-4DAC-B99A-0C14CBFDB2EC</dialog-input>
</dialog-param>
<dialog-param name="arearelpath">
<dialog-input><field-ref name="file"/></dialog-input>
<dialog-output><field-ref name="file"/></dialog-output>
</dialog-param>
</dialog>
</container>
Thanks!