Results 1 to 6 of 6

Thread: connecting to sms web with vb 6

  1. #1

    Thread Starter
    Enjoy the moment
    Join Date
    Feb 2011
    Location
    Barrio Del pilar madrid spain
    Posts
    5,204

    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?
    Last edited by salsa31; May 30th, 2012 at 01:10 PM.

  2. #2

    Thread Starter
    Enjoy the moment
    Join Date
    Feb 2011
    Location
    Barrio Del pilar madrid spain
    Posts
    5,204

    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

  3. #3
    Freelancer akhileshbc's Avatar
    Join Date
    Jun 2008
    Location
    Trivandrum, Kerala, India
    Posts
    7,652

    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 !


    If my post was helpful to you, then express your gratitude using Rate this Post.
    And if your problem is SOLVED, then please Mark the Thread as RESOLVED (see it in action - video)
    My system: AMD FX 6100, Gigabyte Motherboard, 8 GB Crossair Vengance, Cooler Master 450W Thunder PSU, 1.4 TB HDD, 18.5" TFT(Wide), Antec V1 Cabinet

    Social Group: VBForums - Developers from India


    Skills: PHP, MySQL, jQuery, VB.Net, Photoshop, CodeIgniter, Bootstrap,...

  4. #4

    Thread Starter
    Enjoy the moment
    Join Date
    Feb 2011
    Location
    Barrio Del pilar madrid spain
    Posts
    5,204

    Re: connectint to sms web with vb 6

    i need to change the code for every customer?
    any other idea?

  5. #5
    PowerPoster
    Join Date
    Dec 2004
    Posts
    25,618

    Re: connecting to sms web with vb 6

    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:
    1. lsXml = "<PALO><HEAD><FROM>ammishov</FROM><APP USER=""" & txtuser & """ PASSWORD=""" & txtpass & """/><CMD>sendtextmt</CMD></HEAD>"
    i do my best to test code works before i post it, but sometimes am unable to do so for some reason, and usually say so if this is the case.
    Note code snippets posted are just that and do not include error handling that is required in real world applications, but avoid On Error Resume Next

    dim all variables as required as often i have done so elsewhere in my code but only posted the relevant part

    come back and mark your original post as resolved if your problem is fixed
    pete

  6. #6

    Thread Starter
    Enjoy the moment
    Join Date
    Feb 2011
    Location
    Barrio Del pilar madrid spain
    Posts
    5,204

    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)
    Last edited by salsa31; May 31st, 2012 at 05:39 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width