connecting to sms web with vb 6
question
i talked to the company of the sms
and i buy from them 1000 sms for customers.
now the deal is that i need to open an acount for each customer to give him the sms he is paying for
lets say danny buy from me 200 sms
how do i use vb 6 in my project to connect to the web system with his user name and password
and that he can use the 200 sms and not the 1000 that i buy
how do i limit him?
the company told me that in the code of the sending there is a function like this.
i saw now that i can limit him in the acount that i have in the sms company
but how i make it connect from the code to the web and verify name and password?
Re: connectint to sms web with vb 6
this is an example of my acount in the sms company
lsXml = "<PALO><HEAD><FROM>ammishov</FROM><APP USER=""arik"" PASSWORD=""*****""/><CMD>sendtextmt</CMD></HEAD>"
you see app user arik and password?
thats what im talking about
Re: connectint to sms web with vb 6
Code:
lsXml = "<PALO><HEAD><FROM>ammishov</FROM><APP USER=""arik"" PASSWORD=""*****""/><CMD>sendtextmt</CMD></HEAD>"
Use the username and password of your customer there !
:wave:
Re: connectint to sms web with vb 6
i need to change the code for every customer?
any other idea?
Re: connecting to sms web with vb 6
Quote:
i need to change the code for every customer?
that is simple enough to do, but i do not see where that applies any limits
automating it requires some list of customers names, passwords and limits
vb Code:
lsXml = "<PALO><HEAD><FROM>ammishov</FROM><APP USER=""" & txtuser & """ PASSWORD=""" & txtpass & """/><CMD>sendtextmt</CMD></HEAD>"
Re: connecting to sms web with vb 6
so basiclly i put 2 text files?
and if the username and password correct then he can send the sms?
this will verify with the web service? (sms)