Support for other Languages

Though SDK's are provided for most commonly used development languages, this does not preclude developers using more esoteric languages from using the Esendex services within their applications.

Cold Fusion

Use the simple SOAP interface with a CF:INVOKE tag.

Ruby

It is possible to invoke the methods of the Esendex API using Ruby, for example you can send an SMS using HTTP Post by declaring a new http handler.@http=Net::HTTP.new('www.esendex.com',443)

then calling the post method

@http.post('secure/messenger/formpost/SendSMS.aspx',parameters)

where the 'parameters' variable is in a formatted string comprising 

  •   Esendex account username
  •   Esendex account password
  •   Esendex account reference 
  •   Originator
  •   Recipient
  •   Body
  •   Type
  •   Validity period

as descibed in the service URI