Yealink Forums

Full Version: Using Push XML to configure DSS Keys
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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
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>";
(02-05-2018 10:57 PM)Rob! Wrote: [ -> ]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>";
Hi Robert,

Glad to hear that this issue solved.

Any question, please feel free to contact us.

Best Regards

Aishion
Reference URL's