Author |
Message |
Topic: URGENT- HELP Shellscript for MQSeries |
ram2s2001
Replies: 15 Views: 8116
|
Forum: IBM MQ API Support Posted: Wed Dec 14, 2005 4:14 am Subject: URGENT- HELP Shellscript for MQSeries |
iam sending encrypted file through MQSeries is it WebSphere MQ - Q program support..? is it third part support ..? |
Topic: URGENT- HELP Shellscript for MQSeries |
ram2s2001
Replies: 15 Views: 8116
|
Forum: IBM MQ API Support Posted: Wed Dec 14, 2005 3:28 am Subject: URGENT- HELP Shellscript for MQSeries |
!/usr/bin/sh
infile="test.xml"
if [ "$1" == "MQ" ]; then
echo "Start QueryManager"
strmqm <querymanagername>
echo
echo "Put file in Queue"
cat $infile | while read line
d ... |
Topic: URGENT- HELP Shellscript for MQSeries |
ram2s2001
Replies: 15 Views: 8116
|
Forum: IBM MQ API Support Posted: Wed Dec 14, 2005 2:11 am Subject: URGENT- HELP Shellscript for MQSeries |
Hi,
What is difference between in /opt/mqm/bin commmands
and /opt/mqm/samp/bin commands ..? |
Topic: URGENT- HELP Shellscript for MQSeries |
ram2s2001
Replies: 15 Views: 8116
|
Forum: IBM MQ API Support Posted: Tue Dec 13, 2005 12:51 am Subject: URGENT- HELP Shellscript for MQSeries |
#!/usr/bin/sh
infile="test.xml"
if [ "$1" == "MQ" ]; then
echo "Start MQSeries"
strmqm
echo
cat $infile
fi
Plz give some sugg on this approach. |
Topic: URGENT- HELP Shellscript for MQSeries |
ram2s2001
Replies: 15 Views: 8116
|
Forum: IBM MQ API Support Posted: Mon Dec 12, 2005 3:49 am Subject: URGENT- HELP Shellscript for MQSeries |
i know how to write general shellscript ,iam new to MQSeries,Plz if any body know plz give you sugg . |
Topic: URGENT- HELP Shellscript for MQSeries |
ram2s2001
Replies: 15 Views: 8116
|
Forum: IBM MQ API Support Posted: Sun Dec 11, 2005 11:27 pm Subject: URGENT- HELP Shellscript for MQSeries |
I have an Queue Manager "QM" and LocalQueueries "LQ1" and "LQ2" . I have an sample XML message file.
Already created QM and LQ1 and LQ2.
HOW to write shellscript for starting QM1 ,sending and ... |