Submitting to a Database (via Web Services) in InfoPath Forms Services
If you've ever designed and deployed a form that will be frequently used or require significant data analysis, you have probably looked into maintaining data in a SQL database. With InfoPath 2003 and the InfoPath 2007 rich client, you get what you expect. You create a main database data connection to the SQL server and pick tables and columns that meet the requirements for submit functionality. When you open your form and click the "Run Query" button, you see the data pulled from the database as you'd expect. You then happily insert, update, or delete records and, when the time is right, hit "Submit". Luckily for you, the InfoPath client took care of maintaining the list of changes that you made while editing your form. With this list of changes intact, your updated data streaks back to the database to await the next query.
Enter InfoPath Forms Server... Here we don't get the change tracking for free, so we'll need to do some work to simulate change tracking outside of the form's execution. Basically, what we're going to try to accomplish is to use an intermediate web service that will handle querying and submitting the data from and to the target database. The web service will timestamp the data at query time and send the data to the form for editing. Then the form filling user will edit the data and click "Submit". When the data arrives back at the web service, we need to figure out what changed in the meantime. This means that we'll have to check to see if anything has changed in the database since the time when we queried the data. If it has, then the submitted data should be rejected and the user should re-query before re-applying her edits. If it hasn't, we'll diff the submitted data with the database data and submit the difference back to the database! Let's get started!
Create the Web Service and Setup the Database
Since the InfoPath data connection wizard is easiest to use when your web service is already established and available, let's start with creating the web service and setting up the database.
1) Download the attached archive and extract it somewhere on your hard drive
2) Create a new web site in Internet Information Services (IIS)
NOTE: IIS must be enabled as a Windows Component through "Add or remove Windows components" in the "Control Panel")
- Launch IIS ("Start" >> "Run", type 'inetmgr')
- Right-click the "Web Sites" node and select "New" >> "Web Site…"
- Click "Next >" on the first page of the wizard.
- Type a name for your web site (e.g., "IPFSDiffGram") and click "Next >"
- Type a unique port number (referred to, hereafter, as '<portNum>') for the web site and click "Next >"
- Enter the path to a folder where the site contents will be stored and click "Next >"
- Check "Read" and "Run scripts (such as ASP)" permissions and click "Next >"
- Click "Finish".
- You may want to create a new Application Pool for this web site "to make your server more efficient and reliable".
3) Create the web service
- Launch Visual Studio 2005.
- Click "File" >> "New" >> "Web Site…"
- Select "ASP.Net Web Service" in the "Visual Studio Installed Templates" section.
- In the "Location" drop-down, select HTTP and then click "Browse…"
- Select the Web Site created in step 1 and then click "Open"
- Click "OK" on the "New Web Site" dialog
4) Add the code and service asmx files to the project
- Open the Solution Explorer task pane (click "View" >> "Solution Explorer")
- Right-click the top-level project icon (labeled http://localhost:<portNum>) and select "Add Existing Item…"
- Navigate to the "DiffGramService.asmx" file and then click "Add". Refer to the files you downloaded for the contents of this file.
- Right-click the "App_Code" icon and select "Add Existing Item…"
- Navigate to the "DiffGramService.cs" file and then click "Add". Refer to the files you downloaded for the contents of this file.
5) Customize the web service code for your database
- Instance variables
- DBConnectionString -- The connection string to connect to your database.
- DBTable -- The name of the table to which the web service should connect. The table must feature a surrogate single-column primary key with an integer data type.
- ColumnNames -- An array that contains the names of the data columns in your database.
- WebMethod query parameters
DBData(parameter_list)
- parameter_list should be the columns, with appropriate System.Types to match your database
- You'll need to specify the appropriate SqlDbTypes that correspond to the columns in your database
UpdateDBData(DataSet, parameter_list)
- Do not change the DataSet parameter
- parameter_list should be the columns, with appropriate System.Types to match your database
- You'll need to specify the appropriate SqlDbTypes that correspond to the columns in your database
6) Create the database table and DML triggerThe web service includes logic to update the database table and create a DML trigger to maintain a timestamp of Last Update for each record. However, you may want to create the timestamp column and trigger yourself.
- Example SQL script to create a database named "DBTable" that is compatible with this web service is in the attached files, named "CreateDBTable.sql". The table will have a structure similar to the following:
- Example SQL script to create a DML trigger that will maintain the timestamp of last update for each record is also attached, and called "CreateDMLTrigger.sql".
7) Build the Visual Studio solution and publish the web site
Design the InfoPath Form Template
Now that we've setup our database and constructed our web service to do the querying and submitting for us, it'll be a breeze to design an InfoPath form template based on the web service.
1) Design a new, browser-enabled form template , based on the web service that will query/submit the DataSet.
Launch InfoPath and select "Design a Form Template…" on the "Getting Started" dashboard dialog.
Check "Enable browser-compatible features only" (required only for browser-enabled form templates)
Select the "Web Service" icon and click "OK".
Select "Receive and submit data" and click "Next >"
Type the WSDL URL for your web service (e.g., http://<server>:<port>/DiffgramService.asmx?WSDL) and click "Next >"
Select the web method that will return the DataSet and click "Next >".
Click "Next >" on the DataSet change-tracking page.
Click "Next >" to name the query data connection and move on to define the submit data connection.
If the submit WSDL URL is different than the query WSDL URL, enter it here and click "Next >". Else, just click "Next >".
Select the web method to which the DataSet will be submitted and click "Next >".
Select the DataSet parameter in the "Parameters" listView.
In the "Parameter options" section, click the button next to the "Field or group" field.
In the "Select a Field or Group" dialog that pops up, expand the "dataFields" node until you see the node with the name of the DataSet (it's the parent of the repeating "(Choice)" node).
Select the DataSet node and click "OK"
If your web service takes parameters to constrain the select command, map these parameters to the queryFields generated during the creation of the query connection.
Click "Next >" on the submit parameter mapping page.
Click "Finish" to name the submit data connection and finish the Data Connection Wizard.
2) Set the default values for the "ID" and "QueryTime" fields
- In the InfoPath Designer window, click the "View" menu and select the "Data Source..." option.
- In the "Data Source" taskpane, expand the "dataFields" node completely.
- Double-click the "QueryTime" node to open the properties dialog.
- Type "1/1/1900 12:00:00 AM" (without the quotes) in the "Value" field in the "Default Value" section and click "OK"
- Repeat steps 2.a-2.c for the "ID" field.
- Type "-1" (without the quotes) in the "Value" field in the "Default Value" section and click "OK"
3) Insert the controls into the View.
- Click inside the dataFields controls area (it says "Drag data fields here" if you haven't clicked there)
- Click the "Insert" menu and select the "Repeating Table..." option.
- In the "Repeating Table Binding" dialog, completely expand the "dataFields" node.
- Select the group node that has the same name as your database table and click "Next >"
- For each of your data columns (e.g., 'Column1', ..., 'Column5'), select the column name on the left, and then click the "Add >>" button to make the column show up in the Repeating Table.
NOTE: If you include the 'ID' column, the user will be able to edit the values, and the DataSet may not be validated or merged correctly. - Click "Finish" to accept the repeating table binding and insert the repeating table into the View.
4) Publish the form template to your InfoPath Forms Server
At this point, you have a form template that will work correctly when you open it in the InfoPath rich client. But this post is all about getting things to work correctly in the InfoPath Forms Server. So you'll need to configure your data connections to work in the browser by converting the main query and submit data connections to use Universal Data Connection (UDC) files in a Data Connection Library (DCL). Now you should be all set. The web service will query and submit the data to the database, and we'll make our best attempt at a diff of the database data against the submitted data.
From here on out, it's up to you. If you want to, for example, modify the database structure or change the way the trigger works, then you're going to need to modify the web service code. You'll also need to use "Convert Main Data Source" to update your form template whenever you modify your web service. You might also want to add support for multiple tables. All this will take some exploration of ADO.Net DataSets, but it is a reasonable exercise as long as you're comfortable writing managed code.
Forrest Dillaway
Software Design Engineer in Test
SubmitToDatabaseFromServer.zip
Comments
Anonymous
February 06, 2007
Loving this post. Keep up the good work!! :-)Anonymous
February 06, 2007
Great post. Everything works great in the InfoPath client, but not from Forms Services. The form is full trust and is an administrative form. Both of the data connections are UDC files and I enabled cross-domain data access. The query works great. The submit is giving me errors. Any ideas? Here is what I see in the SharePoint logs: Unhandled exception when rendering form on postback System.IndexOutOfRangeException: Index was outside the bounds of the array. at Microsoft.Office.InfoPath.Server.SolutionLifetime.WebServiceHelper.HandleSubmitDataSetInput(XPathNavigator inputSubDOM, Boolean[] useDataSets, XmlDocument soapRequest, Solution solution, String name) at Microsoft.Office.InfoPath.Server.SolutionLifetime.WebServiceHelper.PrepareSoapRequest(XPathNavigator inputSubDOM, Boolean[] inputUseDataset, Solution solution, String name, Boolean useSelf) at Microsoft.Office.InfoPath.Server.SolutionLifetime.WebServiceHelper.ExecWebRequestSync(XPathNavigator inputSubDOM, Boolean[] inputUseDataset, XPathNavigator resultsSubDOM, Boolean resultUseDataset, XPathNavigator errorsSubDOM, Uri serviceUrl, Uri soapAction, Int...Anonymous
February 09, 2007
Thanks for your response! I'm glad to see someone's trying this out! Anyway, as for the error you see on postback, I couldn't reproduce it with a simple test, so it looks like there's something about your DataSet that the Forms Server doesn't like. It's possible this has to do with the values you entered into the dataFields, but I'd have to see your source files to diagnose it and see if I could replicate it locally. On your side, I'd try tweaking the data types of the database column (and modifying the corresponding web service code) to find out if serialization is working correctly. I'd love to investigate your failure. It would be great if you could send me:
- A copy of your form template
- Your web service code
- The asmx file
- The 2 sql scripts you used to create your DB table and the DML trigger
- Version/SKU information about your Forms Services installation
- A description of the data you entered into the form template prior to submitting
- Any other environment-specific detail you think is relevant. My (clumsily encoded) e-mail is “For[DELETEME – fighting spam]rest[dot]dilla[DELETEME – fighting spam]way [AT] MICROSOFT [DOT] COM” Thanks!
Anonymous
March 05, 2007
I am having trouble getting VS 2005 to publish the site. I keep getting the error "js-forms-webservice:8080/" is not a valid virtual path. After initially setting the port number to 8080 that path should connect to the IPFSDiffGram directory under wwwroot. I assume VS connected sucessfully to it when creating the new project. I did a little research and found a similar issue noting a VS bug prior to SP1 so I have now updated to SP1 but am still getting the error. Any ideas? ThanksAnonymous
March 12, 2007
I'm not sure how to reproduce the error you're seeing, but could you elaborate on the steps you're following? Following these steps, I don't see any failures:
- Create the web site in IIS, with local path set to "C:InetpubwwwrootIPFSDiffGram" and port 4712.
- Create a separate app pool for the web site.
- Launch VS and create a new web site on local IIS under the site you just created.
- Add the cs and asmx files.
- Build the project. At this point, I can access the web service via the URL: http://localhost:4712/DiffgramService.asmx. Are you seeing different results in following those steps? "Publishing" the web site isn't strictly necessary when you're designing the web site on your local server. Thanks, Forrest
Anonymous
March 25, 2007
Great post, great blog ! Finally some good / useful information about InfoPath!! :) I'm running the sample (in exact the same configuration as the sample; same db names etc). But I keep getting 'The exeption: The select command string must start with the 'SELECT' keyword! I've added the selectCommandString to the exeption string so I can see what the commandString actualy is.. and that is: empty.. -- throw new Exception("The, " + selectCommandString + ", select -- I've looked in the code where the selectCommandString is beeing filled.. but I can's seem to find it ...! Thanks in advance!! ShuwiAnonymous
April 25, 2007
Great - I'm almost there, but getting the same error as rgardner i.e. Index out of bounds when submitting via a browser. Works fine in rich-client! I have copied exactly what you had i.e. same db, table, username, password (although I had to change your code which had the columns called data1 etc - changed them to Column1 etc). I'm guessing it's some configuration issue with SharePoint server. Any ideas? Regards, ColinAnonymous
May 02, 2007
Thank you for the great info. If the submit process is an SQL insert, is there a way to return the ID column from the insert procedure and place it in a field on the form? TIA, TerryAnonymous
May 11, 2007
After long absence... Shuwi, it looks like you're using the "DBDataDynamic" WebMethod. This was my best attempt on short notice to provide a scalable WebMethod that could accept an arbitrary connection string and command, and then query and submit valid recordsets to the database table. However, for most purposes, it's a lot easier to just use the "DBData" WebMethod, which takes a static number of query parameters corresponding to fixed columns in your DB table. Try that one before you dive too deeply... Cterry and Rgardner, we've achieved an internal repro environment for the IndexOutOfRangeException, so we'll take a look and see what we can find out. For now, I don't have any further info. Terry G Phillips, you can get the updated ID by simply executing the query data connection, constraining the recordset by passing queryFields that will return the record you're looking for. Then you copy the ID value, using Rules or custom code in your form template, to move it to a target field.Anonymous
May 11, 2007
Oh, and Shuwi, the strings passed to the web service are populated with the values of the "dfs:queryFields" xml nodes in your form template. It's a good idea, when using the dynamic WebMethod, to set a default value for the queryFields to specify the connection string, command, etc.Anonymous
May 11, 2007
Okay, Cterry and Rgardner, I think we've narrowed down the issue on our side. Shuwi, this affects you as well. SHORT ANSWER: Map all submit parameters, not just the DataSet: Revisit step 15 for designing your submit data connection: If your web service takes parameters to constrain the select command, map these parameters to the queryFields generated during the creation of the query connection. LONG ANSWER: In the screenshot of the submit data connection parameter mapping page in the data connection wizard, I only show the DataSet parameter for the web service. That screenshot is actually out of date relative to the source for the web service. In the attached files, you'll see that the "UpdateDBData" WebMethod actually takes query parameters, in addition to the data being submitted. This is to allow the web service to restrict the result set, being queried and successively submitted, to a subset of the data in the table. Now, practically, that means you'll actually see "Column1", ..., "Column5" in the data connection wizard. For browser-enabled form templates rendered in the browser, you must map the other (non-dataset) parameters to their corresponding queryFields. The rich client can handle it if you don't map the parameters, and empty strings are sent in place of the queryFields values. IPFS, on the other hand, requires that the mappings be defined. Thanks, ForrestAnonymous
May 27, 2007
Great post. Everything works well! spent a lot of time:)Anonymous
June 04, 2007
The comment has been removedAnonymous
July 02, 2007
The comment has been removedAnonymous
July 19, 2007
Hi Forrest, Can you give me some guidance on how to do this for multiple tables that have parent-child relationship please?? Also, what if my table does not contain LastTimeStamp, how would I check if the data were changed? Where should the modifications be? I'm not really good at C# .... :( Thanks a lot for any help.Anonymous
July 23, 2007
Hi Kayday, I don't have a code sample to offer, so I'll just throw out some ideas for logic you might follow to accommodate child tables. There is a lot of room for personal preference when determining how tables should interact, but I'll offer a very simple way. For the sample code I provided, I assume that you've setup your table with a surrogate primary key. Now, assuming that you link your child table to your parent table, you would probably modify my merging code to do something like this (I'll treat the specific case of 1 parent, 1 child):
- Query the latest DataSet from the parent table.
- Loop through the parent DataSet using the logic provided in the code sample to flag inserts/updates/deletes.
- In the loop body, after you've flagged the change for the current record in the parent's DataSet; query the child table, constraining the query to return only those records in the child table that match the parent record's surrogate key.
- Loop through the resultant child table recordset and diff the child DataSet rows against those queried from the DB (using the same logic provided in the original code sample.) So the pseudo-code would look something like this: Query Parent table Loop through parent table recordset to compare against submitted parent DataSet Mark the current parent record as insert/update/delete Query child table records that correspond to the current parent records surrogate primary key value. Loop through child table recordset to compare against submitted child DataSet Mark the current child record as insert/update/delete End loop End Loop That pseudo-code lends itself to recursing through multiple levels of a parent-child hierarchy. You'll need to decide whether records in the child table should be deleted whenever the corresponding record in the parent table is deleted. In other words, is the parent-child relationship a true foreign-key relationship, or is the relationship purely virtual, for the purpose of convenience? Hope that helps! Thanks, Forrest
Anonymous
September 10, 2007
walmart back to school suppliesAnonymous
September 11, 2007
Great Post! Im having a problem though: Ive managed to configure the Web Service for my Database. When i create the infopath form i can only put the 'data' controls from the dbdataset into a 'repeating' section. The form i wish to design should just have one set of fields (non repeating) that submit to a database. How can i change this? Thanks, AlexAnonymous
September 19, 2007
I'm sorry to cross post, and I mentioned this in another blog entry. I am using SQL Server Native XML Web Services to act as a secondary datasource to InfoPath. While this works great in the InfoPath rich client, it fails in InfoPath Forms Services and everything I have tried has led me no closer to a solution. I am puzzled by this and I'm not sure why this is a problem, is this not just SOAP and standard wsdl at play here. At this point, I am actually looking for a easy answer :). Meaning, does anyone know if this is even possible through InfoPath Form Services? Or is this a current limitation? I have done tons with Web Services before and I've never had an issue like this. If the answer is, no, its not possible, are there any alternatives, besides writing my own web service to feed into InfoPath. Please note at this point, just confirmation (either way, yes its possible, no its not supported) would be very helpful. Thanks again MKAnonymous
November 21, 2007
The comment has been removedAnonymous
July 18, 2008
Ok, I know how far behind I am and how new I am to development based on the age of the blogs I use to solve my issues. I have set up MOSS 2007 Enterprise on Windows Server 2003 with SQL 2005 Advanced as the Database for the whole shebang. All is good. I discovered Infopath and have written a form that works fine with the infopath client: on to submitting via web services through a browser enabled form ( no infopath client. ) In order to get the concept, I created a local database called test with your SQL scripts, populated a few rows and with Visual Studio 8 set up the web service, compiled it ( no changes ) and set off to design a test form. I got to step 10 ( my url http://infincomd30/infopathwebservice/infopathwebservice.asmx?WSDL came up fine (I changed IPFSDiffGram to infopathwebservice throughout the webservice ) and gave me the 4 operation choices. When I pick the DBData operation and click next, I get the 5 parameters tns:data1 - 5, but when I poulate them I get the following SOAP error "unable to create a schema ... The SOAP response indicates that an error occurred on the server: System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> System.Data.SqlClient.SqlException: An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server) at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection) at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj) at System.Data.SqlClient.TdsParser.Connect(ServerInfo serverInfo, SqlInternalConnectionTds connHandler, Boolean ignoreSniOpenTimeout, Int64 timerExpire, Boolean encrypt, Boolean trustServerCert, Boolean integratedSecurity, SqlConnection owningObject) at System.Data.SqlClient.SqlInternalConnectionTds.AttemptOneLogin(ServerInfo serverInfo, String newPassword, Boolean ignoreSniOpenTimeout, Int64 timerExpire, SqlConnection owningObject) at System.Data.SqlClient.SqlInternalConnectionTds.LoginNoFailover(String host, String newPassword, Boolean redirectedUserInstance, SqlConnection owningObject, SqlConnectionString connectionOptions, Int64 timerStart) at System.Data.SqlClient.SqlInternalConnectionTds.OpenLoginEnlist(SqlConnection owningObject, SqlConnectionString connectionOptions, String newPassword, Boolean redirectedUserInstance) at System.Data.SqlClient.SqlInternalConnectionTds..ctor(DbConnectionPoolIdentity identity, SqlConnectionString connectionOptions, Object providerInfo, String newPassword, SqlConnection owningObject, Boolean redirectedUserInstance) at System.Data.SqlClient.SqlConnectionFactory.CreateConnection(DbConnectionOptions options, Object poolGroupProviderInfo, DbConnectionPool pool, DbConnection owningConnection) at System.Data.ProviderBase.DbConnectionFactory.CreatePooledConnection(DbConnection owningConnection, DbConnectionPool pool, DbConnectionOptions options) at System.Data.ProviderBase.DbConnectionPool.CreateObject(DbConnection owningObject) at System.Data.ProviderBase.DbConnectionPool.UserCreateRequest(DbConnection owningObject) at System.Data.ProviderBase.DbConnectionPool.GetConnection(DbConnection owningObject) at System.Data.ProviderBase.DbConnectionFactory.GetConnection(DbConnection owningConnection) at System.Data.ProviderBase.DbConnectionClosed.OpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory) at System.Data.SqlClient.SqlConnection.Open() at infopathwebservice.GetDBData(Object[] queryParameters, SqlDbType[] parameterTypes) at infopathwebservice.DBData(String data1, String data2, String data3, String data4, String data5) --- End of inner exception stack trace --- My limited experience fails me on customizing the Instance Variables and the Webmethod query parameters ( which i did not do hoping that I was ok with supplied code just the test database ). I am familiar with connection strings etc. Could you please give me an example of declaring and/or using the Instance variables and Webmethod query parameters? Thanks, John KoetherAnonymous
February 05, 2009
The comment has been removedAnonymous
February 05, 2009
Hi Gandalf, A question: are there currently any records in your SQL Server table? If not - for testing purposes please add a record to the table, test again and let us know if that worked or you still received the error. Thanks! ScottAnonymous
February 05, 2009
Thanks Scott for your answer ! Yes i have 3 record in my sql table. When i use the receive methode, the 3 records appears. I have drop en recreate my table, but i have always the errors message. (Just a another question, with this example, is it possible to write directly in my table ?) Have a nice day, GandalfAnonymous
February 11, 2009
Hi Gandalf, Sorry for the delay... By chance, have you walked through creating this process using the exact steps/samples/files, etc. in this blog post? Do these steps work for you? In regard to your other question of writing directly to your table, I am not sure I understand the question. ScottAnonymous
February 24, 2009
Hi Guys, Great example. I have followed through your instructions closely however when I reach step 6 InfoPath throws an error message "cannot use the web service because the method does not provide valid XML data". I am using the method UpdateDBData. I have made all the appropriate changes in the .cs file and if I build the solution in VS2005 it does run so I don’t think it’s an issue with the code. Also the database is created and the DML trigger is working. So everything seems to be in place for this example to work, just InfoPath seems to think it is not receiving valid XML. It would be cool if you could shed some light on this for me. Thanks, Matt.Anonymous
March 06, 2009
The comment has been removedAnonymous
April 23, 2009
The comment has been removedAnonymous
April 24, 2009
The comment has been removedAnonymous
June 15, 2009
Hi Guys, I am a newbie doing this. How do I customize the web service for my database? Which form do I go to? What do I put? Please help.. or if you have any tutorials, please help! Thanks,Anonymous
June 16, 2009
Hi Pls Help. I got " Could not open web service" error when trying to configure infopath form. it says not enugh space is available to process the command.Anonymous
August 23, 2010
Is this still valid today? There seems to be conflicting information from MS regarding the use of SOAP and XML web services to access SQL databases. i.e. Native SOAP web services being deprecated in SQL Server 2008 R2. In addition, I don't see the ASP.NET Web Service template in VS 2010 Ultimate. I want to submit InfoPath web form data in SharePoint 2010 to a separate SQL database for analytics. Is this the recommmended approach in August of 2010?Anonymous
October 05, 2010
Hi Forrest I got a question concerning Infopath2010... Is there a way to write to SQL using Infopath WITHOUT a Sharepoint...? I used Infopath 2003 for sending todo-list from our project managers to one of our dev teams and this did work pretty fine. Now I was asked to connect to a SQL DB 2005 and i'm not sure if this is possible without a Sharepoint... Thanx!Anonymous
February 13, 2011
It seems like a TON of blogs from InfoPath 2003 and 2007 were copied into the InfoPath 2010 - but are they still relevant?Anonymous
April 09, 2012
Website Helpline, Website Support +91-8010010000 Website Helpline India is a total website support company, Offer website support services under an annual contract at extremely affordable rates, We offers end-to-end website solutions which includes Domain Registration, Website Hosting, Website Design, Website Maintenance. Keywords:- Website Helpline, Website Support, Website Maintenance, Website Helpline Solution, Website Helpline Service, Website Redesign Helpline, Website Supports, Website Help Support, Website Design Company, Web Based Applications, SEO Support India, Website Redesign Contact US:-> Website Support Call Now- +91-8010010000 http://www.websitehelpline.inAnonymous
February 27, 2013
Is there an update of this article that covers Infopath 2010, VS 2010 / 2012 and SQLServer 2008/2012? Thanks SimonAnonymous
March 19, 2013
thanks for the post. Its good pointer.