Quantcast
Channel: Discussion Forum > Connect Data Services
Viewing all articles
Browse latest Browse all 2504

Parsing XML in connect PHP received from external system

$
0
0

Topic by Umer

Hi,

I have to parse and traverse through a xml document which I will be receiving from an external system. The external system will be sending data which will be converted into incident, attachments and tasks. The data structure will be like, each incident will be having one or more tasks. 

I am trying to get this document, after parsing and reading values out of xml tags I will be creating incident and incident tasks.

Is it a good way to do it in custom script/connect PHP? Or can I use OOTB SOAP webservice and expose it to external webservice?

Currently I am using below PHP code and it is giving me tags and their values:

$response= "
<Siebel>
<servicerequest>
<sr_num>
12345
</sr_num>
<problem>
test problem
</problem>
<email>
test@gmail.com
</email>
</servicerequest>
</Siebel>"; //file_get_contents('php://input');
 
        //Parsing incoming XML Message
        $p = xml_parser_create(); 
        //xml_parser_set_option( $p, XML_OPTION_CASE_FOLDING, 0 );
        //xml_parser_set_option( $p, XML_OPTION_SKIP_WHITE, 1 );
        xml_parse_into_struct( $p, $response, $index );
       // xml_parser_free( $p );
        
        $_GET= array();
        foreach ($index as $tag) 
{
            if($tag["type"]=="complete")
{
                $temparr = array($tag['tag'] => $tag['value']);
                $_GET = array_merge($_GET, $temparr);
echo $tag['tag'];
            }
        }

But I am not sure how will I traverse for the childs (tasks, attachments) of the incidents like below:

<Siebel>

               <servicerequest>

                              <sr_num>

                                             12345

                              </sr_num>

                              <problem>

                                             test problem

                              </problem>

                              <email>

                                             test@gmail.com

                              </email>

               <tasks>

                              <task1>

                                             <id>1/</id>

                                             <name>first task</<name>

                                             <description> this is first task </description>

                              </task1>

                              <task2>

                                             <id>2/</id>

                                             <name>2nd task</<name>

                                             <description> this is 2nd task </description>

                              </task2>                            

               </tasks>

               </servicerequest>

</Siebel>

 


Viewing all articles
Browse latest Browse all 2504

Trending Articles