0

OpenText から多数のページをエクスポートし、データを解析してから新しいシステムに配置する必要があります。問題は、opentext エクスポートに関するドキュメントが見つからないことです。次のような行が表示されます。

<PGE PGE0="6B77310C0933482D982CB2C14167B620" PGE1="7826862325B54678B783EE09B4BF2202" PGE2="1002" PGE3="0" PGE4="1C9F9B62E132491B8017A4D94B78DD39" PGE5="0" PGE6="" PGE7="0" PGE8="1" PGE9="0" PGE10="0" PGE11="" PGE12="&lt;ATTRIBUTES projectvariantguid=&quot;1B7860D850D8422798A66922BB80162F&quot; /&gt;" />

PGE 1 から 12 が何であるかをまったく知らないので、そのように扱うのは難しいです。他のファイルはあまりよく見えません。この cms のドキュメントがどこにあるか知っている人はいますか?

4

1 に答える 1

0

これは、ファイルのインポートとエクスポートを支援するために私が作成した小さな DOS スクリプトです。これは DOS (yuk!) ですが、ファイルのエクスポートとインポートの方法を決定するのに役立つはずです。このスクリプトを使用してフォルダー全体を転送しました。

@echo off

set OTCS_Path=/OTCS/llisapi.dll

echo This script will export a select OT node and it's children.
echo It will then import the node(s) to a target server.

set /p ExportServer=Enter the Export OT Server name: 
set /p DataID=Enter the node's Data ID: 

start "" "http://%ExportServer%/%OTCS_Path%/llisapi.dll?func=ll&objAction=XMLExport&objId=%DataID%&scope=sub&attributeinfo&nodeinfo&versioninfo=all&content=base64&permissions&extuserinfo"

::    scope=base|sub|one|<n>
::    versioninfo=all|<n>
::    content=base64|plain|cdata
::    nodeinfo&attributeinfo&
::    permissions&extuserinfo

echo Now save the XML as a file on the Import OT Server's host.
pause

set /p ImportServer=Enter the Import OT Server name: 
set /p ImportXML=Enter the export XML full path on the Import OT Server: 
set /p ImportFolderID=Enter the Data ID of the folder to import to: 

start "" "http://%ImportServer%/%OTCS_Path%?func=admin.XMLImport&filename=%ImportXML%&objID=%ImportFolderID%"
于 2015-09-08T18:29:35.213 に答える