<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-8851655709358651935</id><updated>2012-02-16T14:28:04.058+07:00</updated><category term='SP2003'/><category term='MOSS'/><category term='VSTS'/><category term='blogging'/><category term='Silverlight'/><title type='text'>Thuc Si Mau Ho's Blog</title><subtitle type='html'>Microsoft technologies, MOSS, Silverlight, Software architecture, Design patterns and techniques, Agile methodologies, Software-as-a-Service (SaaS)</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://blog.hosimauthuc.net/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8851655709358651935/posts/default'/><link rel='alternate' type='text/html' href='http://blog.hosimauthuc.net/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Thuc Si Mau Ho</name><uri>http://www.blogger.com/profile/04418475991330981867</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>6</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-8851655709358651935.post-8184367353558291823</id><published>2009-01-09T21:38:00.006+07:00</published><updated>2009-01-10T09:52:16.629+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='blogging'/><title type='text'>Using Windows Live Writer with Google’s Blogger</title><content type='html'>&lt;p&gt;After some time of interruption I start to blog again. &lt;/p&gt; &lt;p&gt;To mark this event I decided to assign a new domain name for my blog address, &lt;a href="http://blog.hosimauthuc.net/"&gt;http://blog.hosimauthuc.net&lt;/a&gt;, as you have seen.&lt;/p&gt; &lt;p&gt;I came across &lt;a href="http://download.live.com/writer" target="_blank"&gt;Windows Live Writer&lt;/a&gt; (WLW) while playing with &lt;a href="http://blogsvc.net/" target="_blank"&gt;BlogSvc&lt;/a&gt;, an open source ASP.NET 3.5 blog engine built with ASP.NET MVC framework. I found Windows Live Writer quite useful as a blog authoring tool, especially in the following points:&lt;/p&gt; &lt;ul&gt; &lt;li&gt;It allows me to author my blog posts offline. When I get online, just one mouse click will bring the post to my blog.  &lt;/li&gt;&lt;li&gt;It uses my blog theme inside its IDE. I can almost write and preview my posts as the same time.  &lt;/li&gt;&lt;li&gt;It has plug-ins to support formatting code examples.&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;The last point is quite important for technical bloggers like me. &lt;a href="http://lvildosola.blogspot.com/2007/02/code-snippet-plugin-for-windows-live.html" target="_blank"&gt;Leo Vildosola’s&lt;/a&gt; plug-in is a popular one (downloadable from &lt;a href="http://gallery.live.com/liveItemDetail.aspx?li=d4409446-af7f-42ec-aa20-78aa5bac4748&amp;amp;l=8" target="_blank"&gt;here&lt;/a&gt;). Here below is a code snippet example created with Leo’s tool:&lt;/p&gt; &lt;div   style="border: 1px solid gray; margin: 20px 0px 10px; padding: 4px; overflow: auto; width: 97.5%; cursor: text; line-height: 12pt; background-color: rgb(244, 244, 244);font-family:consolas,'Courier New',courier,monospace;font-size:8pt;"&gt; &lt;div   style="border-style: none; padding: 0px; overflow: visible; width: 100%; color: black; line-height: 12pt; background-color: rgb(244, 244, 244);font-family:consolas,'Courier New',courier,monospace;font-size:8pt;"&gt;&lt;pre    style="border-style: none; margin: 0em; padding: 0px; overflow: visible; width: 100%; line-height: 12pt;font-family:consolas,'Courier New',courier,monospace;font-size:8pt;color:black;"&gt;&lt;span style="color: rgb(96, 96, 96);"&gt;   1:&lt;/span&gt; &lt;span style="color: rgb(0, 0, 255);"&gt;public&lt;/span&gt; ActionResult Search()&lt;/pre&gt;&lt;pre   style="border-style: none; margin: 0em; padding: 0px; overflow: visible; width: 100%; color: black; line-height: 12pt; background-color: rgb(244, 244, 244);font-family:consolas,'Courier New',courier,monospace;font-size:8pt;"&gt;&lt;span style="color: rgb(96, 96, 96);"&gt;   2:&lt;/span&gt; {&lt;/pre&gt;&lt;pre    style="border-style: none; margin: 0em; padding: 0px; overflow: visible; width: 100%; line-height: 12pt;font-family:consolas,'Courier New',courier,monospace;font-size:8pt;color:black;"&gt;&lt;span style="color: rgb(96, 96, 96);"&gt;   3:&lt;/span&gt;     &lt;span style="color: rgb(0, 0, 255);"&gt;string&lt;/span&gt; query = Request.Form[&lt;span style="color: rgb(0, 96, 128);"&gt;"keywords"&lt;/span&gt;];&lt;/pre&gt;&lt;pre   style="border-style: none; margin: 0em; padding: 0px; overflow: visible; width: 100%; color: black; line-height: 12pt; background-color: rgb(244, 244, 244);font-family:consolas,'Courier New',courier,monospace;font-size:8pt;"&gt;&lt;span style="color: rgb(96, 96, 96);"&gt;   4:&lt;/span&gt;     &lt;span style="color: rgb(0, 0, 255);"&gt;char&lt;/span&gt;[] par = { &lt;span style="color: rgb(0, 96, 128);"&gt;' '&lt;/span&gt; };&lt;/pre&gt;&lt;pre    style="border-style: none; margin: 0em; padding: 0px; overflow: visible; width: 100%; line-height: 12pt;font-family:consolas,'Courier New',courier,monospace;font-size:8pt;color:black;"&gt;&lt;span style="color: rgb(96, 96, 96);"&gt;   5:&lt;/span&gt;     &lt;span style="color: rgb(0, 0, 255);"&gt;string&lt;/span&gt;[] keywords = query.Split(par);&lt;/pre&gt;&lt;pre   style="border-style: none; margin: 0em; padding: 0px; overflow: visible; width: 100%; color: black; line-height: 12pt; background-color: rgb(244, 244, 244);font-family:consolas,'Courier New',courier,monospace;font-size:8pt;"&gt;&lt;span style="color: rgb(96, 96, 96);"&gt;   6:&lt;/span&gt;     ResourceStorage rs = SearchService.SearchByKeywords(keywords);&lt;/pre&gt;&lt;pre    style="border-style: none; margin: 0em; padding: 0px; overflow: visible; width: 100%; line-height: 12pt;font-family:consolas,'Courier New',courier,monospace;font-size:8pt;color:black;"&gt;&lt;span style="color: rgb(96, 96, 96);"&gt;   7:&lt;/span&gt;     rs.Name = query;&lt;/pre&gt;&lt;pre   style="border-style: none; margin: 0em; padding: 0px; overflow: visible; width: 100%; color: black; line-height: 12pt; background-color: rgb(244, 244, 244);font-family:consolas,'Courier New',courier,monospace;font-size:8pt;"&gt;&lt;span style="color: rgb(96, 96, 96);"&gt;   8:&lt;/span&gt;  &lt;/pre&gt;&lt;pre    style="border-style: none; margin: 0em; padding: 0px; overflow: visible; width: 100%; line-height: 12pt;font-family:consolas,'Courier New',courier,monospace;font-size:8pt;color:black;"&gt;&lt;span style="color: rgb(96, 96, 96);"&gt;   9:&lt;/span&gt;     &lt;span style="color: rgb(0, 0, 255);"&gt;return&lt;/span&gt; View(&lt;span style="color: rgb(0, 96, 128);"&gt;"Search"&lt;/span&gt;, &lt;span style="color: rgb(0, 0, 255);"&gt;new&lt;/span&gt; SearchResults(rs));&lt;/pre&gt;&lt;pre   style="border-style: none; margin: 0em; padding: 0px; overflow: visible; width: 100%; color: black; line-height: 12pt; background-color: rgb(244, 244, 244);font-family:consolas,'Courier New',courier,monospace;font-size:8pt;"&gt;&lt;span style="color: rgb(96, 96, 96);"&gt;  10:&lt;/span&gt; }&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;Some kind souls in the above places have recommended the following two tips to get a clean display:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Remove &lt;span style="font-size:90;"&gt;&lt;span style="font-family:courier new;"&gt;max-height&lt;/span&gt;&lt;/span&gt; attribute from the generated source to get rid of the vertical scroll bar.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Change WLW’s blog settings to generate HTML markup (instead of XHTML as the default one) to avoid broken style when writing blogs for Google’s Blogger.&lt;/li&gt;&lt;/ul&gt;&lt;a href="http://lh6.ggpht.com/_3zTcSpmI-8Y/SWgExyvyO7I/AAAAAAAAADE/oNa20bV2A3c/s1600-h/BlogSettings%5B4%5D.jpg"&gt;&lt;img title="BlogSettings" style="border-width: 0px; display: block; float: none; margin-left: auto; margin-right: auto;" alt="BlogSettings" src="http://lh3.ggpht.com/_3zTcSpmI-8Y/SWgEzMgWrEI/AAAAAAAAADI/hfzjG595WLI/BlogSettings_thumb%5B2%5D.jpg?imgmax=800" border="0" height="227" width="244" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;p&gt;I discovered that sometimes WLW's generated markups don't fit my expectation on Blogger (this may happen for Blogger only). Under those circumstances I log on to Blogger and perform final layout clean-up there.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8851655709358651935-8184367353558291823?l=blog.hosimauthuc.net' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.hosimauthuc.net/feeds/8184367353558291823/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://blog.hosimauthuc.net/2009/01/using-windows-live-writer-with-googles.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8851655709358651935/posts/default/8184367353558291823'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8851655709358651935/posts/default/8184367353558291823'/><link rel='alternate' type='text/html' href='http://blog.hosimauthuc.net/2009/01/using-windows-live-writer-with-googles.html' title='Using Windows Live Writer with Google’s Blogger'/><author><name>Thuc Si Mau Ho</name><uri>http://www.blogger.com/profile/04418475991330981867</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://lh3.ggpht.com/_3zTcSpmI-8Y/SWgEzMgWrEI/AAAAAAAAADI/hfzjG595WLI/s72-c/BlogSettings_thumb%5B2%5D.jpg?imgmax=800' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8851655709358651935.post-6117578941166362524</id><published>2008-05-04T11:25:00.005+07:00</published><updated>2008-05-04T11:46:52.341+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='VSTS'/><title type='text'>Talks at Microsoft Launch Event of Windows Server 2008, VSTS 2008 and SQL Server 2008</title><content type='html'>I gave two talks at Microsoft Launch Event of Windows Server 2008, VSTS 2008 and SQL Server 2008 on April 22, 2008 in HCMC, Vietnam.&lt;br /&gt;&lt;br /&gt;They are on Agile development in Visual Studio Team System 2008 and Software Testing with VSTS 2008. The first talk discusses Microsoft VSTS 2008 integrated capabilities for agile development. The second one hightlights the automated testing inside VSTS 2008 for Unit Testing, Web Testing and Load testing. &lt;br /&gt;&lt;br /&gt;You can download the above presentations at the following links. &lt;br /&gt;&lt;br /&gt;&lt;a href="http://thucsmho.googlepages.com/VSTS2008forAgileDevelopment-Vietname.zip"&gt;VSTS 2008 for Agile Development (Vietnhamese)&lt;/a&gt;&lt;br /&gt;&lt;a href="http://thucsmho.googlepages.com/SoftwareTestingwithVSTS2008-Vietname.zip"&gt;Software Testing with VSTS 2008 (Vietnamese)&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8851655709358651935-6117578941166362524?l=blog.hosimauthuc.net' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.hosimauthuc.net/feeds/6117578941166362524/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://blog.hosimauthuc.net/2008/05/talks-at-microsoft-launch-event-of.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8851655709358651935/posts/default/6117578941166362524'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8851655709358651935/posts/default/6117578941166362524'/><link rel='alternate' type='text/html' href='http://blog.hosimauthuc.net/2008/05/talks-at-microsoft-launch-event-of.html' title='Talks at Microsoft Launch Event of Windows Server 2008, VSTS 2008 and SQL Server 2008'/><author><name>Thuc Si Mau Ho</name><uri>http://www.blogger.com/profile/04418475991330981867</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8851655709358651935.post-1548776837790198840</id><published>2007-12-09T18:45:00.000+07:00</published><updated>2007-12-09T18:57:20.919+07:00</updated><title type='text'>Live Club Microsoft Technology Kick-off</title><content type='html'>Yesterday, &lt;a href="http://liveclub.vn"&gt;Live Club Microsoft Technology&lt;/a&gt; Kick-off Event occurred at the Grant Hall of University of Natural Sciences, Saigon. I am among the key members of the newly-born club. The team did a good job to get the launch event. Almost one hundred visitors and club members were present at the event. I gave a presentation on MOSS as a development platform. Two other guys talked about MOSS's general features and deployment. &lt;br /&gt;&lt;br /&gt;&lt;a href="http://bp2.blogger.com/_3zTcSpmI-8Y/R1vXRX0s0QI/AAAAAAAAAA8/9VrlBSc2hUU/s1600-h/2096809862_41fc73b785_b.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://bp2.blogger.com/_3zTcSpmI-8Y/R1vXRX0s0QI/AAAAAAAAAA8/9VrlBSc2hUU/s320/2096809862_41fc73b785_b.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5141940093026357506" /&gt;&lt;/a&gt;&lt;br /&gt;Nice event indeed. We are glad that the club has now come into being. You  can visit the club web site at &lt;a href="http://liveclub.vn"&gt;http://liveclub.vn&lt;/a&gt; for more details or to register as club members.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8851655709358651935-1548776837790198840?l=blog.hosimauthuc.net' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.hosimauthuc.net/feeds/1548776837790198840/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://blog.hosimauthuc.net/2007/12/live-club-microsoft-technology-kick-off.html#comment-form' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8851655709358651935/posts/default/1548776837790198840'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8851655709358651935/posts/default/1548776837790198840'/><link rel='alternate' type='text/html' href='http://blog.hosimauthuc.net/2007/12/live-club-microsoft-technology-kick-off.html' title='Live Club Microsoft Technology Kick-off'/><author><name>Thuc Si Mau Ho</name><uri>http://www.blogger.com/profile/04418475991330981867</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp2.blogger.com/_3zTcSpmI-8Y/R1vXRX0s0QI/AAAAAAAAAA8/9VrlBSc2hUU/s72-c/2096809862_41fc73b785_b.jpg' height='72' width='72'/><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8851655709358651935.post-9078734464509332004</id><published>2007-11-23T20:42:00.000+07:00</published><updated>2007-11-23T21:16:57.332+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SP2003'/><title type='text'>Email alerts not sent from SharePoint Portal Server 2003</title><content type='html'>Recently I ran into a problem with SharePoint Portal Server 2003: email alerts are not sent from any alerts created on any lists in the portal. Users still can see alert results under "My Alerts" on their personal sites. However, email alerts &lt;strong&gt;&lt;em&gt;are&lt;/em&gt;&lt;/strong&gt; sent if alerts are created on a list in a WSS site.&lt;br /&gt;&lt;br /&gt;The situation is similar to the issue described in &lt;a href="http://jopx.blogspot.com/2005/04/sharepoint-portal-server-alerts-not.html"&gt;Jopx's blog&lt;/a&gt;. However, the hotfix mentioned in that blog post is obsolete now, since the described problem was addressed by SharePoint Portal 2003 Service Pack 2.&lt;br /&gt;&lt;br /&gt;Unfortunately, even SP2003 SP2 does not remove the problem that I faced.&lt;br /&gt;&lt;br /&gt;After several desperate experiments, a surprisingly simple solution popped up.  SharePoint Alert and SharePoint Timer services &lt;strong&gt;must&lt;/strong&gt; use a domain account. This is necessary even when I have a local database in a single server deployment.&lt;br /&gt;&lt;br /&gt;The true reason behind this is that these services need to contact Active Directory for security issues. When a user browses to his/her My Site, the site owner was already authenticated so the alert results show up properly. However, before sending out alert emails, SP2003 services need to make sure that the receiver already has enough authorization to see the alert results. Hence at least read-access to Active Directory is required, whereas a local system account can't satisfy.&lt;br /&gt;&lt;br /&gt;You can read more about discussions around this issue in this &lt;a href="http://www.sharepointu.com/forums/t/946.aspx"&gt;forum thread&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;The moral here is that many things might be quite complicated although they appear simple. Furthermore, single server deployment of SharePoint 2003 in production environment may not be in common, so a quick search with Google would not yield the required answer.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8851655709358651935-9078734464509332004?l=blog.hosimauthuc.net' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.hosimauthuc.net/feeds/9078734464509332004/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://blog.hosimauthuc.net/2007/11/email-alerts-not-sent-from-sharepoint.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8851655709358651935/posts/default/9078734464509332004'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8851655709358651935/posts/default/9078734464509332004'/><link rel='alternate' type='text/html' href='http://blog.hosimauthuc.net/2007/11/email-alerts-not-sent-from-sharepoint.html' title='Email alerts not sent from SharePoint Portal Server 2003'/><author><name>Thuc Si Mau Ho</name><uri>http://www.blogger.com/profile/04418475991330981867</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8851655709358651935.post-7819223125097778790</id><published>2007-10-13T14:16:00.000+07:00</published><updated>2007-10-15T08:24:11.960+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Silverlight'/><title type='text'>Hosting Silverlight Applications with Silverlight Streaming</title><content type='html'>Developing a Silverlight mini-application is not hard. There are excellent tutorials such as &lt;a href="http://silverlight.net/quickstarts/"&gt;the QuickStarts series on Microsoft Silverlight web site&lt;/a&gt;. However, most Silverlight tutorials assume that you can deploy your multimedia Silverlight application to a web server that you have complete control over. What would you do if you don't have enough control over your web server on the Internet?&lt;br /&gt;&lt;br /&gt;I ran into similar situation when I tried to deploy my Silverlight control in Google Blogger. Fortunately, after some Internet search, the following solution is found.&lt;br /&gt;&lt;br /&gt;Microsoft offers Silverlight Streaming, a free hosting service that can solve this problem. All you need is a web page where you can place html &lt;strong&gt;and&lt;/strong&gt; javascript code. The major parts of your Silverlight app will be hosted at &lt;a href="http://silverlight.live.com/"&gt;http://silverlight.live.com/&lt;/a&gt;, including XAML files, media resources and javascripts. When your web page is displayed, your hosted Silverlight contents will be streamlined from the host to the client browser. Hence the name of the service is Silverlight Streaming.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://bp3.blogger.com/_3zTcSpmI-8Y/RxI9HrlxfNI/AAAAAAAAAA0/lsw0U5wtRuk/s1600-h/smile.gif"&gt;&lt;img id="BLOGGER_PHOTO_ID_5121222928443210962" style="FLOAT: left; MARGIN: 0px 10px 10px 0px; CURSOR: hand" alt="" src="http://bp3.blogger.com/_3zTcSpmI-8Y/RxI9HrlxfNI/AAAAAAAAAA0/lsw0U5wtRuk/s320/smile.gif" border="0" /&gt;&lt;/a&gt; The following steps describe what you need to do to get the Silverlight Streaming service work. I also included code snippets for a Silverlight mini-application that displays a smile as illustrating example.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Step 1.&lt;/strong&gt;&lt;br /&gt;Develop your Silverlight application with any existing development tools. At the time of this writing, Microsoft Blend 2 September Preview is my favorite one.&lt;br /&gt;&lt;br /&gt;A typical Silverlight application will include&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt;A .html web page to host the Silverligh plug-in control&lt;/li&gt;&lt;br /&gt;&lt;li&gt;A .xaml file to hold XAML script for display&lt;/li&gt;&lt;br /&gt;&lt;li&gt;.js files to hold javascript code&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;Not all of Silverlight application files will be uploaded onto the hosting service. Before uploading, test your Silverlight application locally to make sure it works as you expect.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Step 2.&lt;/strong&gt;&lt;br /&gt;Prepare a package to host your Silverlight application.&lt;br /&gt;The package should have .zip format and includes the followings:&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt;manifest.xml file to describe the contents of your package&lt;/li&gt;&lt;br /&gt;The manifest.xml file for the example I developed will look like this&lt;br /&gt;&lt;br /&gt;&lt;a href="http://bp1.blogger.com/_3zTcSpmI-8Y/RxIqWLlxfKI/AAAAAAAAAAc/Fzjz8HKpiuw/s1600-h/Silverlight_manifest.gif"&gt;&lt;img id="BLOGGER_PHOTO_ID_5121202286830386338" style="CURSOR: hand" alt="" src="http://bp1.blogger.com/_3zTcSpmI-8Y/RxIqWLlxfKI/AAAAAAAAAAc/Fzjz8HKpiuw/s400/Silverlight_manifest.gif" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;li&gt;all .xaml files, javascript files required by your Silverlight application (excluding the Silverlight.js file containing Microsoft's Silverlight javascript code)&lt;/li&gt;&lt;br /&gt;The Smile.xaml file for the example&lt;br /&gt;&lt;br /&gt;&lt;a href="http://bp3.blogger.com/_3zTcSpmI-8Y/RxI0hrlxfLI/AAAAAAAAAAk/sf02Us3au7k/s1600-h/Silverlight_xaml.gif"&gt;&lt;img id="BLOGGER_PHOTO_ID_5121213479515159730" style="CURSOR: hand" alt="" src="http://bp3.blogger.com/_3zTcSpmI-8Y/RxI0hrlxfLI/AAAAAAAAAAk/sf02Us3au7k/s400/Silverlight_xaml.gif" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;li&gt;all required media files (if any)&lt;/li&gt;&lt;br /&gt;&lt;li&gt;.html files should be &lt;strong&gt;excluded&lt;/strong&gt;&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;The package used in my example contains only the XAML file and the manifest. Currently Microsoft Silverlight Streaming site is still at Alpha state only. The maximum size of the .zip package is set at 22MB. Hope that when it comes to release phase later, this limitation can be significantly improved.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Step 3.&lt;/strong&gt;&lt;br /&gt;Obtain your Silverlight Streaming account at &lt;a href="http://silverlight.live.com/"&gt;http://silverlight.live.com&lt;/a&gt;&lt;br /&gt;You will need a Windows Live ID to register for the Silverlight Streaming account. When registration succeeds, you will be given a public Account ID and a private Account Key to access the uploaded contents. Only the public Account ID will be needed in this example. Upload your Silverlight application package using "Manage Applications" section. All your uploaded applications can also be managed from there.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Step 4.&lt;/strong&gt;&lt;br /&gt;Create web pages that will display a Silverlight plug-in with your Silverlight application contents. You can copy the code snippets offered by Microsoft Silverlight Streaming service after uploading your application. Your Account ID will be already inserted into the code snippets properly.&lt;br /&gt;&lt;br /&gt;If you can't modify the html header section of your web page, it will be fine if you inline all javascript code and html in the body of the page.&lt;br /&gt;&lt;br /&gt;The resulting web page in my example will look as follows. Note that the call to&lt;br /&gt;&lt;p&gt;&lt;span style="font-family:courier new;font-size:85%;"&gt;Silverlight.createObjectEx({source: "XAML_file", ...})&lt;/span&gt;&lt;/p&gt;has been replaced by&lt;br /&gt;&lt;p&gt;&lt;span style="font-family:courier new;font-size:85%;"&gt;Silverlight.createHostedObjectEx({ source: "streaming:/your_Account_ID/hosted_application_name", ...})&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://bp0.blogger.com/_3zTcSpmI-8Y/RxI8D7lxfMI/AAAAAAAAAAs/xwdOxk03sLk/s1600-h/Silverlight_html.gif"&gt;&lt;img id="BLOGGER_PHOTO_ID_5121221764507073730" style="CURSOR: hand" alt="" src="http://bp0.blogger.com/_3zTcSpmI-8Y/RxI8D7lxfMI/AAAAAAAAAAs/xwdOxk03sLk/s400/Silverlight_html.gif" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;That's it! Just point your browser to the URL of your web page and enjoy your deployed Silverlight application.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8851655709358651935-7819223125097778790?l=blog.hosimauthuc.net' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.hosimauthuc.net/feeds/7819223125097778790/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://blog.hosimauthuc.net/2007/10/hosting-silverlight-applications-with.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8851655709358651935/posts/default/7819223125097778790'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8851655709358651935/posts/default/7819223125097778790'/><link rel='alternate' type='text/html' href='http://blog.hosimauthuc.net/2007/10/hosting-silverlight-applications-with.html' title='Hosting Silverlight Applications with Silverlight Streaming'/><author><name>Thuc Si Mau Ho</name><uri>http://www.blogger.com/profile/04418475991330981867</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp3.blogger.com/_3zTcSpmI-8Y/RxI9HrlxfNI/AAAAAAAAAA0/lsw0U5wtRuk/s72-c/smile.gif' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8851655709358651935.post-3958996372169486418</id><published>2007-10-07T11:27:00.000+07:00</published><updated>2007-10-07T15:08:18.059+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='MOSS'/><title type='text'>MOSS as Microsoft's top product in 2007</title><content type='html'>While there are still many &lt;a href="http://www.windowsitpro.com/Article/ArticleID/96088/96088.html"&gt;debates&lt;/a&gt; going on around what is Microsoft's greatest product release in 2007, I strongly believe that Microsoft Office SharePoint Server (MOSS) could be the winner.&lt;br /&gt;&lt;br /&gt;Here are my arguments to support this evaluation. The first one is from the point of view of system integration, and the last two ones are from software architecting and development perspectives.&lt;br /&gt;&lt;ol&gt;&lt;li&gt;MOSS is a truely integrated collaboration environment. It brings into one place Enterprise Content Management (ECM), rich features for business management through built-in workflows and dashboards, and easy access to a variety of data sources with Business Data Catalog (BDC). Excel Services and InfoPath make MOSS environment even more tightly integrated with other products in Office 2007.&lt;br /&gt;&lt;p&gt;Before MOSS the enterprise world is full of many ECM systems, both proprietary and open sources. With MOSS now including ECM and taking into account the large number of SharePoint users (up to 85 million licenses sold as Tom Rizzo said in his Foreword to the book "Essential SharePoint 2007", Addison-Wesley, 2007), it can be foreseen that ECM providers now face a strong competitor.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;MOSS is built on matured and new Microsoft technologies such as ASP.NET 2.0, web part frameworks and .NET 3.0. Customzing MOSS is now much easier than customizing SharePoint 2003. Everyone who worked with SharePoint 2003 knows how painful it is to introduce a custom branding to SharePoint 2003 deployment, or to make a SP2003 site internet-facing.&lt;br /&gt;&lt;p&gt;It is easy to change the look-and-feel of MOSS portals with ASP.NET master pages. MOSS architecture also supports Internet-facing sites with non-Active Directory authentication mechanisms. &lt;a href="http://www.hawaiianair.com/"&gt;Hawaiian Airlines&lt;/a&gt; and &lt;a href="http://www.glu.com/"&gt;Glu Mobile’s Website&lt;/a&gt; are great real world success stories of MOSS sites presence on the internet.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;MOSS should not be approached like a shrinked-wrapped product. It fact, it has become a full-scale environment for enterprise computing. This environment comes with very strong out-of-box capabilities, such as the ones mentioned in section 1. above.&lt;br /&gt;&lt;p&gt;However, MOSS also provides lots of support for third-party development within the environment. Imagine what we can achieve if we consider MOSS as a delivery channel where end-users can access their digital resources within a rich, customizable, web-based environment, with version control, BI elements. These digital resources can be processed outputs from other line-of-business applications. Full stand-alone packages or independent software applications may be built or re-architected to take into account MOSS capabiltities. For example, they can output their reports to MOSS document libraries or dashboards and let end users consume these outputs from there. MOSS can also be used to host the productivity-layer components as proposed by Microsoft in realizing composite applications by OBAs.&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;With these enhancements, MOSS bring more opportunities to system integrators and ISVs. They can offer services and products with MOSS in one of the following areas:&lt;br /&gt;&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Deployment and integration of MOSS into existing IT infrastructure.&lt;/li&gt;&lt;li&gt;Development of MOSS web parts for rich business working contexts, or components to relialize the concepts of composite applications. Microsoft has already actively promoted Office Businesss Applications (OBA) in this direction.&lt;/li&gt;&lt;li&gt;Re-architecting existing products with WSS or MOSS as the delivery channel. Again, Microsoft has spent lots of effort in this direction. Many serious products such as Microsoft Visual Studio Team System/Team Foundation Server and Microsoft Project 2007 already rely on WSS as an output environment. The latest release of Microsoft BI products (PerformancePoint Server 2007) also includes WSS 3.0 and MOSS components. While observing these products are gaining more popularity, many other software vendors may follow this approach. &lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8851655709358651935-3958996372169486418?l=blog.hosimauthuc.net' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.hosimauthuc.net/feeds/3958996372169486418/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://blog.hosimauthuc.net/2007/10/moss-as-microsofts-top-product-in-2007.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8851655709358651935/posts/default/3958996372169486418'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8851655709358651935/posts/default/3958996372169486418'/><link rel='alternate' type='text/html' href='http://blog.hosimauthuc.net/2007/10/moss-as-microsofts-top-product-in-2007.html' title='MOSS as Microsoft&apos;s top product in 2007'/><author><name>Thuc Si Mau Ho</name><uri>http://www.blogger.com/profile/04418475991330981867</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry></feed>
