<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Problems with web services task! in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/problems-with-web-services-task/m-p/168439#M121904</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for the reply,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Now I've changed the BPMN file with the&amp;nbsp; &lt;/SPAN&gt;&lt;A href="http://webservices.daehosting.com/ISBN" rel="nofollow noopener noreferrer"&gt;http://webservices.daehosting.com/ISBN&lt;/A&gt;&lt;SPAN&gt; namespace&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Now the situation is that the process enters in the “web service task” and parse the wsdl,&amp;nbsp; but then it is not able to correctly create the Web service request.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here the new BPMN file and the current error.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&lt;BR /&gt;&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;&lt;BR /&gt;&amp;lt;definitions xmlns="&lt;A href="http://www.omg.org/spec/BPMN/20100524/MODEL" rel="nofollow noopener noreferrer"&gt;http://www.omg.org/spec/BPMN/20100524/MODEL&lt;/A&gt;"&lt;BR /&gt; xmlns:activiti="&lt;A href="http://activiti.org/bpmn" rel="nofollow noopener noreferrer"&gt;http://activiti.org/bpmn&lt;/A&gt;"&lt;BR /&gt; targetNamespace="&lt;A href="http://www.bpmnwithactiviti.org" rel="nofollow noopener noreferrer"&gt;http://www.bpmnwithactiviti.org&lt;/A&gt;" &lt;BR /&gt; xmlns:tns="&lt;A href="http://www.bpmnwithactiviti.org" rel="nofollow noopener noreferrer"&gt;http://www.bpmnwithactiviti.org&lt;/A&gt;"&lt;BR /&gt; xmlns:isbn="&lt;A href="http://webservices.daehosting.com/ISBN" rel="nofollow noopener noreferrer"&gt;http://webservices.daehosting.com/ISBN&lt;/A&gt;"&amp;gt;&lt;BR /&gt;&lt;BR /&gt; &amp;lt;import importType="&lt;A href="http://schemas.xmlsoap.org/wsdl/" rel="nofollow noopener noreferrer"&gt;http://schemas.xmlsoap.org/wsdl/&lt;/A&gt;"&lt;BR /&gt;&amp;nbsp; namespace="&lt;A href="http://webservices.daehosting.com/ISBN" rel="nofollow noopener noreferrer"&gt;http://webservices.daehosting.com/ISBN&lt;/A&gt;" location="&lt;A href="http://webservices.daehosting.com/services/isbnservice.wso?WSDL%22/" rel="nofollow noopener noreferrer"&gt;http://webservices.daehosting.com/services/isbnservice.wso?WSDL'/&lt;/A&gt;&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; &amp;lt;process id="webserviceprocess"&amp;gt;&lt;BR /&gt; &lt;BR /&gt;&amp;nbsp; &amp;lt;startEvent id="startevent" name="Start" /&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;sequenceFlow sourceRef="startevent" targetRef="theScriptTask" /&amp;gt;&lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;&amp;nbsp; &amp;lt;scriptTask id="theScriptTask" scriptFormat="groovy" name="Execute script"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;lt;script&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; System.out.println("sISBNInput : "+sISBNInput);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;lt;/script&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;/scriptTask&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;sequenceFlow sourceRef="theScriptTask" targetRef="webService" /&amp;gt;&lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;&amp;nbsp; &amp;lt;serviceTask id="webService"&lt;BR /&gt;&amp;nbsp;&amp;nbsp; name="request web service"&lt;BR /&gt;&amp;nbsp;&amp;nbsp; implementation="##WebService"&lt;BR /&gt;&amp;nbsp;&amp;nbsp; operationRef="tns:IsValidISBN10Operation"&amp;gt;&lt;BR /&gt; &lt;BR /&gt;&amp;lt;!–&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Warning: The following code abuses the syntax of Data Associations&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for a radical shortcut.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; –&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;lt;dataInputAssociation&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;sourceRef&amp;gt;sISBNInput&amp;lt;/sourceRef&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;targetRef&amp;gt;sISBN&amp;lt;/targetRef&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;lt;/dataInputAssociation&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;lt;dataOutputAssociation&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;sourceRef&amp;gt;IsValidISBN10Result&amp;lt;/sourceRef&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;targetRef&amp;gt;webserviceResponse&amp;lt;/targetRef&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;lt;/dataOutputAssociation&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;/serviceTask&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;sequenceFlow sourceRef="webService" targetRef="waitState" /&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;receiveTask id="waitState" /&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;sequenceFlow sourceRef="waitState" targetRef="endevent" /&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;endEvent id="endevent" name="End" /&amp;gt;&lt;BR /&gt; &amp;lt;/process&amp;gt;&lt;BR /&gt; &lt;BR /&gt; &amp;lt;itemDefinition id="sISBN" structureRef="string" /&amp;gt;&lt;BR /&gt; &amp;lt;itemDefinition id="sISBNInput" structureRef="string" /&amp;gt;&lt;BR /&gt; &amp;lt;itemDefinition id="IsValidISBN10Result" structureRef="boolean" /&amp;gt;&lt;BR /&gt; &amp;lt;itemDefinition id="webserviceResponse" structureRef="boolean" /&amp;gt;&lt;BR /&gt; &lt;BR /&gt; &amp;lt;interface name="Web Service request" implementationRef="isbn:ISBNServiceSoapType"&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;operation id="IsValidISBN10Operation" name="iban operation" implementationRef="isbn:IsValidISBN10"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;lt;inMessageRef&amp;gt;IsValidISBN10SoapRequestMessage&amp;lt;/inMessageRef&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;lt;outMessageRef&amp;gt;IsValidISBN10SoapResponseMessage&amp;lt;/outMessageRef&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;/operation&amp;gt;&lt;BR /&gt; &amp;lt;/interface&amp;gt;&lt;BR /&gt; &lt;BR /&gt; &amp;lt;message id="IsValidISBN10SoapRequestMessage" itemRef="tns:IsValidISBN10SoapRequestItem"/&amp;gt;&lt;BR /&gt; &amp;lt;message id="IsValidISBN10SoapResponseMessage" itemRef="tns:IsValidISBN10SoapResponseItem"/&amp;gt; &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; &amp;lt;itemDefinition id="IsValidISBN10SoapRequestItem" structureRef="isbn:IsValidISBN10"/&amp;gt;&lt;BR /&gt; &amp;lt;itemDefinition id="IsValidISBN10SoapResponseItem" structureRef="isbn:IsValidISBN10Response"/&amp;gt;&lt;BR /&gt; &lt;BR /&gt;&amp;lt;/definitions&amp;gt;&lt;BR /&gt;&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&lt;BR /&gt;apr 02, 2014 1:39:06 PM org.activiti.engine.impl.webservice.WSOperation safeSend&lt;BR /&gt;WARNING: Error calling WS &lt;A href="http://webservices.daehosting.com/ISBN:ISBNService" rel="nofollow noopener noreferrer"&gt;http://webservices.daehosting.com/ISBN:ISBNService&lt;/A&gt;&lt;BR /&gt;org.apache.cxf.interceptor.Fault: Response was of unexpected text/html ContentType.&amp;nbsp; Incoming portion of HTML stream: &amp;lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "&lt;A href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" rel="nofollow noopener noreferrer"&gt;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&lt;/A&gt;"&amp;gt;&lt;BR /&gt;&amp;lt;html xmlns="&lt;A href="http://www.w3.org/1999/xhtml" rel="nofollow noopener noreferrer"&gt;http://www.w3.org/1999/xhtml&lt;/A&gt;"&amp;gt;&lt;BR /&gt;&amp;lt;head&amp;gt;&lt;BR /&gt;&amp;lt;meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/&amp;gt;&lt;BR /&gt;&amp;lt;title&amp;gt;500 - Internal server error.&amp;lt;/title&amp;gt;&lt;BR /&gt;&amp;lt;style type="text/css"&amp;gt;&lt;BR /&gt;&amp;lt;!–&lt;BR /&gt;body{margin:0;font-size:.7em;font-family:Verdana, Arial, Helvetica, sans-serif;background:#EEEEEE;}&lt;BR /&gt;fieldset{padding:0 15px 10px 15px;} &lt;BR /&gt;h1{font-size:2.4em;margin:0;color:#FFF;}&lt;BR /&gt;……..&lt;BR /&gt;&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I’ve captured a trace with wireshark and the request it’s not well formed&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;It’s appears in the following way:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;lt;soap:Envelope xmlns:s11='&lt;A href="http://schemas.xmlsoap.org/soap/envelope/" rel="nofollow noopener noreferrer"&gt;http://schemas.xmlsoap.org/soap/envelope/&lt;/A&gt;'&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;soap:Body&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;sValidISBN10 xmlns: ='&lt;A href="http://webservices.daehosting.com/ISBN" rel="nofollow noopener noreferrer"&gt;http://webservices.daehosting.com/ISBN&lt;/A&gt;'&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;/soap:Body&amp;gt;&lt;BR /&gt;&amp;lt;/soap:Envelope&amp;gt;&lt;BR /&gt;&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So the request doesn’t contain the sISBN element in the sValidISBN10 operation.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Could you help me to go ahead ? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks a lot in advances!!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Massimo&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;P.s. I have also tried in this way with the same result &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; &amp;lt;ioSpecification&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;dataInput&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; itemSubjectRef="tns:IsValidISBN10SoapRequestItem" id="dataInput" /&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;dataOutput&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; itemSubjectRef="tns:IsValidISBN10SoapResponseItem" id="dataOutput" /&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;inputSet&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;dataInputRefs&amp;gt;dataInput&amp;lt;/dataInputRefs&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/inputSet&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;outputSet&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;dataOutputRefs&amp;gt;dataOutput&amp;lt;/dataOutputRefs&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/outputSet&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; &amp;lt;/ioSpecification&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;!–&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Warning: The following code abuses the syntax of Data Associations&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for a radical shortcut.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; –&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; &amp;lt;dataInputAssociation&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;sourceRef&amp;gt;sISBNInput&amp;lt;/sourceRef&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;targetRef&amp;gt;dataInput&amp;lt;/targetRef&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;assignment&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;from&amp;gt;${sISBNInput}&amp;lt;/from&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;to&amp;gt;${dataInput.sISBN}&amp;lt;/to&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/assignment&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; &amp;lt;/dataInputAssociation&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Apr 2014 11:44:02 GMT</pubDate>
    <dc:creator>massimosassi</dc:creator>
    <dc:date>2014-04-02T11:44:02Z</dc:date>
    <item>
      <title>Problems with web services task!</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/problems-with-web-services-task/m-p/168437#M121902</link>
      <description>Hello, I’m trying to implement a web service task with activiti but I'm not able to solve a problem.I'm following examples in “activiti in action book” and in the “cxf-module SimplisticDataFlow” example on the github activiti repository (https://github.com/Activiti/Activiti/tree/master/modules/activ</description>
      <pubDate>Mon, 31 Mar 2014 15:28:28 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/problems-with-web-services-task/m-p/168437#M121902</guid>
      <dc:creator>massimosassi</dc:creator>
      <dc:date>2014-03-31T15:28:28Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with web services task!</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/problems-with-web-services-task/m-p/168438#M121903</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Massimo,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;One thing I see is that the IsValidISBN10 and isValidISBN10Result structure refs are not using the correct namespace. Because the imported WSDL has &lt;/SPAN&gt;&lt;A href="http://webservices.daehosting.com/ISBN" rel="nofollow noopener noreferrer"&gt;http://webservices.daehosting.com/ISBN&lt;/A&gt;&lt;SPAN&gt; and you are using the target namespace in the process definition.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Best regards,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Apr 2014 07:05:33 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/problems-with-web-services-task/m-p/168438#M121903</guid>
      <dc:creator>trademak</dc:creator>
      <dc:date>2014-04-01T07:05:33Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with web services task!</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/problems-with-web-services-task/m-p/168439#M121904</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for the reply,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Now I've changed the BPMN file with the&amp;nbsp; &lt;/SPAN&gt;&lt;A href="http://webservices.daehosting.com/ISBN" rel="nofollow noopener noreferrer"&gt;http://webservices.daehosting.com/ISBN&lt;/A&gt;&lt;SPAN&gt; namespace&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Now the situation is that the process enters in the “web service task” and parse the wsdl,&amp;nbsp; but then it is not able to correctly create the Web service request.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here the new BPMN file and the current error.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&lt;BR /&gt;&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;&lt;BR /&gt;&amp;lt;definitions xmlns="&lt;A href="http://www.omg.org/spec/BPMN/20100524/MODEL" rel="nofollow noopener noreferrer"&gt;http://www.omg.org/spec/BPMN/20100524/MODEL&lt;/A&gt;"&lt;BR /&gt; xmlns:activiti="&lt;A href="http://activiti.org/bpmn" rel="nofollow noopener noreferrer"&gt;http://activiti.org/bpmn&lt;/A&gt;"&lt;BR /&gt; targetNamespace="&lt;A href="http://www.bpmnwithactiviti.org" rel="nofollow noopener noreferrer"&gt;http://www.bpmnwithactiviti.org&lt;/A&gt;" &lt;BR /&gt; xmlns:tns="&lt;A href="http://www.bpmnwithactiviti.org" rel="nofollow noopener noreferrer"&gt;http://www.bpmnwithactiviti.org&lt;/A&gt;"&lt;BR /&gt; xmlns:isbn="&lt;A href="http://webservices.daehosting.com/ISBN" rel="nofollow noopener noreferrer"&gt;http://webservices.daehosting.com/ISBN&lt;/A&gt;"&amp;gt;&lt;BR /&gt;&lt;BR /&gt; &amp;lt;import importType="&lt;A href="http://schemas.xmlsoap.org/wsdl/" rel="nofollow noopener noreferrer"&gt;http://schemas.xmlsoap.org/wsdl/&lt;/A&gt;"&lt;BR /&gt;&amp;nbsp; namespace="&lt;A href="http://webservices.daehosting.com/ISBN" rel="nofollow noopener noreferrer"&gt;http://webservices.daehosting.com/ISBN&lt;/A&gt;" location="&lt;A href="http://webservices.daehosting.com/services/isbnservice.wso?WSDL%22/" rel="nofollow noopener noreferrer"&gt;http://webservices.daehosting.com/services/isbnservice.wso?WSDL'/&lt;/A&gt;&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; &amp;lt;process id="webserviceprocess"&amp;gt;&lt;BR /&gt; &lt;BR /&gt;&amp;nbsp; &amp;lt;startEvent id="startevent" name="Start" /&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;sequenceFlow sourceRef="startevent" targetRef="theScriptTask" /&amp;gt;&lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;&amp;nbsp; &amp;lt;scriptTask id="theScriptTask" scriptFormat="groovy" name="Execute script"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;lt;script&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; System.out.println("sISBNInput : "+sISBNInput);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;lt;/script&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;/scriptTask&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;sequenceFlow sourceRef="theScriptTask" targetRef="webService" /&amp;gt;&lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;&amp;nbsp; &amp;lt;serviceTask id="webService"&lt;BR /&gt;&amp;nbsp;&amp;nbsp; name="request web service"&lt;BR /&gt;&amp;nbsp;&amp;nbsp; implementation="##WebService"&lt;BR /&gt;&amp;nbsp;&amp;nbsp; operationRef="tns:IsValidISBN10Operation"&amp;gt;&lt;BR /&gt; &lt;BR /&gt;&amp;lt;!–&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Warning: The following code abuses the syntax of Data Associations&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for a radical shortcut.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; –&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;lt;dataInputAssociation&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;sourceRef&amp;gt;sISBNInput&amp;lt;/sourceRef&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;targetRef&amp;gt;sISBN&amp;lt;/targetRef&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;lt;/dataInputAssociation&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;lt;dataOutputAssociation&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;sourceRef&amp;gt;IsValidISBN10Result&amp;lt;/sourceRef&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;targetRef&amp;gt;webserviceResponse&amp;lt;/targetRef&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;lt;/dataOutputAssociation&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;/serviceTask&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;sequenceFlow sourceRef="webService" targetRef="waitState" /&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;receiveTask id="waitState" /&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;sequenceFlow sourceRef="waitState" targetRef="endevent" /&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;endEvent id="endevent" name="End" /&amp;gt;&lt;BR /&gt; &amp;lt;/process&amp;gt;&lt;BR /&gt; &lt;BR /&gt; &amp;lt;itemDefinition id="sISBN" structureRef="string" /&amp;gt;&lt;BR /&gt; &amp;lt;itemDefinition id="sISBNInput" structureRef="string" /&amp;gt;&lt;BR /&gt; &amp;lt;itemDefinition id="IsValidISBN10Result" structureRef="boolean" /&amp;gt;&lt;BR /&gt; &amp;lt;itemDefinition id="webserviceResponse" structureRef="boolean" /&amp;gt;&lt;BR /&gt; &lt;BR /&gt; &amp;lt;interface name="Web Service request" implementationRef="isbn:ISBNServiceSoapType"&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;operation id="IsValidISBN10Operation" name="iban operation" implementationRef="isbn:IsValidISBN10"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;lt;inMessageRef&amp;gt;IsValidISBN10SoapRequestMessage&amp;lt;/inMessageRef&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;lt;outMessageRef&amp;gt;IsValidISBN10SoapResponseMessage&amp;lt;/outMessageRef&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;/operation&amp;gt;&lt;BR /&gt; &amp;lt;/interface&amp;gt;&lt;BR /&gt; &lt;BR /&gt; &amp;lt;message id="IsValidISBN10SoapRequestMessage" itemRef="tns:IsValidISBN10SoapRequestItem"/&amp;gt;&lt;BR /&gt; &amp;lt;message id="IsValidISBN10SoapResponseMessage" itemRef="tns:IsValidISBN10SoapResponseItem"/&amp;gt; &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; &amp;lt;itemDefinition id="IsValidISBN10SoapRequestItem" structureRef="isbn:IsValidISBN10"/&amp;gt;&lt;BR /&gt; &amp;lt;itemDefinition id="IsValidISBN10SoapResponseItem" structureRef="isbn:IsValidISBN10Response"/&amp;gt;&lt;BR /&gt; &lt;BR /&gt;&amp;lt;/definitions&amp;gt;&lt;BR /&gt;&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&lt;BR /&gt;apr 02, 2014 1:39:06 PM org.activiti.engine.impl.webservice.WSOperation safeSend&lt;BR /&gt;WARNING: Error calling WS &lt;A href="http://webservices.daehosting.com/ISBN:ISBNService" rel="nofollow noopener noreferrer"&gt;http://webservices.daehosting.com/ISBN:ISBNService&lt;/A&gt;&lt;BR /&gt;org.apache.cxf.interceptor.Fault: Response was of unexpected text/html ContentType.&amp;nbsp; Incoming portion of HTML stream: &amp;lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "&lt;A href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" rel="nofollow noopener noreferrer"&gt;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&lt;/A&gt;"&amp;gt;&lt;BR /&gt;&amp;lt;html xmlns="&lt;A href="http://www.w3.org/1999/xhtml" rel="nofollow noopener noreferrer"&gt;http://www.w3.org/1999/xhtml&lt;/A&gt;"&amp;gt;&lt;BR /&gt;&amp;lt;head&amp;gt;&lt;BR /&gt;&amp;lt;meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/&amp;gt;&lt;BR /&gt;&amp;lt;title&amp;gt;500 - Internal server error.&amp;lt;/title&amp;gt;&lt;BR /&gt;&amp;lt;style type="text/css"&amp;gt;&lt;BR /&gt;&amp;lt;!–&lt;BR /&gt;body{margin:0;font-size:.7em;font-family:Verdana, Arial, Helvetica, sans-serif;background:#EEEEEE;}&lt;BR /&gt;fieldset{padding:0 15px 10px 15px;} &lt;BR /&gt;h1{font-size:2.4em;margin:0;color:#FFF;}&lt;BR /&gt;……..&lt;BR /&gt;&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I’ve captured a trace with wireshark and the request it’s not well formed&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;It’s appears in the following way:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;lt;soap:Envelope xmlns:s11='&lt;A href="http://schemas.xmlsoap.org/soap/envelope/" rel="nofollow noopener noreferrer"&gt;http://schemas.xmlsoap.org/soap/envelope/&lt;/A&gt;'&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;soap:Body&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;sValidISBN10 xmlns: ='&lt;A href="http://webservices.daehosting.com/ISBN" rel="nofollow noopener noreferrer"&gt;http://webservices.daehosting.com/ISBN&lt;/A&gt;'&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;/soap:Body&amp;gt;&lt;BR /&gt;&amp;lt;/soap:Envelope&amp;gt;&lt;BR /&gt;&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So the request doesn’t contain the sISBN element in the sValidISBN10 operation.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Could you help me to go ahead ? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks a lot in advances!!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Massimo&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;P.s. I have also tried in this way with the same result &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; &amp;lt;ioSpecification&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;dataInput&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; itemSubjectRef="tns:IsValidISBN10SoapRequestItem" id="dataInput" /&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;dataOutput&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; itemSubjectRef="tns:IsValidISBN10SoapResponseItem" id="dataOutput" /&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;inputSet&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;dataInputRefs&amp;gt;dataInput&amp;lt;/dataInputRefs&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/inputSet&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;outputSet&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;dataOutputRefs&amp;gt;dataOutput&amp;lt;/dataOutputRefs&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/outputSet&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; &amp;lt;/ioSpecification&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;!–&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Warning: The following code abuses the syntax of Data Associations&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for a radical shortcut.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; –&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; &amp;lt;dataInputAssociation&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;sourceRef&amp;gt;sISBNInput&amp;lt;/sourceRef&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;targetRef&amp;gt;dataInput&amp;lt;/targetRef&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;assignment&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;from&amp;gt;${sISBNInput}&amp;lt;/from&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;to&amp;gt;${dataInput.sISBN}&amp;lt;/to&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/assignment&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; &amp;lt;/dataInputAssociation&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2014 11:44:02 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/problems-with-web-services-task/m-p/168439#M121904</guid>
      <dc:creator>massimosassi</dc:creator>
      <dc:date>2014-04-02T11:44:02Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with web services task!</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/problems-with-web-services-task/m-p/168440#M121905</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If you create a unit test project so I can reproduce it easily I can look into it in more detail.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Could you do that?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Apr 2014 09:53:03 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/problems-with-web-services-task/m-p/168440#M121905</guid>
      <dc:creator>trademak</dc:creator>
      <dc:date>2014-04-07T09:53:03Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with web services task!</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/problems-with-web-services-task/m-p/168441#M121906</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I've uploaded the unit test project here &lt;/SPAN&gt;&lt;A href="https://github.com/MassimoSassi/WSsimpleUnitTest1" rel="nofollow noopener noreferrer"&gt;https://github.com/MassimoSassi/WSsimpleUnitTest1&lt;/A&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Let'me know if you can read and reproduce the unit test project &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks a lot,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Massimo&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Apr 2014 07:54:32 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/problems-with-web-services-task/m-p/168441#M121906</guid>
      <dc:creator>massimosassi</dc:creator>
      <dc:date>2014-04-08T07:54:32Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with web services task!</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/problems-with-web-services-task/m-p/168442#M121907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Massimo,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I just gave the web service a try, first with SoapUI. It gives me back a HTTP 500 error when I make a valid request.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Are you sure this web service is working as expected?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Best regards,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Apr 2014 13:16:03 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/problems-with-web-services-task/m-p/168442#M121907</guid>
      <dc:creator>trademak</dc:creator>
      <dc:date>2014-04-08T13:16:03Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with web services task!</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/problems-with-web-services-task/m-p/168443#M121908</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Tiijs, &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;yes the Web service is working if the request is well formed, otherwise the server returns the HTTP 500 error.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The sISBN parameter in the IsValidISBN10 operation must contain a 10 char string (You have to pass a 10 digits number)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;For example if you pass "0123456789" in the sISBN the server return "true" in the result&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I've tried also with soapUI and it's ok.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; &amp;lt;soapenv:Header/&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; &amp;lt;soapenv:Body&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;isbn:IsValidISBN10&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;isbn:sISBN&amp;gt;0123456789&amp;lt;/isbn:sISBN&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/isbn:IsValidISBN10&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; &amp;lt;/soapenv:Body&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;/soapenv:Envelope&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've also implemented the request&amp;nbsp; with an activiti process but using&amp;nbsp; a "java service task" instead of a BPMN "web services task".&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;And with the java service task is ok!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I'd like to implement and test it also with a BPMN "web services task", but I'm not able to insert the right sISBN parameter in the operation.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks a lot,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Massimo&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Apr 2014 09:21:28 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/problems-with-web-services-task/m-p/168443#M121908</guid>
      <dc:creator>massimosassi</dc:creator>
      <dc:date>2014-04-09T09:21:28Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with web services task!</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/problems-with-web-services-task/m-p/168444#M121909</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Massimo,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Ok, yes now I get a valid response back.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I've also found the error in the BPMN process definition. The sISBN input parameter should be in lower case, so sisbn. Then it works. Why it needs to be in lowercase right now I haven't found yet, shouldn't be needed of course. Maybe you could create a JIRA for that.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Best regards,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Apr 2014 07:27:44 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/problems-with-web-services-task/m-p/168444#M121909</guid>
      <dc:creator>trademak</dc:creator>
      <dc:date>2014-04-14T07:27:44Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with web services task!</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/problems-with-web-services-task/m-p/168445#M121910</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks TiJs,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;in lower case it's ok.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I'll try to create a Jira in the next days if it can useful.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thks &amp;amp; regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Massimo&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2014 09:56:54 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/problems-with-web-services-task/m-p/168445#M121910</guid>
      <dc:creator>massimosassi</dc:creator>
      <dc:date>2014-04-16T09:56:54Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with web services task!</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/problems-with-web-services-task/m-p/168446#M121911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello..&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I like this valuable concept and also want to discuss my problem here.. I used Web Service Task to import data from wsdl web link to an xml.The service is made with ws Http Binding, i think this is the problem , but can't find the reson of this problem..Please tell me what i can do..!!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;a href="&lt;/SPAN&gt;&lt;A href="http://www.coreseoservices.com/design/html-website/" rel="nofollow noopener noreferrer"&gt;http://www.coreseoservices.com/design/html-website/&lt;/A&gt;&lt;SPAN&gt;"&amp;gt;HTML5 Website Services&amp;lt;/a&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2014 11:06:22 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/problems-with-web-services-task/m-p/168446#M121911</guid>
      <dc:creator>robinmehta</dc:creator>
      <dc:date>2014-08-05T11:06:22Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with web services task!</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/problems-with-web-services-task/m-p/168447#M121912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am still getting null for the output value. If anyone can help especially Massimo or trademak, who have discussed on this topic. I am&amp;nbsp; using the same project &lt;/SPAN&gt;&lt;A href="https://github.com/MassimoSassi/WSsimpleUnitTest1" rel="nofollow noopener noreferrer"&gt;https://github.com/MassimoSassi/WSsimpleUnitTest1&lt;/A&gt;&lt;SPAN&gt; and running it very well.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I noticed that the web service is invoked CORRECTLY, but the response is NULL. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Can someone told me why my response is null?? I am using sisbn as input and input is reached at server correctly, but response is becoming null ?? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Waiting for any suggestion please?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Aug 2014 15:35:02 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/problems-with-web-services-task/m-p/168447#M121912</guid>
      <dc:creator>fahad1</dc:creator>
      <dc:date>2014-08-27T15:35:02Z</dc:date>
    </item>
  </channel>
</rss>

