Ozeki 服务器未接收 SMS 消息
我正在尝试让 Ozeki 从我的 GSM 诺基亚 E63 接收 SMS 消息 - 它可以正常发送消息,但不会接收它们。我还尝试获取 PHP/HTML 表单来生成消息,但 Ozeki 网站上的示例不起作用!
<?php
if ($submit=="Send")
{
$url='http://localhost:9333/ozeki?';
$url.="action=sendMessage";
$url.="&login=admin";
$url.="&password=abc123";
$url.="&recepient=".urlencode($recepient);
$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>
有什么帮助吗?
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);
$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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我不认为 Ozeki 支持 GSM 诺基亚 E63 或任何较新的诺基亚手机(用于接收)。发送工作正常
“如果您的手机型号基于 Symbian 手机操作系统(大多数高端诺基亚和索尼爱立信设备),您将无法将其用于传入 SMS。Symbian 手机永远不会将传入 SMS 消息和传入传送报告传送到手机的调制解调器接口。”
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."
西门子 c55 + bluetech 电缆数据工作正常..
siemens c55 + bluetech cable data works fine..
只需关闭消息输入框即可。也许您的容器没有选择它。只需输入:
而不是
Just close the message input box .Maybe your container doesn't pick that. Just put:
instead of