开发者

Ozeki Server not receiving SMS messages

I'm trying to get Ozeki to receive SMS messages from my GSM Nokia E63 - it will send messages fine but wont receive them. I am also trying to get a PHP/HTML form to generate messages, but the example on the Ozeki website won't work!

<?php
if ($submit=="Send")
{
$url='http://localhost:9333/ozeki?'; 
$url.="action=sendMessage";
$url.="&login=admin";
$url.="&password=abc123"; 
$url.="&recepient=".urlencode($recepient);
$开发者_Go百科url.="&messageData=".urlencode($message); 
$url.="&sender=".urlencode($sender);
file($url);
}
?> 
<html>
<form method=post action='index.php'> 
<table border=0>
<tr> 
<td>Sender</td><td><input type='text' name='sender'></td> 
</tr>
<tr> 
<td>Recepient</td><td><input type='text' name='recepient'></td> 
</tr>
<tr> 
<td>Message</td><td><input type='text' name='message'</td> 
</tr>
<tr> 
<td colspan=2><input type=submit name=submit value=Send> 
</form>
</tr>
</table>
</form> 
</html>

Any help?


I don't think that Ozeki supports GSM Nokia E63 or any newer nokia phone (for receiving).. Sending works fine

"If your phone model is based on the Symbian mobile phone operating system (most high end Nokia and SonyEricsson devices) you will not be able to use it for incoming SMS. Symbian phones never deliver incoming SMS messages and incoming delivery report to the modem interface of the phone."


siemens c55 + bluetech cable data works fine..


Just close the message input box .Maybe your container doesn't pick that. Just put:

<td><input type='text' name='message' /></td> 

instead of

<td><input type='text' name='message'</td> 
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜