Questions tagged [way2sms]

24 questions
14
votes
2 answers

Send Sms Using way2sms api

I want to send SMS using way2sms. I have tried following code login.aspx.cs using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace WebApplication1 { …
Ajay
  • 6,418
  • 18
  • 79
  • 130
6
votes
8 answers

Automating sms sending by through Way2sms in Perl

I am trying to send sms through Way2sms using Perl LWP. The login part is being successful, after which I save the cookies to a local file. The welcome page after being logged in shows a Send SMS link, clicking on which one is redirected to another…
SexyBeast
  • 7,913
  • 28
  • 108
  • 196
3
votes
3 answers

Sending an sms via way2sms using Python 3

I've been trying to send free sms using way2sms. I found this link where it seemed to work on python 3: https://github.com/shubhamc183/way2sms I've saved this file as way2sms.py: import requests from bs4 import BeautifulSoup class sms: def…
YSR
  • 67
  • 2
  • 3
  • 9
3
votes
3 answers

Sending SMS using Way2sms on rails

Can any one help me to send sms using way2sms api by means of rails application. Thanks
Senthil Kumar Bhaskaran
  • 7,371
  • 9
  • 43
  • 56
3
votes
1 answer

way2sms api not working in java

i am using way2sms api in my web application. Previously it was working fine but now it is not able to send sms. Can anyone tell me what must have gone wrong suddenly. Is the api outdated? or is there problems with the way2sms site or the gateway?
Kanchan Ruia
  • 331
  • 3
  • 6
  • 13
2
votes
0 answers

send sms using way2sms by java program?

i would like to know how to send sms to mobile using java program connected to way2sms.i have wrote folloing program but it got error plz let me know what r required i added way2sms.jar import com.way2sms.SMS; class TestSMS { public static void…
BOBBY
  • 61
  • 4
  • 11
2
votes
1 answer

How to integrate way2sms in php?

I would like to integrate way2sms api in php code. here my sample code , its error free but no message is sending . friends please help me where i have did mistake ? what do i need to change ? sms.php $uid='9876543210';//10 digit mobile…
user3566029
  • 73
  • 3
  • 10
2
votes
1 answer

Unable to obtain cookie-based access to Iframe within a HTML page

I am trying to automate sms sending through Way2sms in Perl LWP. I am able to login successfully. Then I click the Send SMS link in the browser to go the sms-sending page. From there, based upon the page url and the url of the iframe within which…
SexyBeast
  • 7,913
  • 28
  • 108
  • 196
1
vote
1 answer

How to integrate way2sms to my android app

I got the following Java API, but there is bug in the api. It gives the exception as FILE NOT FOUND for the URL "http://wwwa.way2sms.com/FirstServletsms?custid=" Any suggestions? public class SMS { public void send(String uid, String pwd,…
user1109610
  • 11
  • 1
  • 3
1
vote
0 answers

exception sending SMS message using WAY2SMS

I have written the following code to send an SMS through Way2Sms site but the sms fails to go try { Way2Sms oway2 = new Way2Sms(LoginIDofWay2smssite, passwordofWay2smssite); oway2.Login(); …
1
vote
2 answers

I am trying to send a message to phone using python via way2sms

import way2sms import requests q=way2sms.sms('Arjun','xyz') q.send(9418403783,'Yo their I am arjun') n=q.msgSentToday() q.logout() And I am getting the following error when I run the command. , I have all the required modules installed but facing…
Bing
  • 61
  • 6
1
vote
1 answer

php sending sms and email 3 times (Using Android as frontend and sending request to server using volley)

I'm trying to send sms through way2sms api and mail through phpmailer api but the problem is I'm receiving 3 sms and 3 mails when i run the php.
1
vote
2 answers

Python Mechanize - Way2Sms Sending Message

I'm trying to send message using mechanize python with way2sms. While submitting sending. I got nothing. br.submit() is not working here even though I edited msgLen = 135 (message = 'hello') characters. I'm uploading tamper data screenshots and…
gwthm.in
  • 638
  • 9
  • 24
1
vote
0 answers

smsClient.send() return value meaning?

I were searching for this question over internet for days but it seems no one has discussed about it before. I am using SmsClient.dll to send msg using way2sms service but when I send command sms.send(ID, password, smsBody, tonumber); execute it…
user2376920
  • 242
  • 1
  • 7
  • 19
1
vote
0 answers

Failed to send sms from pc to mobile using way2sms

I am using way2sms third party control for sending sms from my pc to mobile in my application. Here is my code. SendSms sms = new SendSms(); string status=sms.send(txtID.Text, txtPass.Text, txtMessage.Text, txtMN.Text); if (status == "1") …
Sujith H S
  • 477
  • 8
  • 18
1
2