|
Project Information
Featured
Downloads
Links
|
The Zend Server Web API allows automation of the management and deployment of Zend Server and Zend Server Cluster Manager, and allows integration with other Zend or 3rd party software. For more details read the Zend Web API reference guide Zend Web API SDK for Java provides a Java API for Zend Server infrastructure services, making it even easier for developers to build applications that tap into the scalable, and reliable Zend Server product. Zend WebAPI for JavaThe Zend Web API SDK for Java provides a Java API for Zend Server infrastructure services, making it even easier for developers to build applications that tap into the cost-effective, scalable, and reliable Zend Server. Using the SDK, developers can build solutions on top of Zend Server configuration and management services. With the SDK for Java, developers get started in minutes with a single, downloadable package that includes the Java library, code samples, and documentation. Code Sample/**
* Create the credential object
*/
WebApiCredentials credentials = new BasicCredentials(KEY_NAME, SECRET_KEY);
/**
* Creates the Web API client object
*/
final WebApiClient webApiClient = new WebApiClient(credentials, HOST);
/**
* Retrieve system info
*/
SystemInfo systemInfo = webApiClient.getSystemInfo();
/**
* Print license info from retrieved system info
*/
System.out.println("License order number:" + systemInfo.getLicenseInfo().getOrderNumber());So what can I do with it?1. This library can easily be integrated with Hudson/Jenkins, Apache Ant or CruiseControl in order to:
2. Developers tools with Zend-Web API. 3. Mobile Application |