rohit_thakare has asked for the wisdom of the Perl Monks concerning the following question:

I have a question in perl and I was wondering if you can help me solve it . If I know the variables, $service, $deamon, $network How can I use Tibrco::Rv or any of it's other modules to send certified messages. thanks

Replies are listed 'Best First'.
Re: Tibco::Rv To Send Certified Messages
by davidrw (Prior) on Aug 07, 2005 at 01:49 UTC
    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 );
      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