我尝试使用PHP的DOMDocument类创建SOAP消息。我有一个原始的XML示例,需要从一个与以下内容匹配的信封开始:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:v1="http://example.url/v1">
为了创造这个,我一直在尝试:
$xml = new DOMDocument('1.0');
$env = $xml->createElementNS('http://schemas.xmlsoap.org/soap/envelope', 'soapenv:Envelope');
$env->setAttributeNS('http://www.w3.org/2000/xmlns', 'xmlns:v1', 'http://example.url/v1');
此时(使用PHP控制台),我收到一条未被捕获的DOMException,其中包含消息&#34; Namespace Error&#34;。
我非常擅长手工制作SOAP请求,所以我毫不怀疑我误解了一些基本的东西。有人能指出我正确的方向吗?
干杯