Questions tagged [mpxj]

MPXJ is a library that provides a set of facilities to allow project information to be manipulated in Java and .NET.

MPXJ is a library that provides a set of facilities to allow project information to be manipulated in Java and .NET. MPXJ supports seven data formats, Microsoft Project Exchange (MPX), Microsoft Project (MPP, MPT), Microsoft Project Data Interchange (MSPDI XML), Microsoft Project Database (MPD), Planner (XML), and Primavera (XER and database).

102 questions
0
votes
2 answers

MPXJ export task order confuses MS Project 2010

I am writing a utility for our local development team to export project information (stories, resources, etc) from our agile management system to Microsoft Project 2010 and using MPXJ and C# to accomplish this. It was very straightforward using the…
osmedd
  • 51
  • 11
0
votes
1 answer

How to get number type column data from MS Project file?

I am using MPXJ library to get data from MS Project file (.mpp). ProjectReader reader = ProjectReaderUtility.getProjectReader(filename); ProjectFile mpx = reader.read(filename); Using ProjectFile object (mpx) I can get task, startdate, finishdate,…
Ashutosh
  • 1
  • 2
0
votes
2 answers

how to add current date as start date while generating a mpp file using java?

I am working on a small project where we need to generate a MPP plan from reference plan. In my reference mpp file i have some old date. When we are generating the new plan we are expecting the start date of the project should be current date. I…
0
votes
2 answers

how can i open a mpx project file and then save it as mpp project?

I have an application in Asp .Net Mvc3, i am using the mpxj library for to generate a project file (with extension mpx). But this file not contain dates for Tasks, then i want to open the file with Ms Project and then save with the new format (Ms…
Esneyder
  • 471
  • 1
  • 5
  • 19
0
votes
1 answer

MSPDI generate project file

My asp.net-application parse mpp-file and save data in db. Then I want to generate xml project-file with the same data using mspdi. All work good besides main first task. In process of parsing I get one task which is hidden in ms project and this…
mtkachenko
  • 5,389
  • 9
  • 38
  • 68
0
votes
0 answers

Why my method getTaskByID from ProjectFile in the library Mpxj return null?

I have read in the page http://mpxj.sourceforge.net/apidocs/net/sf/mpxj/ProjectFile.html that the method GetTaskById returns the requested task, or null if not found, but i don't know why the activity is not found. Here my code: var…
Esneyder
  • 471
  • 1
  • 5
  • 19
0
votes
1 answer

Sending Form data alongwith File Data for Content Type "application/vnd.ms-project" for MPP files

I need to send some post data along with a file stream. I'm using the following code. This code is taken from http://technet.rapaport.com/Info/LotUpload/SampleCode/Full_Example.aspx. private Stream GetPostStream(string filePath, Dictionary
Rahul Winner
  • 430
  • 3
  • 16
0
votes
1 answer

How to read MPP file into ASP.NET (C#) without any software installed

My colleague has asked me to import .MPP data into SQL Server database. Here the twist is that I DON'T have any software installed for managing .MPP file. After googling some time, I found that MPXJ can help me to some extent. Hence, I have tried to…
Ashok kumar
  • 1,593
  • 4
  • 33
  • 68
-1
votes
1 answer

Importing a MS-Project mpp file into C# .Net Framework and exporting the data into an SQLite database using MPXJ

** Hello ** I'm creating a scheduling app that takes in 2 MS-Project .mpp files (master and updated) and converts the data into SQLite tables then compares them both and displays the results and allows you to write the changes you make back to the…
Siege
  • 1
-1
votes
1 answer

How to Add List Of Project Task Details To The 'net.sf.mpxj.Task task' In C#

i have a c# object having ProjectInfo With ProjectTasks, now how can i add these projectTasks to the 'net.sf.mpxj.Task task' In C# while i am creating new object for net.sf.mpxj.Task, then it is showing error that 'the type net.sf.mpxj.Task has no…
-2
votes
1 answer

Execute Java module after python script execution?

i divided my app development into three modules which needs to be done in 2 languages(Python and java) I have developed one script in python for downloading attachments from a confluence page, But unfortunately i had to develop the other module in…
Naveen
  • 356
  • 2
  • 10
1 2 3 4 5 6
7