1
<SOAP-ENV:Envelope />
タグのxmlns属性を編集するにはどうすればよいですか?SOAP-ENVに欠けているxmlns属性を追加する:PHPのSoapClientを使用するエンベロープタグ
私は、xmlns:xsi
とxmlns:xsd
がない状況があります。私はそれらを戻す方法を知りたいですか?
例:
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ns1="http://fedex.com/ws/track/v12">
<SOAP-ENV:Body>
<ns1:TrackRequest>
...
しかし、私は、それは、このことが必要ですいじった後
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ns1="http://fedex.com/ws/track/v12"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<SOAP-ENV:Body>
<ns1:TrackRequest>
...