Aspose.Tasks for Cloud offers the ability to manipulate and convert Microsoft Project MPT, MPP, MPX & Oracle Primavera XER, XML, and PrimaveraP6XML files in Java. Aspose.Tasks Cloud SDK for Java wraps the REST API to make it easier for the developers to integrate MS Project Task Management features in their own cloud-based Java applications on Linux, MacOS, Windows or Android.
Feel free to explore the Developer's Guide & API Reference to know all about Aspose.Tasks Cloud API.
- Add project assignments or delete project assignments along with their references.
- Get the project's outline codes by index & get links to all project tasks.
- Import projects from Primavera DB formats or from databases with the specified connection string.
- Get UIDs of all projects contained in the file & fetch the required assignment with the project based on UID.
- Manage project tasks, resource data, calendars & Work Breakdown Structure (WBS).
- Perform risk analysis using Monte Carlo simulation and create a report.
- Create and set project document properties & fetch all or specific existing properties.
- Get a project's extended attributes, time-scaled data, or recurring info of a specific task.
- Reschedule project tasks, dates, and other settings.
- Calculate slacks & recalculate project completion or incompletion work.
- Fetch a project document in the desired format.
- Delete project task with its related references & rebuild the task tree.
- Convert project documents to other formats.
- Manipulate task data.
- Manage project's resources.
- Handle task links & task assignments.
- Work with project's extended attributes.
- Read Microsoft Project’s document properties such as start and finish date, tasks scheduling types and so on.
- Read Microsoft Project’s Calendars and Calendar Exceptions information.
Microsoft Project MPP, XML, MPT Primavera MPX
XER, XLSX, HTML, XML, TXT, TIF, SVG, PNG, JPEG
- Enhanced reading data from Primavera-specific task's properties.
- Added new ability to get views information.
- Possibility to modify table text styles for Gantt Chart views.
- Added new ability to read Primavera-specific task's properties.
- Provided the ability to read more document properties.
- Support for the batch creation of tasks (i.e. the ability to create multiple tasks in a single API call).
- Ability to specify the non-default path for Project Server's PWA URL.
- Ability to modify timephasedData collection in assignments.
- Possibility to render comments when saving as image, HTML or PDF.
- Option to use username and password to connect Project Online (Server) instead of auth token, incase you don't have it.
- Ability to add assignments to your project file along with specifying its cost.
- Quickly adding new tasks to project, when calculation mode is set to automatic.
- Ability to add project in Microsoft Project Server.
- Added support of reading shared resource assignments.
The complete source code is available in this repository folder. You can either directly use it in your project via source code or get Maven (recommended). For more details, please visit our documentation website.
To use Aspose Tasks Cloud SDK for Java you need to register an account with Aspose Cloud and lookup/create App Key and SID at Cloud Dashboard. There is free quota available. For more details, see Aspose Cloud Pricing.
Add this dependency to your project's POM:
<repositories>
<repository>
<id>aspose-cloud</id>
<name>artifact.aspose-cloud-releases</name>
<url>http://artifact.aspose.cloud/repo</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-tasks-cloud</artifactId>
<version>24.10.0</version>
</dependency>
</dependencies>
// Start README example
// if baseUrl is null, TasksApi uses default https://api.aspose.cloud
TasksApi tasksApi = new TasksApi(clientId, clientSecret, baseUrl);
String localPath = PathUtil.get(localFolder, fileName);
String remotePath = PathUtil.get(remoteFolder, remoteName);
UploadFileRequest uploadRequest = new UploadFileRequest(Files.readAllBytes(Paths.get(localPath)), remotePath, null);
tasksApi.uploadFile(uploadRequest);
GetReportPdfRequest request = new GetReportPdfRequest(remoteFileName, ReportType.MILESTONES.getValue(), null, null);
File result = tasksApi.getReportPdf(request);
// End README example
Test contain various examples of using the SDK.
- Java 1.7+
- referenced packages (see here for more details)
All Aspose.Tasks Cloud SDKs, helper scripts and templates are licensed under MIT License.
Your feedback is very important to us. Please feel free to contact us using our Support Forums.
Website
Product Home
API Reference
Documentation
Blog
.NET | PHP | Python | Node.js | Go |
---|---|---|---|---|
GitHub | GitHub | GitHub | GitHub | GitHub |
NuGet | Composer | PIP | NPM | Go.Dev |
Product Page | Documentation | API Reference | Code Samples | Blog | Free Support | Free Trial