Hi,
Have you already checked out the SDK developer guide
http://developer.cisco.com/c/document_library/get_file?folderId=1621717&name=DLFE-25212.pdfbut still cannot find your answers ?
The follwoing is an example of e
xecuting IOS configuration in developer guide. There is sample code as well in Cisco CDN where you posted this message.Thanks !
2.1) Executing Cisco IOS configuration commands:
The following example will configure an ephone-dn on the router.
Example:
We want to provision the following CUCME config using SDK:
The following SDK code snippet will configure the above commands:
2.2) Querying Cisco IOS Configuration commands:
Example: Querying status of CUCME system
!
ephone-dn 1 dual-line
number 1001
name John Doe
!
CMEXmlHttp cme_http = new CMEXmlHttp(cmeIp, xmlUser, xmlPw);
List<String> addclis = Arrays.asList("ephone-dn 1 dual-line", "number 1001", "name John Doe");
cme_http.execCLI(addclis);