http://www.pluralsight-training.net/microsoft/
Thursday, 28 June 2012
Monday, 25 June 2012
SharePoint 2010 CAML List Joins
A customer pinged me asking about how to write a JOIN query in CAML. Honestly, I haven’t done this since in a long time, so it took awhile to shake off the cobwebs. I tried to make things explicit and easy to reproduce in your environment, please let me know in the comments of this post if something is unclear.
SharePoint 2010 adds the ability to create relational lists. To use the JOIN operator in CAML, your lists must have a defined relation. Let’s start by creating the lists and their relationships.
Creating the Lists
I first add a standard Contacts list named “DSE” and populate it with some data.
Go to the list settings for your new contact list and hover over the column names. Many SharePoint developers forget this, the name you see in the web UI is the .Title property, which may be different than the internal name that SharePoint uses (the .InternalName property of the SPField object). For a quick way to see what the actual field name is, hover over the column name and look in the address bar in your browser, and we see that the “Last Name” column is actually the “Title” field.
Next, I create a custom list named “Projects” and add a column named “Manager”. The type is a lookup column. Note the name “Manager”, we’ll refer to this name in our code.
In the additional column settings section for the “Manager” column, I set the lookup to the ID column for the DSE list, and additionally show the First Name and Last Name.
When I add a new item to the Projects list, I get a drop-down that lets me select a value from the lookup column.
The result looks like this:
Now that we have the lists, a lookup field, and some data, let’s query it.
Querying Using JOINS and SPQuery
Nothing speaks louder than a code sample. At the top of my code, I add a few using directives.
using System; using System.Linq; using Microsoft.SharePoint;
Next, the code to query the list.
The first thing to notice is the SPQuery.Joins property which lets me provide 1 or more joins for the list. The list must already have a lookup column and a relation defined to the list being joined to. Notice in the Joins property that we refer to the name that we provided when we created the lookup column, “Manager”.
The second thing to notice is the ProjectedFields property. This is where we tell SharePoint how to project the lookup columns into the result. In a contacts list, the “First Name” column has an internal name of “FirstName”. The “Last Name” column is actually the Title column (see above for how to determine the .InternalName of a field).
Finally, the ViewFields property lets us define which fields are included in the result. We use the same name that we used in the ProjectedFields property. This name could be anything, so long as the name in ProjectedFields and the name in ViewFields match.
class Program { static void Main(string[] args) { using (SPSite site = new SPSite("http://spstc.sharepoint.com")) { SPWeb web = site.RootWeb; SPQuery query = new SPQuery(); query.Joins = "<Join Type='INNER' ListAlias='DSE'>" + "<Eq>" + "<FieldRef Name='Manager' RefType='Id'/>" + "<FieldRef List='DSE' Name='ID'/>" + "</Eq>" + "</Join>"; query.ProjectedFields = "<Field Name='DSEFirstName' Type='Lookup' " + "List='DSE' ShowField='FirstName'/>" + "<Field Name='DSELastName' Type='Lookup' " + "List='DSE' ShowField='Title'/>"; query.ViewFields = "<FieldRef Name='Title'/>" + "<FieldRef Name='DSEFirstName'/>" + "<FieldRef Name='DSELastName'/>"; SPList customerList = web.Lists["Projects"]; SPListItemCollection items = customerList.GetItems(query); foreach (SPListItem item in items) { SPFieldLookupValue dseLastName = new SPFieldLookupValue(item["DSELastName"].ToString()); SPFieldLookupValue dseFirstName = new SPFieldLookupValue(item["DSEFirstName"].ToString()); Console.WriteLine("{0} {1} {2}", item.Title, dseLastName.LookupValue, dseFirstName.LookupValue); } } } } }
The results are pretty unimpressive, but it proves that our CAML query works.
http://sharepointfordeveloper.blogspot.in/2011/10/step-by-step-spquery-list-joins.html
http://www.directsharepoint.com/2011/12/display-data-by-joining-2-lists-using.html
http://sharepointfordeveloper.blogspot.in/2011/10/step-by-step-spquery-list-joins.html
http://www.directsharepoint.com/2011/12/display-data-by-joining-2-lists-using.html
Sunday, 17 June 2012
SharePoint 2010 MasterPage Branding Step by Step
Use this template to customize the MasterPage in SharePoint 2010 step by step
http://msdn.microsoft.com/en-us/library/gg430141.aspx
http://msdn.microsoft.com/en-us/library/gg430141.aspx
Thursday, 14 June 2012
Publishing an InfoPath form to Sharepoint 2010
http://office.microsoft.com/en-us/infopath-help/publish-a-form-HA101783381.aspx
Wednesday, 13 June 2012
Tuesday, 12 June 2012
How To Create SharePoint 2010 custom visual webpart properties
http://onlinecoder.blogspot.in/2011/04/custom-properties-in-sharepoint-2010_7158.html
https://www.nothingbutsharepoint.com/sites/devwiki/articles/Pages/How-To-Create-SharePoint-2010-custom-visual-webpart-properties.aspx
http://msdn.microsoft.com/en-us/library/dd584174%28v=office.11%29.aspx
https://www.nothingbutsharepoint.com/sites/devwiki/articles/Pages/How-To-Create-SharePoint-2010-custom-visual-webpart-properties.aspx
http://msdn.microsoft.com/en-us/library/dd584174%28v=office.11%29.aspx
Content Organizer for a Document Library
http://community.bamboosolutions.com/blogs/sharepoint-2010/archive/2010/11/03/sharepoint-2010-cookbook-content-organizer-for-document-library.aspx
The other thing that happens after the activation is that SharePoint will create a document library named DropOffLibrary along with a RoutingRules list. The Drop Off Library will be the default destination when a user tries to upload a document to this site. The Routing Rules list, as its name implies, contains the rules for how a document is to be routed to its final destination.
Redirect Users to the Drop Off Library: Set this
check box to force all uploads to go to the Drop Off Document Library.
When an individual document is uploaded, the document properties window
for Drop Off Library is displayed, at which point metadata properties
can be filled in and the submission process completed. After submission,
the routing rules are applied to route the document appropriately and
the user is shown the final URL for the item.
Sending to Another Site: Set this property to
allow rules to be created that direct uploads in the current site to be
sent to another site in your SharePoint Web app. The destination site
must also have the Content Organizer feature installed and activated.
You can only route documents within a SharePoint Web application.
Folder Partitioning: This features allow you to
create a threshold limit on how many documents can be stored in a
document library. SharePoint 2010 recommends a maximum of 5,000
documents per folder. Once the limit is reached, you can instruct
SharePoint to automatically create a new folder, route documents to that
new folder, and let the user know about the URLs of the final
destination.
the Content Organizer is a very cool feature in SharePoint 2010. It allows you to capture a set of standard documents and route them to the proper destination, and the end user doesn't have to worry about where it should go. This feature should be used in conjunction with Document IDs, Term Sets, and Metadata publishing in order to design an effective document management strategy for your SharePoint portal.
The other thing that happens after the activation is that SharePoint will create a document library named DropOffLibrary along with a RoutingRules list. The Drop Off Library will be the default destination when a user tries to upload a document to this site. The Routing Rules list, as its name implies, contains the rules for how a document is to be routed to its final destination.
the Content Organizer is a very cool feature in SharePoint 2010. It allows you to capture a set of standard documents and route them to the proper destination, and the end user doesn't have to worry about where it should go. This feature should be used in conjunction with Document IDs, Term Sets, and Metadata publishing in order to design an effective document management strategy for your SharePoint portal.
Monday, 4 June 2012
Search Configuration
Search Configuration
In order for your SharePoint site to be searchable, you must first create and configure a Search Service application. To do so, follow these steps:- Open Central Administration, and click on the Manage Service
Applications link, under Application Management:
- Click on the New icon in the ribbon (under the Create
section), and select Search Service Application:
- The following dialog will appear, with entry fields to enter
information needed to create the new Search Service Application. Enter a
Service Application Name, and select ‘None’ under FAST
Service Application. For the Search Service Account,
you can create a managed account to associate with the Search Service
Application (I kept the default Network Service account
selection, for simplicity).
- You will then need to create a new application pool for the Search
Admin Web Service. You can select an existing application pool
by selecting one from the dropdown list, under the Use existing
application pool selection. To create a new application pool,
select the Create new application pool selection, and enter an
appropriate name for your application pool. For the application pool
security account, you can use a predefined account (I used the default Network
Service account), or you can create a new managed account if you
wish to have greater control over the service account.
- You will also need to create an application pool for the Search
Query and Site Settings Web Service. You can select an
existing application pool by selecting one from the dropdown list, under
the Use existing application pool selection. To create a new
application pool, select the Create new application pool
selection, and enter an appropriate name for your application pool. For
the application pool security account, you can use a predefined account
(I used the default Network Service account), or you can create
a new managed account if you wish to have greater control over the
service account. Press the OK button when you are ready
to create the new search service application.
- A dialog will appear when the system has successfully created the new search service application. Press OK to close this dialog.
- Returning to Central Administration, you should now see two (2) new
service applications.
- The next step is to verify that the user(s) you selected as service
accounts have the proper permissions for Search. Scroll down the list of
service applications to find the User Profile Service Application
and click on the whitespace next to it (so the ribbon changes). Click
on the Administrators button in the ribbon, under the Operations
section.
- A dialog will appear, with a listing of all the administrator
accounts. Find the account(s) you specified for the service accounts
(when configuring the search service application), and verify that the Retrieve
People Data for Search Crawler checkbox is checked. In this
example, the NT AUTHORITY\NETWORK SERVICE account was used as the
service accounts, so that is the only account I need to verify. Press OK
when you are finished.
- The next step is to verify that the service account(s) you selected
as service accounts have read access to your SharePoint site. Go back to
Central Administration, and under Application Management,
click the Manage Web Applications link.
- Click on whitespace next to the SharePoint – 80 web
application and select the User Policy button in the ribbon
(under the Policy section).
- A dialog will appear. Verify your service account(s) have Full
Read permissions. In this example, the NT AUTHORITY\NETWORK SERVICE
account was used as the service accounts, so that is the only account I
need to verify. Press OK when finished.
Crawling Configuration
Now that the service application is properly configured, the next step is to setup the search crawl, so content is included when a user performs a search.- Open Central Administration and click your search service
application (under Application Management à Manage Service
Applications).
- You are now taken to the main area where you can specify all the
configuration information for search in SharePoint 2010, including
content sources, search crawls, search scopes, and crawl rules.
- In order to setup a search crawl for a SharePoint site, click on the
Content Sources link, under the Crawling
section (on the left hand side of the page). This page will display the
content sources for the search (Local SharePoint Sites is
created by default). Right mouse click on Local SharePoint Sites
to display the context menu, and select Edit.
- The Edit Content Source page is displayed, and this is where you
configure the content source. You are able to specify what URLs the
content source will look through when crawling (under the Start
Addresses section). You can also setup a crawl schedule for the
content source, specify priority for the content source, as well as kick
off a full crawl when you press the OK button.
Search Scopes
Search scopes define specific areas that users can search in, when performing searches from SharePoint. This gives you the flexibility to limit search results to specific content areas in your SharePoint environment.Here are the following steps to configure a search scope. I am using a scope called Data Forms as an example, so you can repeat these steps for whatever search scope you wish to configure.
- Create a content source that corresponds to the search scope you are
configuring.
- When you create the new content source, make sure you add the
subsite location (or folder) in the Start Addresses
that correspond to the area you want the search scope to crawl content
for. Also select Custom – specify page depth and server hops
options under Crawl Settings, with an unlimited page
depth, so the crawler crawls all content under the start address you
specify. Depending on how your content is structured, you may find it
more appropriate to select one of the other crawl settings options.
Press OK when finished.
- You need to create a crawl rule to include the address that
corresponds to your search scope, so the crawler knows to include the
content. Click on Manage Crawl Rule, under the Crawling
section (on the left hand side links) to navigate to the page to create
crawl rules.
- Click on New Crawl Rule, and enter the appropriate URL in
the Path entry area. Select Include all items in
this path, under the Crawl Configuration area.
Selecting Exclude all items in this path will exclude the
content in this rule. The three checkboxes are not necessary, unless you
have specific data that has special crawling considerations. Press OK
when finished.
- The next step is to create the actual search scope. Click on the Scopes
link under Queries and Results section (in the left
hand links area). This will display a page that lists all the search
scopes in the system.
- Clicking on New Scope will display a page that allows you
to create a new search scope. Give the new search scope a title. You can
leave the Target Results Page selection to the default
results page (unless you have a custom search results page created).
Click OK when finished.
- You now need to add a couple of rules to the search scope, so right
mouse click the newly-created search scope, and select Edit
Properties and Rules.
- The Scope Properties and Rules page will display. This
screen allows you to create rules that determine what content is
included or excluded for this search scope.
- Click on New Rule to create another new rule for this
search scope. For our rule, we are including all the content from the
appropriate URL that corresponds to the subsite for the search scope.
Select Web Address from the Scope Rule Type
section, and select the Folder option from the Web
Address section, and enter the appropriate URL. Under the Behavior
section, select the Include option. Press OK
when finished.
- As a last step, make sure you run full crawls on the entire site. This should update the crawled content, and you should be able to perform searches in your SharePoint environment.
Powershell commands to sharepoint 2010
Powershell Commands
MOSS - stsadm commands
SP2010- powershell scripts
stsadm –o addsolution –filename “D:\Deploy\MySharePointSolution.wsp“
We used the following command to deploy the solution once installed to a specific web
application:
stsadm –o deploysolution –name MySharePointSolution.wsp –url http://myspwebappp –
allowgacdeployment –immediate
If we would upgrade an existing solution, we would use the following:
stsadm –o upgradesolution –name MySharePointSolution.wsp –
filename “D:\Deploy\MySharePointSolution.wsp” -immediate
And finally, we used the following commands to retract and delete a specific solution from the
web application:
stsadm –o retractsolution –name MySharePointSolution.wsp –url http://myspwebapp –immediate
stsadm –o deletesolution –name MySharePointSolution.wsp
Now, let us see how we could do above operations with PowerShell. For this, we use the
following PowerShell commands:
Add-SPSolution “D:\Deploy\MySharePointSolution.wsp“
Install-SPSolution –Identity MySharePointSolution.wsp –WebApplication http://myspwebapp –
GACDeployment
If you would like to add the solution as sandboxed, you would use the Install-SPUserSolution
command instead. To upgrade a solution, we specify which solution is to be updated and with
which new solution file:
Update-SPSolution –Identity MySharePointSolution.wsp –LiteralPath “D:\Deploy\MySharePointSolution.wsp” –GacDeployment
To retract and remove a solution, we use the following commands:
Uninstall-SPSolution –Identity MySharePointSolution.wsp –WebApplication http://
myspwebapp
Remove-SPSolution–Identity MySharePointSolution.wsp
Working with features
Similarly, commands exist for working with features. The stsadm equivalents:
stsadm –o activatefeature –name MyFeatureName –url http://myspwebapp
stsadm –o deactivatefeature –name MyFeatureName –url http://myspwebapp
Needless to say, there are easy equivalents in PowerShell:
Enable-SPFeature –Identity MyFeatureNameOrGuid –url http://myspwebapp
Disable-SPFeature –Identity MyFeatureNameOrGuid –url http://myspwebapp
MOSS - stsadm commands
SP2010- powershell scripts
stsadm –o addsolution –filename “D:\Deploy\MySharePointSolution.wsp“
We used the following command to deploy the solution once installed to a specific web
application:
stsadm –o deploysolution –name MySharePointSolution.wsp –url http://myspwebappp –
allowgacdeployment –immediate
If we would upgrade an existing solution, we would use the following:
stsadm –o upgradesolution –name MySharePointSolution.wsp –
filename “D:\Deploy\MySharePointSolution.wsp” -immediate
And finally, we used the following commands to retract and delete a specific solution from the
web application:
stsadm –o retractsolution –name MySharePointSolution.wsp –url http://myspwebapp –immediate
stsadm –o deletesolution –name MySharePointSolution.wsp
Now, let us see how we could do above operations with PowerShell. For this, we use the
following PowerShell commands:
Add-SPSolution “D:\Deploy\MySharePointSolution.wsp“
Install-SPSolution –Identity MySharePointSolution.wsp –WebApplication http://myspwebapp –
GACDeployment
If you would like to add the solution as sandboxed, you would use the Install-SPUserSolution
command instead. To upgrade a solution, we specify which solution is to be updated and with
which new solution file:
Update-SPSolution –Identity MySharePointSolution.wsp –LiteralPath “D:\Deploy\MySharePointSolution.wsp” –GacDeployment
To retract and remove a solution, we use the following commands:
Uninstall-SPSolution –Identity MySharePointSolution.wsp –WebApplication http://
myspwebapp
Remove-SPSolution–Identity MySharePointSolution.wsp
Working with features
Similarly, commands exist for working with features. The stsadm equivalents:
stsadm –o activatefeature –name MyFeatureName –url http://myspwebapp
stsadm –o deactivatefeature –name MyFeatureName –url http://myspwebapp
Needless to say, there are easy equivalents in PowerShell:
Enable-SPFeature –Identity MyFeatureNameOrGuid –url http://myspwebapp
Disable-SPFeature –Identity MyFeatureNameOrGuid –url http://myspwebapp
Friday, 1 June 2012
Interview Questions in SharePoint InfoPath
>What is an InfoPath?InfoPath is an XML based electronic forms development product.
<?xml version=”1.0″ encoding=”UTF-8″?>
<!–
This file is automatically created and modified by Microsoft Office InfoPath.
Changes made to the file outside of InfoPath might be lost if the form template
is modified in InfoPath.
–>
<xsf:xDocumentClass trustSetting=”automatic” solutionFormatVersion=”2.0.0.0″
dataFormSolution=”yes” solutionVersion=”1.0.0.6″ productVersion=”12.0.0″
publishUrl=”"
name=”urn:schemas-microsoft-com:office:infopath:Unpacked:-dataFormSolution”
xmlns:xsf=”http://schemas.microsoft.com/office/infopath/2003/solutionDefinition“
xmlns:xsf2=”http://schemas.microsoft.com/office/
infopath/2006/solutionDefinition/extensions”
xmlns:msxsl=”urn:schemas-microsoft-com:xslt”
xmlns:xd=”http://schemas.microsoft.com/office/infopath/2003“
xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance“
xmlns:xdUtil=”http://schemas.microsoft.com/office/infopath/2003/xslt/Util“
xmlns:xdXDocument=”http://schemas.microsoft.com/office/infopath/2003/xslt/xDocument“
xmlns:xdMath=”http://schemas.microsoft.com/office/infopath/2003/xslt/Math“
xmlns:xdDate=”http://schemas.microsoft.com/office/infopath/2003/xslt/Date“
xmlns:xdExtension= xmlns:xdEnvironment=
“http://schemas.microsoft.com/office/infopath/2006/xslt/environment“
xmlns:xdUser=”http://schemas.microsoft.com/office/infopath/2006/xslt/User“
xmlns:q=”http://schemas.microsoft.com/office/infopath/2003/ado/queryFields“
xmlns:d=”http://schemas.microsoft.com/office/infopath/2003/ado/dataFields“
xmlns:dfs=”http://schemas.microsoft.com/office/infopath/2003/dataFormSolution“
xmlns:my=”http://schemas.microsoft.com/office/infopath/2003/myXSD/2007-03-19T15:02:59“
xmlns:xdado=”http://schemas.microsoft.com/office/infopath/2003/adomapping“>
<xsf:package>
<xsf:files>
<xsf:file name=”schema.xsd”>
<xsf:fileProperties>
<xsf:property name=”editability”
type=”string” value=”none”></xsf:property>
<xsf:property name=”namespace” type=”string”
value=”http://schemas.microsoft.com/office/infopath/
2003/dataFormSolution”></xsf:property>
<xsf:property name=”rootElement” type=”string”
value=”myFields”></xsf:property>
<xsf:property name=”useOnDemandAlgorithm”
type=”string” value=”yes”></xsf:property>
</xsf:fileProperties>
</xsf:file>
<xsf:file name=”schema1.xsd”>
<xsf:fileProperties>
<xsf:property name=”namespace” type=”string”
value=”http://schemas.microsoft.com/office/infopath/2003/ado/dataFields“>
</xsf:property>
<xsf:property name=”editability” type=”string”
value=”none”></xsf:property>
</xsf:fileProperties>
</xsf:file>
<xsf:file name=”schema2.xsd”>
<xsf:fileProperties>
<xsf:property name=”namespace” type=”string”
value=”http://schemas.microsoft.com/office/infopath/2003/ado/queryFields“>
</xsf:property>
<xsf:property name=”editability” type=”string”
value=”none”></xsf:property>
</xsf:fileProperties>
</xsf:file>
<xsf:file name=”template.xml”></xsf:file>
<xsf:file name=”sampledata.xml”>
<xsf:fileProperties>
<xsf:property name=”fileType” type=”string”
value=”sampleData”></xsf:property>
</xsf:fileProperties>
</xsf:file>
<xsf:file name=”view1.xsl”>
<xsf:fileProperties>
<xsf:property name=”lang” type=”string” value=”1033″></xsf:property>
<xsf:property name=”queryView” type=”string” value=”yes”></xsf:property>
<xsf:property name=”componentId” type=”string” value=”12″></xsf:property>
<xsf:property name=”xmlToEditName” type=”string” value=”12″></xsf:property>
<xsf:property name=”mode” type=”string” value=”1″></xsf:property>
</xsf:fileProperties>
</xsf:file>
</xsf:files>
</xsf:package>
<xsf:importParameters enabled=”yes”></xsf:importParameters>
<xsf:extensions>
<xsf:extension name=”SolutionDefinitionExtensions”>
<xsf2:solutionDefinition runtimeCompatibility=”client server”
allowClientOnlyCode=”no”>
<xsf2:offline openIfQueryFails=”yes” cacheQueries=”yes”></xsf2:offline>
<xsf2:server isPreSubmitPostBackEnabled=”no” isMobileEnabled=”no”
formLocale=”en-US”></xsf2:server>
</xsf2:solutionDefinition>
</xsf:extension>
</xsf:extensions>
<xsf:views default=”View 1″>
<xsf:view name=”View 1″ caption=”View 1″>
<xsf:mainpane transform=”view1.xsl”></xsf:mainpane>
<xsf:editing>
<xsf:xmlToEdit name=”DimCustomer_7″
item=”/dfs:myFields/dfs:dataFields/d:DimCustomer”
container=”/dfs:myFields”>
<xsf:editWith caption=”DimCustomer”
xd:autogeneration=”template” component=”xCollection”>
<xsf:fragmentToInsert>
<xsf:chooseFragment parent=”dfs:dataFields” innerFragment=”d:DimCustomer”>
<d:DimCustomer CustomerKey=”" Title=”"
FirstName=”" MiddleName=”" LastName=”"
BirthDate=”" MaritalStatus=”"
Suffix=”" Gender=”" EmailAddress=”"
AddressLine1=”" AddressLine2=”"></d:DimCustomer>
</xsf:chooseFragment>
</xsf:fragmentToInsert>
</xsf:editWith>
</xsf:xmlToEdit>
</xsf:editing>
<xsf:menuArea name=”msoInsertMenu”>
<xsf:menu caption=”&Section”>
<xsf:button action=”xCollection::insert”
xmlToEdit=”DimCustomer_7″ caption=”DimCustomer”></xsf:button>
</xsf:menu>
</xsf:menuArea>
<xsf:menuArea name=”msoStructuralEditingContextMenu”>
<xsf:button action=”xCollection::insertBefore” xmlToEdit=”DimCustomer_7″
caption=”Insert DimCustomer before” showIf=”immediate”></xsf:button>
<xsf:button action=”xCollection::insertAfter” xmlToEdit=”DimCustomer_7″
caption=”Insert DimCustomer after” showIf=”immediate”></xsf:button>
<xsf:button action=”xCollection::remove” xmlToEdit=”DimCustomer_7″
caption=”Remove DimCustomer” showIf=”immediate”></xsf:button>
<xsf:button action=”xCollection::insert” xmlToEdit=”DimCustomer_7″
caption=”Insert DimCustomer” showIf=”immediate”></xsf:button>
</xsf:menuArea>
</xsf:view>
</xsf:views>
<xsf:applicationParameters application=”InfoPath Design Mode”>
<xsf:solutionProperties
fullyEditableNamespace=”http://schemas.microsoft.com/office/
infopath/2003/myXSD/2007-03-19T15:02:59″
lastOpenView=”view1.xsl”
lastVersionNeedingTransform=”1.0.0.3″></xsf:solutionProperties>
</xsf:applicationParameters>
<xsf:documentSchemas>
<xsf:documentSchema rootSchema=”yes”
location=”http://schemas.microsoft.com/office/infopath/2003/
dataFormSolution schema.xsd”></xsf:documentSchema>
<xsf:documentSchema
location=”http://schemas.microsoft.com/office/infopath/2003/ado/
dataFields schema1.xsd”></xsf:documentSchema>
<xsf:documentSchema
location=”http://schemas.microsoft.com/office/infopath/2003/ado/
queryFields schema2.xsd”></xsf:documentSchema>
</xsf:documentSchemas>
<xsf:fileNew>
<xsf:initialXmlDocument caption=”Unpacked”
href=”template.xml”></xsf:initialXmlDocument>
</xsf:fileNew>
<xsf:query>
<xsf:adoAdapter connectionString=”Provider=SQLOLEDB.1;Integrated Security=SSPI;
Persist Security Info=True;Initial Catalog=AdventureWorksDW;
Data Source=[Source];Use Procedure for Prepare=1;
Auto Translate=True;Packet Size=4096;Workstation ID=[ID];
Use Encryption for Data=False;
Tag with column collation when possible=False”
commandText=”select "CustomerKey","Title",
"FirstName","MiddleName",
"LastName","BirthDate",
"MaritalStatus","Suffix",
"Gender","EmailAddress",
"AddressLine1","AddressLine2"
from "dbo"."DimCustomer"
as "DimCustomer"”
queryAllowed=”yes” name=”Main connection”
submitAllowed=”no”></xsf:adoAdapter>
</xsf:query>
</xsf:xDocumentClass>
What are the benefits of InfoPath 2007?
Prior to the introduction of Office 2007, the InfoPath client application, like other Office products, had to be installed on every user’s computer.
Prior to the introduction of Office 2007, the InfoPath client application, like other Office products, had to be installed on every user’s computer.
In order to develop and use a form:
1.The form had to be designed using InfoPath.
2.The resulting form template should be hosted in a network file share, or installed in individual user machines, or uploaded into a form library in SharePoint, from where users could fill the forms.
3.Filling up forms required InfoPath to be installed on the client machine.
4.Developing a connected InfoPath was complicated for end users.
5.Developers didn’t have an integrated development platform.
6.The product didn’t integrate with other Office products such as Word and Excel.
Benefits of Office 2007
This introduced a new server-side runtime to host InfoPath forms known as InfoPath Form Services. The new capabilities include:
2.The resulting form template should be hosted in a network file share, or installed in individual user machines, or uploaded into a form library in SharePoint, from where users could fill the forms.
3.Filling up forms required InfoPath to be installed on the client machine.
4.Developing a connected InfoPath was complicated for end users.
5.Developers didn’t have an integrated development platform.
6.The product didn’t integrate with other Office products such as Word and Excel.
Benefits of Office 2007
This introduced a new server-side runtime to host InfoPath forms known as InfoPath Form Services. The new capabilities include:
1.Ability to convert Word and Excel documents into InfoPath form templates.
2.With the help of InfoPath form services, a InfoPath form can be browser enabled.
3.The new InfoPath forms can be embedded in Outlook.
4.The form can be built once and rendered in different modes and devices, .i.e., Design Once.
5.Introduction of the document information panel. I.e., an InfoPath form that is hosted inside Word 2007 or PowerPoint 2007 can be used to edit document properties.
6.Introduction of logic inspector. The components which provide visual view of all the rules embedded in the form.
7.The new InfoPath forms can be published to content types.
8.Introduction of template parts, i.e., reusable code sections.
9.Introduction of an integrated development environment inside Visual Studio 2005 using Visual Studio Tools for Office.
10.The information right management can be used to protect sensitive data in the form.
2.With the help of InfoPath form services, a InfoPath form can be browser enabled.
3.The new InfoPath forms can be embedded in Outlook.
4.The form can be built once and rendered in different modes and devices, .i.e., Design Once.
5.Introduction of the document information panel. I.e., an InfoPath form that is hosted inside Word 2007 or PowerPoint 2007 can be used to edit document properties.
6.Introduction of logic inspector. The components which provide visual view of all the rules embedded in the form.
7.The new InfoPath forms can be published to content types.
8.Introduction of template parts, i.e., reusable code sections.
9.Introduction of an integrated development environment inside Visual Studio 2005 using Visual Studio Tools for Office.
10.The information right management can be used to protect sensitive data in the form.
>What is the structure of an InfoPath form template?
The InfoPath form template (.xsn file) is actually a CAB file [can also be considered a zip file] containing the different component files of which InfoPath is built. Following are some of the important files contained inside that CAB file:
The InfoPath form template (.xsn file) is actually a CAB file [can also be considered a zip file] containing the different component files of which InfoPath is built. Following are some of the important files contained inside that CAB file:
1..xsf
2..xsl
3..xsd
4..dll
5..htm and other resource files.
2..xsl
3..xsd
4..dll
5..htm and other resource files.
>What is a .xsf file? Or what is the Form Definition file [XSF file]? Or what is a manifest.xsf file?
It’s a manifest file that provides the basic definition of other form files. This file contains XML code that describes all aspects of a form. The .xsf file is automatically created by InfoPath when a new form template is created and saved in Design mode. As form designers and developers change the form template or add new features to it, InfoPath updates the .xsf file to reflect those changes.
It’s a manifest file that provides the basic definition of other form files. This file contains XML code that describes all aspects of a form. The .xsf file is automatically created by InfoPath when a new form template is created and saved in Design mode. As form designers and developers change the form template or add new features to it, InfoPath updates the .xsf file to reflect those changes.
Note: The .xsf file can also be modified directly by using any text or XML editor, such as Microsoft Notepad. However, care should be taken when making modifications to the .xsf file: if an invalid entry is made, the form that the file is associated with may be left in an unusable state. However, some customizations can be made to the .xsf file that cannot be generated in Design mode.
The .xsf file is the core file of an InfoPath form because it contains information about the form as a whole. Some of the data it contains includes processing metadata, user interface customizations, schema definitions, views, business logic declarations, event handlers, and deployment information.
The following are some of the items that the .xsf file contains:
•A unique identifier for the form
•Global metadata information about the form, including deployment and publishing information
•The XML schema definitions for the XML document that the form produces
•Definition of views and their associated user interface components (menus, toolbars, and buttons)
•Definition of editing actions that are made available using user interface components, and how their availability will be determined contextually
•Workflow and routing information
•Event handlers, data validation, and business logic that is associated with individual XML nodes of the form’s underlying XML document, or with the XML document itself
•Event handlers associated with the form as a whole
•Packaging information about all of the files contained within the form template
The .xsf file is based on the xsf namespace. Its root element is the xDocumentClass element.
•Global metadata information about the form, including deployment and publishing information
•The XML schema definitions for the XML document that the form produces
•Definition of views and their associated user interface components (menus, toolbars, and buttons)
•Definition of editing actions that are made available using user interface components, and how their availability will be determined contextually
•Workflow and routing information
•Event handlers, data validation, and business logic that is associated with individual XML nodes of the form’s underlying XML document, or with the XML document itself
•Event handlers associated with the form as a whole
•Packaging information about all of the files contained within the form template
The .xsf file is based on the xsf namespace. Its root element is the xDocumentClass element.
<?xml version=”1.0″ encoding=”UTF-8″?>
<!–
This file is automatically created and modified by Microsoft Office InfoPath.
Changes made to the file outside of InfoPath might be lost if the form template
is modified in InfoPath.
–>
<xsf:xDocumentClass trustSetting=”automatic” solutionFormatVersion=”2.0.0.0″
dataFormSolution=”yes” solutionVersion=”1.0.0.6″ productVersion=”12.0.0″
publishUrl=”"
name=”urn:schemas-microsoft-com:office:infopath:Unpacked:-dataFormSolution”
xmlns:xsf=”http://schemas.microsoft.com/office/infopath/2003/solutionDefinition“
xmlns:xsf2=”http://schemas.microsoft.com/office/
infopath/2006/solutionDefinition/extensions”
xmlns:msxsl=”urn:schemas-microsoft-com:xslt”
xmlns:xd=”http://schemas.microsoft.com/office/infopath/2003“
xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance“
xmlns:xdUtil=”http://schemas.microsoft.com/office/infopath/2003/xslt/Util“
xmlns:xdXDocument=”http://schemas.microsoft.com/office/infopath/2003/xslt/xDocument“
xmlns:xdMath=”http://schemas.microsoft.com/office/infopath/2003/xslt/Math“
xmlns:xdDate=”http://schemas.microsoft.com/office/infopath/2003/xslt/Date“
xmlns:xdExtension= xmlns:xdEnvironment=
“http://schemas.microsoft.com/office/infopath/2006/xslt/environment“
xmlns:xdUser=”http://schemas.microsoft.com/office/infopath/2006/xslt/User“
xmlns:q=”http://schemas.microsoft.com/office/infopath/2003/ado/queryFields“
xmlns:d=”http://schemas.microsoft.com/office/infopath/2003/ado/dataFields“
xmlns:dfs=”http://schemas.microsoft.com/office/infopath/2003/dataFormSolution“
xmlns:my=”http://schemas.microsoft.com/office/infopath/2003/myXSD/2007-03-19T15:02:59“
xmlns:xdado=”http://schemas.microsoft.com/office/infopath/2003/adomapping“>
<xsf:package>
<xsf:files>
<xsf:file name=”schema.xsd”>
<xsf:fileProperties>
<xsf:property name=”editability”
type=”string” value=”none”></xsf:property>
<xsf:property name=”namespace” type=”string”
value=”http://schemas.microsoft.com/office/infopath/
2003/dataFormSolution”></xsf:property>
<xsf:property name=”rootElement” type=”string”
value=”myFields”></xsf:property>
<xsf:property name=”useOnDemandAlgorithm”
type=”string” value=”yes”></xsf:property>
</xsf:fileProperties>
</xsf:file>
<xsf:file name=”schema1.xsd”>
<xsf:fileProperties>
<xsf:property name=”namespace” type=”string”
value=”http://schemas.microsoft.com/office/infopath/2003/ado/dataFields“>
</xsf:property>
<xsf:property name=”editability” type=”string”
value=”none”></xsf:property>
</xsf:fileProperties>
</xsf:file>
<xsf:file name=”schema2.xsd”>
<xsf:fileProperties>
<xsf:property name=”namespace” type=”string”
value=”http://schemas.microsoft.com/office/infopath/2003/ado/queryFields“>
</xsf:property>
<xsf:property name=”editability” type=”string”
value=”none”></xsf:property>
</xsf:fileProperties>
</xsf:file>
<xsf:file name=”template.xml”></xsf:file>
<xsf:file name=”sampledata.xml”>
<xsf:fileProperties>
<xsf:property name=”fileType” type=”string”
value=”sampleData”></xsf:property>
</xsf:fileProperties>
</xsf:file>
<xsf:file name=”view1.xsl”>
<xsf:fileProperties>
<xsf:property name=”lang” type=”string” value=”1033″></xsf:property>
<xsf:property name=”queryView” type=”string” value=”yes”></xsf:property>
<xsf:property name=”componentId” type=”string” value=”12″></xsf:property>
<xsf:property name=”xmlToEditName” type=”string” value=”12″></xsf:property>
<xsf:property name=”mode” type=”string” value=”1″></xsf:property>
</xsf:fileProperties>
</xsf:file>
</xsf:files>
</xsf:package>
<xsf:importParameters enabled=”yes”></xsf:importParameters>
<xsf:extensions>
<xsf:extension name=”SolutionDefinitionExtensions”>
<xsf2:solutionDefinition runtimeCompatibility=”client server”
allowClientOnlyCode=”no”>
<xsf2:offline openIfQueryFails=”yes” cacheQueries=”yes”></xsf2:offline>
<xsf2:server isPreSubmitPostBackEnabled=”no” isMobileEnabled=”no”
formLocale=”en-US”></xsf2:server>
</xsf2:solutionDefinition>
</xsf:extension>
</xsf:extensions>
<xsf:views default=”View 1″>
<xsf:view name=”View 1″ caption=”View 1″>
<xsf:mainpane transform=”view1.xsl”></xsf:mainpane>
<xsf:editing>
<xsf:xmlToEdit name=”DimCustomer_7″
item=”/dfs:myFields/dfs:dataFields/d:DimCustomer”
container=”/dfs:myFields”>
<xsf:editWith caption=”DimCustomer”
xd:autogeneration=”template” component=”xCollection”>
<xsf:fragmentToInsert>
<xsf:chooseFragment parent=”dfs:dataFields” innerFragment=”d:DimCustomer”>
<d:DimCustomer CustomerKey=”" Title=”"
FirstName=”" MiddleName=”" LastName=”"
BirthDate=”" MaritalStatus=”"
Suffix=”" Gender=”" EmailAddress=”"
AddressLine1=”" AddressLine2=”"></d:DimCustomer>
</xsf:chooseFragment>
</xsf:fragmentToInsert>
</xsf:editWith>
</xsf:xmlToEdit>
</xsf:editing>
<xsf:menuArea name=”msoInsertMenu”>
<xsf:menu caption=”&Section”>
<xsf:button action=”xCollection::insert”
xmlToEdit=”DimCustomer_7″ caption=”DimCustomer”></xsf:button>
</xsf:menu>
</xsf:menuArea>
<xsf:menuArea name=”msoStructuralEditingContextMenu”>
<xsf:button action=”xCollection::insertBefore” xmlToEdit=”DimCustomer_7″
caption=”Insert DimCustomer before” showIf=”immediate”></xsf:button>
<xsf:button action=”xCollection::insertAfter” xmlToEdit=”DimCustomer_7″
caption=”Insert DimCustomer after” showIf=”immediate”></xsf:button>
<xsf:button action=”xCollection::remove” xmlToEdit=”DimCustomer_7″
caption=”Remove DimCustomer” showIf=”immediate”></xsf:button>
<xsf:button action=”xCollection::insert” xmlToEdit=”DimCustomer_7″
caption=”Insert DimCustomer” showIf=”immediate”></xsf:button>
</xsf:menuArea>
</xsf:view>
</xsf:views>
<xsf:applicationParameters application=”InfoPath Design Mode”>
<xsf:solutionProperties
fullyEditableNamespace=”http://schemas.microsoft.com/office/
infopath/2003/myXSD/2007-03-19T15:02:59″
lastOpenView=”view1.xsl”
lastVersionNeedingTransform=”1.0.0.3″></xsf:solutionProperties>
</xsf:applicationParameters>
<xsf:documentSchemas>
<xsf:documentSchema rootSchema=”yes”
location=”http://schemas.microsoft.com/office/infopath/2003/
dataFormSolution schema.xsd”></xsf:documentSchema>
<xsf:documentSchema
location=”http://schemas.microsoft.com/office/infopath/2003/ado/
dataFields schema1.xsd”></xsf:documentSchema>
<xsf:documentSchema
location=”http://schemas.microsoft.com/office/infopath/2003/ado/
queryFields schema2.xsd”></xsf:documentSchema>
</xsf:documentSchemas>
<xsf:fileNew>
<xsf:initialXmlDocument caption=”Unpacked”
href=”template.xml”></xsf:initialXmlDocument>
</xsf:fileNew>
<xsf:query>
<xsf:adoAdapter connectionString=”Provider=SQLOLEDB.1;Integrated Security=SSPI;
Persist Security Info=True;Initial Catalog=AdventureWorksDW;
Data Source=[Source];Use Procedure for Prepare=1;
Auto Translate=True;Packet Size=4096;Workstation ID=[ID];
Use Encryption for Data=False;
Tag with column collation when possible=False”
commandText=”select "CustomerKey","Title",
"FirstName","MiddleName",
"LastName","BirthDate",
"MaritalStatus","Suffix",
"Gender","EmailAddress",
"AddressLine1","AddressLine2"
from "dbo"."DimCustomer"
as "DimCustomer"”
queryAllowed=”yes” name=”Main connection”
submitAllowed=”no”></xsf:adoAdapter>
</xsf:query>
</xsf:xDocumentClass>
The xsf:extensions element is used to bind the form to other platforms, like SharePoint.
>What are the Form View files in InfoPath? Or XSL files?
The .xsl file is the form view file that provide a way to represent different information, depending upon the runtime environment and other factors, including the security profile of end users. They are based on XML stylesheets that can be formatted depending upon the condition. [Conditional formatting is itself an inbuilt property of XSL.]
The .xsl file is the form view file that provide a way to represent different information, depending upon the runtime environment and other factors, including the security profile of end users. They are based on XML stylesheets that can be formatted depending upon the condition. [Conditional formatting is itself an inbuilt property of XSL.]
>What is an .XSD file in InfoPath?
It is the form schema file of InfoPath. It determines the format of data that InfoPath recognizes.
It is the form schema file of InfoPath. It determines the format of data that InfoPath recognizes.
>Where does data get stored in an InfoPath form?
Data is stored in XML files.
Data is stored in XML files.
>Explain in brief the architecture of InfoPath forms?
An InfoPath form template is actually a CAB File containing different component files.
An InfoPath form template is actually a CAB File containing different component files.
Below is a list of files which forms part of an InfoPath template.
•.xsf file: A manifest file that describes the basic definition of other form files.
•.xsl file: Defines the transformation for data into different views.
•.xsd file: Defines the data source schema.
•.dll file: Carries the custom logic built into .NET or COM.
•.htm and other resource files: Custom HTML resource files and other resources for the form.
When a form template is uploaded using Administrative deployment, the template is stored in the content database of the site. Office Forms Services provide a server-runtime environment for InfoPath Forms Services. While running on the browser, all rules, validations, and calculations are executed in the browser using client-side script.
•.xsl file: Defines the transformation for data into different views.
•.xsd file: Defines the data source schema.
•.dll file: Carries the custom logic built into .NET or COM.
•.htm and other resource files: Custom HTML resource files and other resources for the form.
When a form template is uploaded using Administrative deployment, the template is stored in the content database of the site. Office Forms Services provide a server-runtime environment for InfoPath Forms Services. While running on the browser, all rules, validations, and calculations are executed in the browser using client-side script.
All business logic is executed on the server. So when a browser requests business logic execution, a postback is executed using low cost XMLHTTP. FormsServer.aspx is an Infopath Forms Services page that accesses the form’s data from the content database and renders it to the client.
>What are the main components of InfoPath Form Services that are responsible for rendering the .xsn file on browsers?
The InfoPath Form Services consists of four components that are responsible for rendering the .xsn file on browsers:
The InfoPath Form Services consists of four components that are responsible for rendering the .xsn file on browsers:
1.ASP.NET modules: Return HTML to the browser.
2.Infopath Form Services HTTPHandlers: Forward requests from IIS to the page generator.
3.Converter: Responsible for converting the .xsn file into .aspx pages.
4.Page generator: Communicates with internal data sources, and is responsible for processing postback data from the browser and maintaining session states.
2.Infopath Form Services HTTPHandlers: Forward requests from IIS to the page generator.
3.Converter: Responsible for converting the .xsn file into .aspx pages.
4.Page generator: Communicates with internal data sources, and is responsible for processing postback data from the browser and maintaining session states.
>What are the steps to create a Template Part?
In the Design a Form dialog box, you can choose to design a template part instead of a form template. If you do this, InfoPath features that aren’t supported in template parts are either hidden or disabled so that you aren’t tempted to use them in your template part.
In the Design a Form dialog box, you can choose to design a template part instead of a form template. If you do this, InfoPath features that aren’t supported in template parts are either hidden or disabled so that you aren’t tempted to use them in your template part.
1.On the File menu, click Design a Form Template.
2.In the Design a Form Template dialog box, click Template Part.
3.In the Based on gallery, do one of the following:
?To define the data source (Data source: the collection of fields and groups that define and store the data for an InfoPath form. Controls in the form are bound to the fields and groups in the data source.), as you design the template part, click Blank.
?To use an XML document (.xml) file or an XML schema (XML schema: A formal specification, written in XML, that defines the structure of an XML document, including element names and rich data types, which elements can appear in combination, and which attributes are available for each element.) (.xsd) file as the data source for the template part, click XML or Schema.
Note: If you base your template part on an XML document or XML schema, InfoPath populates the Data Source task pane with fields (field: an element or attribute in the data source that can contain data; if the field is an element, it can contain attribute fields; fields store data that is entered into controls) and groups (group: an element in the data source that can contain fields and other groups; controls that contain other controls, such as repeating tables and sections, are bound to groups) that map to XML elements (XML element: an XML structure that consists of a start tag, an end tag, and the information between the tags; elements can have attributes and can contain other elements) in the document or schema. The data source is locked. Depending on the document or schema, you might not be able to add new fields or groups to part or all of the data source, or to change certain aspects of existing fields and groups.
2.In the Design a Form Template dialog box, click Template Part.
3.In the Based on gallery, do one of the following:
?To define the data source (Data source: the collection of fields and groups that define and store the data for an InfoPath form. Controls in the form are bound to the fields and groups in the data source.), as you design the template part, click Blank.
?To use an XML document (.xml) file or an XML schema (XML schema: A formal specification, written in XML, that defines the structure of an XML document, including element names and rich data types, which elements can appear in combination, and which attributes are available for each element.) (.xsd) file as the data source for the template part, click XML or Schema.
Note: If you base your template part on an XML document or XML schema, InfoPath populates the Data Source task pane with fields (field: an element or attribute in the data source that can contain data; if the field is an element, it can contain attribute fields; fields store data that is entered into controls) and groups (group: an element in the data source that can contain fields and other groups; controls that contain other controls, such as repeating tables and sections, are bound to groups) that map to XML elements (XML element: an XML structure that consists of a start tag, an end tag, and the information between the tags; elements can have attributes and can contain other elements) in the document or schema. The data source is locked. Depending on the document or schema, you might not be able to add new fields or groups to part or all of the data source, or to change certain aspects of existing fields and groups.
?To make your template part compatible with InfoPath Forms Services, select the Enable browser-compatible features only check box.
?Click OK.
A new template part opens in InfoPath.
?Click OK.
A new template part opens in InfoPath.
?Design your template part.
?When you finish designing the template part, on the File menu, click Save.
How to reuse Template Parts
If you want to base the design of a new template part on an existing template part, you must open the existing template part, change its name in the Template Part Properties dialog box, and then save the new template part with another, distinguishing file name. When you change the template part name in the Template Part Properties dialog box, the template part ID is updated automatically. This ID further distinguishes one template part from another.
?When you finish designing the template part, on the File menu, click Save.
How to reuse Template Parts
If you want to base the design of a new template part on an existing template part, you must open the existing template part, change its name in the Template Part Properties dialog box, and then save the new template part with another, distinguishing file name. When you change the template part name in the Template Part Properties dialog box, the template part ID is updated automatically. This ID further distinguishes one template part from another.
1.On the File menu, click Design a Form Template.
2.Under Open a form template in the Design a Form Template dialog box, click On My Computer.
3.In the Files of type list, click InfoPath Template Parts.
4.Browse to and click the template part that you want to open, and then click Open.
5.On the File menu, click Properties.
6.In the Template Part Properties dialog box, enter a new name in the Template part name box.
When you do this, the identifying text in the Template part ID box reflects the new name. The template part ID is generated automatically by InfoPath. It must be unique for each new template part that you create.
2.Under Open a form template in the Design a Form Template dialog box, click On My Computer.
3.In the Files of type list, click InfoPath Template Parts.
4.Browse to and click the template part that you want to open, and then click Open.
5.On the File menu, click Properties.
6.In the Template Part Properties dialog box, enter a new name in the Template part name box.
When you do this, the identifying text in the Template part ID box reflects the new name. The template part ID is generated automatically by InfoPath. It must be unique for each new template part that you create.
7.On the File menu, click Save As, and enter a new file name for the template part.
What is Document Information Panel?
When you create a document with Office Word 2007, Office Excel 2007, or Office PowerPoint 2007, a Document Information Panel is created for you automatically. This default Document Information Panel includes standard properties, such as Author, Title, and Subject. Alternatively, you can add custom properties by designing a Document Information Panel from scratch and then associating it with a document, or by customizing an existing Document Information Panel.
What is Document Information Panel?
When you create a document with Office Word 2007, Office Excel 2007, or Office PowerPoint 2007, a Document Information Panel is created for you automatically. This default Document Information Panel includes standard properties, such as Author, Title, and Subject. Alternatively, you can add custom properties by designing a Document Information Panel from scratch and then associating it with a document, or by customizing an existing Document Information Panel.
A document information panel is a form that is displayed within the client application, and which contains fields for the document metadata. Document information panels enable users to enter important metadata about a file anytime they want, without having to leave the Microsoft Office system client application.
>How many sections are there inside the InfoPath Form Services element?
There are five sections:
There are five sections:
1.Manage Form Templates
2.Configure InfoPath Services
3.Upload form templates
4.Manage Data Connection files
5.Manage the Web Service proxy
2.Configure InfoPath Services
3.Upload form templates
4.Manage Data Connection files
5.Manage the Web Service proxy
>How is form session state maintained?
The InfoPath Form Services can maintain data in two modes:
The InfoPath Form Services can maintain data in two modes:
1.SQL Server database: This approach is termed as using Session State Services.
2.ASP.NET view states stored in the client side: Termed form view.
Points to be noted: The application needs to be associated with the Shared Service Provider.
2.ASP.NET view states stored in the client side: Termed form view.
Points to be noted: The application needs to be associated with the Shared Service Provider.
>When to use which session state mode?
Session State Service mode [SQL Server database] is recommended for low bandwidth users, as the form view states hamper the performance for low bandwidth. Whereas, Form View can be used for environments with small groups of users.
Session State Service mode [SQL Server database] is recommended for low bandwidth users, as the form view states hamper the performance for low bandwidth. Whereas, Form View can be used for environments with small groups of users.
The administrator can also enter a value for the session data size allowed for Form View State. InfoPath Form Services will automatically revert to Session State Service when session data size exceeds the value associated with the form view mode.
Subscribe to:
Posts (Atom)