in reply to Tibco::Rv To Send Certified Messages

What is your code? Why don't the snippets from the docs of Tibrco::Rv work for you? Should be (blindy copying from POD since i've never used this module):
use Tibco::Rv; my ( $rv ) = new Tibco::Rv( service => $service, network => $network, daemon => $daemon ); my ( $msg ) = $rv->createMsg; $msg->addString( field1 => 'myvalue' ); $msg->addString( field2 => 'myothervalue' ); $msg->sendSubject( 'ABC' ); $rv->send( $msg );

Replies are listed 'Best First'.
Re^2: Tibco::Rv To Send Certified Messages
by rohit_thakare (Initiate) on Aug 08, 2005 at 03:29 UTC
    What you have written works for regular messages. Not Ceritfied Messages. I want to know how I can use Certified Messaging using Tibco::Rv Thanks