Hi I am trying to login a JMS admin tool and execute JMS commands and using perl windows to do this.
This is the e.g of connection string they said to use when trying to connec to jms ****connect [<tcp://192.45.63.132:7 220>] [<>] [<>]****
This is what I tried so far:
This is the e.g of connection string they said to use when trying to connec to jms ****connect [<tcp://192.45.63.132:7 220>] [<>] [<>]****
This is what I tried so far:
Code:
#!/usr/bin/perl
#Date: Mar-09-2007
#Purpose: Monitor JMS server
chdir "d:/tibco/ems/bin/tibjmsadmin.exe";
system "connect [<tcp://192.45.63.132:7220>] [<>] [<>]";
print "Enter command:";
<STDIN>
open(OUTPUT ">output.txt") || die ("Error opening file $!");
print OUTPUT <STDIN>;
Comment