views:

157

answers:

3

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?

+1  A: 

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

Andrew
A: 

Yeah, I've seen that, I was looking for something a bit more...succinct? :) I didn't want to have to spend hours slogging through that to learn and piece together the entire model. And most of their examples are very granular (pretty much method descriptions), not giving the entire scope of what's needed to make a connection, grab the project you want, update it, etc. all in one place. Thanks for the help. If you come across anything more specific, please let me know.

SkullDuggerT
A: 
Andrew