SharePoint
Blogs, Podcasts and Screencasts
May 25th
UPDATE: I added the publications I also read at the bottom.
I’ve been asked what blogs I read, podcasts I listen to and screencasts I watch. So here’s a comprehensive list for ya’ll.
Blogs (in no particular order)
- Scott Hanselman
- Jeff Atwood
- Martin Fowler
- Jeremy D. Miller
- K. Scott Allen
- Mads Kristensen
- Sahil Malik
- Roy Osherove
- Jean-Paul S. Boodhoo
- Bil Simser
- Dino Esposito
Then at times I’ll browse the MSDN Blogs. Also note, these are what I call my “essential” blogs. I read these daily. I have about 30 other blogs that I read if I have time.
Podcasts (in no particular Order)
- .NET Rocks
- Hanselminutes
- ARCast with Ron Jacobs
- Polymorphic Podcast
- this Week in Tech
- Agile Talk
- Agile Toolkit Podcast
- Confessions of an Agile Activist
- Lean Agile Straight Talk
- Microsoft Technet Podcasts
- Nitobis Enterprise AJAX Podcast
Other Podcasts I listen to when I can
Good SharePoint HowTo Videos
Apr 26th
I recently found a couple good videos on SharePoint so I thought I’d share the links.
Microsofts Visual How To’s - Videos include, Custom Search Page, Content Sources, Search Scopes, Business Data Catalog, Excel Services and Much more
DNR TV - Videos Include, InfoPath Forms Service, Content Types, Business Data Catalog, and more. Episode 1, Episode 2, Episode 3, Episode 4
Enjoi.
Gemini Webservice interacting with SharePoint Business Data Catalog
Mar 2nd
At work we use the Gemini Project Issue Tracker every day. We’ve a very small team, so we’re able to get away with the free license for now. Upper management reviews the status of tickets and bugs and the overall status of any project at any given time. We also use SharePoint to collaborate and share documents throughout our company. We recently upgraded to MOSS 2007 (SharePoint 2007) and with this install comes the Business Data Catalog (BDC). This allows us to link back end systems to MOSS. MOSS provides a good toolset of web parts that YOU DO NOT have to write yourself. If your application exposes a web service or database connectivity, MOSS can consume. This means tons of development time, saved, IF. you can figure out how to write the BDC Application MetaData (XML).
I decided that we should try to implement Gemini into MOSS. Again, to my dismay I had to write some really nasty looking XML, this is the “Application MetaData”. The documentation on the BDC MetaData Model isnt that “great” (IMHO) and its difficult and frustrating to write the XML MetaData. Who wants to sit around and write XML all day anyway? bleh. Boring…
I got MOSS to connect to Gemini through the webservice. This example only displays a few actions to prove that we can get data from Gemini.
It allows you to select a Project ID (int) and then the actions of “View Project” and “Open Gemini” will be presented.
How To
To get this to work, you’ll have to replace this text: http://PathToYourGeminiSite/webservices/gemini.asmx?WSDL with the actual path to your Gemini Site.
Then import it into your BDC and use the Business Data Action Web Part to display the data.
Screen shots
Application Metadata Info Page

Page as user sees it once the web part is live.

Clicking the “View Profile” link will allow you to see data that is returned from the Web Service (as seen below):

Clicking “Open Gemini” will take you to the Gemini home page in a new window. Clicking “Open Project” will open that projects page in a new window.
Download the MetaData File.