This matrix will give software
developer an idea which development kit (SMS API, SMS Engine
or CLISMS) to use depending on the programming language (VB6,
VB.Net, PHP, Java, etc.). For example, if you are a Java programmer,
then you will choose SMS Engine.
|
|
SMS API (ActiveX DLL or
COM)
|
SMS Engine
|
CLISMS
|
|
VB6 / C++ / Delphi
|
- Yes, highly suitable
- By referencing / creating new
object
- Send SMS - call SendSMS
method
- Read SMS - call ReadSMS
method
|
- Yes, highly suitable
- By ODBC / OLEDB
- Send SMS - execute SQL
Insert statement into Outbox Table
- Read SMS - execute SQL
Select statement from Inbox Table
|
- Yes
- Sending SMS -By shelling
to CLISMS.exe and passing parameters
|
|
VB.Net / C#
|
- Yes, highly suitable
- By referencing / creating new
object
- Send SMS - call SendSMS
method
- Read SMS - call ReadSMS
method
|
- Yes, highly suitable
- By ODBC.Net / OLEDB
- Send SMS - execute SQL
Insert statement into Outbox Table
- Read SMS - execute SQL
Select statement from Inbox Table
|
- Yes
- Sending SMS -By shelling
to CLISMS.exe and passing parameters
|
|
Java
|
- Yes, but it requires Jawin;
not recommended
- Send SMS - call SendSMS
method
- Read SMS - call ReadSMS
method
|
- Yes, highly suitable
- By JDBC
- Send SMS - execute SQL
Insert statement into Outbox Table
- Read SMS - execute SQL
Select statement from Inbox Table
|
- Yes
- Sending SMS -By shelling
to CLISMS.exe and passing parameters
|
|
ASP / ASP.Net
|
- Yes, but not suitable for concurrent
use
- By referencing / creating new
object
- Send SMS - call SendSMS
method
- Read SMS - call ReadSMS
method
|
- Yes, highly suitable, allow
concurrent use
- By ODBC / ODBC.Net / OLEDB
- Send SMS - execute SQL
Insert statement into Outbox Table
- Read SMS - execute SQL
Select statement from Inbox Table
|
- Yes, but not suitable for concurrent
use
- Sending SMS -By shelling
to CLISMS.exe and passing parameters
|
|
PHP
|
- Yes, but not suitable for concurrent
use
- By creating new object. More
information ...
- Send SMS - call SendSMS
method
<?php $sms = new COM("MobitekSMSAPI5.SMS"); $sms->SendSMS ("0162211888","Hello
from PHP"); ?>
- Read SMS - call ReadSMS
method
<?php $sms = new COM("MobitekSMSAPI5.SMS"); $result
= $sms->ReadSMS; if ($result!="True") { echo
"Sender: " $sms->MN; echo "Message:
" $sms->MSG; } ?>
|
- Yes, highly suitable, allow
concurrent use
- By ODBC
- Send SMS - execute SQL
Insert statement into Outbox Table
- Read SMS - execute SQL
Select statement from Inbox Table
|
- Yes, but not suitable for concurrent
use
- Sending SMS -By shelling
to CLISMS.exe and passing parameters
|