<?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>Administration XML Questions</title>
  <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_category?p_l_id=&amp;mbCategoryId=1052601" />
  <subtitle>Administration XML Questions</subtitle>
  <id>http://developer.cisco.com/c/message_boards/find_category?p_l_id=&amp;mbCategoryId=1052601</id>
  <updated>2013-05-24T13:57:32Z</updated>
  <dc:date>2013-05-24T13:57:32Z</dc:date>
  <entry>
    <title>RE: Add and change Fixed Account Info (FACInfo)</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15559176" />
    <author>
      <name>Peter Whittaker</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15559176</id>
    <updated>2013-05-24T08:52:30Z</updated>
    <published>2013-05-24T08:52:30Z</published>
    <summary type="html">Thanks David
What code would I use to determine if a code already exists?</summary>
    <dc:creator>Peter Whittaker</dc:creator>
    <dc:date>2013-05-24T08:52:30Z</dc:date>
  </entry>
  <entry>
    <title>RE: Header Changes in 9.1</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15548684" />
    <author>
      <name>David Staudt</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15548684</id>
    <updated>2013-05-23T21:26:04Z</updated>
    <published>2013-05-23T21:26:04Z</published>
    <summary type="html">Looks like the difference is: in the 9.1 schema the 'camel casing' of the &lt;enableCti&gt; (vs &lt;enableCTI&gt;) element was changed (fixed, to match the general naming convention.)  UCM supports multiple versions of the schema to facilitate just this kind of backward compatibility.
 
 </summary>
    <dc:creator>David Staudt</dc:creator>
    <dc:date>2013-05-23T21:26:04Z</dc:date>
  </entry>
  <entry>
    <title>RE: From listPhone  to Phone Line</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15524723" />
    <author>
      <name>John Katsavras</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15524723</id>
    <updated>2013-05-23T12:21:55Z</updated>
    <published>2013-05-23T12:21:55Z</published>
    <summary type="html">thanks David tahts what i needed
 
alexis</summary>
    <dc:creator>John Katsavras</dc:creator>
    <dc:date>2013-05-23T12:21:55Z</dc:date>
  </entry>
  <entry>
    <title>RE: SQL Cisco Unity Connection?</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15506114" />
    <author>
      <name>Michael Schmidt</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15506114</id>
    <updated>2013-05-22T20:27:01Z</updated>
    <published>2013-05-22T20:27:01Z</published>
    <summary type="html">Hi Marty,
 
thank you. I will try this tomorrow in the office.
 

BR
Michael</summary>
    <dc:creator>Michael Schmidt</dc:creator>
    <dc:date>2013-05-22T20:27:01Z</dc:date>
  </entry>
  <entry>
    <title>RE: From listPhone  to Phone Line</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15505718" />
    <author>
      <name>David Staudt</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15505718</id>
    <updated>2013-05-22T20:15:31Z</updated>
    <published>2013-05-22T20:15:31Z</published>
    <summary type="html">The most basic piece of info would be the 'uuid' attribute:
 
&lt;soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:axl="http://www.cisco.com/AXL/API/8.5"&gt; 
  &lt;soapenv:Body&gt; 
    &lt;axl:listPhone&gt; 
      &lt;searchCriteria&gt; 
        &lt;name&gt;SEP%&lt;/name&gt; 
      &lt;/searchCriteria&gt; 
      &lt;returnedTags /&gt; 
    &lt;/axl:listPhone&gt; 
  &lt;/soapenv:Body&gt; 
&lt;/soapenv:Envelope&gt;
------------------------------------
&lt;soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"&gt;
   &lt;soapenv:Body&gt;
      &lt;ns:listPhoneResponse xmlns:ns="http://www.cisco.com/AXL/API/8.5"&gt;
         &lt;return&gt;
            &lt;phone uuid="{04A5F4D0-1C1C-438A-B4DD-2024C64F9CE8}"/&gt;
            &lt;phone uuid="{9EE1CEF5-E02E-FB3C-AA77-CE66AE10008B}"/&gt;
...
           &lt;phone uuid="{DD3415CE-E88C-4D7A-B1FA-10FDDA67AAF1}"/&gt;
         &lt;/return&gt;
      &lt;/ns:listPhoneResponse&gt;
   &lt;/soapenv:Body&gt;
&lt;/soapenv:Envelope&gt;
 
then
&lt;soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.cisco.com/AXL/API/8.5"&gt;
   &lt;soapenv:Header/&gt;
   &lt;soapenv:Body&gt;
      &lt;ns:getPhone sequence="1"&gt;
         &lt;uuid&gt;{04A5F4D0-1C1C-438A-B4DD-2024C64F9CE8}&lt;/uuid&gt;
         &lt;returnedTags&gt;
            &lt;lines&gt;
               &lt;line&gt;
                 &lt;dirn&gt;
                   &lt;pattern/&gt;
                   &lt;routePartitionName/&gt;
                 &lt;/dirn&gt;
               &lt;/line&gt;
            &lt;/lines&gt;   
         &lt;/returnedTags&gt;
      &lt;/ns:getPhone&gt;
   &lt;/soapenv:Body&gt;
&lt;/soapenv:Envelope&gt;
------------------------------------
&lt;soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"&gt;
   &lt;soapenv:Body&gt;
      &lt;ns:getPhoneResponse xmlns:ns="http://www.cisco.com/AXL/API/8.5"&gt;
         &lt;return&gt;
            &lt;phone uuid="{04A5F4D0-1C1C-438A-B4DD-2024C64F9CE8}"&gt;
               &lt;lines&gt;
                  &lt;line uuid="{D2B5F355-10F3-41DF-B249-A695FA3A289B}"&gt;
                     &lt;dirn uuid="{35D0092C-3372-4B9F-9922-65D60BADF5B1}"&gt;
                        &lt;pattern&gt;1012&lt;/pattern&gt;
                        &lt;routePartitionName/&gt;
                     &lt;/dirn&gt;
                  &lt;/line&gt;
               &lt;/lines&gt;
            &lt;/phone&gt;
         &lt;/return&gt;
      &lt;/ns:getPhoneResponse&gt;
   &lt;/soapenv:Body&gt;
&lt;/soapenv:Envelope&gt;
 </summary>
    <dc:creator>David Staudt</dc:creator>
    <dc:date>2013-05-22T20:15:31Z</dc:date>
  </entry>
  <entry>
    <title>RE: SQL Cisco Unity Connection?</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15499400" />
    <author>
      <name>Martin Sloan</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15499400</id>
    <updated>2013-05-22T20:09:47Z</updated>
    <published>2013-05-22T20:09:47Z</published>
    <summary type="html">Michael,
Here's an example framework using the PEST client to add a user via REST LDAP import.  You'll have to fill in the appropriate values for the userid, dtmfaccessid (extension) and others but you can at least see the structure of the messaging.  The 'base_url' for Unity can be defined in the Pest.php file, just put in 'https://your.cuc.ip.address' and it will call that for each pest function.
The link I posted above to the CUPI wiki really helped me work through issues with the syntax of the requests.  The PEST client is easy enough to use so just take a look at what the server is expecting in the messaging on the wikit.  One of the benefits of REST is that you can test some of the calls by just typing the URL into a browser.
 
&lt;?php
require_once('includes/pest-master/Pest.php');
require_once('includes/pest-master/PestXML.php');
 
createVmAccount();
 
function importFromLdap($pest,$alias,$pkid,$dtmfAccessId){
  global $userData;
  try
    {
      $postUrl = "/vmrest/import/users/ldap?templateAlias=HQ-DEFAULT-UT";
      $user = $pest-&gt;post($postUrl,"&lt;ImportUser&gt;&lt;alias&gt;$alias&lt;/alias&gt;&lt;pkid&gt;$pkid&lt;/pkid&gt;&lt;dtmfAccessId&gt;$dtmfAccessId&lt;/dtmfAccessId&gt;&lt;/ImportUser&gt;");
    } catch (Exception $e) {
    systemErrorMessage("VM import from LDAP",$e-&gt;getMessage());
  }
  return;
}
function getVmVars($pest){
  global $userData;
  try
    {
      $ldapUrl = urlencode('(alias is ' . $userId . ')');
      $contactUnity = $pest-&gt;get("/vmrest/import/users/ldap?query=" . $ldapUrl);
      return $contactUnity;
    } catch (Exception $e) {
    systemErrorMessage("VM get user Vars from LDAP",$e-&gt;getMessage());
  }
}
function doCreateAccount($pest) {
  global $userData;
  $contactUnity = getVmVars($pest);
  if ($contactUnity-&gt;ImportUser-&gt;alias) {
    $alias = $contactUnity-&gt;ImportUser-&gt;alias;
    $pkid = $contactUnity-&gt;ImportUser-&gt;pkid;
    importFromLdap($pest,$alias,$pkid,$extension);
  }
  else {
    systemErrorMessage("No user found to import from LDAP for VM!\n",$e-&gt;getMessage());
  }
}
function checkVmAccount($pest) {
  global $userData;
  try
    {
      $unityUrl = urlencode('(alias is ' . $userId . ')');
      $contactUnity = $pest-&gt;get("/vmrest/users?query=" . $unityUrl);
      return $contactUnity;
    } catch (Exception $e) {
    systemErrorMessage("Check User Account",$e-&gt;getMessage());
  }
}
function createVmAccount() {
    global $userData;
    $pest = new PestXML();
  try
    {
      $pest-&gt;setupAuth();
    } catch (Exception $e) {
    systemErrorMessage("VM authentication error",$e-&gt;getMessage());
  }
  $vmCheck = checkVmAccount($pest);
  if ($vmCheck-&gt;User-&gt;URI) {
    return;
  }
  else {
    doCreateAccount($pest);
  }
?&gt;</summary>
    <dc:creator>Martin Sloan</dc:creator>
    <dc:date>2013-05-22T20:09:47Z</dc:date>
  </entry>
  <entry>
    <title>RE: SQL Cisco Unity Connection?</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15500218" />
    <author>
      <name>Michael Schmidt</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15500218</id>
    <updated>2013-05-22T19:42:56Z</updated>
    <published>2013-05-22T19:42:56Z</published>
    <summary type="html">Hi Marty,
Hi Sascha,
 
thank for your answers. Does anybody provide me some example REST scripts for deleting / creating a mailbox in CUC? At the moment I don`t know how to use this REST interface in CUC :-(
 
BR
Michael</summary>
    <dc:creator>Michael Schmidt</dc:creator>
    <dc:date>2013-05-22T19:42:56Z</dc:date>
  </entry>
  <entry>
    <title>RE: SQL Cisco Unity Connection?</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15500213" />
    <author>
      <name>Martin Sloan</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15500213</id>
    <updated>2013-05-22T19:42:00Z</updated>
    <published>2013-05-22T19:42:00Z</published>
    <summary type="html">I agree and should have mentioned that my own project to bring up the ODBC was for a read-only usage.  Provisioning is best done with REST but it is nice to what the options are.  Gathering large data sets via REST hasn't been the most efficient way to extract information from the Unity DB.  It takes hours to complete on Unity what takes minutes on CUCM using SQL.

If you're using any PHP, I've found the PHP Rest Client, PEST, is easier to use than the Perl modules.  Just need to download the library and 'include' in your script.</summary>
    <dc:creator>Martin Sloan</dc:creator>
    <dc:date>2013-05-22T19:42:00Z</dc:date>
  </entry>
  <entry>
    <title>RE: SQL Cisco Unity Connection?</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15497935" />
    <author>
      <name>Sascha Monteiro</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15497935</id>
    <updated>2013-05-22T19:26:57Z</updated>
    <published>2013-05-22T19:26:57Z</published>
    <summary type="html">Michael,
You might want to look into using the CUPI REST API through perl, manipulating the database through ODBC is not supported by TAC</summary>
    <dc:creator>Sascha Monteiro</dc:creator>
    <dc:date>2013-05-22T19:26:57Z</dc:date>
  </entry>
  <entry>
    <title>From listPhone  to Phone Line</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15490543" />
    <author>
      <name>John Katsavras</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15490543</id>
    <updated>2013-05-22T15:33:55Z</updated>
    <published>2013-05-22T15:33:55Z</published>
    <summary type="html">Hi there,
I am using CUCM 8.5 AXL API method "listPhone" to get all the phone that i want. That part is fine. 

I am stuck on using the attributes that I get from method "listPhone" to getting the extention numbers associated with a phone from the list of results. What attribute from method "listPhone" do i need to use to say find the extention number using a method like "GetLineReq" or "GetLine"
Thanks for the help/advice


Alexis</summary>
    <dc:creator>John Katsavras</dc:creator>
    <dc:date>2013-05-22T15:33:55Z</dc:date>
  </entry>
  <entry>
    <title>RE: SQL Cisco Unity Connection?</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15484562" />
    <author>
      <name>Martin Sloan</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15484562</id>
    <updated>2013-05-22T12:46:03Z</updated>
    <published>2013-05-22T12:46:03Z</published>
    <summary type="html">Michael,

Unity provides the REST interface which doesn't include the SQL functionality like CUCM.  However, you can connect to Unity via ODBC, although I haven't had any luck bringing that connection up myself using Perl and the DB connection modules.  After many try and fail attempts, I conceded to using the REST interface which requires a few more messages but provides the functionality I needed.  If you're looking for some tools to help explore the Unity DB, check out http://ciscounitytools.com/SiteList/AllDownloads/alldownloads.html and look for CUDLI.  You need to install some Informix drivers for this.  Also, check out the CUPI forums like was mentioned above.  Folks like Sascha, Jeff Lindborg and others have really helped me out there.  My personal favorite page for Unity REST info is
http://docwiki.cisco.com/wiki/Cisco_Unity_Connection_Provisioning_Interface_%28CUPI%29_API

There are some really nice how-to's within that site.

I hpoe this helps
Marty</summary>
    <dc:creator>Martin Sloan</dc:creator>
    <dc:date>2013-05-22T12:46:03Z</dc:date>
  </entry>
  <entry>
    <title>RE: New Message from Michael Schmidt in AXL Developer - Administration XML</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15484495" />
    <author>
      <name>Dennis Heim</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15484495</id>
    <updated>2013-05-22T12:40:27Z</updated>
    <published>2013-05-22T12:40:27Z</published>
    <summary type="html">I am sure you could find a way to fit the square peg in the round hole.  The issue is that AXL (CUCM) and REST (CUC) are the support provisioning methods, and also the best way to avoid a resume generating event.

Dennis Heim | Sr. Unified Collaboration Team Lead &amp; Solution Architect
World Wide Technology | 314.212.1814 | dennis.heim@wwt.com&lt;mailto:dennis.heim@wwt.com&gt;
“Creating Impact, Ignition &amp; Scalability”

From: Cisco Developer Community Forums [mailto:cdicuser@developer.cisco.com]
Sent: Wednesday, May 22, 2013 8:06 AM
To: cdicuser@developer.cisco.com
Subject: New Message from Michael Schmidt in AXL Developer - Administration XML Questions: RE: SQL Cisco Unity Connection?

Michael Schmidt has created a new message in the forum "Administration XML Questions": -------------------------------------------------------------- Hi Sascha,
thank you for your answer.

But is there also a way to edit users / mailboxes directly via SQL commands to edit the database?
The same way like a Perl Script with SQL commands for CUCM for editing directly the CUCM database.

Actually most of the mailboxes / users at CUUC are imported via LDAP.

BR
Michael
--
To respond to this post, please click the following link: http://developer.cisco.com/web/axl-developer/forums/-/message_boards/view_message/15482806 or simply reply to this email.</summary>
    <dc:creator>Dennis Heim</dc:creator>
    <dc:date>2013-05-22T12:40:27Z</dc:date>
  </entry>
  <entry>
    <title>RE: SQL Cisco Unity Connection?</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15482806" />
    <author>
      <name>Michael Schmidt</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15482806</id>
    <updated>2013-05-22T12:05:59Z</updated>
    <published>2013-05-22T12:05:59Z</published>
    <summary type="html">Hi Sascha,
thank you for your answer.

But is there also a way to edit users / mailboxes directly via SQL commands to edit the database?
The same way like a Perl Script with SQL commands for CUCM for editing directly the CUCM database.
 
Actually most of the mailboxes / users at CUUC are imported via LDAP.
 
BR
Michael</summary>
    <dc:creator>Michael Schmidt</dc:creator>
    <dc:date>2013-05-22T12:05:59Z</dc:date>
  </entry>
  <entry>
    <title>Re: New Message from Michael Schmidt in AXL Developer - Administration XML</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15478353" />
    <author>
      <name>Sascha Monteiro</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15478353</id>
    <updated>2013-05-22T08:29:51Z</updated>
    <published>2013-05-22T08:29:51Z</published>
    <summary type="html">for CUC you need to use the CUPI interface, accessed through REST

http://docwiki.cisco.com/wiki/Cisco_Unity_Connection_Provisioning_Interface_(CUPI)_API


On Wed, May 22, 2013 at 8:25 PM, Cisco Developer Community Forums &lt;
cdicuser@developer.cisco.com&gt; wrote:

&gt; Michael Schmidt has created a new message in the forum "Administration XML
&gt; Questions": --------------------------------------------------------------
&gt; Hi,
&gt;
&gt; we have a Stand Alone Cisco Unity Connection Cluster in Verion 8.6.2.
&gt;
&gt; Can I use in Cisco Unity Connection SQL commands similar I use it in Cisco
&gt; CUCM?
&gt;
&gt; How a SQL command looks like for CUUC for:
&gt;
&gt; - deleting a mailbox
&gt; - creating a mailbox
&gt;
&gt; Do I have to create a AXL User in CUUC like I did it at CUCM?
&gt;
&gt; BR
&gt; Michael
&gt; --
&gt; To respond to this post, please click the following link:
&gt; http://developer.cisco.com/web/axl-developer/forums/-/message_boards/view_message/15478324or simply reply to this email.




-- 


Regards,


*Sascha Monteiro* BSc, CCIE(Voice)#14395: Software Development Manager
Atea Systems Limited
PO Box 22042, Wellington, New Zealand
Phone: +64 4 464 0046 | Cell: +64 21 460 030
sascha@ateasystems.com | http://www.ateasystems.com

*making telephony **better*</summary>
    <dc:creator>Sascha Monteiro</dc:creator>
    <dc:date>2013-05-22T08:29:51Z</dc:date>
  </entry>
  <entry>
    <title>SQL Cisco Unity Connection?</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15478324" />
    <author>
      <name>Michael Schmidt</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15478324</id>
    <updated>2013-05-22T08:25:11Z</updated>
    <published>2013-05-22T08:25:11Z</published>
    <summary type="html">Hi,

we have a Stand Alone Cisco Unity Connection Cluster in Verion 8.6.2.

Can I use in Cisco Unity Connection SQL commands similar I use it in Cisco CUCM?
 
How a SQL command looks like for CUUC for:
 
- deleting a mailbox
- creating a mailbox
 
Do I have to create a AXL User in CUUC like I did it at CUCM?
 
BR
Michael</summary>
    <dc:creator>Michael Schmidt</dc:creator>
    <dc:date>2013-05-22T08:25:11Z</dc:date>
  </entry>
  <entry>
    <title>RE: Add and change Fixed Account Info (FACInfo)</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15465001" />
    <author>
      <name>David Staudt</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15465001</id>
    <updated>2013-05-21T20:29:49Z</updated>
    <published>2013-05-21T20:29:49Z</published>
    <summary type="html">Tested against UCM 8.5(1):
List all FACs:
 
&lt;soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.cisco.com/AXL/API/8.5"&gt;
   &lt;soapenv:Header/&gt;
   &lt;soapenv:Body&gt;
      &lt;ns:listFacInfo sequence="1"&gt;
         &lt;searchCriteria&gt;
            &lt;name&gt;%&lt;/name&gt;
         &lt;/searchCriteria&gt;
         &lt;returnedTags&gt;
           &lt;name/&gt;
           &lt;code/&gt;
           &lt;authorizationLevel/&gt;
         &lt;/returnedTags&gt;
      &lt;/ns:listFacInfo&gt;
   &lt;/soapenv:Body&gt;
&lt;/soapenv:Envelope&gt;
------------------------------------
&lt;soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"&gt;
   &lt;soapenv:Body&gt;
      &lt;ns:listFacInfoResponse xmlns:ns="http://www.cisco.com/AXL/API/8.5"&gt;
         &lt;return&gt;
            &lt;facInfo uuid="{3D1B28FF-B4D2-18D4-8FFF-38C7EE33BA5D}"&gt;
               &lt;name&gt;testFAC1&lt;/name&gt;
               &lt;code&gt;99&lt;/code&gt;
               &lt;authorizationLevel&gt;1&lt;/authorizationLevel&gt;
            &lt;/facInfo&gt;
         &lt;/return&gt;
      &lt;/ns:listFacInfoResponse&gt;
   &lt;/soapenv:Body&gt;
&lt;/soapenv:Envelope&gt;
 
Update an existing FAC:

&lt;soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.cisco.com/AXL/API/8.5"&gt;
   &lt;soapenv:Header/&gt;
   &lt;soapenv:Body&gt;
      &lt;ns:updateFacInfo sequence="1"&gt;
         &lt;name&gt;testFAC1&lt;/name&gt;
         &lt;newName&gt;newFAC1&lt;/newName&gt;
         &lt;code&gt;98&lt;/code&gt;
         &lt;authorizationLevel&gt;2&lt;/authorizationLevel&gt;
      &lt;/ns:updateFacInfo&gt;
   &lt;/soapenv:Body&gt;
&lt;/soapenv:Envelope&gt;
----------------------------------
&lt;soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"&gt;
   &lt;soapenv:Body&gt;
      &lt;ns:updateFacInfoResponse xmlns:ns="http://www.cisco.com/AXL/API/8.5"&gt;
         &lt;return&gt;{3D1B28FF-B4D2-18D4-8FFF-38C7EE33BA5D}&lt;/return&gt;
      &lt;/ns:updateFacInfoResponse&gt;
   &lt;/soapenv:Body&gt;
&lt;/soapenv:Envelope&gt;
 </summary>
    <dc:creator>David Staudt</dc:creator>
    <dc:date>2013-05-21T20:29:49Z</dc:date>
  </entry>
  <entry>
    <title>RE: Single Number Reach Ring Schedule</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15430329" />
    <author>
      <name>Gery Petrova</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15430329</id>
    <updated>2013-05-20T19:25:48Z</updated>
    <published>2013-05-20T19:25:48Z</published>
    <summary type="html">Hehe, so do I! :) No worries - it's all good. Thanks for the help again. :)</summary>
    <dc:creator>Gery Petrova</dc:creator>
    <dc:date>2013-05-20T19:25:48Z</dc:date>
  </entry>
  <entry>
    <title>RE: Single Number Reach Ring Schedule</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15428212" />
    <author>
      <name>Adrienne Moherek</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15428212</id>
    <updated>2013-05-20T19:21:36Z</updated>
    <published>2013-05-20T19:21:36Z</published>
    <summary type="html">Oops, sorry! I work with so many male developers, that I forget there are other women out there.</summary>
    <dc:creator>Adrienne Moherek</dc:creator>
    <dc:date>2013-05-20T19:21:36Z</dc:date>
  </entry>
  <entry>
    <title>Re: New Message from Adrienne Moherek in AXL Developer - Administration XML</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15430025" />
    <author>
      <name>Gery Petrova</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15430025</id>
    <updated>2013-05-20T19:07:27Z</updated>
    <published>2013-05-20T19:07:27Z</published>
    <summary type="html">Thanks for responding for me, Adrienne.

BTW, I am a "she". :)

I appreciate all the help.




Gergana Petrova | Sr. Software Engineer | Systems Engineering
Presidio | www.presidio.com&lt;http://www.presidio.com&gt;
5337 Millenia Lakes Blvd., Orlando, FL 32839
D: 407.409.8245 | gpetrova@presidio.com&lt;mailto:gpetrova@presidio.com&gt;



[Practical thinking for a connected world.]&lt;http://www.presidio.com&gt;


Follow us:

[Follow Presidio on Twitter]&lt;http://www.twitter.com/presidio&gt;




From: Cisco Developer Community Forums [mailto:cdicuser@developer.cisco.com]
Sent: Monday, May 20, 2013 02:56 PM
To: cdicuser@developer.cisco.com &lt;cdicuser@developer.cisco.com&gt;
Subject: New Message from Adrienne Moherek in AXL Developer - Administration XML Questions: RE: Single Number Reach Ring Schedule

Adrienne Moherek has created a new message in the forum "Administration XML Questions": -------------------------------------------------------------- Hi Matthew,

I worked with Gery on this issue.
He updated the TodAccess by setting the timeScheduleName empty like this and it worked:

      &lt;ns:updateTodAccess sequence="?"&gt;
         &lt;uuid&gt;C483D134-FFB4-FF96-F911-C84B641F1723&lt;/uuid&gt;
         &lt;members&gt;
            &lt;member&gt;
               &lt;timeScheduleName/&gt;
               &lt;accessListName/&gt;
            &lt;/member&gt;
         &lt;/members&gt;
      &lt;/ns:updateTodAccess&gt;

Thanks,
Adrienne
--
To respond to this post, please click the following link: http://developer.cisco.com/web/axl-developer/forums/-/message_boards/view_message/15423857 or simply reply to this email.
This message w/attachments (message) is intended solely for the use of the intended recipient(s) and may contain information that is privileged, confidential or proprietary. If you are not an intended recipient, please notify the sender, and then please delete and destroy all copies and attachments. Please be advised that any review or dissemination of, or the taking of any action in reliance on, the information contained in or attached to this message is prohibited.</summary>
    <dc:creator>Gery Petrova</dc:creator>
    <dc:date>2013-05-20T19:07:27Z</dc:date>
  </entry>
  <entry>
    <title>RE: Single Number Reach Ring Schedule</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15423857" />
    <author>
      <name>Adrienne Moherek</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=15423857</id>
    <updated>2013-05-20T18:56:00Z</updated>
    <published>2013-05-20T18:56:00Z</published>
    <summary type="html">Hi Matthew,

I worked with Gery on this issue. 
He updated the TodAccess by setting the timeScheduleName empty like this and it worked:
 
      &lt;ns:updateTodAccess sequence="?"&gt;
         &lt;uuid&gt;C483D134-FFB4-FF96-F911-C84B641F1723&lt;/uuid&gt;
         &lt;members&gt;
            &lt;member&gt;
               [b]&lt;timeScheduleName/&gt;[/b]
               &lt;accessListName/&gt; 
            &lt;/member&gt;
         &lt;/members&gt;
      &lt;/ns:updateTodAccess&gt;

Thanks,
Adrienne</summary>
    <dc:creator>Adrienne Moherek</dc:creator>
    <dc:date>2013-05-20T18:56:00Z</dc:date>
  </entry>
</feed>

