目录

Search

  1. 前言
  2. 业务实体服务简介
  3. Enterprise Java Bean 业务实体服务调用
  4. 具象状态传输业务实体服务调用
  5. 简单对象访问协议业务实体服务调用
  6. 用于交叉引用记录和 BVT 计算的服务
  7. 支持企业关联服务
  8. 清理、分析和转换业务实体数据的外部调用
  9. 使用 REST API 添加业务实体记录

业务实体服务指南

业务实体服务指南

将正确的值写入主记录

将正确的值写入主记录

在使用业务实体服务调用将正确的值写入主记录时,您还可以为此值建立信任设置。如果没有指定信任设置,MDM Hub 会使用管理员系统设置。
使用管理员信任设置写入正确值的 URL 和请求主体的格式如下:
http://<host>:<port>/<context>/<database ID>/<business entity>/<row ID>?systemName=<source system providing the correct value>{ "<field name>": "<correct value>", "$original": { "<field name>": "<current value>", }, "TRUST": { "<field name>": { "trustSetting" : { custom: false } } } }
使用定义的信任设置写入正确值的 URL 和请求主体的格式如下:
http://<host>:<port>/<context>/<database ID>/<business entity>/<row ID>?systemName=<source system providing the correct value>{ "<field name>": "<correct value>", "$original": { "<field name>": "<current value>", }, "TRUST": { "firstName": { "trustSetting" : { custom: true, // if custom=true, all other trustSetting fields //are mandatory. If they are not set, //the service will return an error. minimumTrust: <minimum trust percent>, maximumTrust: <maximum trust percent>, timeUnit: "<units for measuring trust decay>", maximumTimeUnits: <number of units>, graphType: "<name of graph type>" } } } }