Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re^2: issue in SMS Connectivity

by rammoorthi (Novice)
on Dec 11, 2012 at 09:51 UTC ( [id://1008254]=note: print w/replies, xml ) Need Help??


in reply to Re: issue in SMS Connectivity
in thread issue in SMS Connectivity

hi, i was getting error in the following code only
$resp_pdu = $smpp->submit_sm( destination_addr => '9610985672', short_message => 'Hello World. via SMPP' ) or die; print "PDU_resp ERROR: " . $resp_pdu->explain_status()

i tried with country code as well like +91 before the mobile number. still same error.

There is no intention that system type and id is same. i got this from system admin.

thanks in advance ram

Replies are listed 'Best First'.
Re^3: issue in SMS Connectivity
by Mr. Muskrat (Canon) on Dec 12, 2012 at 22:58 UTC

    The error isn't about the destination address so why change that? It sounds like the server is expecting a non-null source address so pass one with source_addr in the call to submit_sm.

    $resp_pdu = $smpp->submit_sm( source_addr => '', # add your source address here destination_addr => '9610985672', short_message => 'Hello World. via SMPP' ) or die; print "PDU_resp ERROR: " . $resp_pdu->explain_status()

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1008254]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (4)
As of 2024-04-19 22:30 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found