Ed Willson

Forum Replies Created

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • in reply to: Mobile Phone server #3089
    Ed Willson
    Participant

    I’m working on something similar. I’m making a windows service that will receive and act upon the texts it receives. From the framework I have going I’d think you should be easily able to adapt to query a DB. I’m working in VB right now…

    in reply to: SMS to Command Line? #3160
    Ed Willson
    Participant

    So this was easier than I thought. I didn’t know that when the receive API was enabled it just forwards all messages to the server listed. I was searching for the mechanism that would make the message be sent to the application. I’ll post up a sample in a couple days… It’s going well though.

    Thanks,

    Ed

    in reply to: API SMS not ready #3119
    Ed Willson
    Participant

    After I updated to 1.47 I had to restart the modem and wait about 10 minutes for the SIM to show as active.

    in reply to: SMS to Command Line? #3159
    Ed Willson
    Participant

    Byron,

    I think I need to do a bit of reading then.

    What I would like to do is text ‘Ping Hostname’ and receive a text back with the ping result. It would be a pretty helpful tool for remote troubleshooting, also would open up the door to much remote management.

    Thanks,

    Ed

    in reply to: Samples Please for Scripts? #3149
    Ed Willson
    Participant

    Okay – Here’s a very basic script to send a message to a user in the address book. Might be useful for someone else starting out:

    Filename: send.vbs

    Code:

    Dim connect

    Set connect = CreateObject(“MSXML2.XMLHTTP”)

    connect.open “GET”, “http://10.10.45.4:81/sendmsg?user=user&passwd=password&cat=1&ton=ed willson&text=Test”, False

    connect.send

    msgbox (connect.responseText)

Viewing 5 posts - 1 through 5 (of 5 total)