bpel

Which of these technology to use for BPM / Workflow engine? Any comparison of features? [closed]

烂漫一生 提交于 2021-02-20 19:54:36
问题 Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 7 years ago . Improve this question Which one is the best for BPM/Workflow Engine? YAWL, XPDL, jPDL, BPEL or BPMN (different versions)? Is there any comparison of the technologies so that I can find what best suites my needs? It seems more people suggest BPMN or BPEL, but I don't get why. I found

Creating WSO2 BPEL project for JSON webservices

…衆ロ難τιáo~ 提交于 2021-01-29 08:31:52
问题 I have the WSO2 Developer Studio Eclipse Plugin downloaded. And I was looking at this tutorial: http://wso2.com/library/tutorials/2010/07/eclipse-bpel-designer-wso2bps-tutorial/. But it seems to be talking about using SOAP. But my webservices, which are written in PHP(in live servers) are REST using JSON. Accepts data via HTTP GET methods by these webservices and respond back with JSON data. So how will I implement a BPEL project making use of the JSON webservices? Any ideas or suggestion? Am

Sending Data to Azure Using Oracle EBS

帅比萌擦擦* 提交于 2020-01-16 09:11:14
问题 I have a requirement where i need to send information to Azure. i tried web service but it throws me an error. Then someone suggested to use SOA Suite , i am unsure how to use it. Can somebody guide. Regards, 回答1: Not enough rep to comment... The fact they're using Azure to host their web service is irrelevant. It still follows the ABC rules of Web Services - Address, Binding, Contract. When you say calling their web service is "not working", how? What error message are you getting? 回答2: SOA

traversing a BPEL array

99封情书 提交于 2020-01-05 17:22:26
问题 I need to traverse an array (input to BPEL) in java embed activity and need to generate a response (output variable) of BPEL process. I am using Jdeveloper and SOA 11g following is my xsd <?xml version="1.0" encoding="UTF-8"?> <schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://xmlns.oracle.com/BPELInpuandOutPutArray_jws/Project1/BPEL_input_output_array" xmlns="http://www.w3.org/2001/XMLSchema"> <element name="process"> <complexType> <sequence>

traversing a BPEL array

我们两清 提交于 2020-01-05 17:19:46
问题 I need to traverse an array (input to BPEL) in java embed activity and need to generate a response (output variable) of BPEL process. I am using Jdeveloper and SOA 11g following is my xsd <?xml version="1.0" encoding="UTF-8"?> <schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://xmlns.oracle.com/BPELInpuandOutPutArray_jws/Project1/BPEL_input_output_array" xmlns="http://www.w3.org/2001/XMLSchema"> <element name="process"> <complexType> <sequence>

traversing a BPEL array

我们两清 提交于 2020-01-05 17:19:14
问题 I need to traverse an array (input to BPEL) in java embed activity and need to generate a response (output variable) of BPEL process. I am using Jdeveloper and SOA 11g following is my xsd <?xml version="1.0" encoding="UTF-8"?> <schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://xmlns.oracle.com/BPELInpuandOutPutArray_jws/Project1/BPEL_input_output_array" xmlns="http://www.w3.org/2001/XMLSchema"> <element name="process"> <complexType> <sequence>

wso2 wait loop doesn't work after restart

风格不统一 提交于 2020-01-04 10:36:41
问题 I've developed a pooling logic in bpel process on the WSO2 BPS 3.0.0 connected to a Postgresql 9 DB. It looks like this: <bpel:repeatUntil name="RepeatUntilIncidentCompleted"> <bpel:sequence name="CheckIncidentStatus"> <bpel:wait name="Wait"> <bpel:for expressionLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath1.0"><![CDATA['PT1M']]></bpel:for> </bpel:wait> <!-- invoke a service, copy status to a vStatus variable --> </bpel:sequence> <bpel:condition expressionLanguage="urn:oasis:names:tc

How to handle BPEL fault

主宰稳场 提交于 2019-12-25 18:05:22
问题 How to handle fault in BPEL (SOA 11.1.1.4). I have a BPEL process the inputs are as 3 Strings input and one Array of a Employee class. Now I want to put validation as inputs can not be null. then how to do fault handling for this. everytime i am facing Selection failure Exception. One way to achieve this I should the validation before invoking the BPEL. how i can handle this inside the process. I am using SOA 11.1.1.4 and JDeveloper 11.1.1.4 回答1: You don't state if you are using BPEL 1.1 or

How to handle BPEL fault

99封情书 提交于 2019-12-25 18:03:01
问题 How to handle fault in BPEL (SOA 11.1.1.4). I have a BPEL process the inputs are as 3 Strings input and one Array of a Employee class. Now I want to put validation as inputs can not be null. then how to do fault handling for this. everytime i am facing Selection failure Exception. One way to achieve this I should the validation before invoking the BPEL. how i can handle this inside the process. I am using SOA 11.1.1.4 and JDeveloper 11.1.1.4 回答1: You don't state if you are using BPEL 1.1 or