

About smppxasp.dll
------------------

  smppxasp.dll have similar function as Delphi/Kylix or VB version on sending SMS via SMPP

  The difference is this component using SYNCHRONOUS communication since Microsoft IIS 
  Active Server Page Script have this structure.

  Default time-out for waiting data is 5 second.

  DONT forget to call UNBIND() at the end of ASP Script to release all memory
  allocated by smppxasp.dll and close the connection to SMSC.


Installation
-------------

  from Dos prompt type "regsvr32 smppxasp.dll" 


Demo
--------

  smpp.html  
  smppx.asp  

  Put that 2 files on your IIS web server


Speed
------

  Try to uncomment FOR LOOP at example script ( smppx.asp ) to send 100 sms and measure yourself
  the speed.


Function List
--------------

  All function return value is SMSC respons

+ Create object:

     Set o = Server.CreateObject("Smpp.Conn") 

+ Bind to SMSC :

     Bind( Host, Port, UserId, Password, SystemType ) 

+ UnBind to SMSC :

     UnBind()


+ Send Plain SMS 
     
     SendPlain( source_addr, destination_addr, SMS )		

+ Send Unicode SMS ( Arabic, Japanese ... ) 
     
     SendUnicode( source_addr, destination_addr, SMS )		

+ Send Nokia Ring Tone 

     SendNokiaTone( source_addr, destination_addr, file_OTA_type )

+ Send Nokia Picture 

     SendNokiaPicture( source_addr, destination_addr, file_BMP_type, optional_text )

+ Send Nokia Logo 

     SendNokiaTone( source_addr, destination_addr, file_BMP_type )

     file_..._type in absolut path "c:\folder\pic.bmp"


-----------------


  Enjoy 

  ekorudi@yahoo.com














