Yealink Forums
Call log as xml - Printable Version

+- Yealink Forums (http://forum.yealink.com/forum)
+-- Forum: IP Phone Series (/forumdisplay.php?fid=4)
+--- Forum: Phone specific topic (/forumdisplay.php?fid=12)
+---- Forum: T2xP Series (/forumdisplay.php?fid=21)
+---- Thread: Call log as xml (/showthread.php?tid=1364)



Call log as xml - Henry - 03-06-2014 05:56 PM

Hello,

We're building an application to control our T22P and now we are looking for a way to read the call log. For now we use an url like http://admin:admin@phone/cgi-bin/ConfigManApp.com?Id=34&call_info=1 but this returns a html-page. Is it possible to read the log as xml?

Regards,
Henry


RE: Call log as xml - Yealink Support - 03-11-2014 08:01 PM

Do you use XML Browser to control the phone?
I think you can refer to more dtails about XML Browser fature for V72.
Yealink_IP_Phones_XML_Browser_Developer_V72


RE: Call log as xml - jeremy1024 - 02-24-2016 03:16 AM

(03-06-2014 05:56 PM)Henry Wrote:  Hello,

We're building an application to control our T22P and now we are looking for a way to read the call log. For now we use an url like http://admin:admin@phone/cgi-bin/ConfigManApp.com?Id=34&call_info=1 but this returns a html-page. Is it possible to read the log as xml?

Regards,
Henry

This thread is old, but I am interested in the same thing.
Henry,
A webpage is basically a very loose form of XML.
If you have access to the HTML then you could use a socket connection or cURL to get the webpage into a program where the HTML could be parsed.
PHP for example could be used to grab and parse the HTML.
There are parser classes that already exist or you could hire a programmer to build something specific if you want to make it more light weight.

Then the parsed data could be stored in a database for display later.

(Just in case anyone was interested in doing this)