public void uploadStandaloneApplicationWithURLs() throws IOException {
String appName = namespacedAppName("standalone-node");
List<String> uris = new ArrayList<String>();
uris.add(computeAppUrl(appName));
List<String> services = new ArrayList<String>();
Staging staging = new Staging("node app.js", null);
File file = SampleProjects.standaloneNode();
connectedClient.createApplication(appName, staging, 64, uris, services);
connectedClient.uploadApplication(appName, file.getCanonicalPath());
connectedClient.startApplication(appName);
CloudApplication app = connectedClient.getApplication(appName);