Implementation of SMPP Server and SMPP Client
-
16 august 2010 06:33
Hi
I am developing sms application for that i have to create SMPP server and client rather than using third party providers. I have read some documents and forums but i did not get the relative information to my application.I am developing this application using c#.net code so that i want straight forward information regarding the application.Its pleasure if anyone provide code to me
Toate mesajele
-
19 august 2010 17:09
Hi I was with the same problem and I couldn't find something like taht, instead I found a library that helped me out developing a client, here is the address:
http://www.inetlab.ru/default.aspx
You will find the library and some code for start and test it.
-
20 august 2010 07:08Moderator
Hi sathish,
Welcome to MSDN forums!
I am interested in helping.Here is a link about how to use C# implement SMPP.
http://www.ag-software.de/index.php?page=agsxmpp-sdk
XmppClientConnection xmpp = new XmppClientConnection("jabber.org");
xmpp.Open("myusername", "mysecret");
xmpp.OnLogin += delegate(object o) { xmpp.Send(new Message("test@jabber.org", MessageType.chat, "Hello, how are you?")); };Hope these helps, if you have any problems, please feel free to let me know.
Best Regards,
Alan Chen
________________________________________
Please remember to mark the replies as answers if they help and unmark them if they provide no help
- Marcat ca răspuns de Alan_chenModerator 24 august 2010 01:21
-
25 august 2010 05:37
Thank you Alen_Chen for sending your reply to my post.
you have given the third party provider link,the link you provided me is for commercial purpose .
It not provided me the open source code.
-
25 august 2010 05:39
Thank you cecd479 for your reply to my post.
i will go through your link and if you find any simple solution to this problem you can
reply me
-
25 august 2010 07:10Moderator
hi,
It is a bad link, I have wrote a project about IM(xmpp).
agsXMPP is a SDK for the eXtensible Messaging and Presence Protocol (XMPP) protocol written in managed C# dedicated to .NET and Mono technologies. The SDK is released as open source under a dual license.
xmppCon =
new agsXMPP.XmppClientConnection();
xmppCon.OnLogin +=
new agsXMPP.ObjectHandler(xmppCon_OnLogin);//login
xmppCon.OnAuthError +=
new agsXMPP.XmppElementHandler(xmppCon_OnAuthError);
xmppCon.OnMessage +=
new agsXMPP.protocol.client.MessageHandler(xmppCon_OnMessage);//message come
Hope these helps, if you have any problems, please feel free to let me know.
Best Regards,
Alan Chen
________________________________________
Please remember to mark the replies as answers if they help and unmark them if they provide no help
-
2 mai 2012 07:17Hi Ananya, i needed some more info on your work on SMPP...it will be great if you drop me a note with your contact details on rahul26285 at gmail . com