<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <title>AXL Developer</title>
  <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_category?p_l_id=&amp;mbCategoryId=9085828" />
  <subtitle>AXL Developer</subtitle>
  <id>http://developer.cisco.com/c/message_boards/find_category?p_l_id=&amp;mbCategoryId=9085828</id>
  <updated>2013-05-23T06:27:24Z</updated>
  <dc:date>2013-05-23T06:27:24Z</dc:date>
  <entry>
    <title>RE: remove call forwarding Via updateLine Using PHP</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15423317" />
    <author>
      <name>Mike Thibodeau</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15423317</id>
    <updated>2013-05-20T18:15:13Z</updated>
    <published>2013-05-20T18:15:13Z</published>
    <summary type="html">I have found that the API will clear one of the call forwarding entries then stop processing the call forwarding settings.  I do not find the same issue if I set the calling search space name to a valid CSS &amp; set forward to voice mail to true.

"callForwardAll"
"callForwardBusy"
"callForwardBusyInt"
"callForwardNoAnswer"
"callForwardNoAnswerInt"
"callForwardNotRegistered"
"callForwardNotRegisteredInt"

I have not attempted to clear the no coverage, on failure, or Alternate Party settings so I don't know where in the sequence they may fall.

Is this the intended behavor of the updateLine API?</summary>
    <dc:creator>Mike Thibodeau</dc:creator>
    <dc:date>2013-05-20T18:15:13Z</dc:date>
  </entry>
  <entry>
    <title>remove call forwarding Via updateLine Using PHP</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=14931001" />
    <author>
      <name>Mike Thibodeau</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=14931001</id>
    <updated>2013-05-03T18:04:40Z</updated>
    <published>2013-05-03T18:04:40Z</published>
    <summary type="html">I have been able to add calforwarding to a line but unable to remove it using updateLine API. CUCM v8.5
Here's a snipit of my code...
        $line = array();
        $line['uuid'] = $uuid;
        $call_forward_reset = array('forwardToVoiceMail'=&gt;'false','destination'=&gt;'','callingSearchSpaceName'=&gt;'');
        $line['callForwardAll']                                 = $call_forward_reset;
        $line['callForwardBusyInt']                     = $call_forward_reset;
        $line['callForwardBusy']                        = $call_forward_reset;
        $line['callForwardNoAnswer']                    = $call_forward_reset;
        $line['callForwardNoAnswerInt']                 = $call_forward_reset;
        $line['callForwardNotRegistered']               = $call_forward_reset;
        $line['callForwardNotRegisteredInt']    = $call_forward_reset;


       try {
                $response = $cucm_client-&gt;updateLine($line);
                $return['result'] = true;
                $return['line'] = $line;
                $return['response'] = cucm_convert_obj($response,'new_object');
        } catch (SoapFault $soap_fault) {
                $return['result'] = false;
                $return['soap_faultarray'] = cucm_convert_obj($soap_fault, 'new object');
        }</summary>
    <dc:creator>Mike Thibodeau</dc:creator>
    <dc:date>2013-05-03T18:04:40Z</dc:date>
  </entry>
</feed>

