Author |
Message |
Topic: FMC38009E MQSeries Workflow API Error |
JKehoe
Replies: 1 Views: 7442
|
Forum: Workflow Engines - IBM MQ Workflow & Business Process Choreographer Posted: Fri Mar 23, 2007 10:09 am Subject: FMC38009E MQSeries Workflow API Error |
The first thing I would do would be to make sure that the workflow services are running. I've seen this error before and that is usually the problem. |
Topic: NO OP activity, setting default value in container issue |
JKehoe
Replies: 4 Views: 3922
|
Forum: Workflow Engines - IBM MQ Workflow & Business Process Choreographer Posted: Thu Aug 03, 2006 11:50 am Subject: NO OP activity, setting default value in container issue |
Do you have a Data Default Connector going from your NOOP activity to your NOOP activity? |
Topic: large audit DB Size with full audit |
JKehoe
Replies: 1 Views: 2548
|
Forum: Workflow Engines - IBM MQ Workflow & Business Process Choreographer Posted: Thu Aug 03, 2006 10:14 am Subject: large audit DB Size with full audit |
A couple of suggestions:
1) Considering changing from full audit to condensed or to filter and just capture the events that you are interested in.
2) Routinely run the Audit table cleanup utilit ... |
Topic: WebClient Expiration Problem |
JKehoe
Replies: 0 Views: 1910
|
Forum: Workflow Engines - IBM MQ Workflow & Business Process Choreographer Posted: Fri Jul 21, 2006 7:29 pm Subject: WebClient Expiration Problem |
We are currently on version 3.4 and we are having a problem with Workflow booting active users out of workflow. We can tell from the logs that exactly 2 hours after a user logs in, the onLogOff method ... |
Topic: Killing Process Instances |
JKehoe
Replies: 2 Views: 2917
|
Forum: Workflow Engines - IBM MQ Workflow & Business Process Choreographer Posted: Fri Jul 07, 2006 11:34 am Subject: Killing Process Instances |
It just so happens that I wrote a method that does this... not the most elegant, but it gets the job done.
public void terminateAllProcessInstances() throws MQWFException {
try & ... |
Topic: [SOLVED] Max Limit issue |
JKehoe
Replies: 15 Views: 12180
|
Forum: Workflow Engines - IBM MQ Workflow & Business Process Choreographer Posted: Wed May 10, 2006 5:11 am Subject: [SOLVED] Max Limit issue |
Is there any way that you can filter your worklist any smaller? Obviously, if the user needs to search through a 3000 item worklist, they have something specific they are looking for.
For example, ... |
Topic: Getting all the users in WF |
JKehoe
Replies: 5 Views: 4101
|
Forum: Workflow Engines - IBM MQ Workflow & Business Process Choreographer Posted: Thu Apr 06, 2006 8:21 am Subject: Getting all the users in WF |
I'm on v3.4 and I had to solve the same problem as you. I ended up querying the PERSON table in the runtime db for a list of unique names.
I know it's probably not the preferred way of getting the ... |
Topic: UPES/Web Client problem |
JKehoe
Replies: 2 Views: 2911
|
Forum: Workflow Engines - IBM MQ Workflow & Business Process Choreographer Posted: Fri Dec 02, 2005 2:18 pm Subject: UPES/Web Client problem |
I think I have this figured out. The fdl block that I included was newly imported into runtime (unknown to me at the time that I originally posted). I'm pretty sure that the old fdl did not have the " ... |
Topic: UPES/Web Client problem |
JKehoe
Replies: 2 Views: 2911
|
Forum: Workflow Engines - IBM MQ Workflow & Business Process Choreographer Posted: Fri Dec 02, 2005 10:05 am Subject: UPES/Web Client problem |
Hello,
We are having a problem with a UPES activity that must be something very small that I am overlooking.
We have a UPES activity that is configured to start Manually, so that when a user ch ... |
Topic: Synch UPES activity |
JKehoe
Replies: 7 Views: 3997
|
Forum: Workflow Engines - IBM MQ Workflow & Business Process Choreographer Posted: Wed Oct 12, 2005 6:20 am Subject: Synch UPES activity |
You don't have a Return Code element in your response message. try adding this line right after your <ActImplCorrelID> tag:
<ProgramRC>0</ProgramRC>
Josh |
Topic: Cancel/Transfer items |
JKehoe
Replies: 2 Views: 2280
|
Forum: Workflow Engines - IBM MQ Workflow & Business Process Choreographer Posted: Mon Sep 26, 2005 4:46 am Subject: Cancel/Transfer items |
I have coded a complete Group Worklist strategy, and I can tell you from experience, the deeper in it that you get, the more custom code you'll find yourself writing.
Yes, you're going to have to t ... |
Topic: Design + FMC00138E Problem with Noop |
JKehoe
Replies: 3 Views: 3269
|
Forum: Workflow Engines - IBM MQ Workflow & Business Process Choreographer Posted: Thu Sep 22, 2005 10:10 am Subject: Design + FMC00138E Problem with Noop |
Yep, I've had this exact thing happen to me before (well, not exactly, but I've seen the same error on a NOOP). Make sure you have a default control connector on your NOOP activity (from your NOOP to ... |
Topic: Scheduling activities in WF |
JKehoe
Replies: 3 Views: 2774
|
Forum: Workflow Engines - IBM MQ Workflow & Business Process Choreographer Posted: Thu Sep 22, 2005 8:23 am Subject: Scheduling activities in WF |
What kind of activity are you talking about?
You could set up a NOOP activity with an expiration time before the activity that you want scheduled. The instance will wait in your NOOP for a set peri ... |
Topic: QueryingProcessInstance!!! |
JKehoe
Replies: 2 Views: 2691
|
Forum: Workflow Engines - IBM MQ Workflow & Business Process Choreographer Posted: Fri Sep 09, 2005 4:39 am Subject: QueryingProcessInstance!!! |
I'm not very familiar with the C api, so I might be off track here. My apologies if I am, just thought I'd try. Shouldn't you initialize your FmcjProcessInstanceVectorHandle? In the Programming Guide, ... |
Topic: NOOP Data Issue |
JKehoe
Replies: 4 Views: 4519
|
Forum: Workflow Engines - IBM MQ Workflow & Business Process Choreographer Posted: Thu Sep 08, 2005 2:15 pm Subject: NOOP Data Issue |
Ah. That makes sence now. Thanks Ratan. |