Hi all!

Every time a try to create a new Project I get status code= 3000
(rsVersionNotFound)

My request is:

<Request>
<ProjectCreate>
<AutoPublish>1</AutoPublish>
<Project>
<ProjectName>NewProj.Published</ProjectName>
<StartDate>20060421</StartDate>
</Project>
</ProjectCreate>
</Request>

and I'm getting this response:

<Reply>
<HRESULT>0</HRESULT>
<STATUS>3000</STATUS>
<UserName>Administrador</UserName>
</Reply>


what i'm doing wrong?

RE: PDS ProjectCreate status 3000 by clin341

clin341
Fri Apr 21 12:22:01 CDT 2006

Can't say I've tried this before but have you tried just NewProj as the
ProjectName?

CLin

"marcbb" wrote:

> Hi all!
>
> Every time a try to create a new Project I get status code= 3000
> (rsVersionNotFound)
>
> My request is:
>
> <Request>
> <ProjectCreate>
> <AutoPublish>1</AutoPublish>
> <Project>
> <ProjectName>NewProj.Published</ProjectName>
> <StartDate>20060421</StartDate>
> </Project>
> </ProjectCreate>
> </Request>
>
> and I'm getting this response:
>
> <Reply>
> <HRESULT>0</HRESULT>
> <STATUS>3000</STATUS>
> <UserName>Administrador</UserName>
> </Reply>
>
>
> what i'm doing wrong?
>
>

Re: PDS ProjectCreate status 3000 by marcbb

marcbb
Mon Apr 24 08:46:24 CDT 2006

Hi clin341,

If I put NewPorj then I get error status 1016 (rsProjectNameInvalid).
But I think that is normal because the projectname is the composition
of <nameproject>.<version>

However, thanks for your response clin341 ;-)

More ideas?


Re: PDS ProjectCreate status 3000 by Mike

Mike
Mon Apr 24 09:24:16 CDT 2006

Hi ,

Try posting on the developer newsgroup. Please see FAQ Item: 24. Project
Newsgroups. FAQs, companion products and other useful Project information
can be seen at this web address: http://project.mvps.org/faqs.htm

Mike Glen
Project MVP


marcbb wrote:
> Hi all!
>
> Every time a try to create a new Project I get status code= 3000
> (rsVersionNotFound)
>
> My request is:
>
> <Request>
> <ProjectCreate>
> <AutoPublish>1</AutoPublish>
> <Project>
> <ProjectName>NewProj.Published</ProjectName>
> <StartDate>20060421</StartDate>
> </Project>
> </ProjectCreate>
> </Request>
>
> and I'm getting this response:
>
> <Reply>
> <HRESULT>0</HRESULT>
> <STATUS>3000</STATUS>
> <UserName>Administrador</UserName>
> </Reply>
>
>
> what i'm doing wrong?




Re: PDS ProjectCreate status 3000 by marcbb

marcbb
Mon Apr 24 12:15:24 CDT 2006

Ok, finally I'have resolved the problem...

I was accessing an Spanish version of Project Server who save the
published projects with the name: "projectname.Publicada"

Then, this line:

<ProjectName>NewProj.Published</ProjectName>

had to be replaced by:

<ProjectName>NewProj.Publicada</ProjectName> (spanish form)

and now it's all OK!

Thanks a lot for your attention ;-)