Human Workflow in BPEL

Hi,
We are able to get the users(participants) from an ADFbc service Response variable.But,how do we need to assign these users as participants in the Human WorkFlow(inside the Nflow).Depending on N , the users retrieved would be different for each flow in Nflow.
We have tried to assign the foll:
<copy>
<from variable="Invoke_3_getUsers_OutputVariable"
part="parameters" query="/ns2:getUsersResponse/ns2:result"/>
<to variable="initiateTaskInput" part="payload" query="/taskservice:initiateTask/ns5:routingSlip/ns5:participants/ns5:participant"/>
</copy>
but getting some fault as "Invalid service input element". I tried to assign this output variable to task assignees as well..but dint work
Any pointers would help..
thanks in advance
Regards
Ss

Ronald,
By cancel means i need the worklist entry for the given taskid to be deleted or marked as cancel so that the user will not be able to process the task. The BPEL process should have a human task process defined like updatetask which will cancel the task.
Let me expalin our scenario.
We have an assignment which has different status like new,reassign,cancel. Using a switch we check for the required status and if the status is new we call the initaiate task. Similarly if the status is cancel we need to cancel or delete the task for the user.
Regards,
M.Rajesh

Similar Messages

  • BPEL Human Workflow:IWorklistContext

    Hi,
    I am trying to access the tasks assigned to perticular user using Human Workflow APIs, but I am unable to get the task list eventhough tasks are assigned for the user. I am using below mention code,
    RemoteWorklistServiceClient client= new RemoteWorklistServiceClient();
    client.init();
    String user = "dlsdeomgr";
    String password = "welcome1";
    //client.
    IWorklistContext ctx = client.authenticateUser(user, password);
    Map filterMap = new HashMap();
    filterMap.put(IWorklistService.FILTER_TYPE_TASK_FILTER,IWorklistService.TASK_FILTER_MY);
    filterMap.put(IWorklistService.FILTER_TYPE_STATUS_FILTER, IWorklistService.STATUS_FILTER_ASSIGNED);
    String keywords="";
    List tasks = client.getWorklistTasks(ctx,filterMap, keywords,
    IWorklistService.SORT_FIELD_TASK_TITLE,
    IWorklistService.SORT_ORDER_ASCENDING);
    System.out.println("tasks1"+ tasks.size());
    for (int i=0; i<tasks.size(); i++)
    Task task = (Task) tasks.get(i);
    String taskId = task.getTaskId();
    String status= task.getStatus();
    System.out.println("Task ID!!"+ taskId + "status" +status);
    let me know if I am doing wrong? or is there any other way I can access asynchronous bpel process using human workflow API. Thanks

    I checked your code. There were few typos, I wonder how you could compile it.
    Anyway here is workable code for user jstein.
    Don't forget to place hw_worklist_jndi.properties in your classpath
    package hanusiak;
    import oracle.tip.pc.services.hw.task.impl.Task;
    import oracle.tip.pc.services.hw.worklist.RemoteWorklistServiceClient;
    import oracle.tip.pc.api.worklist.IWorklistContext;
    import oracle.tip.pc.api.worklist.IWorklistService;
    import java.util.Map;
    import java.util.HashMap;
    import java.util.List;
    public class Lister {
    * @param args
    public static void main(String[] args) {
    try {
    RemoteWorklistServiceClient client= new RemoteWorklistServiceClient();
    client.init();
    String user = "jstein";
    String password = "welcome";
    IWorklistContext ctx = client.authenticateUser(user, password);
    Map filterMap = new HashMap();
    filterMap.put(IWorklistService.FILTER_TYPE_TASK_FILTER,IWorklistService.TASK_FILTER_MY);
    filterMap.put(IWorklistService.FILTER_TYPE_STATUS_FILTER, IWorklistService.STATUS_FILTER_ASSIGNED);
    String keywords="";
    List tasks = client.getWorklistTasks(ctx,keywords, filterMap,
    IWorklistService.SORT_FIELD_TASK_TITLE,
    IWorklistService.SORT_ORDER_ASCENDING);
    System.out.println("tasks="+ tasks.size());
    for (int i=0; i<tasks.size(); i++)
    Task task = (Task) tasks.get(i);
    String taskId = task.getTaskId();
    String status= task.getState();
    System.out.println("Task ID="+ taskId + " status=" +status);
    } catch (Exception e) {
    e.printStackTrace();
    }

  • Oracle Content Services + BPEL for Human Workflow

    Greetings,
    I'm new to Oracle Collaboration Suite and BPEL. I'm starting to work with this technologies.
    My goal is to develop some custom human workflow using Oracle Content Services 10.1.2.3.0 and BPEL.
    Regarding software versions, some doubts arise ... I'm using Collaboration Suite 10.1.2.
    - Which version of SOA Suite (10.1.2 or 10.1.3.1) and BPEL are recomended to work with content services 10.1.2.3.0 ?
    Thanks,

    The certified version for Content DB/Content Services 10.1.2.3 is 10.1.2 of BPEL.
    Ravikiran

  • Differences in Oracle Service Bus, BPEL and human workflow

    Hi Everyone,
    I am newbie, don't know if its the right place to post this thread.
    I want to prepare paper on differences in Oracle Service Bus, BPEL and human workflow, can anybody help me.
    Till now i came to know all these things are very different, no poit comparing them but still need differences
    Thanks in advance:
    Vikas

    Basic difference:
    BPEL : It is used for orchastrating different processes. Its heavyweight and stores instances (stateful)
    OSB : It is used for routing data between the applications
    Human Workflow : It is used to handle scenarios where manual intervention is necessary.
    Refer for more on Oracle BPEL
    http://www.oracle.com/technology/products/ias/bpel/htdocs/orabpel_faq.html
    Regards,
    Ketan

  • Cancel Task in BPEL human workflow

    All,
    We have a requirement to cancel the task for the user using human work flow. The worklist should be deleted for the user. Let me know if oracle human workflow provides an opertaion option to cancel the task like reassign,initaiate etc.
    Regards,
    M.Rajesh

    Ronald,
    By cancel means i need the worklist entry for the given taskid to be deleted or marked as cancel so that the user will not be able to process the task. The BPEL process should have a human task process defined like updatetask which will cancel the task.
    Let me expalin our scenario.
    We have an assignment which has different status like new,reassign,cancel. Using a switch we check for the required status and if the status is new we call the initaiate task. Similarly if the status is cancel we need to cancel or delete the task for the user.
    Regards,
    M.Rajesh

  • BPEL Human Workflow - dynamic Outcomes

    Hello All,
    While designing human task, I can pretty much provide XPATH everywhere, but I couldn't provide xpath for outcomes.
    Is it possible to provide dymanic outcomes?
    - I am not sure how does Worklist App figures out set of outcomes, I didn't it as part of task input.
    I appreciate your help.
    Thanks,
    Chintan

    Alright, it is certainly getting interesting to me, and would really appreciate if somebody provide any insight to this issue.
    - I saw that TaskLink input (initialTaskInput), does have property called parallelOutcomeCount in systemAttributes, which decides type of outcomes to worklist application.
    q.1: Why I am not able to override this attribute (parallelOutcomeCount )? I tried to put my own value right before the INVOKE operation, still it didn't work, it got over-ridden by BPEL engine?
    q.2: I don't see any ASSIGN activity to assign parallelOutcomeCount, I do see assign activity for assign system and payload activity generated during Human Workflow. How do they get set? Is there is any interceptor concept?
    Really curious, because it there is any hidden way to set such variable, I would love to use such framework for many different purposes.
    Thanks!
    Chintan

  • Calling Human Workflow Webservices from BPEL

    Hello,
    I am using J Developer 11.1.1.6 to develop a BPEL process that calls the TaskQueryService Human Workflow webservice. When I compile the SOA project, I get the following errors:
    Error: oracle.xml.parser.schema.XSDException: Can not build schema 'http://xmlns.oracle.com/bpel/workflow/common' located at 'http://xmlns.oracle.com/bpel/workflow/common.__OAUX_GENXSD_.TOP.XSD' [Cause=Can not build schema 'http://xmlns.oracle.com/bpel/workflow/common' located at 'http://xmlns.oracle.com/bpel/workflow/common.__OAUX_GENXSD_.TOP.XSD']
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}taskQueryServiceFaultResponse
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}successResponse
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}queryViewTasksRequest
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}credentialOnBehalfOfRequest
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/task}task
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}doesViewTaskExistRequest
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/common}workflowContext
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}queryTaskErrorsRequest
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}countTasksRequest
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}queryAggregatedTasksRequest
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}getPermittedAssigneesResponse
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}taskDetailsByIdRequest
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}taskErrorsResponse
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}taskListResponse
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}getTaskSequenceRequest
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}taskDetailsByNumberRequest
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}getPermittedAssigneesRequest
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}taskListRequest
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}aggregatedTasksResponse
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}countViewTasksRequest
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}taskVersionDetailsRequest
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}updateWorkflowContextRequest
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}queryViewAggregatedTasksRequest
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}taskExistsResponse
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}taskHistoryRequest
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/common}credential
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}doesTaskExistRequest
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}taskSequence
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}taskCountResponse
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/bpel/workflow/taskQueryService}workflowContextRequest
    Error: Message part "payload" is undefined [element = {http://xmlns.oracle.com/FuelLogIntegrations/HWFTaskService/FindTasks}process
    I've tried implementing some of the recommendations I found by Googling the error message. I haven't been able to find a workable solution.
    I would appreciate some direction on how to fix the problem.
    Thanks

    I tried the Oracle patch. After installation, I am getting the following error in place of the multiple errors I was getting previously.
    java.lang.VerifyError: Cannot inherit from final class
    Sep 24, 2012 3:55:13 PM oracle.mds
    NOTIFICATION: PManager instance is created without multitenancy support as JVM flag "oracle.multitenant.enabled" is not set to enable multitenancy support.
    Sep 24, 2012 3:55:15 PM oracle.fabric.common.wsdl.SchemaManager isIncrementalBuildSupported
    INFO: XMLSchema incremental build enabled.
    Sep 24, 2012 3:55:18 PM com.collaxa.cube.CubeLogger info
    INFO: validating "InvoiceProcessing.bpel" ...
    Exception in thread "main" java.lang.VerifyError: Cannot inherit from final class
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClassCond(ClassLoader.java:630)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:614)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:141)
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:283)
    at java.net.URLClassLoader.access$000(URLClassLoader.java:58)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:197)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:305)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:246)
    at com.collaxa.cube.lang.compiler.bpel.XPathExprValidatorVisitor.<init>(XPathExprValidatorVisitor.java:122)
    at com.collaxa.cube.lang.compiler.bpel.AssignValidator.<init>(AssignValidator.java:89)
    at com.collaxa.cube.lang.compiler.bpel.BpelParser.<init>(BpelParser.java:452)
    at com.collaxa.cube.lang.compiler.bpel.BPELValidator.validate(BPELValidator.java:60)
    at com.collaxa.cube.lang.compiler.BPEL1Processor.validate(BPEL1Processor.java:329)
    at com.collaxa.cube.lang.compiler.BPEL1Processor.process(BPEL1Processor.java:153)
    at com.collaxa.cube.lang.compiler.CubeParserHelper.compile(CubeParserHelper.java:47)
    at oracle.fabric.bpel.bpelc.BPELComponentValidator.validate(BPELComponentValidator.java:40)
    at oracle.soa.scac.ValidateComposite.validateComponentTypeServicesReferences(ValidateComposite.java:1117)
    at oracle.soa.scac.ValidateComposite.doValidation(ValidateComposite.java:500)
    at oracle.soa.scac.ValidateComposite.run(ValidateComposite.java:150)
    at oracle.soa.scac.ValidateComposite.main(ValidateComposite.java:135)
    Please do let me know in case I am doing something wrong.

  • Exposing BPEL Human Workflow Activities in ADF

    Hi All,
    I want to have a clear idea on best practices/ ways on
    "How to expose BPEL human workflow processes in ADF".
    Do I need to create an ADF application where I can consume BPEL datacontrol.
    or Do I need to manage ADF datacontrols with BPEL databases and create VO EO and create datacontrol.
    What could be the best practice on exposing BPEL Human workflow in ADF.
    Waiting for reply.
    Regards,
    Hoque

    Hi Hoque,
    you can create direct an ADF Task Form Projekt from your HumanTask Wizard. Cehck out this two links:
    Implementing an Oracle ADF Task Flow for a Human Task - 11g Release 1 (11.1.3)
    http://docs.oracle.com/cd/E28271_01/dev.1111/e10224/bp_tutorialhwf_.htm
    Never access the SOA Suite databases directly, it is a bad practice.
    best regards, Nicolas

  • Issue in passing payload from Human Workflow to ADF task flow

    Hi All,l
    I am facing one strange issue in Human Workflow -> ADF task form integration. I have 4 Data variables to pass to the task form for displaying and modifying the request payload. E.g
    1. request
    2. propertiesList
    3. input1
    4. input2
    request and properties list variables are in the same namespace. When the process is executed, I can see the data being passed in Initiate taskflow activity in BPEL. However I don't see the data in ADF form only for propertiesList variable. This is a custom schema element I added newly in the project. I don't get any error , but no data is getting displayed.
    Any help in this matter is greatly appreciated.
    Thanks
    Ashwini

    I have applied workaround for this. However the main issue still exist.
    When I pass hard-coded values in the list and drag and drop that list as selectOneChoice - I see the values in dropdown. Whereas, when the list is passed from program logic and I can see the values passed in initiateTask activity, and drag and drop the field as selectOneChoice, the values don't come up.
    I will replicate this issue in a smaller piece of code and paste here later.
    Thanks
    Ashwini

  • Issue in Human Workflow

    Currently I am learning Human Workflow integration in Oracle BPEL.
    http://download.oracle.com/docs/cd/E12839_01/integration.1111/e10224/bp_introhwf.htm#BABIEDCJ
    I have used this URL to see tutorial accordingly I created BPEL process but when I am testing this BPEL process I am able to do raise a request but now able to see that request in manager's Queue.
    Can anybody help in this?
    Thanks,
    Yashwant

    Hello Yashwant,
    The tutorial seems fine, but as you might´ve noticed the manager assignment depends on information received in the message inbound, maybe if you post your request body we can take a further look into it. Maybe your XPath is not correct? Maybe namespaces don´t match? I´d start from there...
    Thank you,
    Vinicius

  • Human Workflow Issue in 11.1.1.6

    Hi Experts,
    I working on a Human Workflow Project in SOA Suite 11.1.1.6.
    My requirement is to pass the HTML data as content to Human Workflow Task to Notification user. Do elaborate more, the user will get email notification from Human Workflow where in the body of email he will see the HTML content.
    I created Data object in Human task as "EmailDataContent" of type String. When I am passing data to HWF through BPEL. Its throwing below error.
    INPUT:
    =====
    <initiateTaskInput>
    <part  name="payload">
    <initiateTask>
    <task>
    <title>Claim ID:1234ABCD requires your review</title>
    <payload>
    <EmailDataContent xsi:type="ns:string"><html> <head> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <style type="text/css">.hdrtbl{font-family:Tahoma,arial,Helvetica,sans-serif;font-size:9pt;background-color:#f2f2f5;} .hdrsh{font-family:Tahoma,arial,Helvetica,sans-serif;font-size:9pt;color:#755600;text-align:right;padding:3px} .hdrdt{font-family:Tahoma,arial,Helvetica,sans-serif;font-size:9pt;color:#003D5B;text-align:left;padding:3px} .dtltbl{font-family:Tahoma,arial,Helvetica,sans-serif;font-size:9pt;border-width:1px;spacing:0;background-color:#CCCCCC;border: 1px} .dtlth{font-family:Tahoma,arial,Helvetica,sans-serif;font-size:9pt;background-color:#B9C9FE;text-align:center;padding:0px;height:22px;} .dtldt{font-family:Tahoma,arial,Helvetica,sans-serif;font-size:9pt;background-color:#FFF5D5;text-align:left;padding:4px;height:22px;color:#003D5B} .sumcell{font-family:Tahoma,arial,Helvetica,sans-serif;font-size:9pt;background-color:#FFFFFF;text-align:right;padding:4px;height:22px;font-weight:bold} pre {font-family:Tahoma,arial,Helvetica,sans-serif; font-size:10pt} body {font-family:Tahoma,arial,Helvetica,sans-serif; font-size:10pt} h3 {font-family:Tahoma,arial,Helvetica,sans-serif;} h4 {font-family:Tahoma,arial,Helvetica,sans-serif;} h5 {font-family:Tahoma,arial,Helvetica,sans-serif;color:#123C73}</style> </head> <body> <hr align="left" width="1000px"> This message is automatically generated. Please do not reply to this message. <br> An incentive claim with reference number PN00000623 as been submitted and is pending review Please login to the CEQ to review the claim. <br><br> <table width="1000px" class="hdrtbl"> <tr> <td class="hdrsh">Customer Group</td> <td class="hdrdt">ANYDATA</td> <td class="hdrsh">Assigned To</td> <td class="hdrdt">XXXXXXXXX</td> <td class="hdrsh">Status</td> <td class="hdrdt">Approved</td> </tr> <tr> <td class="hdrsh">Program Notice #</td> <td class="hdrdt">XXXXXXXXXXXXXXXX</td> <td class="hdrsh">Sales PeriodStart Date</td> <td class="hdrdt">1/1/2013</td> <td class="hdrsh">End Date</td> <td class="hdrdt">3/31/2014</td> </tr> <tr> <td class="hdrsh">XXXXXXXXXXX</td> <td class="hdrdt">Paid</td> <td class="hdrsh">Purchase PeriodStart Date</td> <td class="hdrdt">1/1/2013</td> <td class="hdrsh">End Date</td> <td class="hdrdt">12/31/2013</td> </tr> <tr> <td class="hdrsh">Creation Date</td> <td class="hdrdt">10/29/2013</td> <td class="hdrsh">Quarter</td> <td class="hdrdt">CYQ1'13</td> <td class="hdrsh">Created by</td> <td class="hdrdt">XXXXXXXXXXXXXX</td> </tr> <tr> <td class="hdrsh">Description</td> <td Colspan="5" class="hdrdt">XXXXXXXXXXXXX</td> </tr> </table><br> <h4>Device Details</h4> <hr align="left" width="1000px"> <h5>Non Qualified Reporting</h5> <table width="1000px" class="dtltbl"> <th class="dtlth">Product</th> <th class="dtlth">Shipment</th> <th class="dtlth">Requested Non Qual</th> <tr> <td class="dtldt">XXXXXXXXXXXXXX</td> <td class="dtldt">16,000</td> <td class="dtldt">0</td> </tr> </table><br> <table width="1000px" class="dtltbl"> <th class="dtlth">Product/Chipset</th> <th class="dtlth">Device Type</th> <th class="dtlth">Purchase Period</th> <th class="dtlth">Purchase Start Date</th> <th class="dtlth">Purchase End Date</th> <th class="dtlth">Shipment</th> <th class="dtlth">Claim</th> <th class="dtlth">Net ASP</th> <th class="dtlth">Rebate Per Unit</th> <th class="dtlth">Extended</th> <tr> <td class="dtldt">xxxxxxxxxxxx</td> <td class="dtldt">xxxxxxxxxxxxxxxxx</td> <td class="dtldt">Purchase Period 1</td> <td class="dtldt">1/1/2013</td> <td class="dtldt">12/31/2013</td> <td class="dtldt">16,000</td> <td class="dtldt">9,450</td> <td class="dtldt">$18.810</td> <td class="dtldt">$4.710</td> <td class="dtldt">$44,509.50</td> </tr> <tr> <td colspan="9" class="sumcell">Total</td> <td class="dtldt">$44,509.50</td> </tr> </table><br> If you have any questions, contact XXXXX. <br> If you did not submit this request, please forward this email immediately to xxxx <br><br> XXXXXXXXXXXXXXXXXXXXXXXX</a> </body> </html></EmailDataContent>
    </payload>
    <creator>XXXXXXXXXX</creator>
    <ownerUser>XXXXXXXXXX</ownerUser>
    <priority>3</priority>
    </task>
    <routingSlip/>
    </initiateTask>
    </part>
    </initiateTaskInput>
    OUTPUT FAULT:
    ============
    <fault>
    <bpelFault>
    <faultType>1</faultType>
    <operationErroredFault>
    <part  name="payload">
    <operationErroredFault>
    <faultInfo>java.sql.SQLException: ORA-01461: can bind a LONG value only for insert into a LONG column </faultInfo>
    </operationErroredFault>
    </part>
    </operationErroredFault>
    </bpelFault>
    </fault>
    Please can you help me in resolving this issue.
    Thanks - RK.

    Can we even have the following landscape?
    1. HSS,OHS,Weblogic server,workspace - On a Windows 2008 server
    2. Essbase server,EIS server,EAS server,EIS server - on a Linux server
    3. Oracle database on another linux server.
    my questions is, can we have the installation and configuration done considering the OS (wid and Linux), as described in points 1&2 above.
    I guess I read somewhere, that all the web applications can be deployed to either all windows or to all Linux OS servers? - Is it correct?

  • Human workflow in catch construct

    Hi,
    I have a requirement that , whenever business fault occurs I want to throw it explicitly. In catch block, I want to catch it , and I want to have a human workflow activity with updatable payload.
    when i am trying to do this, i got following error while compileing....
    Error(228):
    [Error ORABPEL-10051]: multiple create instance activity
    [Description]: in line 228 of "D:\BPEL\source\samples\tutorials\107.Exceptions\Application1\FaultHandlingDemo\PayLoad\bpel\PayLoad.bpel", Conflicting createInstacne="yes". Instance is already created by another activity.
    [Potential fix]: Remove createInstance="yes" attribute from this activity.
    can we have a human workflow activity inside catch construct?
    why this error is coming? can anyone pleace help me....
    thanks

    Hi,
    Your scenario is possible. We have similar processes. It seems the error is caused by a BPEL activity in your process that has the createInstance parameter set to yes while the instance is already started.

  • Configure DB connections used by Human workflow

    Hi All
    We are using Oracle BPEL for orchestrating a process flow; the BPEL process uses Human workflow service for assigning tasks to users and Java client code(SOAP client) is used to update tasks assigned to users.(we are not using Worklist application). The users are updating the tasks using the java client code and this is a continuos process.i.e. users work continuosly in shifts.
    The workflow service seems to utilize lot of DB resources as 50-60 users are working continuously at the same time... Though we can configured the DB parameters/connection pool we are having some performance issues..
    Just wondering if we can have a seperate connection pool/data source for Human workflow service?? Then orabpel application and workflow service can use seperate pools and the load can be reduced..
    Any documentation/pointers on this will be of great help on this...
    Thanks

    You can / should have your HW app in a different, database, at least schema. Then it is just a matter of setting up a differnt connection pool for the HW app.
    There is also noting stopping you from having 2 different connection pools pointing to the same oracle schema. One for HW and one for bpel. They can be tuned accordingly.
    cheers
    James

  • 10.1.2. to 10.1.3 Human workflow task migration issue

    Hi all,
    I am currently looking at the possibility to migrate our 10.1.2 bpel processes, containing human workflow task, to 10.1.3.1.0 Everything seems to migrate smoothly except the human workflow functionality.
    The initateTask invoke action returns the following error in the 10.1.3.1 console when I ran an 10.1.2. bpel process containing a human workflow task:
    [2006/12/04 03:01:00]
    "{http://schemas.oracle.com/bpel/extension}remoteFault" has been thrown.
    - <remoteFault xmlns="http://schemas.oracle.com/bpel/extension">
    - <part name="code">
    <code>
    WSDLReadingError
    </code>
    </part>
    - <part name="summary">
    <summary>
    Failed to read wsdl.
    Failed to read wsdl at "http://xesoa1.iteye.local:8894/orabpel/default/TaskActionHandler/TaskManagerService.wsdl", because "Failed to read WSDL from http://xesoa1.iteye.local:8894/orabpel/default/TaskActionHandler/TaskManagerService.wsdl:WSDL not found".
    Make sure wsdl is valid. You may need to start the OraBPEL server, or make sure the related bpel process is deployed correctly.
    </summary>
    </part>
    </remoteFault>
    I know that in 10.1.3 the human workflow mechanism is heavily changed and now is invoked by using other services (TaskService) than the services used (TaskActionHandler process)in 10.1.2. In 10.1.2 the TaskActionHandler was a separate build-in bpel process used for interaction between a bpel process and the human workflow. This process is not present in the 10.1.3.1 installation, so that is causing my error. Moreover, in 10.1.3 the interaction between a bpel process is and the human workflow is not done by invoking a separate bpel process (TaskActionHandler) but by invoking a java wsif service TaskService..(Correct me when I'm wrong or not complete)
    My question now is how can I migrate my 10.1.2 human workflow task to 10.1.3.1 without manually rewrite the task scopes to 10.1.3...According to the fragment below copied from the JDeveloper 10.1.3.1 help files it should be possible. Maybe, there's is a way to deploy the needed processes manually?
    Oracle BPEL Process Manager Workflow Services 10.1.2 and 10.1.3.1.0 Compatibility
    For release 10.1.3.1.0, the workflow wizard has been replaced by a Human Task editor. This editor enables you to specify task settings such as task outcome, payload structure, task participants, assignment and routing policy, expiration and escalation policy, notification settings, and so on. You cannot use the Human Task editor to edit 10.1.2-based workflows. To use any new 10.1.3.1.0 functionality, the task scope of the workflow must be manually migrated to use the new workflow metadata. Note also that this is the last release in which you can deploy workflows designed with 10.1.2.
    Kind regards,
    Tom Hofte

    Hi Clemens,
    Thanks for your quick response. The Taskmanager and the Taskactionhandler are indeed not deployed so I will do that automatically.
    Still one question/remark left:
    You noticed that you still have to complete the tasks using the old worklist app. . So if i'm correct, you have to use the deprecated 10.1.2 worklist api or build-in worklist app. The 10.1.2 worklist app is not deployed in my 10.1.3 installation. However, 10.1.3 only contains the new worklist app. Is there also a way to deploy it manually?
    Writing this down it al looks a bit clumsy to me. Is it not a better option to invest some time in migrating all tasks scopes manually to 10.1.3, because as far as I can see the human tasks are causing the main issues concerning migration? After this you have a 10.1.3 compliant system. I wonder what your opinion is on this issue.
    Kind regards,
    Tom

  • Human workflow API'sFor Oracle SOA11g

    Hi all,
    I need to fetch the tasks assigned to the Particular user from ADF Application.where do we download the API's for Human workflow in Oracle SOA11g.
    Regards
    Edited by: C.Karukkuvel on Aug 5, 2010 1:00 AM

    Hi Philippe
    Yes, almost all the APIs should work fine for BPEL or BPMN. Because most of times whether its BPEL or BPMN, they both end up having the same standard components like HumanTasks, Taks, Processes, NotificationServices etc. The concept of TaskList and Tasks is same. So almost all the standard Task, Workflow APIs etc should work. We use BPM Process and use the same APIs to manipulate tasks using APIs. They work fine.
    Now specific to BPMN, there may be some more APIs say for example only BPM has something called like Dashboards, more powerfule BusinessRules, DataObjects, ProcessDataObjects etc etc. I guess Oracle may not yet published public APIs specific for BPM APIs. I have not seen so far.
    Here is the link for 11.5 Version APIs for all the areas: http://docs.oracle.com/cd/E21764_01/ref.htm (Oracle SOA Suite API Reference will have all soa related APIs).
    Thanks
    Ravi Jegga

Maybe you are looking for

  • Strange result from insert into...select query

    Hello guys, I need your preciuos help for a question maybe simple, but that I can't explain by myself! I have a query of "insert into...select" that, as I have explained in the title, returns a strange result. In facts, If I execute ONLY the SELECT s

  • Acrobat 9 Security issue

    I'm setting up Password Security for editing and printing my PDF which works fine -- But each time I set my compatibility to "Acrobat 6.0 and later" in the Password Security- Settings window, and as soon as I save and reopen the PDF it defaults to "P

  • How to set the *-Xdebug -Xrunjdwp...... in JDeveloper10.1.3.

    Hi I'm using JDeveloper(10.1.3) to develope a application on Struts and EJB3. My problem is whenever I try to use the option Entities from Table to create Entities , the following classpath is missing i.e., C:\JDev10131\jdk\bin\javaw.exe -client -Xde

  • Error connecting to SQL*Plus

    Hi, I have installed Oracle 10.2.0.1.0. While install set the password to <password>. SID name is orcl. Now i am connecting to the database, but it is giving ORA-12154 TNS:Could not resolve connect identifier specified If i am using default passpword

  • Very hard prolem

    i have forms 5 version and graphis builder v 3.0 and i downloaded og.pll from forms 6i demos and attach it with my form , passed parameter and try to run graphics from forms it didnot run and say form designer has encountered a serious problem.......