Using Push XML to configure DSS Keys - Printable Version +- Yealink Forums (http://forum.yealink.com/forum) +-- Forum: IP Phone Series (/forumdisplay.php?fid=4) +--- Forum: Configuration (/forumdisplay.php?fid=24) +--- Thread: Using Push XML to configure DSS Keys (/showthread.php?tid=41523) |
Using Push XML to configure DSS Keys - Rob! - 02-05-2018 08:01 PM Hello, I'm trying to program DSS Keys via Push XML. The XML below works for a second and then quickly reverts back. Is it even possible to program DSS Keys via Push XML and have the config stick? $xml = "<YealinkIPPhoneConfiguration Beep=\"yes\"\n"; $xml .= "<Item>linekey.9.type = 16</Item>\n"; $xml .= "<Item>linekey.9.value = 916</Item>\n"; $xml .= "<Item>linekey.9.line = 1</Item>\n"; $xml .= "<Item>linekey.9.label = 916 Frank</Item>\n"; $xml .= "<Item>linekey.9.extension = %NULL%</Item>\n"; $xml .= "<Item>linekey.9.xml_phonebook = %NULL%</Item>\n"; $xml .= "</YealinkIPPhoneConfiguration>"; Any help/direction is appreciated. Thank you, ...Rob RE: Using Push XML to configure DSS Keys - Rob! - 02-05-2018 10:57 PM Nevermind. Updating to the current firmware resolved the issue. Also there was a mistake in the XML code that I had included in my original post. The correct code is, for anyone looking to do the same: $xml = "<YealinkIPPhoneConfiguration Beep=\"yes\">\n"; $xml .= "<Item>linekey.9.type = 16</Item>\n"; $xml .= "<Item>linekey.9.value = 916</Item>\n"; $xml .= "<Item>linekey.9.line = 1</Item>\n"; $xml .= "<Item>linekey.9.label = 916 Frank</Item>\n"; $xml .= "<Item>linekey.9.extension = %NULL%</Item>\n"; $xml .= "<Item>linekey.9.xml_phonebook = %NULL%</Item>\n"; $xml .= "</YealinkIPPhoneConfiguration>"; RE: Using Push XML to configure DSS Keys - Aishion_Yealink - 02-06-2018 03:11 AM (02-05-2018 10:57 PM)Rob! Wrote: Nevermind. Updating to the current firmware resolved the issue.Hi Robert, Glad to hear that this issue solved. Any question, please feel free to contact us. Best Regards Aishion |