SkullDuggerT
SkullDuggerT

Reputation: 157

How to create Projects/Tasks for Project Server 2003 via C#?

I need to be able to create basic MS Project items (tasks, projects, resources, etc.) programmatically from my app to my Project Server 2003 install, and haven't found any good examples. Can anyone point me to some good references or have some sample code of connecting to the server and creating these items?

Upvotes: 0

Views: 357

Answers (2)

user2043
user2043

Reputation:

As far as I know, the only programatic access to PS 2003 is through PWS.

I don't know if it would work, but you could try writing a managed extension for Microsoft Project 2003 (The client application) .There is a managed API for MS Project 2003, and you might be able to leverage that to communicate with the server, get a project and update it all in code.

Good luck!

Upvotes: 0

user2043
user2043

Reputation:

Developing against Project Server 2003 isn't the friendliest experience around, but I have worked a little bit with the PDS (Project Data Services) which is SOAP based

http://msdn.microsoft.com/en-us/library/aa204408(office.11).aspx

It contains .NET samples there

Upvotes: 1

Related Questions