Wednesday, April 20, 2011

IIS FAQ

1. Identify application pool identity in IIS7
A: Run command tool with administrtor account, navigate to C:\windows\system32\inetsrv>appcmd list WP

2. Identify application pool identity in IIS6
A: Run command tool , navigate to C:\windows\system32>cscript iisapp.vbs

3. What is application pool?
A: App pool isolates the worker process(W3wp.exe) execution. Each separate worker process provides a process boundary so that when an application assigned to one application pool, problems in other application pools do not affect the application



Monday, April 18, 2011

Share Point FAQ

1. What is hybrid execution model ?
A: Sandboxed solutions can consume fully trusted GAC based classes via fully trusted proxy. The fully trusted proxy is a controlled exit point that allows sandboxed code to make a synchronous call out to logic that executes outside of the sandbox process.
i) Hybrid execution using a Full trust proxy






ii)Hybrid execution using a declarative workflow

iii)Hybrid execution using a external lists

-----------------------------------------------------------------------------------------------------------
2. What is ISAPI Filters?
A: ISAPI(Internet Server Application Programming Interface) extensions servers as end points and ISAPI filters plays the role of interceptors. ISAPI filters are intercepts all the incoming requests targeted to IIS website.The fundamental concept is ISAPI filters provides pre-processing and post-processing of every incoming request.It provides low level functionality of the IIS like custom authentication and request logging.