Hi Guys,
As per our discussion with Raj yesterday, I m here with attaching a Small Image, which contains sample database and its details. We might need to enhance the same, depending on the discussions. Have a look over the same and put in your comments too...
SMS Alerts Software
Geneva Soft Tech (http://www.genevasoftech.com/) is providing an E2C Software, where in you can send SMS in 14 Languages. 10,000 SMS's are FREE. After that it will cost depending on the packs they have, that we will know only after purchasing the software from them. It costs Rs.6,000 for us. This software we can install in any machine (Win XP/Vista) too. I m not sure how do we integrate the same with JAVA/.Net/PHP Application. You guys can look into the same OR We can purchase the SMS Gateway from http://clickatell.com, an US Provider. They will issue some API's which we have to use in our Web Application and so that can send the SMS. Even call back feature also we can look there.
Regards,
Ravi N Rao
Yes Dude we have checked this Information hosted by you.
ReplyDeleteThank You
Kiran
Guys,
ReplyDeletehave a Look here in .Net u can send SMS like this
You can use Clickatell SMS gateway to send SMS with the help of their API. it is simple and easy to use
http://www.clickatell.com/products/gateway.php
Public Function sendSms(ByVal cellPhNo As Double, ByVal smsMsg As String) As Boolean
'====================================================
'Function to send SMS using clickatell.com
'====================================================
Dim client As WebClient = New WebClient
client.Headers.Add("user-agent", "mozilla/4.0(compatible;MSIE 6.0;.NET CLR 1.0.3705;)")
client.QueryString.Add("user", "UserID")
client.QueryString.Add("password", "password")
client.QueryString.Add("api_id", "api_id")
client.QueryString.Add("to", cellPhNo)
client.QueryString.Add("text", smsMsg)
Dim baseurl As String = "http://api.clickatell.com/http/sendmsg"
Dim data As Stream = client.OpenRead(baseurl)
Dim reader As StreamReader = New StreamReader(data)
Dim s As String = reader.ReadToEnd()
If Mid(Trim(s), 1, 3) = "ERR" Then
LogError(s)
' LogError("error")
Return False
Else
Return True
End If
data.Close()
reader.Close()
End Function
As ravi told we can SMS through two ways:
ReplyDelete1. purchase SMS package from the service provider, they will return a URL where we can specify the SMS recipient name [rates we need to confirm from various service providers].
2. have a phone connected to the system and we can have some J2MEE APIs to send the SMS, again with this method cost will be to that mobile that is connected, and the number will appear.
you can check the follwing site:
ReplyDeletehttp://www.nowsms.com/discus/messages/1/2829.html
http://forums.sun.com/thread.jspa?threadID=150292
Kiran/Murthy/Mohan,
ReplyDeleteYou can download 60 Days trial version of NowSMS Gateway S/w and test the same.
You Just nned to fill in some details in the below link , also go thru FAQ of the same.
http://www.nowsms.com/downloads/smsmmsgateway.htm