Workday Human Resources API - 请求服务版本无效

Posted

技术标签:

【中文标题】Workday Human Resources API - 请求服务版本无效【英文标题】:Workday Human Resources API - Invalid request service version 【发布时间】:2019-10-07 03:42:16 【问题描述】:

我正在尝试向 Get_Employee 端点发出示例 GET 请求,但我收到“请求服务版本无效”错误。

我按照 WorkDay 提供的教程进行操作,但仍然无法正常工作:https://community.workday.com/articles/6120?page=1。

这是我要命中的端点:https://services1.myworkday.com/ccx/service/MYTENANTNAME/Human_Resources/v32.1

我希望收到 XML 有效负载,但收到以下错误

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
   <SOAP-ENV:Body>
      <SOAP-ENV:Fault xmlns:wd="urn:com.workday/bsvc">
         <faultcode>SOAP-ENV:Client.validationError</faultcode>
         <faultstring>Invalid request service version</faultstring>
      </SOAP-ENV:Fault>
   </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

【问题讨论】:

【参考方案1】:

确保您在soapenv:Body 内的第一个节点中指定的版本引用了您提交请求的版本。在下面的示例中,您将在下面的 bsvc:Get_Change_Work_Contact_Information_Request 节点中将其视为一个属性:

   <soapenv:Header>
      <bsvc:Workday_Common_Header>
         <bsvc:Include_Reference_Descriptors_In_Response>false</bsvc:Include_Reference_Descriptors_In_Response>
      </bsvc:Workday_Common_Header>
   </soapenv:Header>
   <soapenv:Body>
      <bsvc:Get_Change_Work_Contact_Information_Request bsvc:version="v31.2">
         <bsvc:Request_References>
            <bsvc:Person_Reference>
               <bsvc:ID bsvc:type="Employee_ID">139420</bsvc:ID>
            </bsvc:Person_Reference>
         </bsvc:Request_References>
      </bsvc:Get_Change_Work_Contact_Information_Request>
   </soapenv:Body>
</soapenv:Envelope>

【讨论】:

感谢您的回复,我肯定错过了这个......我现在遇到身份验证错误,您用于登录 Workday 社区的凭据将与您用于制作这些 API 的凭据相同通话正确吗?当我可以让它完全工作时,我会接受这个作为正确答案.... @GeorgeWright 太棒了!我很高兴就是这样。至于您的身份验证问题,请确保您使用的是 username@tenantname 而不仅仅是您的用户名。 凭据与您的社区登录名不同。它是在 Workday 中设置的 Workday 帐户和密码,与您设置的 SSO 密码不同。

以上是关于Workday Human Resources API - 请求服务版本无效的主要内容,如果未能解决你的问题,请参考以下文章

HR-人力资源管理系统(Human Resources Management System,HRMS)

WPF属性与特性的映射(TypeConverter)

Workday - 如何在 Workday 中以编程方式获取 WSDL 列表

Excel251 | WORKDAY函数计算几个工作日之后的日期

Workday - 设置 OAuth 客户端

验证 Spring SOAP 到 Workday