Combination View Flat View Tree View
Threads [ Previous | Next ]
Can anyone tell me if it's posible do do a name contains query? Or is there a way to simply list all configued? I have not been able to find anything that talks about using wildcards however I am new to this so I could just be looking in the wrong places. 
 
THank you for your help

RE: listCss
Answer
10/17/12 9:14 PM as a reply to Jacob Munson.
you can use a wildcard in the listCss, or use executeSqlQuery
listCss example;
<axl:listCss xmlns:axl="http://www.cisco.com/AXL/API/9.0"  xsi:schemaLocation="http://www.cisco.com/AXL/API/9.0 http://ccmserver/schema/axlsoap.xsd" xsi:type="XRequest" sequence="1234"><searchCriteria><name>CSS%</name></searchCriteria><returnedTags><name/></returnedTags></axl:listCss>
see also the wiki;
http://developer.cisco.com/web/axl/wikidocs/-/wiki/Main/Frequently+Asked+Questions#section-Frequently+Asked+Questions-Can+I+use+'wildcards'+when+perfoming+AXL+'list'+requests?

RE: listCss
Answer
10/17/12 10:30 PM as a reply to Sascha Monteiro.
Thank you much Sascha.