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

hi monks,
#!/usr/bin/perl use strict; use Net::SMPP; my $smpp = Net::SMPP->new_transmitter($host, port=>$port,system_id => +'username',password => 'password',) or die; my $resp_pdu = $smpp->submit_sm(destination_addr => '555010',short_mes +sage => 'http://example.com/L.php?n=555010')or die; print "$resp_pdu";
this is the program that i had written i need to receive this one as service msg in my mobile it means not as a text msg. Thank in advance

Replies are listed 'Best First'.
Re: sending wap links to mobile
by Anonymous Monk on Apr 09, 2009 at 10:03 UTC
    The documentation says it ...is not intended to be complete reference to SMPP protocol - use the SMPP specification documents (see references section) to obtain exact operation and parameter names and their meaning. So you should do that :)