fleure fleure
Forum Replies Created
-
AuthorPosts
-
fleure fleure
Participanthello bryon;
i want to know if after sending the ok response, you receive the list of the same messages or you receive new messages. this is my probleme , if i send the ok response , the isms modem continues to sent me all the liste of sms.
( the old messages i have received and the new one), but I want to receive new messages that I have not yet received.I want to know also about setting the Max Posts Per Post parameters. What is the value you have set.
thank you.
fleure fleure
ParticipantGood mornig Bryon,
i chek about the version, it is for version 1.51.28 and the product modem number is SF800-G.
I’ve noticed is the paramettre (Max Posts Per Post), it must be to have just 1 new message? because in the modem config I have a value of 50.is that it is the same configuration that you have . and if you can give me all the configuration that you have in the page (not polling Receive API Configuration).
Thank you for your help.fleure fleure
ParticipantOk Byron, I’ll check the modem configuration. but I see in the received sms that the version of the modem is MultiModem iSMS / 1.51.28 it’s just that the authentication is OFF.
fleure fleure
Participanthello bryon , thank you for you response.
if you test your code , is the isms still to send you messages or not ?. because i keep getting messages, and logically it should just send me the new messages and not the old to whom I have already answered.fleure fleure
Participanthello, can you give me please the good format( or an exemple ) of ok response to sent to Receive api.
fleure fleure
Participantthank you Bryon, but this solution d’ont resolve my probleme. can you give me all the format please ( an exemple of OK response).
thank you.fleure fleure
Participanti use java language.
i juste search the format of answer to send to the multi modem for the ok response.fleure fleure
Participanthello , can you give me the format ( or an example )of ok response to answer multi modem isms that i have received all message by Receive API ( with non polling mode).
thank you.fleure fleure
Participanthello , can you help me please and give me the good format of response to send to multimodem isms for answer the receive stp api.
fleure fleure
Participanthello, i d’ont find the solution for my problem. i d’ont know how send ok respons to multimodem isms.
please can you help me.
thank you.fleure fleure
Participanthello all , i send a response to answer the Receive api message with this format :
XMLDATA=<?xml version=”1.0″ encoding=”ISO-8859-1″?>\r\n
<MessageNotification>\r\n
<ModemNumber>nnnnn</ModemNumber>\r\n
<SenderNumber>xxxx</SenderNumber>\r\n
<Date>08/03/10</Date>\r\n
<Time>09:05:30</Time>\r\n
<Message>Here is a test message</Message>\r\n
</MessageNotification>\r\nis this the good format please.
fleure fleure
Participantthank you bryon. i want juste the format of response to send to multi Modem isms if this possible to send ot me please.
thank you.fleure fleure
Participanthello, I receive a message , but i have the same problème like you trivor .
i don’t know how to send response to multi modem isms.
thank you for your help.fleure fleure
Participanthello all ,
i receive message from multimodem isms ( with non polling mode) but i don’t know how to send reponse ok . ( answer to multimodem isms)
i know that the response have a format like this:<?xml version=”1.0″ encoding=”ISO-8859-1″?>\r\n
<Response>\r\n
<MessageNotification>\r\n
<ModemNumber>2:19525945092</ModemNumber>\r\n
<SenderNumber>6754535645</SenderNumber>\r\n
<Date>08/03/10</Date>\r\n
<Time>09:05:30</Time>\r\n
<Message>Here is a test message</Message>\r\n
</MessageNotification>\r\n
</Response>\r\nBut i don’t know if i send it directly in socket ( TCP API ) or i must send it with a speficique format like sendSMS format.
thank you for your help.fleure fleure
ParticipantHello, i use the non polling mode to receive message ( using TCP socket) but i must answer the mutiModem isms and send an ok response for it stop to send me all the old messages.
can you give me the format of response to send to the Multimodem isms.
thank you.fleure fleure
ParticipantHello and thank you for your return;
here is the My Test :
I send an SMS via my phone to number configured on the modem and I run a telnet recvmsg command to see what I recovers but I get an error (System Busy)fleure fleure
ParticipantTrevor, can you please give me, how you test the receive api . I try to catch the receive sms with socket tcp but i have always 609 error.
thank you.fleure fleure
Participanthollo , can you help me please to configure multimodem isms for Receive API ( with TCP) and how i can test this please.
thank you.fleure fleure
Participanthello , can you help me to configure Receive API fot TCP please.
and how i can test this configuration.
thank you.fleure fleure
Participanthello, i try to catch the message sending by MultiModem isms with a java programme and i use socket ( Receive API) . i have a response ( error 609) . can you help me please for the configuration of the modem.
fleure fleure
Participanthello, i try to catch the message sending by MultiModem isms with a java programme and i use socket ( Receive API) . i have a response ( error 609) . can you help me please for the configuration of the modem.
fleure fleure
Participanti have a response now with :
String sms=”/sendmsg?user=admin&passwd=mdp&cat=1&enc=1&priority=3&modem=0&to=%22xxxxxx%22&text=HellowviaCode\r\n”;thank you frends for your help.
fleure fleure
Participanti have Err:602 (parse Error).
fleure fleure
Participanti have the same error.
this is the java code ( i get the first line of response):Socket socket=new Socket(ipAdress,2040);
socket.setSoTimeout(0);
String sms=”sendmsg?user=admin&passwd=mdp&cat=1&enc=1&priority=3&modem=0&to=%22xxxxxxxx%22&text=HellowviaCode\n”;
BufferedReader br = new BufferedReader(new InputStreamReader(s.getInputStream()));
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(s.getOutputStream()));
bw.write(sms);
bw.flush();
String line;
StringBuffer Response = new StringBuffer();
int lineNumber=0;
while ((line = br.readLine()) != null) {
System.out.println( “Received line iSMS :”+ line);
if(line.equals(“”)){
System.out.println( “end Response “);
break;
}
if(lineNumber==0){
Response.append(line);
break;
}
else Response.append(line).append(“\n”);
}
String responseBody = Response.toString();
System.out.println( “responseBody “+responseBody);
bw.close();
br.close();
s.close();fleure fleure
Participantthank you Bryon, i try this also but a have the same error ( Err: 609).
fleure fleure
Participanti can’t send sms with tcp api , cas you help me please. ( i use java code for sending sms with tcp socket).
fleure fleure
Participantcan you help me please,
I try to send a sms with tcp socket with the java code but I still have a return err: 609.
here is the message I send:/%20sendmsg?user=admin&passwd=mdp&cat=1&enc=1&priority=3&modem=0&to=%22xxxxxxxx%22&text=Hellow.
with xxxxxxxx is msisdn number.
thank you.
fleure fleure
ParticipantI have a problem with sending SMS via TCP socket. I always get an error 609.
Thank you for helping me to solve this problem.fleure fleure
Participantj’ai un probléme d’envoie de sms via socket TCP. je recois toujours une erreur 609. Merci de m’aider à régler ce probléme.
I have a problem with sending SMS via TCP socket. I always get an error 609.
Thank you for helping me to solve this problem. -
AuthorPosts