Is there a way to find the version of my MQSeries?


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Is there a way to find the version of my MQSeries?
# 1  
Old 05-22-2008
Is there a way to find the version of my MQSeries?

Is there a way to find the version of my MQSeries?

Thanks,
Vijay.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Programming

PERL MQSeries MQCONN issue

Hi, I have an issue with a PERL5 script that calls MQCONN. I get this error on this Perl step when connecting to my Q manager: "Undefined Undefined subroutine &main::MQCONN called at ./quelog.pl " I use this code:$Hconn = MQCONN($QMGR,$CompCode,$Reason); In my .profile: export... (2 Replies)
Discussion started by: mrn6430
2 Replies

2. Linux

How Do I find out SNMP Version?

Can someone please tell me how I can find out what version of SNMP I have running on any linux and solaris server? i would think this was an easy thing to find. but google wasn't able to turn up anything on this. snmp -v should do the trick but it doesn't. thank you guys (1 Reply)
Discussion started by: SkySmart
1 Replies

3. UNIX for Advanced & Expert Users

Find RedHat version.

How can I find out with a C program, on which RedHat version the program is being ran ? I do know through compilation variables that I'm on RedHat but so far cannot find out which one. Currently the closest I got was to invoke an ls or cat through syscall for the release or motd files. ... (5 Replies)
Discussion started by: amirvosko
5 Replies

4. Programming

Shellscript for MQSeries

Iam new to shellscript. 1)How to strart QUERYMANAGER using shellscript. 2)How to put and get messages in MQSeries using shellscripts. 3)iam using local queues . Thanks lot. (0 Replies)
Discussion started by: ram2s2001
0 Replies

5. Shell Programming and Scripting

using the perl version of the find command...

hi, i am looking through the perl documentation in the man pages for the first time but I have looked at some other reference giudes before (at a glance) and remember that there is a find command used by perl can any one give me a structured example of that command and how it works and if possible... (2 Replies)
Discussion started by: moxxx68
2 Replies

6. UNIX for Advanced & Expert Users

How to Find the OS version Installed

Hi, I wanted to know how can I get the version of underlying HP-OS installed on a HPUX workstation. The output required is "June 2001" version or "March 2003" version etc whatever OS is present. Thanx in advance for your help. Regards, Pankaj (3 Replies)
Discussion started by: pankschawla
3 Replies

7. UNIX for Dummies Questions & Answers

Find Software Version

Hi, Is there anyway to find what version of a software is installed on a particular box ? For Tru64 unix, the setld -i command lists all the software that is installed. But how do i get the version ? is there a unix command for this? Is setld specific to Tru64 ? Do reply VJ (1 Reply)
Discussion started by: vjsony
1 Replies

8. UNIX for Dummies Questions & Answers

How do I find out what version of X I'm using?

How can I find out? Besides looking on the box of my distro and checking their. (2 Replies)
Discussion started by: DISTURBED
2 Replies

9. UNIX for Dummies Questions & Answers

How do I find Unix Version

I am extremely new here. Someone wants to upgrade off of Unix to Windows 2000 and wants to know if they need to buy new hardware How do I find out what type of Unix they're using? How do I find out the current hardware of the system? (Intel, ..etc) Thanks (3 Replies)
Discussion started by: tomsha
3 Replies
Login or Register to Ask a Question
MQSERIES_DISC(3)							 1							  MQSERIES_DISC(3)

mqseries_disc - MQSeries MQDISC

SYNOPSIS
void mqseries_disc (resource $hconn, resource &$compCode, resource &$reason) DESCRIPTION
The mqseries_disc(3) (MQDISC) call breaks the connection between the queue manager and the application program, and is the inverse of the mqseries_conn(3) (MQCONN) or mqseries_connx(3) (MQCONNX) call. PARAMETERS
o $hConn -Connection handle.This handle represents the connection to the queue manager. o $compCode -Completion code. o $reason -Reason code qualifying the compCode. RETURN VALUES
No value is returned. EXAMPLES
Example #1 mqseries_disc(3) example <?php mqseries_disc($conn, $comp_code, $reason); if ($comp_code !== MQSERIES_MQCC_OK) { printf("disc CompCode:%d Reason:%d Text:%s<br> ", $comp_code, $reason, mqseries_strerror($reason)); } ?> SEE ALSO
mqseries_conn(3), mqseries_connx(3). PHP Documentation Group MQSERIES_DISC(3)