<?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>Powered By &#187; Windows</title>
	<atom:link href="http://www.powered-by.org/tag/windows/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.powered-by.org</link>
	<description>Content Management System News and Updates</description>
	<lastBuildDate>Fri, 23 Jul 2010 09:25:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Plone system resources for a small site</title>
		<link>http://www.powered-by.org/top-cms/plone/plone-basics/plone-system-resources-for-a-small-site/</link>
		<comments>http://www.powered-by.org/top-cms/plone/plone-basics/plone-system-resources-for-a-small-site/#comments</comments>
		<pubDate>Mon, 22 Dec 2008 06:52:10 +0000</pubDate>
		<dc:creator>powered-by.org</dc:creator>
				<category><![CDATA[Plone Basics]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Plone]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.powered-by.org/top-cms/plone/plone-basics/plone-system-resources-for-a-small-site/</guid>
		<description><![CDATA[This article explains what kind of system resources are needed to run small Plone sites, specifically running a small site with few content objects and no dynamicity, e.g. a static company web site and not many hits. Content management system Plone and its application server Zope are designed for scalability and flexibility, so fixed resource [...]]]></description>
			<content:encoded><![CDATA[<p>This article explains what kind of system resources are needed to run small Plone sites, specifically running a small site with few content objects and no dynamicity, e.g. a static company web site and not many hits.<br />
Content management system Plone and its application server Zope are designed for scalability and flexibility, so fixed resource costs per Plone site might be high compared to other solutions (ASP, PHP).</p>
<p><span id="more-325"></span></p>
<p>Basic Plone system resources</p>
<p>To run Plone web site you need</p>
<p>* Some kind of machine (preferably Unix server, Windows works too) which is connected to Internet 24/7</p>
<p>* Ability to run arbitary daemon (background) processes on the server<br />
* Ability to open arbitary ports. Zope wants to open its own port for incoming requests.<br />
* Shell account for installing Plone + Zope and running control software</p>
<p>One could say that you need server root privileges to run Plone, though it&#8217;s technically possible without root privileges if the web hosting provider co-operates with you. Also, Plone gulps quite much RAM memory. Read more about it below. You might want to use virtual server, real server or Zope specific host company to run Plone web site, since most low end web hosting solutions don&#8217;t provide enough flexibility to run Plone. Google for &#8220;plone hosting&#8221; or &#8220;zope hosting&#8221;. One example company providing resourceful Zope hosting in Europe is Nidelven IT.</p>
<h3>Plone performance measuring and caching</h3>
<p>Plone doesn&#8217;t use any CPU when no pages are being loaded (in idle state).</p>
<p>When a page is being loaded, CPU usage maxes out to 100% per thread.</p>
<p>Because Plone CPU usage varies with the load, it&#8217;s useful to requets per seconds metric instead of CPU usage % to measure how much load the system can take.</p>
<h3>Caching</h3>
<p>Caching means that instead of regenerating the web page for each individual request, an old copy is kept lying around in memory/on disk and is served for consequent requests. Since the same once generated data is recycled, we improve performance by not going a long process of fetching data from a database, fitting it into page templates and finally converting to HTML.</p>
<p>Without caching, Plone is not suitable for heavy traffic sites (more than few visitors per minute).</p>
<h3>Static caching</h3>
<p>Here I use term &#8216;static caching&#8217; for a method where the whole site is kept in the cache and real-time modified content is available for certain users only. This method is suitable for company web pages and other, closed, non-interactive content.</p>
<p>Pros</p>
<p>* Very easy to set-up<br />
* Very efficient</p>
<p>Cons</p>
<p>* The site cannot have dynamic content (e.g. discussion) or other content which anyone could update</p>
<p>The easiest way to do static caching is to put a front end server at the front of Plone. The front end server takes all requests and caches them over a certain time period until it fetches new content from the server.</p>
<p>The most popular ways are using Apache web server&#8217;s mod_proxy module and Squid proxy.</p>
<p>With Apache 2 caching site content using mod_proxy, speed increase drastically (x 100). This is because pages are served directly from memory cache, instead of being regenerated each time a request is made. You should find plenty of tutorials from plone.org/documentation and Google how to put Apache 2 to the front of Zope to cache requets.</p>
<p>Also, Apache&#8217;s mod_deflate plug-in can used to GZip compress HTML, JS and CSS code before sending it over the wire. Most of desktop web browsers support GZip&#8217;ed content. This decreases bandwidth requirements, since HTML and other text based content compresses well.</p>
<h3>Dynamic caching</h3>
<p>Plone 2.5 ships with an add-on product called Cache Fu. Cache Fu allows fine tuned control of caching</p>
<p>* Caching only static items with a front end cache (Apache/Squid)<br />
* Increasing Zope database performance by tuning internal database object caches<br />
* Setting HTTP headers so that user web browsers itself cache the content propeply</p>
<p>Pros</p>
<p>* Propeply set up Cache Fu ensures that live content is always up-to-date (thus, the name dynamic caching), but static content is served at the maximum possible speed</p>
<p>Cons</p>
<p>* Setting up Cache Fu needs insight to HTTP request mechanisms and Plone internals</p>
<p>For more information see the documentation supplied with Cache Fu.</p>
<p>Note that Zope doesn&#8217;t reserve all memory on boot up. You need to browse around the site to make page loads and you can see memory usage increasing (until every page is load).</p>
<p>Spikes and Python memory management</p>
<p>When you upload a big content object (e.g. a high resolution image) Python memory usage spikes up since Python needs to allocate memory for processing the image. This image might not never freed back to the system and thus task manager utilities like top report Python to plenty of memory. However, this memory is not actively used and it&#8217;s swapped out. Read more about Python memory allocation.</p>
<h3>Zope packing</h3>
<p>Zope database stores information for all object revisions (each edit, delete) for undoing changes. Unless you want to have ability to track down each change, you can pack Zope database now and then to decrease it&#8217;s size. It can be done via Zope management interface control panel.</p>
<p><a href="http://plone.org/documentation/how-to/plone-system-resources-for-a-small-site" target="_blank">Source :</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.powered-by.org/top-cms/plone/plone-basics/plone-system-resources-for-a-small-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drupal</title>
		<link>http://www.powered-by.org/top-cms/drupal-top-cms/drupal/</link>
		<comments>http://www.powered-by.org/top-cms/drupal-top-cms/drupal/#comments</comments>
		<pubDate>Sun, 21 Dec 2008 10:05:02 +0000</pubDate>
		<dc:creator>powered-by.org</dc:creator>
				<category><![CDATA[CMS Index]]></category>
		<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Open Source Web CMS]]></category>
		<category><![CDATA[Portal]]></category>
		<category><![CDATA[Blogs]]></category>
		<category><![CDATA[content management systems]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[mysql database]]></category>
		<category><![CDATA[search engine]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.powered-by.org/reference/drupal/</guid>
		<description><![CDATA[Drupal is a free software package that allows an individual or a community of users to easily publish, manage and organize a wide variety of content on a website. Tens of thousands of people and organizations are using Drupal to power scores of different web sites, including Community web portals Discussion sites Corporate web sites [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.powered-by.org/wp-content/uploads/2008/12/drupal-logo.jpg"><img src="http://www.powered-by.org/wp-content/uploads/2008/12/drupal-logo-thumb.jpg" border="0" alt="drupal_logo" width="150" height="150" align="right" /></a>Drupal is a free software package that allows an individual or a community of users to easily publish, manage and organize a wide variety of content on a website. Tens of thousands of people and organizations are using Drupal to power scores of different web sites, including</p>
<ul>
<li>Community web portals</li>
<li>Discussion sites</li>
<li>Corporate web sites</li>
<li>Intranet applications</li>
<li>Personal web sites or blogs <span id="more-121"></span></li>
<li>Aficionado sites</li>
<li>E-commerce applications</li>
<li>Resource directories</li>
<li>Social Networking sites</li>
</ul>
<p><a href="http://www.powered-by.org/wp-content/uploads/2008/12/drupal.jpg"><img src="http://www.powered-by.org/wp-content/uploads/2008/12/drupal-thumb.jpg" border="0" alt="drupal" width="293" height="391" align="right" /></a> Drupal is ready to go from the moment you download it. It even has an easy-to-use web installer! The built-in functionality, combined with dozens of freely available add-on modules, will enable features such as:</p>
<ul>
<li>Content Management Systems</li>
<li>Blogs</li>
<li>Collaborative authoring environments</li>
<li>Forums</li>
<li>Peer-to-peer networking</li>
<li>Newsletters</li>
<li>Podcasting</li>
<li>Picture galleries</li>
<li>File uploads and downloads and much more.</li>
</ul>
<p>Drupal is open-source software distributed under the GPL (&#8220;GNU General Public License&#8221;) and is maintained and developed by a community of thousands of users and developers. If you like what Drupal promises for you, please work with us to expand and refine Drupal to suit your specific needs.</p>
<h3>General features</h3>
<ul>
<li>Collaborative Book &#8211; Our unique collaborative book feature lets you setup a &#8220;book&#8221; and then authorize other individuals to contribute content.detailed information</li>
<li>Friendly URLs &#8211; Drupal uses Apache&#8217;s mod_rewrite to enable customizable URLs that are both user and search engine friendly.</li>
<li>Modules &#8211; The Drupal community has contributed many modules which provide functionality that extend Drupal core.detailed information</li>
<li>Online help &#8211; Like many Open Source projects, we can&#8217;t say that our online help is perfect but have built a robust online help system built into the core help text. Available to you on your own site.detailed information</li>
<li>Open source &#8211; The source code of Drupal is freely available under the terms of the GNU General Public License 2 (GPL). Unlike proprietary blogging or content management systems, Drupal&#8217;s feature set is fully available to extend or customize as needed.detailed information</li>
<li>Personalization &#8211; A robust personalization environment is at the core of Drupal. Both the content and the presentation can be individualized based on user-defined preferences.</li>
<li>Role based permission system &#8211; Drupal administrators don&#8217;t have to tediously setup permissions for each user. Instead, they assign permissions to roles and then group like users into a role group.screenshot . detailed information</li>
<li>Searching &#8211; All content in Drupal is fully indexed and searchable at all times if you take advantage of the built in search module.</li>
</ul>
<h3>User management</h3>
<p>User authentication &#8211; Users can register and authenticate locally or using an external authentication source like Jabber, Blogger, LiveJournal or another Drupal website. For use on an intranet, Drupal can integrate with an LDAP server.detailed information</p>
<h3>Content management</h3>
<ul>
<li>Polls &#8211; Drupal comes with a poll module which enables admins and/or users to create polls and show them on various pages.detailed information</li>
<li>Templating &#8211; Drupal&#8217;s theme system separates content from presentation allowing you to control the look and feel of your Drupal site. Templates are created from standard HTML and PHP coding meaning that you don&#8217;t have to learn a proprietary templating language.detailed information</li>
<li>Threaded comments &#8211; Drupal provides a powerful threaded comment model for enabling discussion on published content. Comments are hierarchical as in a newsgroup or forum.detailed information</li>
<li>Version control &#8211; Drupal&#8217;s version control system tracks the details of content updates including who changed it, what was changed, the date and time of changes made to your content and more. Version control features provide an option to keep a comment log and enables you to roll-back content to an earlier version.screenshot</li>
</ul>
<h3>Blogging</h3>
<ul>
<li>Blogger API support &#8211; The Blogger API allows your Drupal site to be updated by many different tools. This includes non-web browser based tools that provide a richer editing environment.detailed information</li>
<li>Content syndication &#8211; Drupal exports your site&#8217;s content in RDF/RSS format for others to gather. This lets anyone with a News Aggregator browse your Drupal sites feeds.detailed information</li>
<li>News aggregator &#8211; Drupal has a powerful built-in News Aggregator for reading and blogging news from other sites. The News Aggregator caches articles to your MySQL database and its caching time is user configurable.detailed information</li>
<li>Permalinks &#8211; All content created in Drupal has a permanent link or &#8220;perma link&#8221; associated with it so people can link to it freely without fear of broken links.</li>
</ul>
<h3>Platform</h3>
<ul>
<li>Apache or IIS, Unix / Linux / BSD / Solaris / Windows / Mac OS X support &#8211; Drupal was designed from the start to be multi-platform. Not only can you use it with either Apache or Microsoft IIS but we also have Drupal running on Linux, BSD, Solaris, Windows, and Mac OS X platforms.detailed information</li>
<li>Database independence &#8211; While many of our users run Drupal with MySQL, we knew that MySQL wasn&#8217;t the solution for everyone. Drupal is built on top of a database abstraction layer that enables you to use Drupal with MySQL and PostgreSQL. Other SQL databases can be supported by writing a supporting database backend containing fourteen functions and creating a matching SQL database scheme.detailed information</li>
<li>Multi-language &#8211; Drupal is designed to meet the requirements of an international audience and provides a full framework to create a multi-lingual website, blog, content management system or community application. All text can be translated using a graphical user interface, by importing existing translations, or by integrating with other translation tools such as the GNU gettext.detailed information</li>
</ul>
<h3>Administration and analysis</h3>
<ul>
<li>Analysis, Tracking and Statistics &#8211; Drupal can print browser-based reports with information about referrals, content popularity and how visitors navigate your site.screenshot . detailed information</li>
<li>Logging and Reporting &#8211; All important activities and system events are captured in an event log to be reviewed by an administrator at a later time.screenshot . detailed information</li>
<li>Web based administration &#8211; Drupal can be administered entirely using a web browser, making it possible to access it from around the world and requires no additional software to be installed on your computer.screenshot</li>
</ul>
<h3>Community features</h3>
<ul>
<li>Discussion forums &#8211; Full discussion forum features are built into Drupal to create lively, dynamic community sites.detailed information<br />
Performance and scalability</li>
</ul>
<p>Caching &#8211; The caching mechanism eliminates database queries increasing performance and reducing the server&#8217;s load. Caching be tuned in real time and many high-traffic sites have performed very well under load.detailed information.</p>
<h3>Other Information</h3>
<ul>
<li>Initial release  January 2001 (2001-01)</li>
<li>Latest release  6.8 / 11 December 2008; 10 days ago</li>
<li>Written in  PHP</li>
<li>OS  Cross-platform</li>
<li>Type  Content management framework, Content management system, Community and Blog software</li>
<li>License  GPL</li>
</ul>
<h3>Links</h3>
<ul>
<li><a href="http://www.powered-by.org/category/top-cms/drupal-top-cms/">Drupal News</a></li>
<li><a href="http://ftp.drupal.org/files/projects/drupal-6.8.tar.gz" target="_blank">Download Drupal 6.8</a></li>
<li><a href="http://ftp.drupal.org/files/projects/drupal-5.14.tar.gz" target="_blank">Download Drupal 5.14</a></li>
<li><a href="http://drupal.org/" target="_blank">Visit drupal.org</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.powered-by.org/top-cms/drupal-top-cms/drupal/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Microsoft Demonstrates an End-to-End Solution Portfolio for the Digital Content Life Cycle at IBC2008</title>
		<link>http://www.powered-by.org/news/industry/microsoft-demonstrates-an-end-to-end-solution-portfolio-for-the-digital-content-life-cycle-at-ibc2008/</link>
		<comments>http://www.powered-by.org/news/industry/microsoft-demonstrates-an-end-to-end-solution-portfolio-for-the-digital-content-life-cycle-at-ibc2008/#comments</comments>
		<pubDate>Sat, 13 Sep 2008 19:11:38 +0000</pubDate>
		<dc:creator>powered-by.org</dc:creator>
				<category><![CDATA[Industry]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[VOD]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.powered-by.org/news/industry/microsoft-demonstrates-an-end-to-end-solution-portfolio-for-the-digital-content-life-cycle-at-ibc2008/</guid>
		<description><![CDATA[AMSTERDAM, Netherlands, Sept 12, 2008 /PRNewswire-FirstCall via COMTEX/ &#8212; This week at the IBC2008 conference held at the Amsterdam RAI conference center, Microsoft Corp. will showcase the advanced media platform technologies and partner ecosystem that enable organizations to create, manage, deliver and monetize an endless variety of engaging digital entertainment experiences. Microsoft and its partners [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.powered-by.org/wp-content/uploads/2008/09/microsoft.jpg"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" src="http://www.powered-by.org/wp-content/uploads/2008/09/microsoft-thumb.jpg" border="0" alt="microsoft" width="127" height="102" align="right" /></a> AMSTERDAM, Netherlands, Sept 12, 2008 /PRNewswire-FirstCall via COMTEX/ &#8212; This week at the IBC2008 conference held at the Amsterdam RAI conference center, Microsoft Corp. will showcase the advanced media platform technologies and partner ecosystem that enable organizations to create, manage, deliver and monetize an endless variety of engaging digital entertainment experiences. Microsoft and its partners provide solutions to support the full content life cycle, including content creation and management, media business management and monetization, and digital content delivery.</p>
<p><span id="more-38"></span></p>
<p>Microsoft is making several announcements at the show, including new customer adoption for the Microsoft Interactive Media Manager (IMM) solution with Abertis Telecom; adoption of Microsoft Silverlight by European broadcasters and the upcoming inclusion of additional codecs such as H.264 and Advanced Audio Coding (AAC) in the Silverlight plug-in; and developments for the Microsoft Mediaroom Internet Protocol television (IPTV) and multimedia software platform including the Microsoft Mediaroom Advertising Platform (MAP), Mediaroom Migration Program and an interactive TV application developed by emuse technologies using British Broadcasting Corp. (BBC) content, which will be demonstrated for the first time at the show.</p>
<p>&#8220;The industry is in a race to see who can deliver the most exciting experience and monetize multiple digital distribution channels, while still managing their content and business as efficiently and cost-effectively as possible,&#8221; said Gabriele Di Piazza, managing director for the Media and Entertainment Business in the Communications Sector at Microsoft. &#8220;As well as facing the unique challenges created by the ever-expanding worlds of digital media and the Internet, media and entertainment companies need to ensure that the basic but critical operations are efficiently supporting and providing useful insights into their core business, rather than draining time and resources away from it. That&#8217;s why companies in this industry are focusing on content and business management just as much as on content creation and delivery.&#8221;</p>
<p>Digital media delivery requires media and entertainment companies to manage a variety of complex customer and partner engagements. Microsoft provides the tools to help them manage their assets across the many different facets of their business, including broadcast resources, licenses, program schedules and libraries; traditional and digital advertising; supply chain management; and customer relationship tracking.</p>
<p>Digital Content Creation and Management</p>
<p>Microsoft solutions enable media companies to create rich media content and, in doing so, to better manage production workflows across multiple systems and departments. Abertis Telecom S.A. and Microsoft are working together on the development of a new service for management and distribution of TV content over the Internet on Silverlight and Windows Presentation Foundation. This platform, created as an Abertis Telecom initiative, is specially created for management of distribution of digital terrestrial television channels and content over the Internet, with an innovative presentation environment. The Abertis Telecom service is utilizing Microsoft IMM as the backend workflow solution to acquire and manage digital content.</p>
<p>Digital Content Delivery and Monetization</p>
<p>Microsoft announced that Microsoft Silverlight, a cross-browser multiplatform plug-in for delivering media experiences and rich interactive applications on the Web, continues to gain momentum. Silverlight adoption by major media, broadcasting and content companies has continued to grow, including innovative new VOD offerings from TF1, RTL, France Television, iTV and MSN UK, and live and on-demand sports channels from L&#8217;EquipeTV and Setanta. Microsoft also will preview H.264 and AAC playback support in Silverlight, together with Microsoft Expression Encoder H.264 authoring and Windows Server 2008 for delivery.<br />
&#8220;Using Silverlight, we are very excited to be able to offer the same advanced features and high-quality video to customers both on Windows and Mac browsers,&#8221; said Pierre Brossard, CEO of TF1. &#8220;Through visual and tactile navigation of content and playback in a Silverlight rich media environment, the TF1 Vision service will provide a true online interactive VOD experience available to the vast majority of broadband users. In addition, through Microsoft&#8217;s announced support for mp4 standard formats in Silverlight, we&#8217;ll be able to easily repurpose existing libraries of H.264 and AAC content and extend the future reach of our service to an ever-growing market of mp4-capable devices.&#8221;<br />
Microsoft is also announcing developments for its Microsoft Mediaroom IPTV and multimedia platform including the following:</p>
<ul>
<li>Mediaroom Advertising Platform. This new adjunct offering lets service providers deploying Microsoft Mediaroom offer targeted, measurable and interactive advertising spots all from one comprehensive platform.</li>
<li>Microsoft Mediaroom Migration Program. This new program helps IPTV operators migrate to Mediaroom from first-generation platforms.</li>
<li>An interactive application developed by emuse technologies uses content from the BBC. IBC2008 is the platform for first public viewing of a new application that shows how the BBC&#8217;s original journalistic content, including news, sports and weather could look using the Mediaroom platform.</li>
</ul>
<p>FAST, a Microsoft subsidiary, is demonstrating the flexible and scalable FAST Enterprise Search Platform (ESP), which allows organizations to create unique user experiences and change the way people interact with information by uncovering new revenue streams, improving business decisions and increasing productivity. FAST is working with the U.K. national news organization Times Online to index, search and ultimately monetize 200 years&#8217; worth of The Times content online, from 1785 to 1985, including 20 million articles, photographs, advertisements and letters to the editor from such figures as Queen Victoria, Charles Darwin and Karl Marx. The system has a high-quality response time, aiming for two seconds per search, as well as the ability to completely re-index the archive within 24 hours to accommodate new content or topic structures.</p>
<p>Finally, following the release of the Windows Media Center TV Pack this summer, Microsoft is now announcing the delivery of a new worldwide platform for broadcast TV on the PC, Protected Broadcast Driver Architecture (PBDA), which enables the PC-TV hardware ecosystem to integrate virtually any free or premium TV service into Windows Media Center while satisfying the TV industry&#8217;s requirements for strong content protection for pay TV. Leading companies rallying behind PBDA at the show include AVerMedia Inc., Buffalo, Hauppauge Computer Works Inc., I-O Data Device Inc., NEC Electronics Corp., NXP Semiconductors and ViXS Systems Inc. Continuing to underscore Microsoft&#8217;s commitment to broadcast TV on the PC, Windows Media Center and Hauppauge also will demonstrate the U.K.&#8217;s first Freeview-certified PC tuner solution, which utilizes the new PBDA platform.</p>
<p>Microsoft at IBC2008</p>
<p>The Microsoft exhibit at IBC2008 will feature a full range of solutions from Microsoft and its partners, spanning content creation and management, media business management and monetization, and digital content delivery. Siemens IT Solutions and Services will demonstrate an industry-specific approach based on the Microsoft business intelligence (BI) platform, to provide a full view of the core creative and business control activities within a broadcast organization. S4M (Solutions for Media) will showcase its all-in-one broadcast management system based on Microsoft&#8217;s latest business management software, Microsoft Dynamics AX 2009. In addition to those products and solutions, there will be demonstrations of Microsoft Expression Studio and Microsoft Atlas Publisher Suite, as well as offerings from partners including Avanade, focusing on a media supply chain management solution based on Microsoft Dynamics AX, Microsoft Office SharePoint Server 2007 and Performance Point, and Conchango, (an EMC Corp. company) demonstrating an end-to-end video publishing platform combining different Microsoft technologies such as Silverlight and Internet Information Services (IIS). On the TXT Polymedia media stand, TXT will also demonstrate its Media in a Box solution, a new online video publishing solution based on the Microsoft technology platform.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.powered-by.org/news/industry/microsoft-demonstrates-an-end-to-end-solution-portfolio-for-the-digital-content-life-cycle-at-ibc2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
