XML with namespace parsing in PHP -
i new xml in php,
i getting server response follows
http/1.1 200 ok date: tue, 14 may 2013 06:53:11 gmt server: apache pragma: no-cache cache-control: no-cache expires: thu, 01 jan 1970 00:00:00 gmt connection: close content-type: text/xml;charset=utf-8 <?xml version="1.0" encoding="utf-8"?> <serv:message xmlns:serv="http://www.webex.com/schemas/2002/06/service" xmlns:com="http://www.webex.com/schemas/2002/06/common"> <serv:header> <serv:response> <serv:result>failure</serv:result> <serv:reason>validation: unable find fielddescriptor 'listcontrol' in classdescriptor of createmeeting</serv:reason> <serv:gsbstatus>primary</serv:gsbstatus> <serv:exceptionid>999999</serv:exceptionid> </serv:response> </serv:header> <serv:body> <serv:bodycontent/> </serv:body> </serv:message> how can take xml above responce, how remove content
Comments
Post a Comment