<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" media="screen" href="/App_Themes/default/rss.xslt"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:evnet="http://www.mscommunities.com/rssmodule/"><channel><title>Entries for CaptainOblivious</title><atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/niners/captainoblivious/rss/default.aspx" /><image><url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url><title>Entries for CaptainOblivious</title><link>http://channel9.msdn.com/Niners/captainoblivious/</link></image><description>Entries, comments and threads posted by CaptainOblivious</description><link>http://channel9.msdn.com/Niners/captainoblivious/</link><language>en-us</language><pubDate>Tue, 04 Oct 2005 08:20:28 GMT</pubDate><lastBuildDate>Tue, 04 Oct 2005 08:20:28 GMT</lastBuildDate><generator>EvNet (EvNet, Version=1.0.3608.3122, Culture=neutral, PublicKeyToken=null)</generator><item><title>COM Interop Question regarding FAXCOMEXLib [COM Interop Question regarding FAXCOMEXLib]</title><description>&lt;PRE class=WNPost&gt;Can anyone please give me some help regarding how do you handle events for &lt;BR&gt;FaxServer through .NET ie C# . My problem is I would like my application to be notified of the events that have been fired. I can't get the events to fire. &lt;/PRE&gt;&lt;PRE class=WNPost&gt;Once I have called connectSubmit I would like the event, &lt;BR&gt;FaxServer_OnOutgoingJobChanged to be fired so I can view the status of the fax on wheather it has been sent or an error eg. Incorrect fax number, no dial tone on the receiver etc.&lt;BR&gt;&lt;BR&gt;Also, I can't this to work with either a console app or a winforms app.&lt;BR&gt;I have tried to use WaitHandle etc with no success. Below is the following &lt;BR&gt;code, This code does include the waitHandle object :-&lt;/PRE&gt;&lt;PRE class=WNPost&gt;using System;&lt;BR&gt;using FAXCOMEXLib;&amp;nbsp;&amp;nbsp; // COM32 &lt;BR&gt;namespace MyFax&lt;BR&gt;{&lt;BR&gt;&amp;nbsp;&amp;nbsp; public class Fax&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; private FAXCOMEXLib.FaxServer _faxServer;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; private IFaxDocument _docToFax;&amp;nbsp;&lt;/PRE&gt;&lt;PRE class=WNPost&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; public FAXCOMEXLib.FaxServer FaxServer&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;BR&gt;&amp;nbsp;get{return _faxServer;&amp;nbsp;&amp;nbsp;}&lt;BR&gt;&amp;nbsp;set{_faxServer = value;&amp;nbsp;&amp;nbsp;}&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; public IFaxDocument Document&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;BR&gt;&amp;nbsp;get{return _docToFax;&amp;nbsp;&amp;nbsp;}&amp;nbsp;&lt;BR&gt;&amp;nbsp;set{_docToFax = value;&amp;nbsp;&amp;nbsp;}&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/PRE&gt;&lt;PRE class=WNPost&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; public virtual void SendFax()&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&amp;nbsp;&amp;nbsp;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; object jobId;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FaxServer =&amp;nbsp;new FaxServerClass();&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Document =&amp;nbsp;new FaxDocumentClass();&amp;nbsp;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FaxServer.Connect(string.Empty);&amp;nbsp;&amp;nbsp;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FaxServer.ListenToServerEvents&amp;nbsp;&amp;nbsp; &lt;BR&gt;(FAX_SERVER_EVENTS_TYPE_ENUM.fsetOUT_QUEUE | &lt;BR&gt;FAX_SERVER_EVENTS_TYPE_ENUM.fsetACTIVITY);&lt;/PRE&gt;&lt;PRE class=WNPost&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FaxServer.OnOutgoingJobChanged += new&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR&gt;IFaxServerNotify_OnOutgoingJobChangedEventHandler(FaxServer_OnOutgoingJobChanged);&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Document.Body = _fileToFax; // tiff file to fax&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Document.DocumentName = _nameOfDocument;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Document.Priority &amp;nbsp;= FAX_PRIORITY_TYPE_ENUM.fptHIGH;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Document.Recipients.Add(FaxNumber, Recipient);&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Document.AttachFaxToReceipt = true;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Document.ReceiptType = FAX_RECEIPT_TYPE_ENUM.frtNONE;&lt;BR&gt;/************************************************* */&lt;BR&gt;// HOW TO HANDLE THIS EVENT. FAX Console/ dialer starts up&lt;BR&gt;// however once this app has started up it then returns back to and&amp;nbsp;&amp;nbsp; &lt;BR&gt;// assigns a jobid and continues on. My question is how to stop this from&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR&gt;// continuing on until I get a event from OnOutgoingJobChanged.&lt;BR&gt;/* ****************************************************** */&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; jobId = Document.ConnectedSubmit(FaxServer); &lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR&gt;}&lt;/PRE&gt;&lt;PRE class=WNPost&gt;&amp;nbsp;&amp;nbsp; public void FaxServer_OnOutgoingJobChanged(FaxServer pFaxServer, string &lt;BR&gt;bstrJobId, FaxJobStatus pJobStatus)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // code to to log etc that a Fax event has occurred.&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/PRE&gt;&lt;PRE class=WNPost&gt;&amp;nbsp;&amp;nbsp; public Fax()&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FaxServer =&amp;nbsp;new FaxServerClass();&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Document=&amp;nbsp;new FaxDocumentClass();&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;BR&gt;}&lt;/PRE&gt;&lt;PRE class=WNPost&gt;&amp;nbsp;&lt;/PRE&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/120092-COM-Interop-Question-regarding-FAXCOMEXLib/'&gt;COM Interop Question regarding FAXCOMEXLib&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/120092/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/120092-COM-Interop-Question-regarding-FAXCOMEXLib/</comments><link>http://channel9.msdn.com/forums/TechOff/120092-COM-Interop-Question-regarding-FAXCOMEXLib/</link><pubDate>Tue, 04 Oct 2005 08:20:28 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/120092-COM-Interop-Question-regarding-FAXCOMEXLib/</guid><evnet:views>3535</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/120092/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>&lt;PRE class=WNPost&gt;Can anyone please give me some help regarding how do you handle events for &lt;BR&gt;FaxServer through .NET ie C# . My problem is I would like my application to be notified of the events that have been fired. I can't get the events to fire. &lt;/PRE&gt;&lt;PRE class=WNPost&gt;Once I have called connectSubmit I would like the event, &lt;BR&gt;FaxServer_OnOutgoingJobChanged to be fired so I can view the status of the fax on wheather it has been sent or an error eg. Incorrect fax number, no dial tone on the receiver etc.&lt;BR&gt;&lt;BR&gt;</evnet:previewtext><dc:creator>CaptainOblivious</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/120092-COM-Interop-Question-regarding-FAXCOMEXLib/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/120092/Trackback.aspx</trackback:ping></item><item><title>Microsoft Updater Applications Block [Microsoft Updater Applications Block]</title><description>&lt;P&gt;I am interested in using the Microsoft Updater application Block for an application that I'm developing and I just wondering if anyone is using this in their applications. Are there any pitfalls/ gotchas etc in using&amp;nbsp;the updater block?. &lt;BR&gt;&lt;BR&gt;From what I have read from the documentation, it looks very good, sure beats updating an application manually.&lt;BR&gt;&lt;BR&gt;Regards,&lt;BR&gt;&lt;BR&gt;The Captain&lt;/P&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/96205-Microsoft-Updater-Applications-Block/'&gt;Microsoft Updater Applications Block&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/96205/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/96205-Microsoft-Updater-Applications-Block/</comments><link>http://channel9.msdn.com/forums/TechOff/96205-Microsoft-Updater-Applications-Block/</link><pubDate>Tue, 09 Aug 2005 04:53:04 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/96205-Microsoft-Updater-Applications-Block/</guid><evnet:views>2162</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/96205/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>&lt;P&gt;I am interested in using the Microsoft Updater application Block for an application that I'm developing and I just wondering if anyone is using this in their applications. Are there any pitfalls/ gotchas etc in using&amp;nbsp;the updater block?. &lt;BR&gt;&lt;BR&gt;From what I have read from the documentation, it looks very good, sure beats updating an application manually.&lt;BR&gt;&lt;BR&gt;Regards,&lt;BR&gt;&lt;BR&gt;The Captain&lt;/P&gt;</evnet:previewtext><dc:creator>CaptainOblivious</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/96205-Microsoft-Updater-Applications-Block/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/96205/Trackback.aspx</trackback:ping></item><item><title>convert word doc to TIFF through VBA or .NET [convert word doc to TIFF through VBA or .NET]</title><description>&lt;P&gt;Does anyone know if there is functionality through Word VBA or .NET framework to convert a word doc file into a TIF/TIFF file ? &lt;BR&gt;&lt;BR&gt;I initially thought of using the SaveAs method on the document object but had no success, I also tried using the PrintOut method in VBA.&lt;BR&gt;&lt;BR&gt;I don't want to use a third party component if possible.&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&lt;/P&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/75054-convert-word-doc-to-TIFF-through-VBA-or-NET/'&gt;convert word doc to TIFF through VBA or .NET&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/75054/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/75054-convert-word-doc-to-TIFF-through-VBA-or-NET/</comments><link>http://channel9.msdn.com/forums/TechOff/75054-convert-word-doc-to-TIFF-through-VBA-or-NET/</link><pubDate>Mon, 13 Jun 2005 01:41:39 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/75054-convert-word-doc-to-TIFF-through-VBA-or-NET/</guid><evnet:views>7432</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/75054/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>&lt;P&gt;Does anyone know if there is functionality through Word VBA or .NET framework to convert a word doc file into a TIF/TIFF file ? &lt;BR&gt;&lt;BR&gt;I initially thought of using the SaveAs method on the document object but had no success, I also tried using the PrintOut method in VBA.&lt;BR&gt;&lt;BR&gt;I don't want to use a third party component if possible.&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&lt;/P&gt;</evnet:previewtext><dc:creator>CaptainOblivious</dc:creator><slash:comments>1</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/75054-convert-word-doc-to-TIFF-through-VBA-or-NET/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/75054/Trackback.aspx</trackback:ping></item><item><title>can FAXCOMEXLib be used on ADSL Modem [can FAXCOMEXLib be used on ADSL Modem]</title><description>Can anyone confirm that the Faxcomexlib&amp;nbsp;that is part of TAPI SDK WILL NOT WORK&amp;nbsp;if&amp;nbsp; you have a ADSL modem ?&amp;nbsp;&lt;BR&gt;&lt;BR&gt;I have read&amp;nbsp;on some web pages that this lib&amp;nbsp;only works&amp;nbsp;with&amp;nbsp;dial up modems&amp;nbsp;and not on Broadband/ADSL modems.&lt;BR&gt;&lt;BR&gt;By the way, I'm running WinXP Sp2 with no network established. I have installed Fax services onto this machine. I also have a Brother MFC3220C Fax/Copier/Scanner device attached to my machine.&lt;BR&gt;ADSL modem is Thompson SpeedTouch 500 Series Multi user ADSL gateway.&lt;BR&gt;&lt;BR&gt;If anyone has any information on this&amp;nbsp;topic, I would&amp;nbsp;appreciate this.&lt;BR&gt;&lt;BR&gt;&amp;nbsp;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/72344-can-FAXCOMEXLib-be-used-on-ADSL-Modem/'&gt;can FAXCOMEXLib be used on ADSL Modem&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/72344/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/72344-can-FAXCOMEXLib-be-used-on-ADSL-Modem/</comments><link>http://channel9.msdn.com/forums/TechOff/72344-can-FAXCOMEXLib-be-used-on-ADSL-Modem/</link><pubDate>Sat, 04 Jun 2005 01:59:27 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/72344-can-FAXCOMEXLib-be-used-on-ADSL-Modem/</guid><evnet:views>6393</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/72344/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Can anyone confirm that the Faxcomexlib&amp;nbsp;that is part of TAPI SDK WILL NOT WORK&amp;nbsp;if&amp;nbsp; you have a ADSL modem ?&amp;nbsp;&lt;BR&gt;&lt;BR&gt;I have read&amp;nbsp;on some web pages that this lib&amp;nbsp;only works&amp;nbsp;with&amp;nbsp;dial up modems&amp;nbsp;and not on Broadband/ADSL modems.&lt;BR&gt;&lt;BR&gt;By the way, I'm running WinXP Sp2 with no network established. I have installed Fax services onto this machine. I also have a Brother MFC3220C Fax/Copier/Scanner device attached to my machine.&lt;BR&gt;ADSL modem is Thompson SpeedTouch 500 Series Multi user ADSL gateway.&lt;BR&gt;&lt;BR&gt;If anyone has any information on this&amp;nbsp;topic, I would&amp;nbsp;appreciate this.&lt;BR&gt;&lt;BR&gt;&amp;nbsp;</evnet:previewtext><dc:creator>CaptainOblivious</dc:creator><slash:comments>5</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/72344-can-FAXCOMEXLib-be-used-on-ADSL-Modem/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/72344/Trackback.aspx</trackback:ping></item><item><title>Sending a fax through NET platform [Sending a fax through NET platform]</title><description>&lt;P&gt;Hi all,&lt;BR&gt;&lt;BR&gt;I am developing an application (developed in C#) that will give the user the ability to send a fax. &lt;BR&gt;&lt;BR&gt;However, I haven't come across any .NET libraries to do this (I am still new to the platform). From my investigations&amp;nbsp;I am considering going&amp;nbsp;down the path of developing a wrapper to the MAPI API in c#, is this a crazy idea?.&amp;nbsp;&lt;BR&gt;&lt;BR&gt;However, I am not too keen on this as I have no idea how long this is going to take me to do.&amp;nbsp;&lt;BR&gt;&lt;BR&gt;If anyone out there could give me any suggestions on what&amp;nbsp;would be the best option to take and/or libraries in .NET, if they exist. I would greatlty appreciate this.&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&lt;/P&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/62053-Sending-a-fax-through-NET-platform/'&gt;Sending a fax through NET platform&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/62053/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/62053-Sending-a-fax-through-NET-platform/</comments><link>http://channel9.msdn.com/forums/TechOff/62053-Sending-a-fax-through-NET-platform/</link><pubDate>Sat, 30 Apr 2005 03:55:07 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/62053-Sending-a-fax-through-NET-platform/</guid><evnet:views>24615</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/62053/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Hi all,I am developing an application (developed in C#) that will give the user the ability to send a fax. However, I haven't come across any .NET libraries to do this (I am still new to the platform). From my investigations&amp;nbsp;I am considering going&amp;nbsp;down the path of developing a wrapper to the MAPI API in c#, is this a crazy idea?.&amp;nbsp;However, I am not too keen on this as I have no idea how long this is going to take me to do.&amp;nbsp;If anyone out there could give me any suggestions on what&amp;nbsp;would be the best option to take and/or libraries in .NET, if they exist. I would greatlty appreciate this.</evnet:previewtext><dc:creator>CaptainOblivious</dc:creator><slash:comments>16</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/62053-Sending-a-fax-through-NET-platform/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/62053/Trackback.aspx</trackback:ping></item><item><title>SCRUM Development Methodology [SCRUM Development Methodology]</title><description>Just wondering if any one out there is a big fan of SCRUM development life cycle. &lt;BR&gt;&lt;BR&gt;If so, what&amp;nbsp;is&amp;nbsp;the biggest thing to come out of this over the other ways of developing systems. &lt;BR&gt;&lt;BR&gt;Reason I am asking this is because I am &amp;nbsp;thinking of implementing SCRUM on the next project that I working on.&lt;BR&gt;&lt;BR&gt;Any feedback would be helpful.&lt;BR&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/37820-SCRUM-Development-Methodology/'&gt;SCRUM Development Methodology&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/37820/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/37820-SCRUM-Development-Methodology/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/37820-SCRUM-Development-Methodology/</link><pubDate>Wed, 02 Feb 2005 04:52:44 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/37820-SCRUM-Development-Methodology/</guid><evnet:views>5105</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/37820/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Just wondering if any one out there is a big fan of SCRUM development life cycle. &lt;BR&gt;&lt;BR&gt;If so, what&amp;nbsp;is&amp;nbsp;the biggest thing to come out of this over the other ways of developing systems. &lt;BR&gt;&lt;BR&gt;Reason I am asking this is because I am &amp;nbsp;thinking of implementing SCRUM on the next project that I working on.&lt;BR&gt;&lt;BR&gt;Any feedback would be helpful.&lt;BR&gt;</evnet:previewtext><dc:creator>CaptainOblivious</dc:creator><slash:comments>2</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/37820-SCRUM-Development-Methodology/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/37820/Trackback.aspx</trackback:ping></item><item><title>MSDN RSS Feeds [MSDN RSS Feeds]</title><description>Can anyone tell me why the Microsoft has&amp;nbsp;not gone by the stanard RSS feed and have&amp;nbsp;included namespaces&amp;nbsp;in the rss elements of the Rss Feeds.&amp;nbsp;&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;I have looked up the spec on &lt;a href="http://blogs.law.harvard.edu/tech/rss"&gt;http://blogs.law.harvard.edu/tech/rss&lt;/a&gt;&amp;nbsp;and there is no reference to include namespaces in the Rss feed that is part of the rss element. &lt;BR&gt;&lt;BR&gt;example of the MSDN Feed Address is for visual C#, Address is&amp;nbsp;&lt;a href="http://msdn.microsoft.com/vcsharp/rss.xml"&gt;http://msdn.microsoft.com/vcsharp/rss.xml&lt;/a&gt;&amp;nbsp;&lt;BR&gt;&lt;BR&gt;Sample from this feed is as follows:&lt;BR&gt;&lt;BR&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;&lt;BR&gt;&amp;lt;?xml-stylesheet type='text/xsl' href='rsspretty.xsl' version='1.0'?&amp;gt;&lt;BR&gt;&amp;lt;rss &lt;STRONG&gt;xmlns:msdn="&lt;/STRONG&gt;&lt;a href="http://msdn.microsoft.com/aboutmsdn/rss/"&gt;&lt;STRONG&gt;http://msdn.microsoft.com/aboutmsdn/rss/&lt;/STRONG&gt;&lt;/a&gt;&lt;STRONG&gt;" xmlns:dc="&lt;/STRONG&gt;&lt;a href="http://purl.org/dc/elements/1.1/"&gt;&lt;STRONG&gt;http://purl.org/dc/elements/1.1/&lt;/STRONG&gt;&lt;/a&gt;&lt;STRONG&gt;" xmlns:msdndomain="&lt;/STRONG&gt;&lt;a href="http://msdn.microsoft.com/aboutmsdn/rss/domains"&gt;&lt;STRONG&gt;http://msdn.microsoft.com/aboutmsdn/rss/domains&lt;/STRONG&gt;&lt;/a&gt;" version="2"&amp;gt;&lt;BR&gt;&amp;nbsp; &amp;lt;channel&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;title&amp;gt;MSDN: Visual C#&amp;lt;/title&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;link&amp;gt;http://msdn.microsoft.com/vcsharp/&amp;lt;/link&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;language&amp;gt;en-us&amp;lt;/language&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;pubDate&amp;gt;Fri, 08 Oct 2004 13:00:18 GMT&amp;lt;/pubDate&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;lastBuildDate&amp;gt;Fri, 08 Oct 2004 13:00:18 GMT&amp;lt;/lastBuildDate&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;generator&amp;gt;MSDN RSS Service 1.0.1741.24049&amp;lt;/generator&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;ttl&amp;gt;1440&amp;lt;/ttl&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; etc .....&lt;BR&gt;&lt;BR&gt;Just wondering why have all Rss feeds that I have come across don't have this except for Microsoft's feeds?&lt;BR&gt;&lt;BR&gt;The only reason that I came up is to display through IE or Firefox&amp;nbsp;ie. in a nice format.&lt;BR&gt;&lt;BR&gt;I thought the whole idea of Rss Feeds is to get the raw data through xml and we can do what we want with the data either through our own apps&amp;nbsp;etc.&lt;BR&gt;&lt;BR&gt;Have I missed the point here somewhere ? or am I just living up to my name, Captain Oblivious!!!!!!&lt;BR&gt;&lt;BR&gt;I would be interested in hearing from you guys out there if you have had any dramas or comments&amp;nbsp;with your Rss feed readers?&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/27503-MSDN-RSS-Feeds/'&gt;MSDN RSS Feeds&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/27503/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/27503-MSDN-RSS-Feeds/</comments><link>http://channel9.msdn.com/forums/TechOff/27503-MSDN-RSS-Feeds/</link><pubDate>Wed, 10 Nov 2004 09:26:00 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/27503-MSDN-RSS-Feeds/</guid><evnet:views>5984</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/27503/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Can anyone tell me why the Microsoft has&amp;nbsp;not gone by the stanard RSS feed and have&amp;nbsp;included namespaces&amp;nbsp;in the rss elements of the Rss Feeds.&amp;nbsp;&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;I have looked up the spec on &lt;a href="http://blogs.law.harvard.edu/tech/rss"&gt;http://blogs.law.harvard.edu/tech/rss&lt;/a&gt;&amp;nbsp;and there is no reference to include namespaces in the Rss feed that is part of the rss element. &lt;BR&gt;&lt;BR&gt;example of the MSDN Feed Address is for visual C#, Address is&amp;nbsp;&lt;a href="http://msdn.microsoft.com/vcsharp/rss.xml"&gt;http://msdn.microsoft.com/vcsharp/rss.xml&lt;/a&gt;&amp;nbsp;&lt;BR&gt;&lt;BR&gt;Sample from this feed is as follows:&lt;BR&gt;&lt;BR&gt;</evnet:previewtext><dc:creator>CaptainOblivious</dc:creator><slash:comments>2</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/27503-MSDN-RSS-Feeds/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/27503/Trackback.aspx</trackback:ping></item></channel></rss>