{
HttpPost httppost = new HttpPost(URL_BASE+"/apps/my-imported-app");
File uploadZip = new File("src/test/resources/RestApiServiceTest/single-bladeset-single-blade-app.zip");
MultipartEntity entity = new MultipartEntity( HttpMultipartMode.BROWSER_COMPATIBLE );
entity.addPart( "file", new FileBody(( uploadZip ), "application/zip" ));
entity.addPart( "command", new StringBody( "import-motif", "text/plain", Charset.forName( "UTF-8" )));
entity.addPart( "namespace", new StringBody( "nsx", "text/plain", Charset.forName( "UTF-8" )));
httppost.setEntity( entity );
HttpResponse response = client.execute(httppost);