通过此Web服务获取文件夹数据ucm oracle中的IdcService =“LIST_PATH”给出csSystemCodeExecutionError

问题描述 投票:0回答:1
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ucm="http://www.oracle.com/UCM">
                        <soapenv:Header/>

                        <soapenv:Body>

                        <ucm:GenericRequest webKey="cs">

                            <ucm:Service IdcService="LIST_PATH">

                            <ucm:Document>
                                <ucm:Field name="IdcService">LIST_PATH</ucm:Field>
                                <ucm:Folder>
                                <ucm:Field name="path">Folders/Users/SCM02.STUDENT/demofolder</ucm:Field>
                                </ucm:Folder>
                            </ucm:Document>
                            </ucm:Service>
                        </ucm:GenericRequest>
                        </soapenv:Body>
                    </soapenv:Envelope>

所以这是我第一次做这种任务,所以如果一开始有些事情没有意义,我深表歉意。 我正在使用此有效负载来获取 ucm oracle 中存在的文件夹中的数据,但它给出了此错误 csSystemCodeExecutionError

我期待 UCM 中文件夹内的内容,例如这些文档 ID 中存在的文档 ID 和数据

soapui oracle-ucm
1个回答
0
投票

在全新的 UCM 安装中,没有名称为

LIST_PATH
的服务。 您可能有一个具有该名称的自定义服务,在这种情况下您会遇到其他问题。
您要做的第一件事就是运行
PING_SERVER
。如果有效,您应该可以开始了。
以下是所有标准服务的列表: https://docs.oracle.com/en/middleware/webcenter/content/12.2.1.4/services-reference/core-content-server-services.html#GUID-5443AA3F-DDE9-4E91-BB41-93651ABE7FFF

© www.soinside.com 2019 - 2024. All rights reserved.