Log In
Developer Network
Technologies
Join the Network
Member Services
Events & Community
Administration XML (AXL) Developer Center
Testing
Overview
Blogs
Documentation
Community
Wiki
Administration XML Developer Forums
Message Boards Home
Recent Posts
Statistics
Answer
(
Unmark
)
Mark as an Answer
« Back to Administration XML Questions
How Add line css
Threads [
Previous
|
Next
]
Xinxin He
Posts:
8
Join Date:
7/21/10
Recent Posts
How Add line css
.net
8.5 cucm wsdl axlapiservice.cs
calling search space css line
Answer
4/1/12 10:26 AM
Mark as an Answer
Submit
Reply with Quote
Quick Reply
Hi
I use AXL add line,but I can`t find where set the Line`s Calling Search Space.
I can`t find about the CSS attribute in the XLine Class
My CUCM is 8.5, use .net2008 .
The Code like this:
XFkType xfktype = new XFkType();
XPhoneLine line = new XPhoneLine();
line.audibleMwi = xPhoneLineField.audibleMwi;
line.busyTrigger = xPhoneLineField.busyTrigger;
line.callInfoDisplay = xPhoneLineField.callInfo;
line.consecutiveRingSetting = xPhoneLineField.consecutiveRingSetting;
line.dirn = new XDirn();
line.dirn.pattern = xPhoneLineField.dirnpattern;
line.dirn.uuid = xPhoneLineField.dirnuuid;
xfktype = new XFkType();
xfktype.Value = xPhoneLineField.routePartitionName;
line.dirn.routePartitionName = xfktype;
xfktype.uuid = Guid.NewGuid().ToString().ToUpper();
line.display = xPhoneLineField.displayLine;
line.index = xPhoneLineField.lineIndex;
line.maxNumCalls = xPhoneLineField.maxNumCalls;
line.missedCallLogging = xPhoneLineField.missedCallLogging;
line.mwlPolicy = xPhoneLineField.mwlPolicy;
line.partitionUsage = xPhoneLineField.partitionUsage;
line.recordingFlag = xPhoneLineField.recordingFlag;
line.ringSettingActivePickupAlert = xPhoneLineField.ringSettingActivePickupAlert;
line.ringSettingIdlePickupAlert = xPhoneLineField.ringSettingIdlePickupAlert;
line.ringSetting = xPhoneLineField.ringSetting;
Sign in to vote.
Flag
Please sign in to flag this as inappropriate.
Top
David Staudt
Posts:
2
Join Date:
6/4/08
Recent Posts
RE: How Add line css
Answer
4/2/12 8:56 PM as a reply to Xinxin He.
Mark as an Answer
Submit
Reply with Quote
Quick Reply
For reasons lost to history, this value is managed via the <shareLineAppearanceCssName> element.
Sign in to vote.
Flag
Please sign in to flag this as inappropriate.
Top
Xinxin He
Posts:
8
Join Date:
7/21/10
Recent Posts
RE: How Add line css
Answer
4/5/12 3:03 AM as a reply to David Staudt.
Mark as an Answer
Submit
Reply with Quote
Quick Reply
Thanks David Staudt,I got it
Sign in to vote.
Flag
Please sign in to flag this as inappropriate.
Top