通过SOAP在Polarion中创建工作项



我正试图通过SOAP Web服务在Polarion中创建工作项,但我无法确定需要哪些内容。我使用的是TrackerWebService WSDL。

示例请求

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:trac="http://ws.polarion.com/TrackerWebService-impl"
xmlns:trac1="http://ws.polarion.com/TrackerWebService-types"
xmlns:proj="http://ws.polarion.com/ProjectWebService-types"
xmlns:typ="http://ws.polarion.com/types">
<soapenv:Header>
<ns1:sessionID soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
soapenv:mustUnderstand="0" xmlns:ns1="http://ws.polarion.com/session"
>........sessionId.........</ns1:sessionID>
</soapenv:Header>
<soapenv:Body>
<trac:createWorkItem>
<trac:content>
<trac1:description>
<typ:type>text/html</typ:type>
<typ:content>test</typ:content>
<typ:contentLossy>false</typ:contentLossy>
</trac1:description>
<trac1:project>
<proj:id>....projectId....</proj:id>
</trac1:project>
<trac1:type>
<trac1:id>testcase</trac1:id>
</trac1:type>
</trac:content>
</trac:createWorkItem>
</soapenv:Body>
</soapenv:Envelope>

响应

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Body>
<soapenv:Fault>
<faultcode>soapenv:Server.userException</faultcode>
<faultstring>java.lang.ClassCastException</faultstring>
<detail>
<ns1:stackTrace xmlns:ns1="http://xml.apache.org/axis/">java.lang.ClassCastException</ns1:stackTrace>
<ns2:hostname xmlns:ns2="http://xml.apache.org/axis/">...server hostname....</ns2:hostname>
<ns3:isRuntimeException xmlns:ns3="http://xml.apache.org/axis/">true</ns3:isRuntimeException>
</detail>
</soapenv:Fault>
</soapenv:Body>
</soapenv:Envelope>

有几点我不确定:

  • 是否需要发送所有xml元素,即使它们是空的
  • 我不知道"Unsolable"属性是什么,我也找不到它的描述
  • 什么时候需要指定其中一个subterra uri?什么时候可以省略它
  • 即使我指定了这样一个uri,它也会抛出另一个错误,说uri不是normId

终于在这方面取得了一些进展。为了回答我自己的问题,希望也能回答一些试图这样做的可怜的家伙的问题:

  • 是否需要发送所有xml元素,即使它们是空的
    没有,只有必需的。所需的不容易确定,需要在极化配置中进行检查,即使在那里,它也分布在不同的地方。

  • 我不知道"Unsolable"属性是什么,我也找不到它的描述
    仍然不知道这个,可能是"nullable"?

  • 什么时候需要指定其中一个subterra uri?什么时候可以省略它
    引用现有项时,需要指定subterra uri,这里有一个陷阱:其中的$符号必须用&36

  • 即使我指定了这样一个uri,它也会抛出另一个错误,说uri不是normId
    这是上一个问题的答案,美元需要转义。

下面是一个工作示例:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:trac="http://ws.polarion.com/TrackerWebService-impl"
xmlns:trac1="http://ws.polarion.com/TrackerWebService-types"
xmlns:proj="http://ws.polarion.com/ProjectWebService-types"
xmlns:typ="http://ws.polarion.com/types">
<soapenv:Header>
<ns1:sessionID soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
soapenv:mustUnderstand="0" xmlns:ns1="http://ws.polarion.com/session"
>...session id ...</ns1:sessionID>
</soapenv:Header>
<soapenv:Body>
<trac:createWorkItem>
<trac:content unresolvable="false">
<!--Optional:-->
<trac1:author uri="subterra:data-service:objects:/default/&#36;{User}...username..."
unresolvable="false"/>
<trac1:created>2021-07-20T09:18:29.905Z</trac1:created>
<trac1:priority>
<trac1:id>medium</trac1:id>
</trac1:priority>
<trac1:project
uri="subterra:data-service:objects:/default/...projectid...&#36;{Project}...projectid..."
unresolvable="false"/>

<trac1:severity>
<trac1:id>basic</trac1:id>
</trac1:severity>

<trac1:status>
<trac1:id>draft</trac1:id>
</trac1:status>


<trac1:title>Just another test</trac1:title>
<trac1:type>
<trac1:id>testcase</trac1:id>
</trac1:type>

<trac1:updated>2021-07-20T09:18:29.993Z</trac1:updated>
</trac:content>
</trac:createWorkItem>
</soapenv:Body>
</soapenv:Envelope>

最新更新