Deploy a new application to the server or cluster. This process is asynchronous, meaning the initial request will wait until the application is uploaded and verified, and the initial response will show information about the application being deployed. However, the staging and activation process will proceed after the response is returned. You must continue checking the application status using the applicationGetStatus method until the deployment process is complete.
Note:
This action implicitly restarts your Web server as part of the deployment process.
Version: 1.2
Required Permissions: Full
HTTP method: POST
Supported by Editions:Zend Server
Request Parameters:
Because this method is expected to contain a file upload, parameters are expected to be encoded using the ‘multipart/form-data’ content type.
Parameter |
Type |
Required |
Description |
appPackage |
File |
Yes |
The application package file. The content type for the file must be ‘application/vnd.zend.applicationpackage’. |
baseUrl |
String |
Yes |
The base URL to which the application will be deployed. This must be an HTTP URL. |
Boolean |
No |
Deprecated in 1.6 Create a virtual host based on the base URL (if the virtual host wasn't already created by Zend Server). You may only create a simple virtual host using this parameter, not an SSL virtual host. The default value is FALSE. |
|
defaultServer |
Boolean |
No |
Deploy the application on the default server. The provided base URL will be ignored and replaced with '<default-server>'. If this parameter and createVhost are both used, createVhost will be ignored. The default value is FALSE. |
userAppName |
String |
No |
Free text for a user defined application identifier. If not specified, the baseUrl parameter will be used. |
ignoreFailures |
Boolean |
No |
Ignore failures
during staging if only some servers report failures. If all servers
report failures the operation will fail in any case. |
userParams |
Hashmap |
No |
Set values for
user parameters defined in the package. Depending on package definitions,
this parameter may be required. |
Expected Response Code: 202 Accepted - For more information see Response Format.
Response Type: applicationInfo
Possible Action Specific Error Codes:
HTTP Code |
Error Code |
Description |
409 |
baseUrlConflict |
The provided base URL is already in use. |
400 |
missingParameter |
A required parameter is missing. |
400 |
invalidParameter |
A value provided for a parameter is invalid. |
400 |
missingVirtualHost |
The virtual host in the base URL does not exist. Use the createVhost parameter to create it. |
|
Request
Response
|
Important Note:
For Zend Server on Mac or Linux, this action is also available via the command line using CLI Tools. For more information see CLI Tools.