Advertisement

05.19.2008 at 04:55PM PDT, ID: 23415538
[x]
Attachment Details

PHP issue with XML/DOMDocument

Asked by imaginative in PHP Scripting Language, Extensible Markup Language (XML), Extensible Stylesheet Language Transformation (XSLT)

The following code is having issues, will paste error below:

<?php

$xmlwithdtd = "    <?xml version=\"1.0\" encoding=\"utf-8\" ?><!DOCTYPE REQUEST [
    <!ELEMENT REQUEST (COMMUNICATION_CODE,PARTNER_ID,SID)>
    <!ELEMENT COMMUNICATION_CODE (#PCDATA)>
    <!ELEMENT PARTNER_ID (#PCDATA)>
    <!ELEMENT SID (#PCDATA)>
    ]>
    <REQUEST>
  <COMMUNICATION_CODE>FAR001</COMMUNICATION_CODE>
  <PARTNER_ID>LL-236021118-1</PARTNER_ID>
  <SID>YourLimeLockSessionID</SID>
</REQUEST>";        

        $dom = new DOMDocument;
        $dom->Load($xmlwithdtd);
        if ($dom->validate()) {
            echo "valid";    
        } else {
            echo "not valid";
        }
?>  

Error:


Warning: DOMDocument::load() [domdocument.load]: I/O warning : failed to load external entity "/Applications/MAMP/htdocs/testzone/%20%20%20%20%3C%3Fxml%20version=%221.0%22%20encoding=%22utf-8%22%20%3F%3E%3C!DOCTYPE%20REQUEST%20%5B%0A%20%20%20%20%3C!ELEMENT%20REQUEST%20(COMMUNICATION_CODE,PARTNER_ID,SID)%3E%20%0A%20%20%20%20%3C!ELEMENT%20COMMUNICATION_CODE%20(%23PCDATA)%3E%20%0A%20%20%20%20%3C!ELEMENT%20PARTNER_ID%20(%23PCDATA)%3E%0A%20%20%20%20%3C!ELEMENT%20SID%20(%23PCDATA)%3E%0A%20%20%20%20%5D%3E%0A%20%20%20%20%3CREQUEST%3E%0A%20%20%3CCOMMUNICATION_CODE%3EFAR001%3C/COMMUNICATION_CODE%3E%0A%20%20%3CPARTNER_ID%3ELL-236021118-1%3C/PARTNER_ID%3E%0A%20%20%3CSID%3EYourLimeLockSessionID%3C/SID%3E%0A%3C/REQUEST%3E" in /Applications/MAMP/htdocs/testzone/foo.php on line 16

Warning: DOMDocument::validate() [domdocument.validate]: no DTD found! in /Applications/MAMP/htdocs/testzone/foo.php on line 17
not validStart Free Trial
[+][-]05.19.2008 at 05:12PM PDT, ID: 21602558

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]05.19.2008 at 05:23PM PDT, ID: 21602616

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]05.19.2008 at 06:01PM PDT, ID: 21602782

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: PHP Scripting Language, Extensible Markup Language (XML), Extensible Stylesheet Language Transformation (XSLT)
Sign Up Now!
Solution Provided By: dangereux
Participating Experts: 1
Solution Grade: A
 
 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628