Hi,

HTTP based gateways such as Clickatell, BulkSMS and Kannel support
only sending SMS (outbound only), this is because there is no HTTP
interface that supports receiving messages and reports. In my opinion,
the best way to add inbound message and delivery report support for
these gateways is through using SMSServer Http Interface. SMSServer
Http Interface currently supports sending and reading messages (also,
deleting messages, not sure), you can add receiving messages and
delivery reports using this HTTP interface (I was working on adding
such support myself but didn't have enough time to complete it).

Sending multiple messages at once using gateway's capabilities is not
supported. You can use Service.sendMessages() method but this iterates
over a collection of messages and sends them one by one (which I think
is not what you want). There is one work around that I think (never
tried) may work for sending multiple messages is by specifying all you
recipients in the OutboundMessage.setRecipient()

For Kannel space separated, for example, 4123123456 44123123457
44123123458 etc.
For BulkSMS and Clickatell,  comma separated, for example,
4123123456,44123123457,44123123458 etc.

And for querying status reports you can use the queryMessage() method
of BulkSMS and Clickatell (not supported in Kannel).


Regards,



On Jun 19, 4:37 am, Name256 <[email protected]> wrote:
> Hello,
>
> I was wondering whether the status reports are also included in the
> other gateways such as Clickatel and Kannel that are defined for sms-
> server other than when using the modem. I am currently working on a
> project that involves the seding and receiving of sms but due to the
> limitations on the number of messages that a gsm modem can send at a
> time, I prefer using other gateways that can handle a very large
> amount of messages at once.
>
> Any assistance will be highly appreciated.
> Kind regards.

-- 
You received this message because you are subscribed to the Google Groups 
"SMSLib User Group" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/smslib?hl=en.

Reply via email to