I don't know if this is a right place ask this question. But i need a solution as early as possible.
I am developing a web application, it includes sms sending facility.
As per your suggestion, i thought of implementing the same with clickatell. But i am not able open up the link given.
Did they change their site to a new address?
Lini C K
========================================================================
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
Step 1: Add Web Reference :
http://www.spiritssoft.com/webservice/sendway2sms.asmx
Step 2: Add This "using com.spiritssoft.www;"
Step 3: Create a Object "SendWay2Sms smsobj = new SendWay2Sms();"
Step 4:
string strResult = smsobj.sendSmsSpiritsSoft("UserName", "Password", "Number", "message");
strResult : Recieving the Result from Webservice
Note:
- For Group SMS , Number seperated by commas(,).
- Message should be Only 125 characters,
- If No username , password form way2sms.com it will send message
through Spirits Soft Technology Default Number.
From : Spirits Soft Technology
www.spiritssoft.com
Am facing a problem, whenever am sending a message from localhost it works, but whenever am trying to send from client
computer, it says unable to connect to remote server! am sending a message from sms provider website, so i have included the messaging and connecting string of that website in codebehind, am using vb.
what may be the isssue.?
.i checked internet is available on server and client
2.i checked that client has the permission to access server files
3. do we need to have any spl permissions to run scripts at server?
linick
Participant
1268 Points
242 Posts
Re: Sending an SMS Message with ASP.NET
Nov 27, 2009 07:23 AM|LINK
I don't know if this is a right place ask this question. But i need a solution as early as possible.
I am developing a web application, it includes sms sending facility.
As per your suggestion, i thought of implementing the same with clickatell. But i am not able open up the link given.
Did they change their site to a new address?
========================================================================
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
vcsjones
All-Star
34842 Points
4424 Posts
Moderator
MVP
Re: Sending an SMS Message with ASP.NET
Nov 27, 2009 03:37 PM|LINK
As of just now, the ClickAttel link in my original post appears to still be working. Perhaps you hit it when they had some down time?
hinaAsp.Net
Member
246 Points
125 Posts
Re: Sending an SMS Message with ASP.NET
Dec 02, 2009 09:32 AM|LINK
good information
If my reply helped you, dont forget to mark it as "Answer"
spiritssoft
Member
32 Points
11 Posts
Re: Sending an SMS Message with ASP.NET
Dec 02, 2009 11:34 AM|LINK
For Send SMS Through Code:
C#.net:
Step 1: Add Web Reference :
http://www.spiritssoft.com/webservice/sendway2sms.asmx
Step 2: Add This "using com.spiritssoft.www;"
Step 3: Create a Object "SendWay2Sms smsobj = new SendWay2Sms();"
Step 4:
string strResult = smsobj.sendSmsSpiritsSoft("UserName", "Password", "Number", "message");
strResult : Recieving the Result from Webservice
Note:
- For Group SMS , Number seperated by commas(,).
- Message should be Only 125 characters,
- If No username , password form way2sms.com it will send message
through Spirits Soft Technology Default Number.
From : Spirits Soft Technology
www.spiritssoft.com
SMS to All Over India
World Spirits
kundasang
Member
11 Points
17 Posts
Re: Sending an SMS Message with ASP.NET
Dec 07, 2009 12:00 PM|LINK
is it possible for other country?
— Albert Einstein
S.WAYEZ
Member
61 Points
19 Posts
Re: Sending an SMS Message with ASP.NET
Dec 15, 2009 08:19 AM|LINK
I have written a blog on how to send sms thru asp.net in saudi arabia
Have fun
Swayez.blogspot.com
satalaj
Star
10505 Points
2031 Posts
MVP
Re: Sending an SMS Message with ASP.NET
Dec 16, 2009 10:14 AM|LINK
Some ISP banned clickatell domain in India.
Refer my article on how to send sms using ASP.net and SMS api provider
http://revenmerchantservices.com/post/C-Send-SMS-Text.aspx
Satalaj
kanueishtiaq
Member
4 Points
2 Posts
Re: Sending an SMS Message with ASP.NET
Dec 16, 2009 06:59 PM|LINK
I want to send SMS through my ASP .Net web site. I am attaching the code which I am using to send sms
protected override void Page_Load(object sender, System.EventArgs e)
{
HttpUtility.UrlEncode("SMS");
string API = "http://www.way2sms.com/jsp/InstantSMS.jsp?UID=9996380898&PWD=password&MSG=Hello+yyy+zzz&MobileNumber=9996340998";
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(API);
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
StreamReader reader = new StreamReader(response.GetResponseStream());
Response.Write(reader.ReadToEnd());
}
Regards
S.WAYEZ
Member
61 Points
19 Posts
Sending an SMS Message with ASP.NET-ok
Jan 06, 2010 09:38 AM|LINK
Dear all!
Am facing a problem, whenever am sending a message from localhost it works, but whenever am trying to send from client
computer, it says unable to connect to remote server! am sending a message from sms provider website, so i have included the messaging and connecting string of that website in codebehind, am using vb.
what may be the isssue.?
.i checked internet is available on server and client
2.i checked that client has the permission to access server files
3. do we need to have any spl permissions to run scripts at server?
satalaj
Star
10505 Points
2031 Posts
MVP
Re: Sending an SMS Message with ASP.NET-ok
Jan 06, 2010 10:36 AM|LINK
Hi s.wayez,
It ssems they are accessing networks via proxy? If yes then you need to add proxy settings in your code
while calling API.
Satalaj