我正在使用此代码通过TCP连接到注册商。
stream_socket_client('tcp://registrarwebsite:700', $errno, $errstr, 10, STREAM_CLIENT_CONNECT, $fc)
连接成功,对于$ fc,我使用stream_context_create
来传递SSL证书和密钥。在这一点上,一切正常。
$fc = stream_context_create(array(
'ssl' => array('allow_self_signed' => true,
'local_cert' => 'ma_registrar_cert.pem',
'local_pk' => 'ma_registrar_key.pem'
)));
我想向stream_context_create
添加XML请求,以便向远程服务器发送XML EPP请求。
怎么做?
编辑
这是我想要与流上下文一起发送到服务器的XML请求的示例。
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
<command>
<create>
<domain:create xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
<domain:name>testdomain.com</domain:name>
<domain:period unit="y">testdomain.com</domain:period>
<domain:registrant>John Doe</domain:registrant>
</domain:create>
</create>
<clTRID>reference</clTRID>
</command>
</epp>
请参阅我的其他答案:https://stackoverflow.com/a/47982304/6368697您的相关问题。您基本上没有正确实施EPP协议。