Problem: Want to use Java Exec, is it resulting in error?
Solution:Add following libraries to your .bpel code:
Problem: Want to use Java Exec, is it resulting in error?
Solution:Add following libraries to your .bpel code:
Resetting Console login Password Problem:How do you change the password for BPEL Console user 'oc4jadmin'?
Solution:Follow the below mentioned steps to accomplish this:1)
Connect to SOA Suite EM Console (Application Server Control)
2) Click on appropriate container name. (Home or oc4j_soa, depending upon where your BPEL is available)
3) Click on Administration tab
4) Then click and Goto Task icon for Security Providers task
5) Click Instance Level Security
6) Click Realms
7) Click number under Users
8) Now search for 'oc4jadmin' in list
9) Now click it to change the password for BPEL Console and you are done
some times we need to perform some operation on bpel task from dataabase,
below are some useful queries for same
I want to delete BPEL process instances along with any related Human Workflow data from the dehydration store.
I took the first part from the collaxa package in the ORABPEL schema, then added the rest for human workflow cleanup.
procedure delete_ci_wf( p_cikey in integer )
as
cursor c_wftask (v_cikey in cube_scope.CIKEY%TYPE)is
select taskid
from wftask
where instanceid = v_cikey;
v_taskid wftask.TASKID%TYPE;
begin
-- Delete the cube instance first
--
delete from cube_instance where cikey = p_cikey;
-- Then cascade the delete to other tables with references
--
delete from cube_scope where cikey = p_cikey;
delete from work_item where cikey = p_cikey;
delete from wi_exception where cikey = p_cikey;
delete from scope_activation where cikey = p_cikey;
delete from dlv_subscription where cikey = p_cikey;
delete from audit_trail where cikey = p_cikey;
delete from audit_details where cikey = p_cikey;
delete from sync_trail where cikey = p_cikey;
delete from sync_store where cikey = p_cikey;
delete from test_details where cikey = p_cikey;
delete from document_ci_ref where cikey = p_cikey;
-- Then cascade the delete to the human workflow tables
-- with references to this instance
--
-- cube_instance cikey = wftask.instanceid
OPEN c_wftask (p_cikey);
LOOP
FETCH c_wftask into v_taskid;
EXIT WHEN c_wftask%NOTFOUND;
delete from wftaskhistory where taskid = v_taskid;
delete from wfassignee where taskid = v_taskid;
delete from wfattachment where taskid = v_taskid;
delete from wfcomments where taskid = v_taskid;
delete from wfmessageattribute where taskid = v_taskid;
delete from wfnotification where taskid = v_taskid;
delete from wfnotificationmessages where taskid = v_taskid;
delete from wfroutingslip where taskid = v_taskid;
delete from wftasktimer where taskid = v_taskid;
END LOOP;
delete from wftask where instanceid = p_cikey;
commit;
end delete_ci_wf;
Naturally for a comprehensive purge I will have to delete the stale instances from invoke_message, dlv_message , xml_document etc.
BPEL: Scheduling reoccuring processes