Developing and implementing your SMPP based application can be difficult to do without an industry standard test platform. We offer a fully compliant SMPP test profile as part of our wholesale service. The test profile allows your developers to simulate a real production environment (including delivery receipting) without incurring the costs of sending messages.
aql supports SMPP v3.4. The following contains a list of the PDUs supported by aql:
There are 2 options available when binding to aql. You can either bind using the transmitter
and receiver pair from SMPP v3.3 or bind using the transceiver mode new to SMPP v3.4
When the SMPP account is set up for you, you will be given a username (system_id),
password and a system_type value to connect with.
You are initially restricted to the number of binds you can make to aql. Depending on the version of SMPP you are using it will be either 1 transceiver connection or 1 transmitter and 1 receiver connection. In most cases this is sufficient. If, however, you require this configuration changing on your account, please raise a support ticket via our support system (see bottom of page 1). We will then be able to discuss your needs and make the appropriate changes.
You can only connect to aql via certain IP addresses that you have registered. If you wish to connect from multiple IP addresses, please raise a support ticket via our support system.
The following table gives a breakdown of the SUBMIT_SM pdu. It contains details regarding each of the parameters of the pdu and how they should be used when passing messages to the aql servers.
| Parameter | Description |
|---|---|
| command_length | As in SMPP Specification |
| command_id | As in SMPP Specification |
| command_status | As in SMPP Specification |
| sequence_number | As in SMPP Specification |
| service_type | Use the system_type parameter that is given to you by aql |
| source_addr_ton | See explanation of source_addr_ton and source_addr_npi at end of this section |
| source_addr_npi | See explanation of source_addr_ton and source_addr_npi at end of this section |
| source_addr | The originator to be used for this message. If left blank, the default originator on your account will be used. Either 16 digits (in international format) for a mobile number or 11 alphanumeric characters for text. |
| dest_addr_ton | The destination number in international format (eg 447911111111 |
| esm_class | See explanation of esm_class and data_coding at end of table |
| protocol_id | Not supported, use any value in accordance with SMPP Specification |
| priority_flag | Not supported, use any value in accordance with SMPP Specification |
| schedule_delivery_time | If left blank the message will be sent immediately. To send message at a different time, set the time as defined in the SMPP specification. |
| validity_period | Not supported, use any value in accordance with SMPP Specification |
| registered_delivery | If a delivery report is required set to 1 otherwise set to 0 (zero) |
| replace_if_present_flag | Not supported, use any value in accordance with SMPP Specification |
| data_coding | See explanation of esm_class and data_coding at end of table |
| sm_default_msg_id | Not supported, use any value in accordance with SMPP Specification |
| sm_length | Length in octets of the short_message parameter |
| short_message | The short message itself as defined by the SMPP specification. |
NOTE: Optional parameters are not required by aql and are not supported.
The following table describes the values that need to be set for the esm_class and data_coding parameters depending on what type of content you require to be sent.
| Message type | esm_class | data_coding |
|---|---|---|
| Text | 00000011 | 11110001 or 00000000 |
| Flash | 00000011 | 11110000 |
| UDH | 00000011 | 01000000 |
When mimicking a mobile number, international format must be used. In this case both source_addr_ton and source_addr_npi must be set to 1. In other cases, it is generally acceptable to leave these parameters set to 0 (zero).
aql support the QUERY_SM pdu. This can be used to determine the state of a message at a time that is suitable to you. The table below gives a breakdown of the QUERY_SM pdu and how it should be used with aql.
| Parameter | Description |
|---|---|
| command_length | As in SMPP Specification |
| command_id | As in SMPP Specification |
| command_status | As in SMPP Specification |
| sequence_number | As in SMPP Specification |
| message_id | The message id that was originally sent back in the SUBMIT_SM_RESP pdu |
| source_addr_ton | Must be 0 (zero). This is auto-detect mode |
| source_addr_npi | Must be 0 (zero). This is auto-detect mode |
| source_addr | Not used. Set to NULL |
The QUERY_SM_RESP pdu is as defined in the SMPP specification.
The error responses that can be sent back are as defined in the SMPP specification. The additional error codes specific to aql are outlined in the table below.
| Error code | Description |
|---|---|
| 0x00000400 | You do not have enough credits to send message. Please contact us to credit your account. |
If the register_delivery parameter is set to 1 in the original SUBMIT_SM pdu then a DELIVER_SM response will be sent back to you when the message has reached a final state. This could take anywhere between seconds and hours. Some cases could take even longer.
The following table shows a breakdown of the parameters that are sent in a DELIVER_SM and how to interpret them when received from aql.
| Parameter | Description |
|---|---|
| command_length | As in SMPP Specification |
| command_id | As in SMPP Specification |
| command_status | As in SMPP Specification |
| command_number | As in SMPP Specification |
| service_type | The system_type value that the connection that the message was submitted with is echoed in this parameter |
| source_addr_ton | Will always be 0 (zero). |
| source_addr_npi | Will always be 0 (zero). |
| source_addr | This is the mobile number that the original message was sent to |
| dest_addr_ton | Will always be 0 (zero). |
| dest_addr_npi | Will always be 0 (zero). |
| destination_addr | This is set to the originator of the original message. |
| esm_class | Always set to 4 (00000100) |
| protocol_id | Not used, will always be 0 (zero). |
| priority_flag | Not used, will always be 0 (zero). |
| schedule_delivery_time | Always set to NULL |
| validity_period | Always set to NULL |
| registered_delivery | Always set to 0 |
| replace_if_present_flag | Always set to 0 |
| data_coding | Always set to 0 |
| sm_default_msg_id | Always set to 0 |
| sm_length | Length in octets of the short_message parameter |
| short_message | The short message itself as defined by the SMPP specification. |
The short message for a delivery receipt is a string and will look like the following:
"id:IIIIIIIIII sub:SSS dlvrd:DDD submit date:YYMMDDhhmm done date:YYMMDDhhmm stat:DDDDDDD err:E Text: . . . . . . . . ."
The fields in the delivery receipt are explained in the following table:
| Field | Size | Type | Description |
|---|---|---|---|
| ID | 10(max) | NULL Terminated | id supplied by aql in the original SUBMIT_SM pdu |
| sub | 3(max) | NULL Terminated | Always 000 |
| dlvrd | 3 | NULL Terminated | Always 000 |
| submit date | 10 | NULL Terminated | Date + time submitted. See SMPP Specification for the format |
| done date | 10 | NULL Terminated | Date + time submitted. See SMPP Specification for the format |
| stat | 7 | NULL Terminated | Final status of the message. See table below |
| err | 3 | NULL Terminated | Associated error code. See table below |
| text | 20 | String without NULL termination | Will always contain the text ‘Not available’ (without quotes) |
The stat parameter contains the status of the message. The values it can take along with associated error codes are described below:
| 'stat' value | 'err' value | Description |
|---|---|---|
| DELIVRD | 000 | The message has been delivered |
| UNDELIV | 101 | The message is undeliverable |
| UNKNOWN | 102 | The message is in a final invalid state. It is unknown if the message has been delivered. |
In the near future we will be adding additional status codes. This will allows us to pass along more detailed information.
As with all SMPP communications, the aql servers expect a DELIVER_SM_RESP pdu in response to a delivery report.
In order to stop the connection to aql you must first issue the UNBIND pdu. aql will send back an UNBIND_RESP pdu at which point it is safe to terminate the connection.
You will require an SMPP client to send messages via the aql SMPP server. The following section may prove useful in this regard.
There is an excellent open source SMPP client for Linux available at http://www.kannel.org. This provides functionality above and beyond what is required to send messages via aql. It is fairly complex to configure but it is extremely reliable and worth considering.
There is a small SMPP client written in PHP located at: http://www.phpclasses.org/browse/package/1373.html
If you would like to develop your own SMPP client then there is a Java API available to download. This can be found at: http://www.logicacmg.com/wirelessnetworks http://opensmpp.logica.com/ https://sourceforge.net/projects/smstools/
An equivalent Perl API is available at: http://search.cpan.org/author/SAMPO/Net-SMPP-1.03/SMPP.pm
If you require the SMPP v3.4 specification, this can be downloaded from the following site: http://www.smpp.org/doc/public/index.html
If you need further information relating to SMPP, a good starting point is: http://www.smpp.org