cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
207
Views
0
Helpful
1
Replies

Using a Phonebook in SIP Firmware 14.3.1

TimEckert
Level 1
Level 1

Hello,

how can I use a phonebook in SIP Firmware 14.3.1?

In the SEPMAC.cfg.xml file, I tried the following:

  • Using the phonebook.xml directly:

<directoryURL>http://192.168.1.2/phonebook.xml</directoryURL>

  • And also a menu.xml:

<directoryURL>http://192.168.1.2/menu.xml</directoryURL>

Unfortunately, in both cases, I see a blank screen when accessing the phonebook. What could be the issue?

 

Please note: this is SIP firmware, not Enterprise or MPP!

1 Reply 1

TimEckert
Level 1
Level 1

I was too quick. I have to use a PHP file instead of an XML file for that.

#directory.php:

<?php
header("Content-type: text/xml");
?>
<CiscoIPPhoneDirectory>
<Title>Contacts</Title>
<Prompt>Select Entry:</Prompt>
<DirectoryEntry>
<Name>TEST</Name>
<Telephone>1234</Telephone>
</DirectoryEntry>
<DirectoryEntry>
<Name>test</Name>
<Telephone>12345</Telephone>
</DirectoryEntry>
</CiscoIPPhoneDirectory>
 
and in SEPMAC.cfg.xml:

<directoryURL>http://192.168.1.2/directory.php</directoryURL>