Hot answers tagged access-services
2
The actual details of your error will be in SharePoint's ULS log files. The key here is the correlation ID that has been listed out. You have to parse through the appropriate log file and filter down to log events that use that correlation ID. Then, within that group of items, there should be more detailed error messages about what happened.
Where to find ...
2
Yes it is. See the Office 365 page on Access Services and this MSDN Lab.
I am pretty sure they are available in the E3 and E4 plans.
A quote from the Office 365 Page:
Do you have valuable data that is stored in an old, unsupported
database, where it’s hard to query or maintain? By moving your data to
Microsoft Access 2010, and then publishing the ...
1
With SharePoint 2010 you'll likely be using IIS7 which won't have SelfSSL.exe.
Use makecert instead:
makecert -r -pe -n 'CN=my.domain.here' -b 01/01/2000 -e 01/01/2036 -eku 1.3.6.1.5.5.7.3.1 -ss my -sr localMachine -sky exchange -sp "Microsoft RSA SChannel Cryptographic Provider" -sy 12
Then edit the https binding on the website to use the new cert.
1
The error "The name of the security certificate is invalid or does not match the name of the site" comes when the 'common name' in the certificate doesn't match the address you provided in browser to access the site. When you create certificate,using SelfSSl.exe, you have to specify common name(cn), for example as:
selfssl.exe /T /N:cn=testsharepoint.com ...
1
You are confusing two things.
Kerberos versus NTLM are authentication protocols. This is how the credentials are passed and verified, not the authentication itself. Claims Based Authentication can be used with either Active Directory or Forms Based Authentication (SQL, usually) users to provide a way for the user to log into the sites. I have not heard of ...
Only top voted, non community-wiki answers of a minimum length are eligible