Yealink Forums

Full Version: Programming "dialing" softket
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have looked at several of the posts about this and tried several options but still cannot get it to work

I have a T22 phone on vers 7.71.0.168 working with a version12 3cx

I have downloaded the "dialing.xml" file and edited it so the group pickup key replaces the send key

ialing>
<Disable>
<Key Type="Empty"/>
<Key Type="History"/>
<Key Type="Directory"/>
<Key Type="Switch"/>
<Key Type="Line"/>
<Key Type="Favorite"/>
<Key Type="GPickup"/>
<Key Type="DPickup"/>
<Key Type="Retrieve"/>
<Key Type="Send"/>
</Disable>
<Enable>
<Key Type="GPickup"/>
<Key Type="IME"/>
<Key Type="Delete"/>
<Key Type="Cancel"/>
</Enable>
<Default>
<Key Type="GPickup"/>
<Key Type="IME"/>
<Key Type="Delete"/>
<Key Type="Cancel"/>
</Default>
</Dialing>

I have an SNPBX machine running Windows 7 with an IP address of 192.168.1.210.

My question is where do I place the "dialing.xml" file and exactly what path do I add to the provisioning template.

I have tried various combinations based on
custom_softkey_dialing.url = http://<server>/<path>/dialing.xml

but none work
Please use correct syntax in dialing.xml.
Code:
<Dialing>
  <Disable>
    <Key Type="Empty"/>
    <Key Type="History"/>
    <Key Type="Switch"/>
    <Key Type="Line"/>
    <Key Type="Favorite"/>
    <Key Type="Send"/>
    <Key Type="DPickup"/>
    <Key Type="Retrieve"/>
  </Disable>
  <Enable>
    <Key Type="GPickup"/>
    <Key Type="IME"/>
    <Key Type="Delete"/>
    <Key Type="Cancel"/>
  </Enable>
  <Default>
    <Key Type="Send"/>
    <Key Type="IME"/>
    <Key Type="Delete"/>
    <Key Type="Cancel"/>
  </Default>
</Dialing>

Please don't forget #!version:1.0.0.1.
-----------------------------------------------
#!version:1.0.0.1

##File header "#!version:1.0.0.1" can not be edited or deleted, and must be placed in the first line.##

################################################################################​#######
## Customize the softkey ##
################################################################################​#######
#Customize the softkeys presented on the phone LCD screen when Callfailed, Callin, Connecting, Dialing, Ringback and Talking.
#Before using these parameters, you should store the desired XML files to the provisioning server.

custom_softkey_dialing.url = http://<server>/<path>/dialing.xml
-----------------------------------------------
Hi Thanks for the reply. Not sure what you mean by
Please don't forget #!version:1.0.0.1.

I have edited the file as below,is this correct as it still does not work

#!version:1.0.0.1
<Dialing>
<Disable>
<Key Type="Empty"/>
<Key Type="History"/>
<Key Type="Directory"/>
<Key Type="Switch"/>
<Key Type="Line"/>
<Key Type="Favorite"/>
<Key Type="Send"/>
<Key Type="DPickup"/>
<Key Type="Retrieve"/>
</Disable>
<Enable>
<Key Type="GPickup"/>
<Key Type="IME"/>
<Key Type="Delete"/>
<Key Type="Cancel"/>
</Enable>
<Default>
<Key Type="Send"/>
<Key Type="IME"/>
<Key Type="Delete"/>
<Key Type="Cancel"/>
</Default>
</Dialing>
#!version:1.0.0.1 is used in auto provisioning template.
Please use below right syntaxs.

<Dialing>
<Disable>
<Key Type="Empty"/>
<Key Type="History"/>
<Key Type="Directory"/>
<Key Type="Switch"/>
<Key Type="Line"/>
<Key Type="Favorite"/>
<Key Type="Send"/>
<Key Type="DPickup"/>
<Key Type="Retrieve"/>
</Disable>
<Enable>
<Key Type="GPickup"/>
<Key Type="IME"/>
<Key Type="Delete"/>
<Key Type="Cancel"/>
</Enable>
<Default>
<Key Type="Send"/>
<Key Type="IME"/>
<Key Type="Delete"/>
<Key Type="Cancel"/>
</Default>
</Dialing>
Reference URL's