Author |
Message |
Topic: Workflow inputs during runtime |
harshvajra
Replies: 4 Views: 9683
|
Forum: Workflow Engines - IBM MQ Workflow & Business Process Choreographer Posted: Fri Apr 25, 2008 2:42 am Subject: Workflow inputs during runtime |
Hi mac,
I have looked into Workflow API using java, some how i am able to set and get the in\out data structures, Clarify n Correct me if not.
the steps that i had follwes are:
1. logging to mqwf s ... |
Topic: Workflow inputs during runtime |
harshvajra
Replies: 4 Views: 9683
|
Forum: Workflow Engines - IBM MQ Workflow & Business Process Choreographer Posted: Wed Apr 23, 2008 8:53 pm Subject: Workflow inputs during runtime |
Hi all,
How can we pass output(parameters) generated by an exe and use them for next program acitivity.
Following is wht im trying to do :
I have a process model that has program activity nodes and ... |
Topic: Workflow Configuration Setup |
harshvajra
Replies: 3 Views: 8305
|
Forum: Workflow Engines - IBM MQ Workflow & Business Process Choreographer Posted: Wed Apr 16, 2008 5:00 am Subject: Workflow Configuration Setup |
Yeah, the path is correct.
I have given "C:\IBM\WebsphereMQ\" as the installation directory.
Earlier it was the default path
"C:\Program Files\IBM\Webshpere MQ\" and i assumed t ... |
Topic: Workflow Configuration Setup |
harshvajra
Replies: 3 Views: 8305
|
Forum: Workflow Engines - IBM MQ Workflow & Business Process Choreographer Posted: Wed Apr 16, 2008 4:14 am Subject: Workflow Configuration Setup |
Hi all,
I am new to Websphere workflow.
I have installed "WMQ Workflow 3.5 for Windows " on Windows XP.
The pre-requisites i had installed are
JDK1.4.2,
IBM DB2 8.1 ESE,
Websphere MQ 6 ... |
Topic: Loss of Messages |
harshvajra
Replies: 3 Views: 4591
|
Forum: IBM MQ Java / JMS Posted: Wed Mar 05, 2008 3:04 am Subject: Loss of Messages |
Yes indeed.
The first thing i always do when i see an error is
mqrc reasonCode
"mqrc 2195
2195 0x00000893 MQRC_UNEXPECTED_ERROR"
I was trying to analyse this para from IBM manua ... |
Topic: Loss of Messages |
harshvajra
Replies: 3 Views: 4591
|
Forum: IBM MQ Java / JMS Posted: Tue Mar 04, 2008 11:04 pm Subject: Loss of Messages |
Hello,
I have an MQ-java application putting and getting messages from a queue.
A client-Server architecture, hence to make sure there are no loss of messages during mqget call i've used MQGMO_SYNC ... |
Topic: Good Design Principals |
harshvajra
Replies: 3 Views: 4128
|
Forum: IBM MQ Java / JMS Posted: Thu Feb 14, 2008 9:10 pm Subject: Good Design Principals |
Hi,
I have been programming in mq using java for last 3 months.
I came across a lot of issues, and i had overcomed those with MQ professional help.
I believe a very good design will help ease in ov ... |
Topic: Exclusive Access To Put/Get Message |
harshvajra
Replies: 14 Views: 11426
|
Forum: IBM MQ Java / JMS Posted: Tue Feb 12, 2008 8:52 pm Subject: Exclusive Access To Put/Get Message |
Thanks guys,
The light on this implementation gave me info as to how to go bout.
The study of heuristic procedure can be implemented even though it is expensive and complex in my case.
Thanks for t ... |
Topic: Exclusive Access To Put/Get Message |
harshvajra
Replies: 14 Views: 11426
|
Forum: IBM MQ Java / JMS Posted: Tue Feb 12, 2008 2:11 am Subject: Exclusive Access To Put/Get Message |
First : A Commercial file-over FTP is not reliable, there are chances of losing data. The app(..) is being developed with resume support(n/w failures) which the former cannot.
Second : An exclusive ... |
Topic: Can we add all the gmo.* options |
harshvajra
Replies: 8 Views: 7137
|
Forum: IBM MQ Java / JMS Posted: Tue Feb 12, 2008 1:59 am Subject: Can we add all the gmo.* options |
thanks, i understood. |
Topic: Exclusive Access To Put/Get Message |
harshvajra
Replies: 14 Views: 11426
|
Forum: IBM MQ Java / JMS Posted: Mon Feb 11, 2008 9:47 pm Subject: Exclusive Access To Put/Get Message |
I've arequirement to transfer a file.
This requires that only one instance of the application is putting msg to avoid duplicate msg of the file being transfered by another instance
(same app).
No ... |
Topic: Can we add all the gmo.* options |
harshvajra
Replies: 8 Views: 7137
|
Forum: IBM MQ Java / JMS Posted: Mon Feb 11, 2008 8:43 pm Subject: Can we add all the gmo.* options |
I've encountered problem in appending the gmo.* options.
MQGetMessageOptions gmo = new MQGetMessageOptions();
gmo.options = gmo.options + MQC.MQGMO_SYNCPOINT+MQC.MQGMO_WAIT;
gmo.matchOptions = gmo. ... |
Topic: Can we add all the gmo.* options |
harshvajra
Replies: 8 Views: 7137
|
Forum: IBM MQ Java / JMS Posted: Mon Feb 11, 2008 2:45 am Subject: Can we add all the gmo.* options |
Yes, i've tried it dosen't make any difference.
Thanks |
Topic: Exclusive Access To Put/Get Message |
harshvajra
Replies: 14 Views: 11426
|
Forum: IBM MQ Java / JMS Posted: Mon Feb 11, 2008 2:03 am Subject: Exclusive Access To Put/Get Message |
You mean to say that, we cannot give EXCLUSIVE access to queue to put messages(MQPUT call).
If no, what is the procedure, make he understand
If yes, then how to make sure that only one instance appl ... |
Topic: Exclusive Access To Put/Get Message |
harshvajra
Replies: 14 Views: 11426
|
Forum: IBM MQ Java / JMS Posted: Mon Feb 11, 2008 1:29 am Subject: Exclusive Access To Put/Get Message |
Hello all,
To [put/get] messages to/from a queue, can we give exclusive access to queue.
I've seen options to set EXCLUSIVE access to only MQGET call, when i try for MQPUT call,an mq exception rais ... |