I want to send sms through my site. not trying to create a sms portal. I have searched regarding this but did not get much support.
Please tell me how to write own sms api or use one of the better sms services (way2sms, fullonsms etc.), these much send sms for free. I don;t wanna use third party web services as that will cost much and my requirement is very low probably 1 sms within
2 days.
I found some links regarding sending sms through way2sms by integrating it to own site but it does not work.
So please tell me how to integrate way2sms(fullonsms etc) account within our own site or write a custom code which sends out message for free.
here is the detail what i found at http://support.microsoft.com/kb/555578
The prerequisite for using the SMS capabilities is the SMS gateway. You can have access to the SMS with mobile network(service providers), via a web interface or an API. They would supply you with a set of APIs that work with their SMS servers. Again,
this involves a cost for sending messages and providing services.
Alternatively, there are a few mobile phone web sites that allow you to send/receive an SMS using their web site. You can develop a web page in ASP.NET that can be posted to that site for providing SMS services to your users. In India, www.mantraway.com, www.mysmsaddress.com,
www.smscountry.com, www.smsjunction.com are few websites that offer the SMS and related services for corporate and high volume SMSC links using SMPP (Short Message Peer to Peer) communication protocol.
A SMSC (Short Message Service Center) regulates the message transfer to and from the mobile phones in GSM-networks. This includes not only short text messages but also fax, voice- or e-mails. It delivers the messages, temporarily stores them in case the respective
recipient is currently not available and takes care of charging. There is at least one SMSC per network.
The third option is considering a subscription to a SMS webservice using which you can send or receive SMS in your application. Go to www.webservicex.com , you can find a number of webservices that deals with SMS services. One of the most widely used service
is available in http://www.salcentral.com/help/msgservice.com
In this sample, I use an already existing webservice from www.webservicex.com. It provides Web Service Definition Language (WSDL) link for sending SMS. You must add a web reference to the following webservice in your CF.NET application:
http://www.webservicex.net/SendSMS.asmx
Private void SendMessage(string MobileNumber, string FromEmailAddress, string Message)
{
localhost.SendSMS smsService = New localhost.SendSMS();
try
{
bool result = smsService.SendMessage(someMobileNumber,myemaidid, myMessage);
if (result == True)
MessageBox.Show("The message was sent", "SMS Messaging");
else
MessageBox.Show("The message was not sent", "SMS Messaging");
}
catch (SoapException ex)
MessageBox.Show("An exception occured. " & ex.Detail.InnerText, "SMS Messaging");
}
Developing applications that provide SMS services is not a simple task. You must install the appropriate tools and components in your system to develop mobile applications in .NET environment.
If you are developing a mobile based SMS service, you need to rely on SMS gateway software components or you can make use of existing webservice which uses them. There is another finest way of providing SMS capability to your application that uses the AT commands
which comes as a variety of sets for different mobile devices. This is not discussed in this article.
If you are developing a device based SMS service application, you can go for .NET compact framework that is being shipped with Visual Studio .NET 2003/2005 or you can download it from the internet. Here again, most of the dll components you need for developing
SMS services are available with Windows CE 4.2/5.0 SDK toolkit, not available with .NET CF.
If this post answered your question or solved your problem, please Mark it as Answer.
can you please tell me to integrate way2sms/fullonsms account with asp.net website
for these two web sites, you have to contact the site support person. But I am afraid they will provide you the free web service. With the website they are earnnig lot of revenue, why they will provide you a free web service :)
If this post answered your question or solved your problem, please Mark it as Answer.
But I am afraid they will provide you the free web service. With the website they are earnnig lot of revenue, why they will provide you a free web service :)
There are many guys who are doing this, check here But the delivery of messages is not reliable and we can not count on as we are giving him our own username and password.
So please tell me how to write that one for own use, if they can then ofcourse asp.net community can.
after going through the link you have provided, I have found this. (I have not tried this. )
http://ubaid.tk/api-usage
You should use api or web service only provided by the sms service provider legally. Otherwise, you always has option to reverse engineering, but it might be illegal.
If this post answered your question or solved your problem, please Mark it as Answer.
if I submitted the main url then I know the inner page.
Ramesh Chandra
You should use api or web service only provided by the sms service provider legally. Otherwise, you always has option to reverse engineering, but it might be illegal.
how mr. Ubaid is able to write api for not only one sms provider infact more than 5?
how we can write own api, is mr. Ubaid's api legal?
sophia_asp
Member
521 Points
469 Posts
writing own sms api
Jul 27, 2012 07:09 PM|LINK
Hello all,
I want to send sms through my site. not trying to create a sms portal. I have searched regarding this but did not get much support.
Please tell me how to write own sms api or use one of the better sms services (way2sms, fullonsms etc.), these much send sms for free. I don;t wanna use third party web services as that will cost much and my requirement is very low probably 1 sms within 2 days.
I found some links regarding sending sms through way2sms by integrating it to own site but it does not work.
So please tell me how to integrate way2sms(fullonsms etc) account within our own site or write a custom code which sends out message for free.
Many thanks...
javedwahid
Participant
1687 Points
471 Posts
Re: writing own sms api
Jul 27, 2012 11:29 PM|LINK
Read the API documentation on those websites, they probably just have you POST data to a webservice.
Ramesh Chand...
Star
12922 Points
2672 Posts
Re: writing own sms api
Jul 28, 2012 01:22 AM|LINK
here is the detail what i found at http://support.microsoft.com/kb/555578
The prerequisite for using the SMS capabilities is the SMS gateway. You can have access to the SMS with mobile network(service providers), via a web interface or an API. They would supply you with a set of APIs that work with their SMS servers. Again, this involves a cost for sending messages and providing services.
Alternatively, there are a few mobile phone web sites that allow you to send/receive an SMS using their web site. You can develop a web page in ASP.NET that can be posted to that site for providing SMS services to your users. In India, www.mantraway.com, www.mysmsaddress.com,
www.smscountry.com, www.smsjunction.com are few websites that offer the SMS and related services for corporate and high volume SMSC links using SMPP (Short Message Peer to Peer) communication protocol.
A SMSC (Short Message Service Center) regulates the message transfer to and from the mobile phones in GSM-networks. This includes not only short text messages but also fax, voice- or e-mails. It delivers the messages, temporarily stores them in case the respective recipient is currently not available and takes care of charging. There is at least one SMSC per network.
The third option is considering a subscription to a SMS webservice using which you can send or receive SMS in your application. Go to www.webservicex.com , you can find a number of webservices that deals with SMS services. One of the most widely used service is available in http://www.salcentral.com/help/msgservice.com
In this sample, I use an already existing webservice from www.webservicex.com. It provides Web Service Definition Language (WSDL) link for sending SMS. You must add a web reference to the following webservice in your CF.NET application:
http://www.webservicex.net/SendSMS.asmx
Private void SendMessage(string MobileNumber, string FromEmailAddress, string Message) { localhost.SendSMS smsService = New localhost.SendSMS(); try { bool result = smsService.SendMessage(someMobileNumber,myemaidid, myMessage); if (result == True) MessageBox.Show("The message was sent", "SMS Messaging"); else MessageBox.Show("The message was not sent", "SMS Messaging"); } catch (SoapException ex) MessageBox.Show("An exception occured. " & ex.Detail.InnerText, "SMS Messaging"); }Developing applications that provide SMS services is not a simple task. You must install the appropriate tools and components in your system to develop mobile applications in .NET environment.
If you are developing a mobile based SMS service, you need to rely on SMS gateway software components or you can make use of existing webservice which uses them. There is another finest way of providing SMS capability to your application that uses the AT commands which comes as a variety of sets for different mobile devices. This is not discussed in this article.
If you are developing a device based SMS service application, you can go for .NET compact framework that is being shipped with Visual Studio .NET 2003/2005 or you can download it from the internet. Here again, most of the dll components you need for developing SMS services are available with Windows CE 4.2/5.0 SDK toolkit, not available with .NET CF.
sophia_asp
Member
521 Points
469 Posts
Re: writing own sms api
Jul 28, 2012 06:07 PM|LINK
Hi Ramesh,
first 2 links are expired and other 2 are costly,
can you please tell me to integrate way2sms/fullonsms account with asp.net website.
Many thanks
sophia_asp
Member
521 Points
469 Posts
Re: writing own sms api
Jul 28, 2012 06:10 PM|LINK
Hi Ramesh,
first 2 links are expired and other 2 are costly,
can you please tell me to integrate way2sms/fullonsms account with asp.net website.
Many thanks
Ramesh Chand...
Star
12922 Points
2672 Posts
Re: writing own sms api
Jul 29, 2012 09:54 AM|LINK
for these two web sites, you have to contact the site support person. But I am afraid they will provide you the free web service. With the website they are earnnig lot of revenue, why they will provide you a free web service :)
sophia_asp
Member
521 Points
469 Posts
Re: writing own sms api
Jul 29, 2012 10:26 AM|LINK
There are many guys who are doing this, check here But the delivery of messages is not reliable and we can not count on as we are giving him our own username and password.
So please tell me how to write that one for own use, if they can then ofcourse asp.net community can.
Ramesh Chand...
Star
12922 Points
2672 Posts
Re: writing own sms api
Jul 29, 2012 11:07 AM|LINK
after going through the link you have provided, I have found this. (I have not tried this. )
http://ubaid.tk/api-usage
You should use api or web service only provided by the sms service provider legally. Otherwise, you always has option to reverse engineering, but it might be illegal.
sophia_asp
Member
521 Points
469 Posts
Re: writing own sms api
Jul 29, 2012 01:12 PM|LINK
if I submitted the main url then I know the inner page.
how mr. Ubaid is able to write api for not only one sms provider infact more than 5?
how we can write own api, is mr. Ubaid's api legal?
pradeep shar...
Contributor
3988 Points
760 Posts
Re: writing own sms api
Jul 30, 2012 06:06 AM|LINK
u can use third party gateway and integrate in your site, thesy sol cheap and easy to integrate , available up rs. 200 only