Aspose.Tasks Cloud
[Aspose.Tasks Cloud][2] is a REST API for manipulating Microsoft Project documents in the cloud. It is a true REST API that can be used with any language: .NET, Java, PHP, Ruby, Rails, Python, jQuery and many more. You can use it with any platform — web, desktop, mobile, and cloud. Aspose.Tasks Cloud allows developers to manipulate project data including Tasks, Resources, Task links, and Assignments. Aspose.Tasks Cloud is a complete solution that allows you to work with all aspects of a Project document including conversion and manipulation of project’s tasks, task links, resources, resource assignments and extended attribute data.
What’s new in the latest release
This is a major revamp release of [Aspose.Tasks Cloud SDK for Java][1]. This SDK is developed on top of [Aspose.Tasks Cloud APIs][2]. This SDK provides a complete solution for integrating Microsoft Project Document in Java. You can manipulate project data including tasks, resources, task links, and assignments in the cloud seamlessly. Source Code Repository Complete source code of this release of Aspose.Tasks Cloud SDK for Java is freely available on your favorite GitHub repository.
- Aspose.Tasks Cloud SDK for Java - v1.0.0
Setup Aspose.Tasks Cloud SDK for Java is also available as released artifacts in the [Aspose Maven Repository][3]. You can bypass GitHub source code repository and depend directly on the released artifacts from Aspose Maven Repository by adding the following repository and dependency to development environments like Eclipse or Apache Maven:
Aspose Maven Repository
<repositories>
<repository>
<id>aspose-maven-repository</id>
<name>Aspose Maven Repository</name>
<url>http://repository.aspose.cloud/repo/</url>
</repository>
</repositories>
Maven Dependency
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-tasks-cloud</artifactId>
<version>1.0.0</version>
</dependency>
Get Sources and Javadocs
Maven
$ mvn dependency:sources
$ mvn dependency:resolve -Dclassifier=javadoc
```**Eclipse IDE**
$ mvn eclipse:eclipse -DdownloadSources=true $ mvn eclipse:eclipse -DdownloadSources=true -DdownloadJavadocs=false
**pom.xml**
//Instantiate Aspose Storage Cloud API SDK StorageApi storageApi = new StorageApi(apiKey, appSID,true);
//Instantiate Aspose Tasks Cloud API SDK TasksApi tasksApi = new TasksApi(apiKey, appSID,true);
//set input file name String name = “sample-project”; String fileName = name + “.mpp”; String format = “pdf”; String storage = “”; String folder = “”;
//upload files to aspose cloud storage storageApi.PutCreate(fileName, “”, storage, new File(this.getClass().getResource("/" + fileName).toURI()));
//invoke Aspose.Tasks Cloud SDK API to convert project document to other formats ResponseMessage apiResponse = tasksApi.GetTaskDocumentWithFormat(fileName, format, storage, folder);
if(apiResponse!=null && apiResponse.getStatus().equals(“OK”)){
//download converted doc from api response
InputStream responseStream = apiResponse.getInputStream();
final Path destination = Paths.get(“c:\temp" + name + “.” + format);
Files.copy(responseStream, destination, StandardCopyOption.REPLACE_EXISTING);
}
}catch(Exception e){
e.printStackTrace();
}
Thr [product documentation][4] is available to guide developers to get familiar with the specific resources and operations within the Aspose.Tasks Cloud REST API. The Java Cloud [examples][5] are also available to guide developers to get familiar with SDK and its usage to invoke resources and operations using the Aspose.Tasks Cloud REST API.
We highly recommend visiting following links to learn more about:
* [Working with Project Documents][6]
* [Working With Tasks][7]
* [Working With Task Links][8]
* [Working With Resources][9]
* [Working With Assignments][10]
* [Working With Calendars][11]
* [Working With Outline Codes And Extended Attributes][12]
## Start a Free Trial TodayStart a free trial today – all you need is to [sign up][13] with the Aspose Cloud service. Once you have signed up, you are ready to try the powerful file processing features offered by Aspose Cloud. In case you encounter any issue while using our APIs or you have suggestion of improvement, please feel free to contact us via [free product support forum][14].
[1]: https://products.aspose.cloud/tasks/java/
[2]: https://products.aspose.cloud/tasks/curl/
[3]: https://releases.aspose.cloud/java/repo/com/aspose/aspose-tasks-cloud/
[4]: https://docs.aspose.cloud/tasks/getting-started/
[5]: https://github.com/aspose-tasks-cloud/aspose-tasks-cloud-java/tree/master/src/test/java/com/aspose/tasks/cloud
[6]: https://docs.aspose.cloud/tasks/working-with-project-documents/
[7]: https://docs.aspose.cloud/tasks/working-with-tasks/
[8]: https://docs.aspose.cloud/tasks/working-with-task-links/
[9]: https://docs.aspose.cloud/tasks/working-with-resources/
[10]: https://docs.aspose.cloud/tasks/working-with-assignments/
[11]: https://docs.aspose.cloud/tasks/working-with-calendars/
[12]: https://docs.aspose.cloud/tasks/working-with-outline-codes-and-extended-attributes/
[13]: https://dashboard.aspose.cloud/
[14]: https://forum.aspose.cloud/c/tasks/16