<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Ivan Markov</title>
	<atom:link href="http://blog.izmark.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.izmark.com</link>
	<description>WordPress Software Blog</description>
	<lastBuildDate>Mon, 14 Nov 2011 22:53:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Shared Memory Provider, error: 0 &#8211; Either a required impersonation level was not provided, or the provided impersonation level is invalid.</title>
		<link>http://blog.izmark.com/2011/shared-memory-provider-error-0-either-a-required-impersonation-level-was-not-provided-or-the-provided-impersonation-level-is-invalid/</link>
		<comments>http://blog.izmark.com/2011/shared-memory-provider-error-0-either-a-required-impersonation-level-was-not-provided-or-the-provided-impersonation-level-is-invalid/#comments</comments>
		<pubDate>Mon, 14 Nov 2011 22:53:06 +0000</pubDate>
		<dc:creator>ivan.markov</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Sharepoint]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://blog.izmark.com/?p=114</guid>
		<description><![CDATA[<p>​Connecting to the central admin site of the new sharepoint installation displays a blank page, generates the following error in the windows application event viewer:</p> <p>Unknown SQL Exception 1346 occurred. Additional error information from SQL Server is included below.</p> <p>A transport-level error has occurred when sending the request to the server. (provider: Shared Memory Provider, [...]]]></description>
			<content:encoded><![CDATA[<p>​Connecting to the central admin site of the new sharepoint installation displays a blank page, generates the following error in the windows application event viewer:</p>
<p>Unknown SQL Exception 1346 occurred. Additional error information from SQL Server is included below.</p>
<p>A transport-level error has occurred when sending the request to the server. (provider: Shared Memory Provider, error: 0 &#8211; Either a required impersonation level was not provided, or the provided impersonation level is invalid.)</p>
<p>The reason: Sharepoint was installed and configured to use an account for the farm administrator, that is not the same as the user account running the installation.</p>
<p>To Fix: Connect to the machine with the account that was set as the sharepoint farm administrator. Run the sharepoint product configuration, withough making any changes to the configuration. When it finishes, connect to the central admin site and complete any other configurations, including giving admin rights to any other groups or accounts to the sharepoint farm.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.izmark.com/2011/shared-memory-provider-error-0-either-a-required-impersonation-level-was-not-provided-or-the-provided-impersonation-level-is-invalid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Undefined index in wassup/wassup.php line 339</title>
		<link>http://blog.izmark.com/2011/undefined-index-in-wassupwassup-php-line-339/</link>
		<comments>http://blog.izmark.com/2011/undefined-index-in-wassupwassup-php-line-339/#comments</comments>
		<pubDate>Sat, 29 Oct 2011 00:56:46 +0000</pubDate>
		<dc:creator>ivan.markov</dc:creator>
				<category><![CDATA[Wassup]]></category>
		<category><![CDATA[WordPress Plugins]]></category>

		<guid isPermaLink="false">http://blog.izmark.com/?p=110</guid>
		<description><![CDATA[<p>Hi all,</p> <p>I installed the word press wassup plugin so I can look at some statistics on my blog. Unfortunately, as soon as I installed the plugin I was greeted with the above error message. It turned out, in that file, there is a line of code that tries to access a property and then [...]]]></description>
			<content:encoded><![CDATA[<p>Hi all,</p>
<p>I installed the word press wassup plugin so I can look at some statistics on my blog. Unfortunately, as soon as I installed the plugin I was greeted with the above error message. It turned out, in that file, there is a line of code that tries to access a property and then use it, but that property was not set on the particular page I was viewing. To solve it simply substitute this line
<pre class="chili"><code class="PHP'"">$plugin_page = $_GET[&#039;page&#039;];</code></pre>
<p>with</p>
<pre class="chili"><code class="PHP'"">
if (!isset($_GET[&#039;page&#039;]))
{
  //If not isset -&gt; set with dumy value
  $plugin_page = &quot;none&quot;;
}
else
{
  $plugin_page = $_GET[&#039;page&#039;];
}
</code></pre>
<p>Enjoy and post your comments!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.izmark.com/2011/undefined-index-in-wassupwassup-php-line-339/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get row number for a sql table</title>
		<link>http://blog.izmark.com/2011/get-row-number-for-a-sql-table/</link>
		<comments>http://blog.izmark.com/2011/get-row-number-for-a-sql-table/#comments</comments>
		<pubDate>Wed, 19 Oct 2011 18:20:44 +0000</pubDate>
		<dc:creator>ivan.markov</dc:creator>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://blog.izmark.com/?p=106</guid>
		<description><![CDATA[<p>Today I had an interesting dilema &#8211; needed to associate a row number with each row in a record set that I needed to retrieve from a sql table. In other words, if I have 15 rows in the record set, I needed to be able to get the record id of the 14th row. [...]]]></description>
			<content:encoded><![CDATA[<p>Today I had an interesting dilema &#8211; needed to associate a row number with each row in a record set that I needed to retrieve from a sql table. In other words, if I have 15 rows in the record set, I needed to be able to get the record id of the 14th row. Searching through google I stumbled on <a href="http://msdn.microsoft.com/en-us/library/ms186734(v=SQL.105).aspx" title="ROW_NUMBER()">ROW_NUMBER()</a> function in sql server. The function is supported for sql server 2005 and up. That&#8217;s all it took to get the job done:</p>
<pre class="chili"><code class="SQL""">
SELECT MyRandomTableID, Name, ROW_NUMBER() OVER (ORDER BY Name) AS RowNumber
  FROM MyRandomTable
</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.izmark.com/2011/get-row-number-for-a-sql-table/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Query table usage</title>
		<link>http://blog.izmark.com/2011/query-table-usage/</link>
		<comments>http://blog.izmark.com/2011/query-table-usage/#comments</comments>
		<pubDate>Tue, 18 Oct 2011 14:58:56 +0000</pubDate>
		<dc:creator>ivan.markov</dc:creator>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://blog.izmark.com/?p=96</guid>
		<description><![CDATA[<p>Today I needed to figure out how to find all the views and tables referencing a particular table. With help from coworkers and google I came up with the following script:</p> <p>First part of the script identifies all direct references of the table you are querying against. The second part, identifies any foreign key references [...]]]></description>
			<content:encoded><![CDATA[<p>Today I needed to figure out how to find all the views and tables referencing a particular table. With help from coworkers and google I came up with the following script:</p>
<pre class="chili"><code class="SQL""""">
SELECT VIEW_CATALOG,VIEW_SCHEMA,VIEW_NAME,TABLE_CATALOG,TABLE_SCHEMA,TABLE_NAME, &#039;&#039; AS COLUMN_NAME
from INFORMATION_SCHEMA.VIEW_TABLE_USAGE AS VTU1
WHERE VTU1.TABLE_NAME = &#039;TABLE_NAME&#039;
UNION
select VIEW_CATALOG,VIEW_SCHEMA,VIEW_NAME,TABLE_CATALOG,TABLE_SCHEMA,TABLE_NAME,COLUMN_NAME
from INFORMATION_SCHEMA.VIEW_COLUMN_USAGE AS VTU2
WHERE VTU2.COLUMN_NAME IN
(SELECT
CU.COLUMN_NAME
FROM INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS C
INNER JOIN INFORMATION_SCHEMA.TABLE_CONSTRAINTS FK ON C.CONSTRAINT_NAME = FK.CONSTRAINT_NAME
INNER JOIN INFORMATION_SCHEMA.TABLE_CONSTRAINTS PK ON C.UNIQUE_CONSTRAINT_NAME = PK.CONSTRAINT_NAME
INNER JOIN INFORMATION_SCHEMA.KEY_COLUMN_USAGE CU ON C.CONSTRAINT_NAME = CU.CONSTRAINT_NAME
INNER JOIN (
SELECT i1.TABLE_NAME, i2.COLUMN_NAME
FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS i1
INNER JOIN INFORMATION_SCHEMA.KEY_COLUMN_USAGE i2 ON i1.CONSTRAINT_NAME = i2.CONSTRAINT_NAME
WHERE i1.CONSTRAINT_TYPE = &#039;PRIMARY KEY&#039;
) PT ON PT.TABLE_NAME = PK.TABLE_NAME
WHERE PK.TABLE_NAME=&#039;TABLE_NAME&#039;)
</code></pre>
<p>First part of the script identifies all direct references of the table you are querying against. The second part, identifies any foreign key references to the same table, and then queries for any views that are using those foreign keys.</p>
<p>Let me know if you find this useful.</p>
<p>References:<br />
1. <a href="http://msdn.microsoft.com/en-us/library/aa933194(v=sql.80).aspx" title="VIEW_TABLE_USABE" target="_blank">VIEW_TABLE_USAGE</a><br />
2. <a href="http://blog.sqlauthority.com/2006/11/01/sql-server-query-to-display-foreign-key-relationships-and-name-of-the-constraint-for-each-table-in-database/" title="Query to Display Foreign Key Relationships " target="_blank">Query to Display Foreign Key Relationships </a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.izmark.com/2011/query-table-usage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Writing unit tests for signed assemblies in .NET and the InternalsVisibleTo attribute</title>
		<link>http://blog.izmark.com/2011/writing-unit-tests-for-signed-assemblies-in-net-and-the-internalsvisibleto-attribute/</link>
		<comments>http://blog.izmark.com/2011/writing-unit-tests-for-signed-assemblies-in-net-and-the-internalsvisibleto-attribute/#comments</comments>
		<pubDate>Fri, 07 Oct 2011 18:16:46 +0000</pubDate>
		<dc:creator>ivan.markov</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://blog.izmark.com/?p=92</guid>
		<description><![CDATA[<p>In order to write unit tests for class marked as internal you will have to add InternalsVisibleTo attribute to your signed assembly, in order to expose those classes to the unit tests project. That poses a problem when the assembly you are testing is signed, and most likely you will get an error with a [...]]]></description>
			<content:encoded><![CDATA[<p>In order to write unit tests for class marked as internal you will have to add InternalsVisibleTo attribute to your signed assembly, in order to expose those classes to the unit tests project. That poses a problem when the assembly you are testing is signed, and most likely you will get an error with a similar message <strong><em>&#8220;Strong-name signed assemblies must specify a public key in their InternalsVisibleTo declarations&#8221;</em></strong>.</p>
<p>To solve the problem and continue on your way of testing your classes, simply sign your unit test project, and then add the public key to the InternalsVisibleTo declaration. Something like:<br />
[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("TestAssembly, PublicKey=......")]</p>
<p>Notice the fact that the public key reference is specified with only &#8220;PublicKey&#8221; and not with &#8220;PublicKeyToken&#8221;, which is what you would use if you normally reference a signed assembly.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.izmark.com/2011/writing-unit-tests-for-signed-assemblies-in-net-and-the-internalsvisibleto-attribute/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WPF Data Binding and Custom DepenencyProperties.</title>
		<link>http://blog.izmark.com/2011/wpf-data-binding-and-custom-depenencyproperties/</link>
		<comments>http://blog.izmark.com/2011/wpf-data-binding-and-custom-depenencyproperties/#comments</comments>
		<pubDate>Wed, 27 Apr 2011 16:59:44 +0000</pubDate>
		<dc:creator>ivan.markov</dc:creator>
				<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">http://blog.izmark.com/?p=84</guid>
		<description><![CDATA[<p>The Problem: Just encountered the same issue with data bindings and decided to write a quick entry about it. In a wpf UserControl, I have a custom DependencyProperty, that property is bound to the data source in another wpf hosting control using xaml. Since I wanted the data source to be reset every time the [...]]]></description>
			<content:encoded><![CDATA[<p><strong>The Problem: </strong>Just encountered the same issue with data bindings  and decided to write a quick entry about it. In a wpf UserControl, I have a custom DependencyProperty, that property is bound to the data source in another wpf hosting control using xaml. Since I wanted the data source to be reset every time the UserControl loads, I set it to null in the control&#8217;s load event. After that, all of a sudden the control was no longer displaying any of the data I was binding to it. What happened was that wpf dropped the binding on the custom DependencyProperty, when I set it to null in the load event. I could have kept loading data until i was blue in the face, but none of it would have displayed in my control, because there was no binding to set the DependencyProperty.</p>
<p><strong>The Solution:</strong> Instead of setting the property to null to clear it, instantiate it to an empty instance of the data source that it is supposed to hold.</p>
<p>Hope that saves someone some time.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.izmark.com/2011/wpf-data-binding-and-custom-depenencyproperties/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AutoCAD: Zooming Extents with C#</title>
		<link>http://blog.izmark.com/2010/autocad-zooming-extents/</link>
		<comments>http://blog.izmark.com/2010/autocad-zooming-extents/#comments</comments>
		<pubDate>Tue, 14 Dec 2010 15:57:11 +0000</pubDate>
		<dc:creator>ivan.markov</dc:creator>
				<category><![CDATA[AutoCAD]]></category>
		<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://blog.izmark.com/?p=73</guid>
		<description><![CDATA[<p>To zoom a drawing using the drawing extents. There must be an active viewport in order for the method to work.</p>]]></description>
			<content:encoded><![CDATA[<div>
<p>To zoom a drawing using the drawing extents. There must be an active viewport in order for the method to work.</p>
<pre class="chili"><code class="C#'""""">
public void ZoomExtents(Database database)
{
Editor editor = Application.DocumentManager.MdiActiveDocument.Editor;
ViewTableRecord view = new ViewTableRecord();
Point3d center =
database.Extmin + ((database.Extmax - database.Extmin) / 2);
view.CenterPoint = new Autodesk.AutoCAD.Geometry.Point2d(center.X, center.Y);

view.Height = database.Extmax.Y - database.Extmin.Y;

view.Width = database.Extmax.X - database.Extmin.X;
editor.SetCurrentView(view);
}
</code></pre>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.izmark.com/2010/autocad-zooming-extents/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>InfoPath: Update DateTime Field/Attribute using C#</title>
		<link>http://blog.izmark.com/2010/infopath-update-datetime-fieldattribute-using-c/</link>
		<comments>http://blog.izmark.com/2010/infopath-update-datetime-fieldattribute-using-c/#comments</comments>
		<pubDate>Mon, 29 Nov 2010 18:01:31 +0000</pubDate>
		<dc:creator>ivan.markov</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[InfoPath]]></category>

		<guid isPermaLink="false">http://blog.izmark.com/?p=53</guid>
		<description><![CDATA[Updating the Field/Attribute is rather easy, the problem is when that Field/Attribute is displayed in a date picker control. The reason for it is the format of the DateTime string. In order, InfoPath to parse out the datetime correctly from the Field/Attribute and display it correctly (pass validation) you have to use the following formats: [...]]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste">
<div id="_mcePaste">Updating the Field/Attribute is rather easy, the problem is when that Field/Attribute is displayed in a date picker control. The reason for it is the format of the DateTime string. In order, InfoPath to parse out the datetime correctly from the Field/Attribute and display it correctly (pass validation) you have to use the following formats:</div>
<div id="_mcePaste">1. For displaying dates only:&#8221;yyyy-MM-dd&#8221;</div>
<div id="_mcePaste">2. For displaying date and time: &#8220;yyyy&#8217;-'MM&#8217;-'dd&#8217;T'HH&#8217;:'mm&#8217;:'ss&#8221;</div>
<div id="_mcePaste">So right before you set the value in the XPathNavigator field/attribute, convert the date you want to use to a string using one of the two formats above.</div>
<div id="_mcePaste">Example:</div>
<div id="_mcePaste">
<pre class="chili"><code class="C#'"""""""""">
DateTime today=DateTime.Now;
XPathNavigator myfield=MainDataSource.CreateNavigator()
.SelectSingleNode(&quot;xpath to field&quot;,this.NamespaceManager);
String dateString=today.ToString(&quot;yyyy&#039;-&#039;MM&#039;-&#039;dd&#039;T&#039;HH&#039;:&#039;mm&#039;:&#039;ss&quot;);
myfield.SetValue(dateString);
</code></pre>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.izmark.com/2010/infopath-update-datetime-fieldattribute-using-c/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>InfoPath: Clone element node</title>
		<link>http://blog.izmark.com/2010/infopath-clone-element-node/</link>
		<comments>http://blog.izmark.com/2010/infopath-clone-element-node/#comments</comments>
		<pubDate>Fri, 15 Oct 2010 15:30:18 +0000</pubDate>
		<dc:creator>ivan.markov</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[InfoPath]]></category>

		<guid isPermaLink="false">http://blog.izmark.com/?p=42</guid>
		<description><![CDATA[<p>If you have tried dynamically loading data in an InfoPath form, you have probably run into the situation, where you want to close the first node of a repeated element, and insert it with new values to the collection. Most likely you have tried the Close() method on the XPathNavigator object just to realize that [...]]]></description>
			<content:encoded><![CDATA[<p>If you have tried dynamically loading data in an InfoPath form, you have probably run into the situation, where you want to close the first node of a repeated element, and insert it with new values to the collection. Most likely you have tried the Close() method on the XPathNavigator object just to realize that it just creates a copy of the current XPathNavigator object. Luckily there is an easy solution:</p>
<pre class="chili"><code class="C#""""""""">

/* xml element definition from the InfoPath form*/

&lt;states&gt;

&lt;state&gt;&lt;statename&gt;&lt;/statename&gt;&lt;/state&gt;

&lt;/states&gt;

/*and the solution, assuming this code is running with the Visual Studio VSTO solution for the InfoPath form*/
XPathNavigator main = this.MainDataSource.CreateNavigator();

XPathNavigator states = main.SelectSingleNode(&quot;/my:myFields/my:States&quot;, this.NamespaceManager);

if(states==null){return;}

XPathNavigator state = phases.SelectSingleNode(&quot;my:State&quot;, this.NamespaceManager);

if(state==null){return;}
foreach(State stateLookup in mycollection)

{

state.MoveToNext(XPathNodeType.Element);

XPathNavigator stateName=state.SelectSingleNode(&quot;my:StateName&quot;,this.NamespaceManager);

if(stateName!=null){stateName.SetValue(stateLookup.Code);

}

}

</code></pre>
<p>It turns out it is very easy to create a new node in that collection. Calling MoveToNext() copies the current node and adds it to the end of the collection. Just remember to to pass in XPathNodeType.Element as a parameter.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.izmark.com/2010/infopath-clone-element-node/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>InfoPath browser-enabled form issues deploying to sharepoint</title>
		<link>http://blog.izmark.com/2010/infopath-browser-enabled-form-issues-deploying-to-sharepoint/</link>
		<comments>http://blog.izmark.com/2010/infopath-browser-enabled-form-issues-deploying-to-sharepoint/#comments</comments>
		<pubDate>Fri, 17 Sep 2010 19:30:36 +0000</pubDate>
		<dc:creator>ivan.markov</dc:creator>
				<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://blog.izmark.com/?p=38</guid>
		<description><![CDATA[<p>If you have ever seen this message &#8220;This form template is browser-compatible, but it cannot be browser-enabled on the selected site.&#8221;, you have also spent some time trying to figure out how to solve it. There are quite a few blog entries coming up from google when searching for the above message. Some suggest that [...]]]></description>
			<content:encoded><![CDATA[<p>If you have ever seen this message &#8220;This form template is browser-compatible, but it cannot be browser-enabled on the selected site.&#8221;, you have also spent some time trying to figure out how to solve it. There are quite a few blog entries coming up from google when searching for the above message. Some suggest that the enterprise features are not turned on for the site collection/site. Other suggest that the &#8220;Form Template&#8221; is missing from the site contents. In the end of the day there are several good suggestion that might solve the problem, but none worked for me.</p>
<p>As it turned out my issue was coming from the fact that when InfoPath checked the site to verify browser-enabled forms are allowed,the call always failed. InfoPath was making a request to http://yoursite/_layouts/FormServerDetector.aspx?IsFormServerEnabled=check. The reason that request was failing was due to a custom http module, that was deployed to the sharepoint site through one of the features we had created. From there the fix was simple &#8211; track what was causing the failure in the http module. In short, if everything else is in order and you are still getting this warning message, then make sure that and custom handlers and modules are in check and not causing that request above to fail.</p>
<p>Below are some reference links that I went through when looking for a solution:</p>
<ol>
<li><a href="http://littletalk.wordpress.com/2008/04/24/this-form-template-is-browser-compatible-but-it-cannot-be-browser-enabled-on-the-selected-site/">http://littletalk.wordpress.com/2008/04/24/this-form-template-is-browser-compatible-but-it-cannot-be-browser-enabled-on-the-selected-site/</a></li>
<li><a href="http://www.bizsupportonline.net/browserforms/form-template-is-browser-compatible-but-it-cannot-be-browser-enabled.htm">http://www.bizsupportonline.net/browserforms/form-template-is-browser-compatible-but-it-cannot-be-browser-enabled.htm</a></li>
<li><a href="http://social.msdn.microsoft.com/forums/en-US/sharepointinfopath/thread/c9617953-a54c-44ec-86cf-df215c750c18/">http://social.msdn.microsoft.com/forums/en-US/sharepointinfopath/thread/c9617953-a54c-44ec-86cf-df215c750c18/</a></li>
</ol>
<p>Hope this saves someone some time and headaches.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.izmark.com/2010/infopath-browser-enabled-form-issues-deploying-to-sharepoint/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

