有人知道下面的 Jira、Jelly + Soap 脚本有什么问题吗?假设 WSDL 文件是正确的,因为它直接与soap 一起使用。

    <JiraJelly xmlns:jira="jelly:com.atlassian.jira.jelly.enterprise.JiraTagLib" xmlns:core="jelly:core" xmlns:soap="jelly:soap">
<core:new var="endpointvar" className="java.lang.String">
    <core:arg type="java.lang.String" value="http://somehost:9080/newWSDLService/newWSDLPort"/>
</core:new>
<core:new var="Saction" className="java.lang.String">
    <core:arg type="java.lang.String" value="POST http://somehost:9080/newWSDLService/newWSDLPort HTTP/1.1
Accept-Encoding: gzip,deflate
Content-Type: text/xml;charset=UTF-8
SOAPAction: ''
User-Agent: Jakarta Commons-HttpClient/3.1
Host: somehost:9080
Content-Length: 308"/>
</core:new>
<soap:invokeRaw endpoint="${endpointvar}" soapAction="${Saction}" var="answer">
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:new="http://j2ee.netbeans.org/wsdl/BpelModuleJira/newWSDL">
       <soapenv:Header/>
       <soapenv:Body>
          <new:newWSDLOperation>
             <part1>Hello</part1>
          </new:newWSDLOperation>
       </soapenv:Body>
    </soapenv:Envelope>
</soap:invokeRaw>
</JiraJelly>
有帮助吗?

解决方案

  1. 查看所有日志,JellyRunner 偶尔会在奇怪的地方丢弃错误消息。
  2. 作为旁白:这是一种非常奇怪的初始化字符串的方式。尝试:

<core:set var="endpointvar">http://somehost:9080/newWSDLService/newWSDLPort</core:set>

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top