cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
764
Views
0
Helpful
3
Replies

Problem with updateServiceProfile request

jdrinkwater
Level 1
Level 1

I am trying to update Service profile but cucm server returning error. It only happens in 12.5 release.

I am getting axlcode of -1 when I try to set the secondary or tertiary of  Video conference scheduling portal profile. No problem setting primary though. Can someone help me?

 

Here is the request and response I am using.

<axl:updateServiceProfile xmlns:axl="http://www.cisco.com/AXL/API/12.5">
<name>serviceprofile1</name>
<serviceProfileInfos>
<serviceProfileInfo>
<profileName>Video Conference Scheduling Portal Profile</profileName>
<primary>primaryVideo</primary>
<secondary>secondaryVideo</secondary>
<tertiary>
</tertiary>
</serviceProfileInfo>
</serviceProfileInfos>
</axl:updateServiceProfile>

<?xml version='1.0' encoding='UTF-8'?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<soapenv:Fault>
<faultcode>soapenv:Server</faultcode>
<faultstring>
</faultstring>
<detail>
<axlError>
<axlcode>-1</axlcode>
<axlmessage>
</axlmessage>
<request>updateServiceProfile</request>
</axlError>
</detail>
</soapenv:Fault>
</soapenv:Body>
</soapenv:Envelope>

 

3 Replies 3

dstaudt
Cisco Employee
Cisco Employee

I was able to reproduce the issue, and created defect CSCvq97986

Added a Python sample showing a workaround using <executeSQLUpdate> to the project here: https://github.com/CiscoDevNet/axl-python-zeep-samples

jdrinkwater
Level 1
Level 1

Thanks David as always!! I will keep on eye on the fix.

Jung

thedd
Level 1
Level 1
What happens if you only use the fields you want to use?
I only add field to my axl that are required or i want to use.

Do you have the same error when using this:
<name>serviceprofile1</name>
<serviceProfileInfos>
<profileName>Video Conference Scheduling Portal Profile</profileName>
<primary>primaryVideo</primary>
<secondary>secondaryVideo</secondary>
</serviceProfileInfos>