<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>InfoPath Data Connections: Part 1</title><link>http://blogs.msdn.com/infopath/archive/2007/03/21/infopath-data-connections-part-1.aspx</link><description>Summary This article is part of a series of documents explaining the Data concept in Microsoft Office InfoPath. This particular article is an overview of how Data Connections work in InfoPath. The intended audience is those who are new to InfoPath and</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>re: InfoPath Data Connections: Part 1</title><link>http://blogs.msdn.com/infopath/archive/2007/03/21/infopath-data-connections-part-1.aspx#1925562</link><pubDate>Wed, 21 Mar 2007 16:27:21 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1925562</guid><dc:creator>DasGalloway</dc:creator><description>&lt;p&gt;Thanks Patrick! A good overview of data connections, and the definitions to distinguish between XML forms and XSN form templates will be especially useful to those just beginning to use Infopath.&lt;/p&gt;
</description></item><item><title>re: InfoPath Data Connections: Part 1</title><link>http://blogs.msdn.com/infopath/archive/2007/03/21/infopath-data-connections-part-1.aspx#1951495</link><pubDate>Mon, 26 Mar 2007 14:02:25 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1951495</guid><dc:creator>frankl</dc:creator><description>&lt;p&gt;Hello Patrick,&lt;/p&gt;
&lt;p&gt;Is it possible to create a template for a form that uses a RELATIVE url to a data source.&lt;/p&gt;
&lt;p&gt;In your example: &lt;/p&gt;
&lt;p&gt;I have several sites with a formlibrary to which I want to publish the form. Each site has it's own list/datasource of programming languages.&lt;/p&gt;
&lt;p&gt;(actually I have a Site template that should contain the form and secondairy datasource)&lt;/p&gt;
</description></item><item><title>re: InfoPath Data Connections: Part 1</title><link>http://blogs.msdn.com/infopath/archive/2007/03/21/infopath-data-connections-part-1.aspx#2076974</link><pubDate>Tue, 10 Apr 2007 23:23:20 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2076974</guid><dc:creator>Nick Dallett</dc:creator><description>&lt;p&gt;There is no way to do this without writing code. &amp;nbsp;The two methods of doing this with code are:&lt;/p&gt;
&lt;p&gt;1. set up the connection as a Web service call to the lists web service on SharePoint. &amp;nbsp;Use custom code in your form template to set the URL of the Web service at runtime based on the URL the form was opened from, and then execute the Web service connection.&lt;/p&gt;
&lt;p&gt;2. When the form is hosted in the XmlFormView control, either in a client application or on MOSS, you can set up your data connections to specify that a portion of the serviceURL of the Web service can be dynamically replaced at runtime. &amp;nbsp;This requires adding an element to the extensions section of manifest.xsf:&lt;/p&gt;
&lt;p&gt;&amp;lt;xsf:extensions&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;xsf:extension name=&amp;quot;SolutionDefinitionExtensions&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;&amp;lt;xsf2:solutionDefinition compatibility=&amp;quot;RICHCLIENT REACH&amp;quot; hash=&amp;quot;...&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsf2:dataConnections&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsf2:webServiceAdapterExt ref=&amp;quot;ws&amp;quot; trackDataSetChanges=&amp;quot;yes&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;xsf2:relativeQuery replace=&amp;quot;&lt;a rel="nofollow" target="_new" href="http://janky/poltergeist/floop&amp;quot;"&gt;http://janky/poltergeist/floop&amp;quot;&lt;/a&gt; /&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/xsf2:webServiceAdapterExt&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/xsf2:dataConnections&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;&amp;lt;/xsf2:solutionDefinition&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;/xsf:extension&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;/xsf:extensions&amp;gt;&lt;/p&gt;
&lt;p&gt;The xsf:relativeQuery element specifies a substring of the ServiceURL which will be replaced at runtime by the value of the DataConnectionBaseUrl property on the XmlFormView control. &amp;nbsp;Your hosting page or hosting application needs to set the DataConnectionBaseUrl property before the form is loaded.&lt;/p&gt;
&lt;p&gt;This is difficult to do for a SharePoint list, since we use the GUID of the list, rather than the URL, to identify the list to query. &amp;nbsp;This may change in a future version.&lt;/p&gt;
&lt;p&gt;Are you looking for the ability to query relative to the SharePoint site, or the SharePoint site collection? &amp;nbsp;Knowing this would help us understand how best to implement the relative URL functionality if we add it in a future release. &lt;/p&gt;
</description></item><item><title>re: InfoPath Data Connections: Part 1</title><link>http://blogs.msdn.com/infopath/archive/2007/03/21/infopath-data-connections-part-1.aspx#3233502</link><pubDate>Mon, 11 Jun 2007 21:21:43 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3233502</guid><dc:creator>gillrajb</dc:creator><description>&lt;p&gt;Hi I have set up a access database on a doc library and a infopath form based on this db published to a nearby folder. When I go to fill out the form, and it opens, I hit submit. But then it gives me a JET DB initilization form with login of admin and a blank pass. When I hit ok, it gives me a error saying&lt;/p&gt;
&lt;p&gt;infopath The Microsoft Jet database engine cannot open the file '\\207.245.47.37\sites\Safety_and_Training\Experimental\db1.mdb'. It is already opened exclusively by another user, or you need permission to view its data.&lt;/p&gt;
&lt;p&gt;For some reason, once or twice its randomly been able to submit succcessfully but I havnt been able to reproduce the situation. Are there files that i am missing? any permissions that I need to check? The access database only has a admin and no password account. PLEASE HELP ME ive been working on this for ages! If you know a solid workaround with little programming let me know.&lt;/p&gt;
</description></item><item><title>re: InfoPath Data Connections: Part 1</title><link>http://blogs.msdn.com/infopath/archive/2007/03/21/infopath-data-connections-part-1.aspx#3562867</link><pubDate>Wed, 27 Jun 2007 12:45:51 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3562867</guid><dc:creator>engy_mamdouh</dc:creator><description>&lt;p&gt;I need to make a form that should work in the browser so i lost many control options and I need to get records from the DB according to the logged user. How to be able to bind non repeating controls to datasource ???? Any Guidance would be appreciated. Thanks in advance.&lt;/p&gt;
</description></item><item><title>re: InfoPath Data Connections: Part 1</title><link>http://blogs.msdn.com/infopath/archive/2007/03/21/infopath-data-connections-part-1.aspx#4048249</link><pubDate>Wed, 25 Jul 2007 22:13:58 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4048249</guid><dc:creator>sunshyne17</dc:creator><description>&lt;p&gt;Can anyone help me? &lt;/p&gt;
&lt;p&gt;New to this blog. I have an infopath form tied to an access database. Only thing is, any time I add a control, it forces me to bind it to the database. Most times, this is ok. other times, I am trying to create the optional sections.&lt;/p&gt;
&lt;p&gt;for example: &lt;/p&gt;
&lt;p&gt;O single day event&lt;/p&gt;
&lt;p&gt;O multi-day event&lt;/p&gt;
&lt;p&gt;How do i unbind the radio buttons above, from the database? &amp;nbsp;&lt;/p&gt;
</description></item><item><title>re: InfoPath Data Connections: Part 1</title><link>http://blogs.msdn.com/infopath/archive/2007/03/21/infopath-data-connections-part-1.aspx#4417215</link><pubDate>Thu, 16 Aug 2007 18:58:52 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4417215</guid><dc:creator>chenhuyr</dc:creator><description>&lt;p&gt;I need some help for a project I am doing.&lt;/p&gt;
&lt;p&gt;I am using infopath2007 with an Access2007 database.&lt;/p&gt;
&lt;p&gt;I have 3 tables&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;1)tblInformation (Name, ID, startdate...) &amp;nbsp;//non-repeating&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;2)tblFunding &amp;nbsp; &amp;nbsp; &amp;nbsp; (ID, Participants, Amount...) &amp;nbsp; //repeating&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;3)tblApproval &amp;nbsp; &amp;nbsp;(ID, Name, Position, Status...) &amp;nbsp;//repeating&lt;/p&gt;
&lt;p&gt;I want all these related by ID in a One to Many relationship. &lt;/p&gt;
&lt;p&gt;(Unfortunately, Infopath wont let me submit data if fund and approve dont have primary keys so I made a unique index# for each table and related those aswell.)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;tblInformation -1:M- tblFunding&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;tblInformation -1:M- tblApproval&lt;/p&gt;
&lt;p&gt;I have 1 nonrepeating section for Info and 2 repeating sections for funding and approval. &lt;/p&gt;
&lt;p&gt;Problem: When I try to submit with a section repeated more than once i get a 'Empty row cannot be inserted. Row must have at least one column value set.'&lt;/p&gt;
&lt;p&gt;I assume this is happening&lt;/p&gt;
&lt;p&gt;tblInfo &amp;nbsp; | &amp;nbsp; tblFunding &amp;nbsp; | &amp;nbsp; tblApproval&lt;/p&gt;
&lt;p&gt;stuff &amp;nbsp; &amp;nbsp; &amp;nbsp;| &amp;nbsp; &amp;nbsp; &amp;nbsp; stuff &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; | &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;stuff&lt;/p&gt;
&lt;p&gt; null(error) | &amp;nbsp;cant submit more stuff&lt;/p&gt;
&lt;p&gt; &amp;nbsp; ^because i only enter tblInfo once.&lt;/p&gt;
&lt;p&gt;Im not sure how to get around this issue because Infopath and Access have so many restrictions. Any help would be greatly appreciated.&lt;/p&gt;
</description></item><item><title>SharePoint InfoPath</title><link>http://blogs.msdn.com/infopath/archive/2007/03/21/infopath-data-connections-part-1.aspx#5120346</link><pubDate>Tue, 25 Sep 2007 16:01:10 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5120346</guid><dc:creator>Mirrored Blogs</dc:creator><description>&lt;p&gt;Body: I&amp;amp;#39;ve been getting some curly questions around InfoPath of late due to our organisation already&lt;/p&gt;
</description></item><item><title>re: InfoPath Data Connections: Part 1</title><link>http://blogs.msdn.com/infopath/archive/2007/03/21/infopath-data-connections-part-1.aspx#5364562</link><pubDate>Mon, 08 Oct 2007 17:19:03 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5364562</guid><dc:creator>Brian111</dc:creator><description>&lt;p&gt;We have a MOSS site set up for a client, it has a sub site for each of their clients and then another site below client for each project. At the project level there is an infopath form which has data connections to lists at both the other levels. Our client needs to be able to set up new projects and clients at these levels, we are allowing this using templates. This does however mean the data connections on the infopath form need to be relative. Could you elaborate on what you have written above as to the best wayt this could be achieved please ?&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
</description></item><item><title>re: InfoPath Data Connections: Part 1</title><link>http://blogs.msdn.com/infopath/archive/2007/03/21/infopath-data-connections-part-1.aspx#8381460</link><pubDate>Fri, 11 Apr 2008 21:09:57 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8381460</guid><dc:creator>prarthana</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I have two database connections in my infopath form. However, since there is a many-to-one relation between the tables, I cannot submit data through Infopath. &lt;/p&gt;
&lt;p&gt;I am trying to submit data through code but its not working. Can someone please help? &lt;/p&gt;
&lt;p&gt;Thanx...&lt;/p&gt;
</description></item><item><title>re: InfoPath Data Connections: Part 1</title><link>http://blogs.msdn.com/infopath/archive/2007/03/21/infopath-data-connections-part-1.aspx#9791243</link><pubDate>Fri, 19 Jun 2009 20:49:05 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9791243</guid><dc:creator>lvirden</dc:creator><description>&lt;p&gt;Hello!&lt;/p&gt;
&lt;p&gt;I am using InfoPath 2007. When I set up a data connection to receive data from a SharePoint list, I have run into a restriction that I've not seen documented anywhere, and so I wonder if there is a way to do what I need.&lt;/p&gt;
&lt;p&gt;The SharePoint list I am wanting to use has a single column, type people or grep, which has the &amp;quot;allow multiple selections&amp;quot; property set. This is so that the column can contain 1 to many people selected for that particular row, without having to create a limiting number of columns.&lt;/p&gt;
&lt;p&gt;When I try to create the data connection in InfoPath 2007, the column is not displayed as one that can be returned.&lt;/p&gt;
&lt;p&gt;Once I turn off the &amp;quot;multiple selection&amp;quot; property, the column becomes available.&lt;/p&gt;
&lt;p&gt;Is there some alternative method to accessing the data?&lt;/p&gt;
&lt;p&gt;If not, I sure hope this is in the works for a near future patch release...&lt;/p&gt;
</description></item></channel></rss>