Followed the steps as per the "Configuring SQL Membership Provider forms
authentication for Project Server 2007" article without success.
Thanks for any input!
(Project Server 2007 single server environment - SQL Express)
Worth rechecking the connection config in the web.config files (you should
have modified two of these files). Also, if you go to the forms auth logon
page, does it display the logon screen (http:servername/sitename:PORT).
If this works okay, then its probably an issue with the .ini file being used
with pjforms...
--
Thanks, Ben.
http://appleparkltd.spaces.live.com/
Great, thanks for pointing me back to the web.config file!! Realised that
the "data source" specification in the config file should directly refer to
the database\project and not just the default 127.0.0.1, even though it is a
single server deployment.
Again, appreciate the input.
Later,
Franklin
Rant over...
--
Thanks, Ben.
http://appleparkltd.spaces.live.com/
My understanding is that Microsoft will release a Project Server 2007 tool
to manage resources using Forms Authentication. Given the many bugs and
issues with this software, however, I don't think we should look for this
tool any time soon! :)
--
Dale A. Howard [MVP]
VP of Educational Services
msProjectExperts
http://www.msprojectexperts.com
http://www.projectserverexperts.com
"We write the books on Project Server"
"Ben Howard" <BenH...@discussions.microsoft.com> wrote in message
news:8D176763-A00F-49F4...@microsoft.com...
We have the same issue for 7 days now. Did you succeeded to have
pjFormsAuthUpgrade.exe work only with that trick ? what syntax did you used
for the whole connexion string ?
Didier
I just could not get my environmetn working with the integrated security
connection string. MsSql server kept nagging about user "." not associated
with trusted sql connection. After changing to Sql server authentication to
the aspnetdb it was working properly.
<add name="LocalSqlServer" connectionString="data source=127.0.0.1;User
Id=sa; Password=sa;Initial Catalog=aspnetdb" />
instead of
<add name="LocalSqlServer" connectionString="data
source=127.0.0.1;integratedAuthentication=SSPI;Initial Catalog=aspnetdb" />
You preferably should not use SA user as stated above. And use Servername if
SQL is on other server.
Sander
<?xml version="1.0" encoding="Windows-1252"?>
<Users xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns="http://schemas.microsoft.com/Project/Users.xsd">
<CreateUser>
<DisplayName>Administrator</DisplayName>
<EmailAddr>Te...@test.com</EmailAddr>
<LogonName>Administrator</LogonName>
<Password>Q!5@Ym<J</Password>
<Guid>7f12c81a-a9a1-4419-8deb-757ee902a4b2</Guid>
<PasswordQuestion>Please add a password question?</PasswordQuestion>
<PasswordAnswer>Please add a password question?</PasswordAnswer>
</CreateUser>
</Users>
I run the following command to update this user to the membership store
PjFormsAuthUpgrade.exe -log forms.log –url http://machinename/pwa -usersfile
users.xml
The following is the content of the log file that gets generated.
Reading users from users file C:\Program Files\Microsoft Office
Servers\12.0\Bin\users.xml.
User users read from users file.
Creating users in membership provider.
User Administrator, Password Q!5@Ym<J, Email Address: Te...@test.com created
successfully.
1 users created in membership provider.
Upgrading users in published database.
Upgrading user logon: Administrator, resid:
7f12c81a-a9a1-4419-8deb-757ee902a4b2, email: 'Te...@test.com'.
Successfully upgraded or created user Administrator.
Upgraded users in published database.
When i go to see the added users in the ASPnetDb, i see no rows in the users
table in the ASpNEtDB database. Please let me know where i am wrong