<?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>OfficeDeveloper.NET&#187; object</title>
	<atom:link href="http://officedeveloper.net/tag/object/feed/" rel="self" type="application/rss+xml" />
	<link>http://officedeveloper.net</link>
	<description></description>
	<lastBuildDate>Fri, 13 Jan 2012 00:50:00 +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>How We Did It: BDC Meta Man Web Edition</title>
		<link>http://officedeveloper.net/2009/07/06/how-we-did-it-bdc-meta-man-web-edition/</link>
		<comments>http://officedeveloper.net/2009/07/06/how-we-did-it-bdc-meta-man-web-edition/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 22:26:22 +0000</pubDate>
		<dc:creator>Staff</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Access]]></category>
		<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[edition]]></category>
		<category><![CDATA[object]]></category>
		<category><![CDATA[requirement]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[service]]></category>
		<category><![CDATA[signature]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://officedeveloper.net/how-we-did-it-bdc-meta-man-web-edition/</guid>
		<description><![CDATA[ For today’s guest post, I’d like to introduce Nick Swan and Phill Duffy.  Nick founded Lightning Tools with Brett Lonsdale in 2006 and BDC Meta Man was a result of their efforts.  Fast forward to 2009 and Phill Duffy is part of the team (Nick Swan, Brett Londsdale, Dmitry Kaloshin, Michael Gamza, Hrayr Diloyan, Ashot Brahamyan, Karen Khumaryan &#38; Hrachya Bekverdyan) that built and launched BDC Meta Man Web Edition.  This post gets into the decisions and components they used to build a custom SharePoint solution.  Enjoy! Introduction BDC Meta Man Web Edition was born from the success of BDC Meta Man and from listening to our users about how they wanted to interact with SharePoint and the Business Data Catalog. We certainly had our work cut out for us as BDC Meta Man is hugely successful and a hard act to follow. One of the surveys conducted by Lightning Tools a short while ago showed that users were asking the question as to why, when SharePoint can communicate with their Line-of-Business Systems, they need to use a desktop application to create the Application Definition File to do so. ]]></description>
			<content:encoded><![CDATA[<p> For today’s guest post, I’d like to introduce Nick Swan and Phill Duffy.  Nick founded Lightning Tools with Brett Lonsdale in 2006 and BDC Meta Man was a result of their efforts.  Fast forward to 2009 and Phill Duffy is part of the team (Nick Swan, Brett Londsdale, Dmitry Kaloshin, Michael Gamza, Hrayr Diloyan, Ashot Brahamyan, Karen Khumaryan &amp; Hrachya Bekverdyan) that built and launched BDC Meta Man Web Edition.  This post gets into the decisions and components they used to build a custom SharePoint solution.  Enjoy! Introduction BDC Meta Man Web Edition was born from the success of BDC Meta Man and from listening to our users about how they wanted to interact with SharePoint and the Business Data Catalog. We certainly had our work cut out for us as BDC Meta Man is hugely successful and a hard act to follow. One of the surveys conducted by Lightning Tools a short while ago showed that users were asking the question as to why, when SharePoint can communicate with their Line-of-Business Systems, they need to use a desktop application to create the Application Definition File to do so. </p>
<p><img src="" /></p>
<p>See the original post here:<br />
<a target="_blank" href="http://feedproxy.google.com/~r/sharepointteamblog/~3/L8pBoyicsMA/how-we-did-it-bdc-meta-man-web-edition.aspx" title="How We Did It: BDC Meta Man Web Edition">How We Did It: BDC Meta Man Web Edition</a></p>
]]></content:encoded>
			<wfw:commentRss>http://officedeveloper.net/2009/07/06/how-we-did-it-bdc-meta-man-web-edition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Extending SharePoint: Checking if a List exists</title>
		<link>http://officedeveloper.net/2009/07/06/extending-sharepoint-checking-if-a-list-exists/</link>
		<comments>http://officedeveloper.net/2009/07/06/extending-sharepoint-checking-if-a-list-exists/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 14:41:00 +0000</pubDate>
		<dc:creator>Staff</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Access]]></category>
		<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[a-list-doesn]]></category>
		<category><![CDATA[a-method-with]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[object]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[share]]></category>
		<category><![CDATA[signature]]></category>

		<guid isPermaLink="false">http://officedeveloper.net/extending-sharepoint-checking-if-a-list-exists/</guid>
		<description><![CDATA[ A common problem when working with the SharePoint Object Model is getting a handle to a list. Very often we find ourselves writing this: 1: try 2: { 3: using (var web = site.OpenWeb()) 4: { 5: if (web != null ) 6: { 7: try 8: { 9: var list = web.Lists[ListTitle]; 10: } 11: catch (ArgumentException) 12: { 13: web.Lists.Add(ListTitle, ListDescription, SPListTemplateType.GenericList); 14: } 15: } 16: else 17: { 18: Console.WriteLine( "Unable to open web site." ); 19: } 20: } 21: } 22: catch (Exception ex) 23: { 24: Console.WriteLine(ex.Message); 25: } This adds a list if it doesn&#39;t exist on the site]]></description>
			<content:encoded><![CDATA[<p> A common problem when working with the SharePoint Object Model is getting a handle to a list. Very often we find ourselves writing this: 1: try 2: { 3: using (var web = site.OpenWeb()) 4: { 5: if (web != null ) 6: { 7: try 8: { 9: var list = web.Lists[ListTitle]; 10: } 11: catch (ArgumentException) 12: { 13: web.Lists.Add(ListTitle, ListDescription, SPListTemplateType.GenericList); 14: } 15: } 16: else 17: { 18: Console.WriteLine( &#8220;Unable to open web site.&#8221; ); 19: } 20: } 21: } 22: catch (Exception ex) 23: { 24: Console.WriteLine(ex.Message); 25: } This adds a list if it doesn&#39;t exist on the site</p>
<p>Go here to read the rest: <br />
<a target="_blank" href="http://feedproxy.google.com/~r/bsimser/~3/rgZdcerIWP4/extending-sharepoint-checking-if-a-list-exists.aspx" title="Extending SharePoint: Checking if a List exists">Extending SharePoint: Checking if a List exists</a></p>
]]></content:encoded>
			<wfw:commentRss>http://officedeveloper.net/2009/07/06/extending-sharepoint-checking-if-a-list-exists/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Embedding an Open XML File in another Open XML File</title>
		<link>http://officedeveloper.net/2009/06/30/embedding-an-open-xml-file-in-another-open-xml-file/</link>
		<comments>http://officedeveloper.net/2009/06/30/embedding-an-open-xml-file-in-another-open-xml-file/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 23:26:00 +0000</pubDate>
		<dc:creator>Staff</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Access]]></category>
		<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Office News]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[embedded]]></category>
		<category><![CDATA[embedded-object]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[following]]></category>
		<category><![CDATA[object]]></category>
		<category><![CDATA[power]]></category>
		<category><![CDATA[smart]]></category>
		<category><![CDATA[Tool]]></category>
		<category><![CDATA[wordprocessingml]]></category>
		<category><![CDATA[zeyad's sdk examples]]></category>

		<guid isPermaLink="false">http://officedeveloper.net/embedding-an-open-xml-file-in-another-open-xml-file/</guid>
		<description><![CDATA[ A couple of weeks ago I gave a presentation on the Open XML SDK to a few customers, where I was asked questions on how to embed files within Open XML documents. I thought it would be a good opportunity to devote a couple of posts around this topic. In today's post I am going to show you how to embed an Open XML file in another Open XML file]]></description>
			<content:encoded><![CDATA[<p> A couple of weeks ago I gave a presentation on the Open XML SDK to a few customers, where I was asked questions on how to embed files within Open XML documents. I thought it would be a good opportunity to devote a couple of posts around this topic. In today&#8217;s post I am going to show you how to embed an Open XML file in another Open XML file</p>
<p><img src="" /></p>
<p>Original post: <br />
<a target="_blank" href="http://blogs.msdn.com/brian_jones/archive/2009/06/30/embedding-an-open-xml-file-in-another-open-xml-file.aspx" title="Embedding an Open XML File in another Open XML File">Embedding an Open XML File in another Open XML File</a></p>
]]></content:encoded>
			<wfw:commentRss>http://officedeveloper.net/2009/06/30/embedding-an-open-xml-file-in-another-open-xml-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

