Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
vendors:cisco:uc:cucm:axl [2018/05/17 19:56] – ↷ Page moved from code:java:vendors:cisco:uc:cucm:axl to vendors:cisco:uc:cucm:axl gerardorourkevendors:cisco:uc:cucm:axl [2020/11/18 13:34] (current) gerardorourke
Line 3: Line 3:
 === Java Command Line Tool === === Java Command Line Tool ===
 Use SOAP API or Java Command Line tool (which returns SOAP response)\\ Use SOAP API or Java Command Line tool (which returns SOAP response)\\
-Soap Command Line Example {{:cisco:uc:cucm:sample-command-line-withfiles.zip | here}}\\+Soap Command Line Example {{vendors:cisco:uc:cucm:sample-command-line-withfiles.zip | here}}\\
  
 ==== Cisco AXL SQL Toolkit ==== ==== Cisco AXL SQL Toolkit ====
Line 22: Line 22:
 === WSDL Example using Same SQL === === WSDL Example using Same SQL ===
 Using Same Command as above but using SOAP API Using Same Command as above but using SOAP API
 +
 +<code xml>
 +<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.cisco.com/AXL/API/11.5">
 +   <soapenv:Header/>
 +   <soapenv:Body>
 +      <ns:executeSQLQuery sequence="?">
 + <sql>
 + SELECT device.name, device.description, device.specialloadinformation, typemodel.name as model, typedeviceprotocol.name as protocol
 + FROM device, typemodel, typeclass, typedeviceprotocol 
 + WHERE device.tkmodel = typemodel.enum 
 + AND device.tkclass  = typeclass.enum 
 + AND typeclass.name = 'Phone' 
 + AND device.tkdeviceprotocol = typedeviceprotocol.enum
 + AND device.name = 'SEP001E138CAB92'
 + </sql>
 +      </ns:executeSQLQuery>
 +   </soapenv:Body>
 +</soapenv:Envelope>
 +</code>
 +
  
 WSDL - Request WSDL - Request
-<code>+<code xml>
 <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.cisco.com/AXL/API/11.0"> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.cisco.com/AXL/API/11.0">
    <soapenv:Header/>    <soapenv:Header/>
  • vendors/cisco/uc/cucm/axl.1526583369.txt.gz
  • Last modified: 2018/05/17 19:56
  • by gerardorourke