Search found 5 matches

by james
Wed Mar 30, 2011 6:58 am
Forum: Inetlab.SMPP v1.0
Topic: Compatible with MONO?
Replies: 1
Views: 11509

Compatible with MONO?

Hi,

It states on the site that the client library is compatible with MONO?

Is this 100% true? Will it work with the demo version?

The reason I ask, is that we are having issues with the library in mono.
by james
Fri Dec 10, 2010 2:29 pm
Forum: Inetlab.SMPP v1.0
Topic: Delivery Report Data
Replies: 3
Views: 21752

Re: Delivery Report Data

Hi,

Something strange is happening here.

We are using the following code to try and get the ERR: xxx value.

private void OnDeliverSm(object sender, DeliverSm data)
{
if (data != null)
{
string messageId = data.Receipt.MessageId.Trim(' ', '\0');

string message = string.Format(
"DLR ...
by james
Thu Dec 09, 2010 3:55 pm
Forum: Inetlab.SMPP v1.0
Topic: Delivery Report Data
Replies: 3
Views: 21752

Delivery Report Data

Hi,

The handler for evDeliverSm has the following signature:

private void OnDeliverSm(object sender, DeliverSm data)

1) In this context what is data.Receipt.ErrorCode?
2) if we call
string messageText = data.Client.GetMessageText(data.UserDataPdu.ShortMessage, data.DataCoding);

we get a string ...
by james
Tue Dec 07, 2010 2:21 pm
Forum: Inetlab.SMPP v1.0
Topic: Concatinated SMS Delivery Reports
Replies: 1
Views: 12414

Concatinated SMS Delivery Reports

Hi,

How does InetLab handle the DeliverySM, when I send an sms that is 3 sms long, I get 3 Delivery_SM replies back, each with different ID and a sequence number.

Does InetLab have something in it to handle the entire delivery ? (single DLR message or something)
by james
Thu Dec 02, 2010 3:19 pm
Forum: Inetlab.SMPP v1.0
Topic: Scheduled SMS
Replies: 1
Views: 11747

Scheduled SMS

Hi,

I am wondering if this lib supports scheduling sms..

I think in SMPP 3.4 its called DEFERRED..

Is it possible ?