Tridion: What should be the xml request using the Business Connector to load images along with XML data?

I am using Tridion release 5.3. I am new to Tridion. Using the business connector, I want to upload image files along with my XML data. My current request is as follows.

<?xml version='1.0'?>
<tcmapi:Message xmlns:tcmapi="http://www.tridion.com/ContentManager/5.0/TCMAPI"
version="5.0" from="testTool" failOnError="false">
<tcmapi:Request ID="Request1" preserve="false">
  <tcmapi:GetItem itemURI="tcm:6-3146" writeBinaryToDisk="true">
    <tcmapi:ItemFilter type="XMLReadAll"/>
  </tcmapi:GetItem>
</tcmapi:Request>
</tcmapi:Message>

What should I change?

+5
source share
1 answer

Do not think that you can only do this with the Business Connector.

The response that you return from the GetItem request using the "writeBinaryToDisk" attribute should contain the path to where the media file was recorded - usually in the Windows "Temp" folder, but you can configure it by adding "binaryPath". Search for:

<tcmapi:MultimediaFilename>C:\WINNT\Temp\rad5FB9C.tmp</tcmapi:MultimediaFilename>

, , , Business Connector, / , , .

"-", , . "binaryPath" , -, . !

, - , , "images". Tridion !

+7

All Articles