Aspose.Tasks Cloud
Aspose.Tasks Cloud 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. Learn More
What’s new in the latest releaseThis is a major revamp release for Aspose.Tasks Cloud SDK for Java. It covers all the [Aspose.Tasks Cloud APIs][1]. This SDK provides a complete solution for integrating Microsoft Project Document in Java using powerful [Aspose.Tasks Cloud APIs][2], so 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**
//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();
}
* [Working With Project Documents](http://www.aspose.com/docs/display/taskscloud/Working+with+Project+Documents)
* [Working With Tasks](http://www.aspose.com/docs/display/taskscloud/Working+with+Tasks)
* [Working With Task Links](http://www.aspose.com/docs/display/taskscloud/Working+With+Resources)
* [Working With Resources Working With Assignments](http://www.aspose.com/docs/display/taskscloud/Working+with+Assignments)
* [Working With Calendars](http://www.aspose.com/docs/display/taskscloud/Working+with+Calendars)
* [Working With Outline Codes And Extended Attributes](http://www.aspose.com/docs/display/taskscloud/Working+with+Outline+Codes+and+Extended+Attributes)
## Start a Free Trial TodayStart a free trial today – all you need is to [sign up][6] with the Aspose Cloud service. Once you have signed up, you are ready to try the powerful file processing features offered by Aspose Cloud.
[1]: http://www.aspose.com/docs/display/taskscloud/Home
[2]: http://www.aspose.com/cloud/project-management-api.aspx
[3]: http://maven.aspose.com/artifactory/simple/ext-release-local/
[4]: http://www.aspose.com/docs/display/taskscloud/Home
[5]: http://www.aspose.com/docs/display/taskscloud/Programmers+Guide
[6]: http://dashboard.aspose.cloud/