Pregunta

alguien sabe lo mal con la siguiente secuencia de comandos Jira, + Jabón jalea? Supongamos que el archivo WSDL es correcta, ya que trabaja directamente con jabón.

    <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>
¿Fue útil?

Solución

  1. Buscar en todos los registros, el JellyRunner cae occaisionally mensajes de error en lugares extraños.
  2. Como acotación al margen: eso es una forma rara serio para inicializar cadenas. Proveedores:

http: // somehost: 9080 / newWSDLService / newWSDLPort

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top