in reply to Pusing and Retriving messages from Tibco Message Queue

I know nothing about Tibco; however, searching for 'Tibco' on CPAN shows many modules whose names start with Tibco:: and end with ::Msg, ::Queue, ::Transport, and so on. Perhaps one, or more, of those would be suitable for your needs.

Also, "perlipc - Perl interprocess communication" might have some pertinent information.

-- Ken

Replies are listed 'Best First'.
Re^2: Pusing and Retriving messages from Tibco Message Queue
by Anonymous Monk on Aug 30, 2013 at 04:00 UTC
    Thanks Ken, The modules over here are available for creating the Tibco Message queue, However I have detials of existing tibco queues. Will check if any of these modules will be useful. Thanks, Mansi
      Perl and TIBCO EMS have no API.

      If you're not processing high volume messages, the most workable solution is to write a C (C++/Java) program and call it from perl.

      In the Tibco installation folders there is a folder called "samples/c", that contains a few easy examples of C programs (tibemsMsgProducer/tibemsMsgConsumer) writing and reading the EMS queues.

      Good luck!