Want to know how to create an account which has all the rights that a farm administrator should have?
Henk Hooiveld has a great post about this:
It sure helped me a lot!
Want to know how to create an account which has all the rights that a farm administrator should have?
Henk Hooiveld has a great post about this:
It sure helped me a lot!
Task:
Limitation:
I first tried InfoPath forms, but I couldn’t find a way to ensure the authorizations. If I create a permissionlevel and say everyone whith this permissionlevel should be able to create items, they’re automatically able to view items. All items in the library.
The perfect solution in my opinion is to create a couple of workflowactions, which make sure the authorizations get set right after the item is created. Since I’m (unfortunately) not allowed to program anything, I had to find another solution.
My Collegeau’s attended a Sharepoint Designer training. They suggested to create a list, instead of using InfoPath and manipulate the pages of the library so that the pages (AllItems.aspx, DispForm.aspx, EditForm.aspx) could only be used by the right group of employees. In my opinion I should authorize the data (listitems), instead of the interface to be really sure no evil person could view and/or manipulate the data.
However I decided to give it a thought.
I believe there are a couple of ways to view/access data in SharePoint:
– By using SharePoint Designer It’s possible to disable this by configuring permissionlevels
– By using the SDK dll’s Someone has to get access to a front
-end server, to get execute an application to access the data, so if we make sure no authorized people have access to the front-ends, we will be safe here.
– By using the SDK Webservices Webservices are accessible by all employees, however this can be disabled by configuring the permissionlevels.
– By using the webinterface of SharePoint (duh!)
This brainstorm gave me the confidence it may be possible.
I found my solution in executing the following steps:
I believe with these steps it’s possible to create a secure form. Any thoughts on this? Let me know!
I hope I helped the community with this post.
Trying to use Single Sign On (SSO) with Database Credentials?
Read how in this great post from Nick Kellet: http://planetmoss.blogspot.com/2006/11/using-single-signon-with-database.html
To filter a CEWP by audience, don’t use the audience mechanism as intended, but use the filter.
When the audience mechanism is used, data will first be queried, next the returned items get filtered by audience. By this, the amount of items, will possibly be not the amount of items expected.
To use the filter to filter audiences, select Audience to filter upon and supply the GUID of the audience. Instead of using the operator ‘Is’, use ‘Contains’. This is because items can be mapped to multiple audiences. This mapping is done in the same field in the database. The Guids are seperated by semicolon.
Hope this helps someone.