cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1132
Views
2
Helpful
4
Replies

AXL error 19082 during adding Directory URI

jdrinkwater
Level 1
Level 1

AXL error 19082 during adding Directory URI

I am getting the following error when I am adding Direcotry URI to the line. Can you help me with the cause of the error?

Thanks,

Jung

Here is the request and response

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">

<SOAP-ENV:Body>

  <axl:updateLine xmlns:axl="http://www.cisco.com/AXL/API/10.5">

   <pattern>\+15555555555</pattern>

   <routePartitionName>Global-Internal</routePartitionName>

   <routeFilterName>

   </routeFilterName>

   <directoryURIs>

    <directoryUri>

     <isPrimary>t</isPrimary>

     <uri>test@test.com</uri>

     <partition>Directory URI</partition>

     <advertiseGloballyViaIls>t</advertiseGloballyViaIls>

    </directoryUri>

   </directoryURIs>

  </axl:updateLine>

</SOAP-ENV:Body>

</SOAP-ENV:Envelope>

<?xml version='1.0' encoding='UTF-8'?>

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">

<soapenv:Body>

  <soapenv:Fault>

   <faultcode>soapenv:Client</faultcode>

   <faultstring>Can not place a administrator configured URI into the Directory URI partition.</faultstring>

   <detail>

    <axlError>

     <axlcode>19082</axlcode>

     <axlmessage>Can not place a administrator configured URI into the Directory URI partition.</axlmessage>

     <request>updateLine</request>

    </axlError>

   </detail>

  </soapenv:Fault>

</soapenv:Body>

</soapenv:Envelope>

4 Replies 4

TDoan
Level 1
Level 1

Hi Jung,

I changed some code. Hope this would help you.

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">

<SOAP-ENV:Body>

  <axl:updateLine xmlns:axl="http://www.cisco.com/AXL/API/10.5">

   <pattern>\+16517562256</pattern>

   <routePartitionName>Global-Internal</routePartitionName>

   <routeFilterName>

   </routeFilterName>

   <directoryURIs>

       <directoryUri>

             <isPrimary>t</isPrimary>

             <uri>RAbad@sjm.com</uri>

            <partition>

                     <uuid>Your Value</uuid>

             </partition>

             <advertiseGloballyViaIls>t</advertiseGloballyViaIls>

      </directoryUri>

   </directoryURIs>

  </axl:updateLine>

</SOAP-ENV:Body>

</SOAP-ENV:Envelope>

Regards

Thuy Doan

Hi,

I think actual format of the request for uuid has to be an attribute.

            <partition uuid="value">

             </partition>


I can't reproduce this problem myself. Do you know why this error happens?

Thanks,

Jung

Hi,

You can check partition value. Is the value of partition (Directory URI)  existing in your CUCM?

Regards

Thuy Doan

Actually I would try something like this :

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">

<SOAP-ENV:Body>

  <axl:updateLine xmlns:axl="http://www.cisco.com/AXL/API/10.5">

   <pattern>\+16517562256</pattern>

   <routePartitionName>Global-Internal</routePartitionName>

   <routeFilterName>

   </routeFilterName>

   <directoryURIs>

       <directoryUri>

             <isPrimary>t</isPrimary>

             <uri>RAbad@sjm.com</uri>

             <partition uuid="?">

                 <somefield>somevalue</somefield>

             </partition>

             <advertiseGloballyViaIls>t</advertiseGloballyViaIls>

      </directoryUri>

   </directoryURIs>

  </axl:updateLine>

</SOAP-ENV:Body>

</SOAP-ENV:Envelope>

If I remember well , I had a similar case where I needed the uuid but it wasn't working, so I had to refer to an other field and bypass the uuid. (cucm 8.5)