我正在使用php(套接字扩展)来处理发送和接收xml文件。我希望能够修复传出客户端端口号,因为服务器有一定数量的传入连接。我发现每次运行php脚本时都会创建一个新的端口号。我到目前为止的客户端脚本是: -
send_message('192.9.2.50','10220',$xmlCmd->asXML());
function send_message($ipaddr, $port, $msg)
{
$fp = stream_socket_client("tcp://".$ipaddr.":".$port, $errno, $errstr);
if (!$fp)
{
echo "ERR : $errno - $errstr";
}
else
{
fwrite($fp,$msg);
$response = fread($fp,1024);
// Make a SimpleXML object from the response
$xml = new SimpleXMLElement($response);
echo $xml->Channel->Air->Index;
fclose($fp);
}
}
我会再次尝试使用file_get_contents,但xml似乎只是从客户端传递到服务器,即没有回复。任何人都可以帮助我使用stream_context_create选项,我需要将这两个选项结合起来,但似乎无法做到正确。代码: -
$opts = array('http' =>
array( 'method' => 'POST',
'header' => 'Content-type: text/xml;',
'content' => $msg)
);
//combine with these options
$opts = array('socket'=>array('bindto'=>"192.9.2.60:2800"));
答案 0 :(得分:0)
答案 1 :(得分:0)
在网络级别上执行基本检查清单: