Search Results for 'SMS API'

Home Forums Search Search Results for 'SMS API'

Viewing 30 results - 181 through 210 (of 249 total)
  • Author
    Search Results
  • #2661
    Christopher Rivera
    Participant

    I’m curious to know how many simultaenous users can be logged into a box?

    Right now I’m using 2 users to access the server, 1 SMS user for using the HTTP SMS API, and the main admin account to simulate web logins for pulling other data from the each of the SMS boxes.

    I noticed that if I log into the server, using the admin account, it will occasionally tell me that it has logged out the previous user.

    #3487
    Bryon Davis
    Moderator

    Hi Tyler,

    Sorry, right now we don’t have any special support for VCARD.

    Regards,

    Bryon

    #3370
    Bryon Davis
    Moderator

    Hi Keneth,

    The ISO-8859-1 option in “SMS Settings” makes to default encoding Extended ASCII, which has problems as described above. Many providers don’t accept Extended ASCII (8bit GSM) from outside of their network.

    We are looking into this problem, you could try Unicode in the mean time and see if that helps.

    Regards,

    Bryon

    #3369
    Bryon Davis
    Moderator

    Hi Brian,

    As mentioned previously, there is sometimes problems sending Extended ASCII between different providers. We are looking into this. It appears many providers won’t accept Extended ASCII (8 bit GSM) from outside of their network.

    You can try Unicode and see if that helps.

    Regards,

    Bryon

    #2656
    Tyler Yip
    Participant

    Can the APIs be used to send message types other than SMS:TEXT, specifically SMS:VCARD?

    #3368
    Kenneth Karlsson
    Participant

    Hi Bryon

    Do i miss some settings on my box ? i only seem to be able to select ISO-8859-1 setting. And when selected we get “unsupported format” on our phones.

    I tried today with this:

    http://192.168.1.211:81/sendmsg?user=admin&passwd=admin&cat=1&to=20180885&text=This%20is%20a%20test%20message%C6%D8%C5%E5%E6%F8.

    The %C6%D8%C5%E5%E6%F8 part should give danish chars, bu no luck !

    Kenneth

    #3385
    Bryon Davis
    Moderator

    Hi Christophe,

    I did some testing with two PCs sending sendmsg requests simultaneously. The iSMS accepted the requests from both PCs simultaneously and then sent the SMS messages. This was true for HTTP and TCP.

    All requests are put in a queue and processed individually. The sending queue is fairly large, I don’t have exact numbers of the maximum on hand, but I’ve had over 3,000 jobs in the queue in my testing.

    There is no real difference to the iSMS whether TCP or HTTP is used. It depends on your preference when programming the send API applications. You may prefer the support certain languages have for HTTP or TCP.

    Regards,

    Bryon

    #3367
    Bryon Davis
    Moderator

    Hi Kenneth,

    We are still looking into this problem.

    For now I would suggest try using Unicode to send messages with special characters.

    Sorry for the inconvenience.

    Regards,

    Bryon

    #3421

    In reply to: info about queues

    Bryon Davis
    Moderator

    Hi Olav,

    The sending queue is fairly large, it can handle thousands of pending jobs. I don’t currently have an exact number, but I’ve seen over 3,000 in my testing.

    As far as monitoring the sending queue, you have a few commands. When you send a message using the API sendmsg request, the iSMS responds with a Message ID number that you can then use to send a querymsg request to get the status of that sent message. In the newer firmware (v1.49i), there is also a queryjobs request to get the current number of pending jobs through the API. The queryjobs can limit the reponse to all jobs, high priority, normal priority, or low priority jobs.

    Regards,

    Bryon

    #3012
    Bryon Davis
    Moderator

    HI Christophe,

    Which problem are you referring to? There were are few mentioned in this topic.

    If you’re are referring to the original issue of buffering incoming non-polling messages when the API server is down, this is fixed in the v1.49i. You can find this at the links below. Changes and upgrade instructions are in the readme file.

    SF100:

    https://webfiles.multitech.com/../../engineering/unofficial-releases/iSMS%20(Formerly%20SMSFinder)/Firmware/SF100/1.49i/SF100-u-v1.49i-13Oct2011.zip

    SF400 and SF800:

    https://webfiles.multitech.com/../../engineering/unofficial-releases/iSMS%20(Formerly%20SMSFinder)/Firmware/SF400_SF800/1.49i/SF400-800-u-v1.49i-13Oct2011.zip

    Regards,

    Bryon

    #3366
    Kenneth Karlsson
    Participant

    Hi there

    Facing similar problem.

    Need danish chars, when i enable EXTENDED ASCII, my phone says “message format not supported”. I then click it off, and from the web-interface i can send with ÅÆ but not Ø.

    Also, when i try sending with TCP API, i can not send the danish chars.

    The enc=x paramateres seems not to work ?!

    Hope to find a solution, the box is nice, but as it is right now, it is no good here in DK !

    Kenneth

    #2643

    Topic: info about queues

    in forum iSMS
    Olav Langeland
    Participant

    Hi, I am considering to use the iSMS server for our monitoring solution (soon PRTG from Paessler). I was looking for more information abou the queue management but have only found the info about API to query. Looking mainly for details about how large the queue is, info about how the priorities work.

    Any help appreciated.

    #2642

    Topic: Batch file to send SMS

    in forum iSMS
    Adam Goldrick
    Participant

    Wondering if some one has done this.

    I have a product that monitors and when something goes wrong it runs a java script that returns two variables

    Phone number (smsReceiver) and a message (smsBody).

    I need to get these SMS’ed.

    What I can work out, is program does the folowing.


    //variables defined here

    var smsReceiver = [MobileNumber];

    var smsBody = “”The Service ” + [Title] + ” is ” + [ServiceQualityLabel] + “. Time of event: ” + [ServerTime] + “.””;

    //external batch file defined here

    //this batch script should have two parameters: a telephone number and a message body

    var batFile = “C:NotificationScript.bat”

    //execution of external bat file

    Packages.java.lang.Runtime.getRuntime().exec(batFile + ” ” + smsReceiver + ” ” + smsBody);


    What I don’t have is that bat file (NotificationScript.bat) that takes those parameters and sends it to the iSMS.

    I know I can use the http send API, I am just not a scripting person to write that code or don’t even know if I need aditional software like wget or curl (couldn’t get them to work anyway).

    Then it got me thinking..

    can it be sent directly by scripting something different then calling a bat file, like using java directly, internet search led me to this

    response.sendRedirect(“http://192.168.2.1:81/sendmsg?user=admin&passwd=admin&cat=1&to=” + smsReceiver + “&text=” + smsBody)

    I just don’t know what the “Packages.java.lang.Runtime.getRuntime().exec” or “response.sendRedirect” mean (again not a scripting person.

    Anyone?

    #3071
    Christophe NGUYEN
    Participant

    Hi Jeff,

    Any plans to track the recipient SIM delivery ?

    It seems we could receive

    – a receipt of the service provider (+CMGS : n)

    – a receipt from the recipient SIM (+CDS : )

    The AT commands to setup the modem would be :

    AT+CMGS=”phone number” (enter)

    > test text we want to send (enter)

    Then the modem will receive

    +CMGS : 54 (first service provider receipt)

    and

    +CDS:6,54,”phone number”,129,”11/09/29,09:29:54+08″,”11/09/29,09:29:58+08″,0

    with the following meanings

    +CDS : SMS has been successfully transmitted by provider to recipient

    final ‘,0’ : the SMS has been written into recipient SIM card (so on his phone)

    Can you implement these AT commands within HTTP and TCP APIs ?

    Is there any way to do it actually ?

    Regards,

    Christophe.

    #2637
    Christophe NGUYEN
    Participant

    Hi,

    We are about to buy the SF100 iSMS device, and were wondering how it was handling simultaneous requests to send SMS from 2 application on 2 differents PCs on the LAN.

    How does it handle simultanenous request

    – with HTTP API

    – with TCP API

    Is there a queuing system which guarantees that every single SMS send request will be processed individually one by one or are SMS Send request rejected if another one is in progress and so the client applications need to handle its own ‘retries’ ?

    If there is a queues, does it have a maximum size ?

    Also, what are the main advantages/disadvantages between HTTP API and TCP API ?

    Regards,

    Christophe.

    #3365
    Bryon Davis
    Moderator

    Hi Brian,

    In my testing I’ve notice that not all providers accept GSM encoding, which is used by the iSMS Extended ASCII. I mostly see this when sending outside my SIM’s provider.

    Check the Outbox and see if the message shows up there. You can also check Statistics & Logs–>Log Traces–>Send API Status Log and SMS Live Log. These should show whether the sms was sent.

    Also check in the inbox for a message stating the sms was rejected for invalid characters.

    ASCII is more widely accepted when sending between providers, which uses PCCP437. Unicode is also another option.

    If this doesn’t appear to be the case for your failure, I recommend creating a case in our support portal at support.multitech.com.

    Regards,

    Bryon

    #2628
    Brian Nørgaard
    Participant

    Hi

    I have make some code to the iSMS 100, and want to send SMS with Extended ASCII, because i need special charater (ø).

    If i send normal it’s ok:

    http://172.16.1.58:89/sendmsg?user=admin&passwd=admin&cat=1&enc=0&to=”xxxxxxxx”&text=test

    But when i change “enc=1” no SMS is send.

    Any idee

    /Brian

    #2614
    mohammad Siddiqui
    Participant

    Hi,

    I’m facing problem to receive unread Messages through API, I have sent 2 messages from my cell and received that message through API after 20 minutes, then send more 2 messages from my cell and received these that messages after 30 minutes I thought might be server is responding slow but now I’m unable to receive more messages either I have sent few more messages from my cell for testing purpose .

    Here is my code could you help me out… What s wrong in my code or command

    URLAddress = “http://192.168.71.39:81/recvmsg?user=admin&passwd=admin”

    oHTTP = CREATEOBJECT(‘MSXML2.ServerXMLHTTP’)

    oHTTP.Open(“GET”, URLAddress, .f.)

    oHTTP.send

    IF oHttp.status = 200

    CheckMSG = oHTTP.Responsexml.SelectSingleNode(“//Unread_Available”).text

    IF VAL(CheckMSG) =<0

    MESSAGEBOX(“No New Messages are available .”,0,”System Message”)

    RETURN .f.

    ELSE

    cXML = oHttp.responseXML.xml

    STRTOFILE(cXML,”SMSRec.xml”)

    XMLTOCURSOR(“SMSRec.xml”,”SMSRec”,512)

    ENDIF

    ELSE

    MESSAGEBOX (” SMS Server is Not Responding.”,0,”System Message”)

    ENDIF

    Thanks & Regards

    #3231
    Bryon Davis
    Moderator

    Hi Kelly,

    The iSMS can only handle 50 recipients (names, numbers, or groups) per sendmsg. If this is exceeded a 605 Recipient Overflow is returned.

    Whether the modem can recover from the 612 error depends on the cause of the error. The iSMS monitors and clears memory use, which should clear almost all of the causes. It may be possible to get an unusual failure that causes memory to fill up and not get freed. At that point, a reboot would clear the condition.

    Regards,

    Bryon

    #3254

    In reply to: Re: API Set Up

    Bryon Davis
    Moderator

    Hi Shelveen,

    If you have the latest v1.47 firmware, there is a load balance feature that allows you to tie multiple iSMS units together. You would set one SF800 as a master and the other two as slaves.

    You can find the latest firmware at:

    http://www.multitech.com/en_US/SUPPORT/Families/MultiModemiSMS/firmware.aspx

    You will also find more information on the Load Balance feature on page 52 of the latest User Guide. This User Guide can be found at:

    http://www.multitech.com/en_US/DOCUMENTS/Families/MultiModemiSMS/manuals.aspx

    We haven’t tested with 19,000 numbers in the Address Book yet. I will do some testing and post my results.

    Regards,

    Bryon

    #3299
    Bryan Tran
    Moderator
    #2607
    K
    Participant

    Hello:

    The most recent iSMS API documentation says that the XMLDATA sent in non-polling mode when a message is received has a “Response” tag as its root element. Like this:

    <Response>

    <MessageNofitication>blah…</MessageNotification>

    </Response>

    I don’t get a <Response> element as my root element – I just get the <MessageNotification> as the root element.

    Is this something that changed with a newer version? I’m using v1.31.

    Thank you,

    K

    #2605

    Topic: Now Plz See my Logs

    in forum iSMS
    mohammad Siddiqui
    Participant

    HI,

    See my logs and guide me if any thing wrong it

    Thanks

    SMS Statistics *-**-*-*-*-*-*-*-**-*-**-**-*

    SIM Status Disabled – No SIM

    Signal Strength 26

    Messages in Inbox 0

    Messages Sent 0

    Rate of Sent Messages 0

    Rate of Received Messages 0

    Triggers Statistics

    Broadcast Triggers Configured 0

    Broadcast Triggers Received 0

    Action Triggers Received 0

    Job Statistics

    Entries in Outbox 1

    Low Priority Jobs Queued 0

    Normal Priority Jobs Queued 6

    High Priority Jobs Queued 0

    Jobs Distributed 0

    Jobs Dispatched 0

    Send API Status Log-=-=-=-=-=-=-=-

    [Fri Aug 5 11:50:14 2011] : [MSG ID] : 1 [STATUS] : Request Received

    [Fri Aug 5 12:15:39 2011] : [MSG ID] : 2 [STATUS] : Request Received

    [Fri Aug 5 12:17:31 2011] : [MSG ID] : 3 [STATUS] : Request Received

    [Fri Aug 5 12:18:20 2011] : [MSG ID] : 4 [STATUS] : Request Received

    [Fri Aug 5 12:24:48 2011] : [MSG ID] : 5 [STATUS] : Request Received

    [Fri Aug 5 12:27:19 2011] : [MSG ID] : 6 [STATUS] : Request Received

    *-===============*==

    Aug 5 09:38:08 boa[5634]: httplivelog: HTTP API To MultiModem iSMS

    GET /sendmsg?user=admin&password=admin&cat=1&priority=17130000000&to=&text=HiKamran HTTP/1.1

    Connection: Keep-Alive

    Accept: */*

    Accept-Language: en-us

    User-Agent: Mozilla/4.0 (compatible; Win32; WinHttp.WinHttpRequest.5)

    Host: 192.168.70.29:81

    Aug 5 09:38:08 boa[5634]: httplivelog: MultiModem iSMS To HTTP API

    HTTP/1.0 200 OK

    Err: 602

    Aug 5 09:41:04 boa[5634]: httplivelog: HTTP API To MultiModem iSMS

    GET /sendmsg?user=admin&password=admin&cat=1&priority=17130000000&to=&text=HiKamran HTTP/1.1

    Connection: Keep-Alive

    Accept: */*

    Accept-Language: en-us

    User-Agent: Mozilla/4.0 (compatible; Win32; WinHttp.WinHttpRequest.5)

    Host: 192.168.70.29:81

    Aug 5 09:41:04 boa[5634]: httplivelog: MultiModem iSMS To HTTP API

    HTTP/1.0 200 OK

    Err: 602

    Aug 5 09:42:16 boa[5634]: httplivelog: HTTP API To MultiModem iSMS

    GET /sendmsg?user=admin&password=admin&cat=1&priority=1&17130000000&to=&text=HiKamran HTTP/1.1

    Connection: Keep-Alive

    Accept: */*

    Accept-Language: en-us

    User-Agent: Mozilla/4.0 (compatible; Win32; WinHttp.WinHttpRequest.5)

    Host: 192.168.70.29:81

    Aug 5 09:42:16 boa[5634]: httplivelog: MultiModem iSMS To HTTP API

    HTTP/1.0 200 OK

    Err: 602

    Aug 5 09:43:14 boa[5634]: httplivelog: HTTP API To MultiModem iSMS

    GET /sendmsg?user=admin&password=admin&cat=1&priority=1&to=17130000000&text=HiKamran HTTP/1.1

    Connection: Keep-Alive

    Accept: */*

    Accept-Language: en-us

    User-Agent: Mozilla/4.0 (compatible; Win32; WinHttp.WinHttpRequest.5)

    Host: 192.168.70.29:81

    Aug 5 09:43:14 boa[5634]: httplivelog: MultiModem iSMS To HTTP API

    HTTP/1.0 200 OK

    Err: 602

    Aug 5 09:44:01 boa[5634]: httplivelog: HTTP API To MultiModem iSMS

    GET /sendmsg?user=admin&password=admin&cat=1&priority=1&to=’17130000000’&text=HiKamran HTTP/1.1

    Connection: Keep-Alive

    Accept: */*

    Accept-Language: en-us

    User-Agent: Mozilla/4.0 (compatible; Win32; WinHttp.WinHttpRequest.5)

    Host: 192.168.70.29:81

    Aug 5 09:44:01 boa[5634]: httplivelog: MultiModem iSMS To HTTP API

    HTTP/1.0 200 OK

    Err: 602

    Aug 5 09:44:27 boa[5634]: httplivelog: HTTP API To MultiModem iSMS

    GET /sendmsg?user=admin&password=admin&cat=1&priority=1&to=”17130000000″&text=HiKamran HTTP/1.1

    Connection: Keep-Alive

    Accept: */*

    Accept-Language: en-us

    User-Agent: Mozilla/4.0 (compatible; Win32; WinHttp.WinHttpRequest.5)

    Host: 192.168.70.29:81

    Aug 5 09:44:27 boa[5634]: httplivelog: MultiModem iSMS To HTTP API

    HTTP/1.0 200 OK

    Err: 602

    Aug 5 09:44:41 boa[5634]: httplivelog: HTTP API To MultiModem iSMS

    GET /sendmsg?user=admin&password=admin&cat=1&priority=1&to=”17130000000″&text=”HiKamran” HTTP/1.1

    Connection: Keep-Alive

    Accept: */*

    Accept-Language: en-us

    User-Agent: Mozilla/4.0 (compatible; Win32; WinHttp.WinHttpRequest.5)

    Host: 192.168.70.29:81

    Aug 5 09:44:41 boa[5634]: httplivelog: MultiModem iSMS To HTTP API

    HTTP/1.0 200 OK

    Err: 602

    Aug 5 09:55:11 boa[5634]: httplivelog: HTTP API To MultiModem iSMS

    POST /sendmsg?user=admin&password=admin&cat=1&priority=1&to=”17130000000″&text=”HiKamran” HTTP/1.1

    Connection: Keep-Alive

    Content-Type: text/plain; Charset=UTF-8

    Accept: */*

    Accept-Language: en-us

    User-Agent: Mozilla/4.0 (compatible; Win32; WinHttp.WinHttpRequest.5)

    Content-Length: 107

    Host: 192.168.70.29:81

    http://192.168.70.29:81/sendmsg?user=admin&password=admin&cat=1&priority=1&to=”17130000000″&text=”HiKamran”GET /sendmsg?user=admin&password=admin&cat=1&priority=1&to=”17130000000″&text=”HiKamran” HTTP/1.1

    Connection: Keep-Alive

    Accept: */*

    Accept-Language: en-us

    User-Agent: Mozilla/4.0 (compatible; Win32; WinHttp.WinHttpRequest.5)

    Host: 192.168.70.29:81

    Aug 5 09:55:11 boa[5634]: httplivelog: MultiModem iSMS To HTTP API

    HTTP/1.0 200 OK

    Err: 602

    Aug 5 09:58:18 boa[5634]: httplivelog: HTTP API To MultiModem iSMS

    GET /sendmsg?user=admin&password=admin&cat=1&to=”7130000000″&text=”HiKamran” HTTP/1.1

    Connection: Keep-Alive

    Accept: */*

    Accept-Language: en-us

    User-Agent: Mozilla/4.0 (compatible; Win32; WinHttp.WinHttpRequest.5)

    Host: 192.168.70.29:81

    Aug 5 09:58:18 boa[5634]: httplivelog: MultiModem iSMS To HTTP API

    HTTP/1.0 200 OK

    Err: 602

    Aug 5 09:58:37 boa[5634]: httplivelog: HTTP API To MultiModem iSMS

    GET /sendmsg?user=admin&password=admin2&cat=1&to=”7130000000″&text=”HiKamran” HTTP/1.1

    Connection: Keep-Alive

    Accept: */*

    Accept-Language: en-us

    User-Agent: Mozilla/4.0 (compatible; Win32; WinHttp.WinHttpRequest.5)

    Host: 192.168.70.29:81

    Aug 5 09:58:37 boa[5634]: httplivelog: MultiModem iSMS To HTTP API

    HTTP/1.0 200 OK

    Err: 602

    Aug 5 09:59:21 boa[5634]: httplivelog: HTTP API To MultiModem iSMS

    GET /sendmsg?user=admin&password=admin&cat=1&to=7130000000&text=HiKamran HTTP/1.1

    Connection: Keep-Alive

    Accept: */*

    Accept-Language: en-us

    User-Agent: Mozilla/4.0 (compatible; Win32; WinHttp.WinHttpRequest.5)

    Host: 192.168.70.29:81

    Aug 5 09:59:21 boa[5634]: httplivelog: MultiModem iSMS To HTTP API

    HTTP/1.0 200 OK

    Err: 602

    Aug 5 10:00:46 boa[5634]: httplivelog: HTTP API To MultiModem iSMS

    GET /sendmsg?user=admin&password=admin&cat=1&to=7130000000&text=HiKamran HTTP/1.1

    Accept: */*

    Accept-Encoding: gzip, deflate

    User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; iOpus-Web-Automation; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; .NET4.0C)

    Host: 192.168.70.29:81

    Connection: Keep-Alive

    Aug 5 10:00:46 boa[5634]: httplivelog: MultiModem iSMS To HTTP API

    HTTP/1.0 200 OK

    Err: 602

    Aug 5 10:01:20 boa[5634]: httplivelog: HTTP API To MultiModem iSMS

    GET /sendmsg?user=admin&password=admin&cat=1&to=”7130000000″&text=HiKamran HTTP/1.1

    Accept: */*

    Accept-Encoding: gzip, deflate

    User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; iOpus-Web-Automation; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; .NET4.0C)

    Host: 192.168.70.29:81

    Connection: Keep-Alive

    Aug 5 10:01:20 boa[5634]: httplivelog: MultiModem iSMS To HTTP API

    HTTP/1.0 200 OK

    Err: 602

    Aug 5 10:01:31 boa[5634]: httplivelog: HTTP API To MultiModem iSMS

    GET /sendmsg?user=admin&password=admin&cat=1&to=”7130000000″&text=”HiKamran” HTTP/1.1

    Accept: */*

    Accept-Encoding: gzip, deflate

    User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; iOpus-Web-Automation; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; .NET4.0C)

    Host: 192.168.70.29:81

    Connection: Keep-Alive

    Aug 5 10:01:31 boa[5634]: httplivelog: MultiModem iSMS To HTTP API

    HTTP/1.0 200 OK

    Err: 602

    Aug 5 10:05:24 boa[5634]: httplivelog: HTTP API To MultiModem iSMS

    GET /sendmsg?user=admin&password=admin&cat=1&to=%2271300000005%22&text=Hi20%Kamran HTTP/1.1

    Accept: */*

    Accept-Encoding: gzip, deflate

    User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; iOpus-Web-Automation; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; .NET4.0C)

    Host: 192.168.70.29:81

    Connection: Keep-Alive

    Aug 5 10:05:24 boa[5634]: httplivelog: MultiModem iSMS To HTTP API

    HTTP/1.0 200 OK

    Err: 602

    Aug 5 10:06:39 boa[5634]: httplivelog: HTTP API To MultiModem iSMS

    GET /sendmsg?user=admin&password=admin&cat=1&to=%2271300000005%22&text=Hi%20Kamran HTTP/1.1

    Accept: */*

    Accept-Encoding: gzip, deflate

    User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; iOpus-Web-Automation; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; .NET4.0C)

    Host: 192.168.70.29:81

    Connection: Keep-Alive

    Aug 5 10:06:39 boa[5634]: httplivelog: MultiModem iSMS To HTTP API

    HTTP/1.0 200 OK

    Err: 602

    Aug 5 10:11:25 boa[5634]: httplivelog: HTTP API To MultiModem iSMS

    GET /sendmsg?user=admin&password=admin&cat=1&to=%2271300000005%22&text=%22Hi%20Kamran%22 HTTP/1.1

    Accept: */*

    Accept-Encoding: gzip, deflate

    User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; iOpus-Web-Automation; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; .NET4.0C)

    Host: 192.168.70.29:81

    Connection: Keep-Alive

    Aug 5 10:11:25 boa[5634]: httplivelog: MultiModem iSMS To HTTP API

    HTTP/1.0 200 OK

    Err: 602

    Aug 5 10:28:37 boa[5634]: httplivelog: HTTP API To MultiModem iSMS

    GET /querymsg?user=admin&password=admin&apimsgid=id HTTP/1.1

    Accept: */*

    Accept-Encoding: gzip, deflate

    User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; iOpus-Web-Automation; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; .NET4.0C)

    Host: 192.168.70.29:81

    Connection: Keep-Alive

    Aug 5 10:28:37 boa[5634]: httplivelog: MultiModem iSMS To HTTP API

    HTTP/1.0 200 OK

    Err: 602

    Aug 5 11:26:15 boa[5634]: httplivelog: HTTP API To MultiModem iSMS

    GET /querymsg?user=admin&password=admin&apimsgid=602 HTTP/1.1

    Accept: */*

    Accept-Encoding: gzip, deflate

    User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; iOpus-Web-Automation; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; .NET4.0C)

    Host: 192.168.70.29:81

    Connection: Keep-Alive

    Aug 5 11:26:15 boa[5634]: httplivelog: MultiModem iSMS To HTTP API

    HTTP/1.0 200 OK

    Err: 602

    Aug 5 11:28:42 boa[5634]: httplivelog: HTTP API To MultiModem iSMS

    GET /querymsg?user=admin&password=admin&apimsgid=%22mResult%22 HTTP/1.1

    Accept: */*

    Accept-Encoding: gzip, deflate

    User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; iOpus-Web-Automation; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; .NET4.0C)

    Host: 192.168.70.29:81

    Connection: Keep-Alive

    Aug 5 11:28:42 boa[5634]: httplivelog: MultiModem iSMS To HTTP API

    HTTP/1.0 200 OK

    Err: 602

    Aug 5 11:34:00 boa[5634]: httplivelog: HTTP API To MultiModem iSMS

    GET /querymsg?user=admin&password=admin&apimsgid=mResult HTTP/1.1

    Accept: */*

    Accept-Encoding: gzip, deflate

    User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; iOpus-Web-Automation; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; .NET4.0C)

    Host: 192.168.70.29:81

    Connection: Keep-Alive

    Aug 5 11:34:00 boa[5634]: httplivelog: MultiModem iSMS To HTTP API

    HTTP/1.0 200 OK

    Err: 602

    Aug 5 11:45:31 boa[5634]: httplivelog: HTTP API To MultiModem iSMS

    GET /sendmsg?user=admin&password=admin&cat=1&to=%2271300000005%22&text=Hi%20MKS HTTP/1.1

    Accept: */*

    Accept-Encoding: gzip, deflate

    User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; iOpus-Web-Automation; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; .NET4.0C)

    Host: 192.168.70.29:81

    Connection: Keep-Alive

    Aug 5 11:45:31 boa[5634]: httplivelog: MultiModem iSMS To HTTP API

    HTTP/1.0 200 OK

    Err: 602

    Aug 5 11:45:41 boa[5634]: httplivelog: HTTP API To MultiModem iSMS

    GET /sendmsg?user=admin&password=admin&cat=1&to=%227130000000%22&text=Hi%20MKS HTTP/1.1

    Accept: */*

    Accept-Encoding: gzip, deflate

    User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; iOpus-Web-Automation; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; .NET4.0C)

    Host: 192.168.70.29:81

    Connection: Keep-Alive

    Aug 5 11:45:41 boa[5634]: httplivelog: MultiModem iSMS To HTTP API

    HTTP/1.0 200 OK

    Err: 602

    Aug 5 11:50:14 boa[5634]: httplivelog: HTTP API To MultiModem iSMS

    GET /sendmsg?user=admin&passwd=admin&cat=1&to=%227130000000%22&text=Hi%20MKS HTTP/1.1

    Accept: */*

    Accept-Encoding: gzip, deflate

    User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; iOpus-Web-Automation; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; .NET4.0C)

    Host: 192.168.70.29:81

    Connection: Keep-Alive

    Aug 5 11:50:14 boa[5634]: httplivelog: MultiModem iSMS To HTTP API

    HTTP/1.0 200 OK

    ID: 1

    Aug 5 12:15:39 boa[5634]: httplivelog: HTTP API To MultiModem iSMS

    GET /sendmsg?user=admin&passwd=admin&cat=1&to=%227130000000%22&text=%22Hi%20MKS%22 HTTP/1.1

    Accept: */*

    Accept-Encoding: gzip, deflate

    User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; iOpus-Web-Automation; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; .NET4.0C)

    Host: 192.168.70.29:81

    Connection: Keep-Alive

    Aug 5 12:15:39 boa[5634]: httplivelog: MultiModem iSMS To HTTP API

    HTTP/1.0 200 OK

    ID: 2

    Aug 5 12:17:31 boa[5634]: httplivelog: HTTP API To MultiModem iSMS

    GET /sendmsg?user=admin&passwd=admin&cat=1&to=%227130000000%22&text=Hi HTTP/1.1

    Accept: */*

    Accept-Encoding: gzip, deflate

    User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; iOpus-Web-Automation; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; .NET4.0C)

    Host: 192.168.70.29:81

    Connection: Keep-Alive

    Aug 5 12:17:31 boa[5634]: httplivelog: MultiModem iSMS To HTTP API

    HTTP/1.0 200 OK

    ID: 3

    Aug 5 12:18:20 boa[5634]: httplivelog: HTTP API To MultiModem iSMS

    GET /sendmsg?user=admin&passwd=admin&cat=1&to=%227130000000%22&text=Hi%20mks HTTP/1.1

    Accept: */*

    Accept-Encoding: gzip, deflate

    User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; iOpus-Web-Automation; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; .NET4.0C)

    Host: 192.168.70.29:81

    Connection: Keep-Alive

    Aug 5 12:18:20 boa[5634]: httplivelog: MultiModem iSMS To HTTP API

    HTTP/1.0 200 OK

    ID: 4

    Aug 5 12:24:48 boa[5634]: httplivelog: HTTP API To MultiModem iSMS

    GET /sendmsg?user=admin&passwd=admin&cat=1&to=%227130000000%22&text=HI%20MKS HTTP/1.1

    Accept: */*

    Accept-Encoding: gzip, deflate

    User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; iOpus-Web-Automation; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; .NET4.0C)

    Host: 192.168.70.29:81

    Connection: Keep-Alive

    Aug 5 12:24:48 boa[5634]: httplivelog: MultiModem iSMS To HTTP API

    HTTP/1.0 200 OK

    ID: 5

    Aug 5 12:27:19 boa[5634]: httplivelog: HTTP API To MultiModem iSMS

    GET /sendmsg?user=admin&passwd=admin&cat=1&to=%227130000000%22&text=Hellow HTTP/1.1

    Accept: */*

    Accept-Encoding: gzip, deflate

    User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; iOpus-Web-Automation; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; .NET4.0C)

    Host: 192.168.70.29:81

    Connection: Keep-Alive

    Aug 5 12:27:19 boa[5634]: httplivelog: MultiModem iSMS To HTTP API

    HTTP/1.0 200 OK

    ID: 6

    Aug 5 12:29:55 boa[5634]: httplivelog: HTTP API To MultiModem iSMS

    GET /querymsg?user=admin&password=admin&apimsgid=1 HTTP/1.1

    Accept: */*

    Accept-Encoding: gzip, deflate

    User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; iOpus-Web-Automation; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; .NET4.0C)

    Host: 192.168.70.29:81

    Connection: Keep-Alive

    Aug 5 12:29:55 boa[5634]: httplivelog: MultiModem iSMS To HTTP API

    HTTP/1.0 200 OK

    Err: 602

    Aug 5 12:30:45 boa[5634]: httplivelog: HTTP API To MultiModem iSMS

    GET /querymsg?user=admin&password=admin&apimsgid=%221%22 HTTP/1.1

    Accept: */*

    Accept-Encoding: gzip, deflate

    User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; iOpus-Web-Automation; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; .NET4.0C)

    Host: 192.168.70.29:81

    Connection: Keep-Alive

    Aug 5 12:30:45 boa[5634]: httplivelog: MultiModem iSMS To HTTP API

    HTTP/1.0 200 OK

    Err: 602

    #2604
    mohammad Siddiqui
    Participant

    Hi,

    I have sent sms through HTTP Send API Request and got ID : 1 , how to resolve that problem because sms is not sending

    Here is my code :

    URLAddress = “http://192.168.70.29:81/sendmsg?user=admin&passwd=admin&cat=1&to=%227134400105%22&text=Hi%20MKS&#8221;

    oHTTP = CreateObject(“MSXML2.XMLHTTP”)

    oHTTP.Open(“GET”, URLAddress, .f.)

    oHTTP.send

    mResult = oHTTP.ResponseText

    Please Guide me what s wrong with my code or something missing on it ?

    thanks

    MKS

    #3257
    Bryon Davis
    Moderator

    Sorry, there currently isn’t a way to configure the iSMS to put a time stamp in the SMS message.

    If you are sending SMS messages using the API, your API program could insert the time stamp into the message when sending the sendmsg request.

    #3253

    In reply to: Re: API Set Up

    Shelveen Singh
    Participant

    I need help setting up the API Application in the iSMS server. We now have 3 – 8 port systems and currently we are running them on 3 different computers. We want to combine the 3 machines..totally 24 ports and uploading our address book of about 19,000 numbers and send these messages using all 24 ports. When the users reply…i want it to come to one central location. Is this possible?

    Currently we are sending the messages in batched of 5000 from each machine.

    I am willing to pay a good fee for anyone that helps us with this process. We really need this help.

    Please let me know if there is a easier way for us to work this.

    Thanks!

    Shelveen Singh

    951-208-8600

    #3227
    Bryon Davis
    Moderator

    Hi Kelly,

    If the iSMS is busy or temporarily runs out of space for another message it will return a 608.

    Can you give an example of the commands you are sending to send with enc and priority?

    Here is an example of a command that has both enc and priority. I tested this on v1.47 firmware.

    http://192.168.2.143:81/user=admin&passwd=admin&cat=1&enc=1&priority=3&to=”7637654321″&text=”test&#8221;

    You’ll need to change the port from 81 to your port, and the username and password.

    Regards,

    Bryon

    #2588
    Ed Silent
    Participant

    Hello, I’m trying to use de recvmsg command but it’s not working (I’ve got the MultiModem iSMS SF100-G), it shows the following page:

    http://www.freeimagehosting.net/uploads/8317178789.png

    The Receive API is configured this way:

    http://www.freeimagehosting.net/uploads/40a10efa1c.png

    And the Send API is configured this way:

    http://www.freeimagehosting.net/uploads/5130e7d7a5.png

    I’m trying to use it this way:

    http://201.122.162.20:80/recvmsg?user=admin&passwd=Secret

    Does anyone knows what I’m doing wrong?

    Thanks for your help

    PS I put this post on an incorrect forum earlier, sorry for that.

    #2575
    Campbell Elder
    Participant

    How would you convert these Java apps in to CDP compiled apps?

    ftp://ftp.matrixelectronica.eu/MTX-Terminals/Java%20examples/

    examples are for:- send a SMS when GPIO changes, PPP conection with Java APIs, GPS location procedures

    They are currently for Cinterion modules.

    #3171
    Jeff Blees
    Blocked

    Hi Alex,

    Thank you for the feed back.

    With regards to the iSMS server product line, we are aware of – others have requested, that we improve/expand our API command set with regards to system status, management type functions, etc.

    Currently, system management and performance is performed through port 80 with a Web Browser (reviewing the contents of various menu). Currently, no changes in this area are planned.

    I believe our “priority” option does not effect through put (how many messages we send per minute). We have only one send queue and the priority option helps dictate which message we should send next.

    Sincerely

    Jeff Blees

    Engineering Technician

Viewing 30 results - 181 through 210 (of 249 total)