InetLab SMPP Full Working example

.NET library for SMPP protocol
Locked
saedshaar
Posts: 5
Joined: Sun Apr 24, 2011 4:57 am

InetLab SMPP Full Working example

Post by saedshaar » Sun Apr 24, 2011 5:12 am

Hello Folks,

I am trying to test the InetLab SMPP dll files, but I cannot figure out the whole senario cuz am new to SMPP world.

I appreciate if you can provide a full working example of sending SMS to single number and another for sending Bulk SMS Async.

Appreciate your prompt response.

Regards,
Saed Shaar
saedshaar
Posts: 5
Joined: Sun Apr 24, 2011 4:57 am

Re: InetLab SMPP Full Working example

Post by saedshaar » Sun Apr 24, 2011 10:24 am

I got it work in a web service that I hosted locally in a Server with open port to the SCME.

But when I try to call this serice from a Windows service on the same Server, it's does not work... any idea?

By the way, I am using .Net Framework 2.0 and Visual Studio 2010.
alt
Site Admin
Posts: 985
Joined: Tue Apr 25, 2006 9:45 am

Re: InetLab SMPP Full Working example

Post by alt » Fri Apr 29, 2011 11:32 am

I found out that SmppClientDemo was not included in last build.
Please download last Inetlab.SMPP.zip and find sources of SmppClientDemo.

In this sample application you can find examples how to send SMS to single number and how to run bulk SMS.

If after that you will have questions, please let me know
saedshaar
Posts: 5
Joined: Sun Apr 24, 2011 4:57 am

Re: InetLab SMPP Full Working example

Post by saedshaar » Fri Apr 29, 2011 12:16 pm

Thank you for your reply, but I found the solution, and posted an article of how to develop a windows service on top of your DLL.
http://www.codeproject.com/KB/aspnet/SM ... lient.aspx

I am working now on how to track the message delivery status? any ideas?
alt
Site Admin
Posts: 985
Joined: Tue Apr 25, 2006 9:45 am

Re: InetLab SMPP Full Working example

Post by alt » Fri Apr 29, 2011 1:16 pm

you can query status, use Query method in client.
Or you can request delivery receipt in SubmitSm.
saedshaar
Posts: 5
Joined: Sun Apr 24, 2011 4:57 am

Re: InetLab SMPP Full Working example

Post by saedshaar » Fri Apr 29, 2011 4:58 pm

I am using separate windows services for sending and another for getting status.

The first one will send the SMS and store the MessageId into a table, and I need the second windows service to query the delivery status of the sent SMS and store update the record in the database.

Actually I didn't digged inyo it yet, but if u can help that would be great!
Locked