<?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>All1 Source technologies &#187; ASP</title>
	<atom:link href="http://www.all1sourcetech.com/tag/asp/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.all1sourcetech.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Wed, 23 Nov 2011 12:26:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>4 Steps to Consume Web Services using Ajax</title>
		<link>http://www.all1sourcetech.com/4-steps-consume-web-services-ajax/</link>
		<comments>http://www.all1sourcetech.com/4-steps-consume-web-services-ajax/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 11:20:14 +0000</pubDate>
		<dc:creator>Naggie</dc:creator>
				<category><![CDATA[Microsoft Technology]]></category>
		<category><![CDATA[Purely Technical]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[ASP developers]]></category>
		<category><![CDATA[ASP framework]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[ASP.NET code]]></category>
		<category><![CDATA[customer ID]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=1001</guid>
		<description><![CDATA[Normally the browser Ajax controls calls the ASP.NET code and the ASP.NET code consumes the web service, but there are scenarios where you would like to call the web services directly from the Ajax JavaScript functions rather than calling via the behind code.
Here, you can get the same following 4 steps-
Step 1: Create your Customer [...]]]></description>
			<content:encoded><![CDATA[<p>Normally the <strong>browser Ajax</strong> controls calls the <a href="http://www.all1martpro.com" target="_blank">ASP.NET code</a> and the ASP.NET code consumes the web service, but there are scenarios where you would like to call the web services directly from the Ajax <a href="http://www.all1tunes.com" target="_blank">JavaScript</a> functions rather than calling via the behind code.</p>
<p>Here, you can get the same following 4 steps-</p>
<p><strong>Step 1: <span style="color: #800000;">Create your Customer Class </span></strong></p>
<p>The first step is to create the <a href="http://www.all1press.com" target="_blank">customer</a> class as shown below. So the customer class has 4 properties on customer id, first name, address and designation.</p>
<p><span style="color: #0000ff;"><strong>public </strong></span><strong>class Customers</strong><br />
<strong>{</strong><br />
<strong><span style="color: #99cc00;">// private properties </span></strong><br />
<strong>private int _intCustomerID;</strong><br />
<span style="color: #0000ff;"><strong>private string</strong></span><strong> _strFirstName;</strong><br />
<span style="color: #0000ff;"><strong>private string</strong></span><strong> _strAddress;</strong><br />
<span style="color: #0000ff;"><strong>private string</strong></span><strong> _strDesignation;</strong><br />
<strong><br />
</strong></p>
<p><strong><span style="color: #99cc00;">// Public property and</span> </strong><br />
<span style="color: #0000ff;"><strong>public</strong></span><strong> </strong><span style="color: #0000ff;"><strong>int </strong></span><strong>CustomerID</strong><br />
<strong>{</strong><br />
<span style="color: #0000ff;"><strong>get</strong></span><br />
<strong>{</strong><br />
<span style="color: #0000ff;"><strong>return </strong></span><strong>_intCustomerID;</strong><br />
<strong>}</strong><br />
<span style="color: #0000ff;"><strong>set</strong></span><br />
<strong>{</strong><br />
<strong>_intCustomerID = value;</strong><br />
<strong>}</strong><br />
<strong>}</strong><br />
<span style="color: #0000ff;"><strong>public string </strong></span><strong>FirstName</strong><br />
<strong>{</strong><br />
<span style="color: #0000ff;"><strong>get</strong></span><br />
<strong>{</strong><br />
<span style="color: #0000ff;"><strong>return </strong></span><strong>_strFirstName;</strong><br />
<strong>}</strong><br />
<span style="color: #0000ff;"><strong>set</strong></span><br />
<strong>{</strong><br />
<strong>_strFirstName = value;</strong><br />
<strong>}</strong><br />
<strong>}</strong></p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 770px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">public class Customers</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 770px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">{</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 770px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">// private properties</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 770px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">private int _intCustomerID;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 770px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">private string _strFirstName;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 770px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">private string _strAddress;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 770px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">private string _strDesignation;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 770px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">// Public property and</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 770px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">public int CustomerID</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 770px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">{</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 770px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">get</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 770px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">{</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 770px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">return _intCustomerID;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 770px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">}</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 770px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">set</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 770px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">{</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 770px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">_intCustomerID = value;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 770px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">}</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 770px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">}</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 770px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">public string FirstName</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 770px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">{</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 770px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">get</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 770px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">{</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 770px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">return _strFirstName;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 770px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">}</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 770px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">set</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 770px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">{</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 770px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">_strFirstName = value;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 770px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">}</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 770px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">}</div>
<p><strong>Step 2: <span style="color: #800000;">Create your Web Service</span></strong></p>
<p>The next step is to create the web service which exposes the customer class to UI. Here is a simple web service which has encapsulated customer collection. In the constructor, we are loading some dummy data into the list of customers as shown in the below code snippet:</p>
<p><strong>   [System.Web.Script.Services.ScriptService]</strong><br />
<strong><span style="color: #0000ff;">public class </span>Customer : System.Web.Services.WebService {</strong></p>
<p><strong><span style="color: #99cc00;">// Customer collection</span></strong><br />
<strong>List&lt;Customers&gt; listcust = <span style="color: #0000ff;">new </span>List&lt;Customers&gt;();</strong><br />
<strong><span style="color: #0000ff;">public </span>Customer () </strong><br />
<strong>{</strong><br />
<strong><span style="color: #99cc00;">//Load some dummy data in to customer collection.</span></strong><br />
<strong>listcust.Clear();</strong></p>
<p><strong>Customers cust = <span style="color: #0000ff;">new </span>Customers();</strong><br />
<strong>cust.CustomerID = 1;</strong><br />
<strong>cust.FirstName = &#8220;Dan&#8221;;</strong><br />
<strong>cust.Address = &#8220;Live in UK&#8221;;</strong><br />
<strong>cust.Designation = &#8220;Software Developer&#8221;;</strong><br />
<strong>listcust.Add(cust);</strong></p>
<p><strong>cust = <span style="color: #0000ff;">new </span>Customers();</strong><br />
<strong>cust.CustomerID = 2;</strong><br />
<strong>cust.FirstName = &#8220;Sheen&#8221;;</strong><br />
<strong>cust.Address = &#8220;Live in Austrailia&#8221;;</strong><br />
<strong>cust.Designation = &#8220;Web Designer&#8221;;</strong><br />
<strong>listcust.Add(cust);</strong></p>
<p><strong>cust = <span style="color: #0000ff;">new </span>Customers();</strong><br />
<strong>cust.CustomerID = 3;</strong><br />
<strong>cust.FirstName = &#8220;Koraine&#8221;;</strong><br />
<strong>cust.Address = &#8220;Live in London&#8221;;</strong><br />
<strong>cust.Designation = &#8220;Architect&#8221;;</strong><br />
<strong>listcust.Add(cust);</strong><br />
<strong>}</strong></p>
<p><strong><span style="color: #99cc00;">// This function exposes all customers to the end client’</span></strong><br />
<strong>[WebMethod]</strong><br />
<strong><span style="color: #0000ff;">public </span>List&lt;Customers&gt; LoadCustomers()</strong><br />
<strong>{</strong><br />
<strong><span style="color: #0000ff;">return </span>listcust;</strong><br />
<strong>}</strong></p>
<p><strong><span style="color: #99cc00;">// This function helps us to get customer object based in ID</span></strong><br />
<strong>[WebMethod]</strong><br />
<strong><span style="color: #0000ff;">public </span>Customers LoadSingleCustomers(<span style="color: #0000ff;">int </span>_customerid)</strong><br />
<strong>{</strong><br />
<strong><span style="color: #0000ff;">return </span>(Customers)listcust[_customerid-1];</strong><br />
<strong>}</strong></p>
<p>Two functions have been exposed with the web service, one which gives out a list of customers and another which gives out individual customer data based on customer id.</p>
<p><strong>Step 3: <span style="color: #800000;">Reference your Web Service using the asp:servicereference</span></strong></p>
<p>Using the ‘<span style="color: #ff0000;">asp:ServiceReference</span>’, the path to the ASMX file will be pointed as shown in the below code snippet. This will generate the <a href="http://www.all1social.com" target="_blank">JavaScript proxy</a> which can be used to call the customer object.</p>
<pre><strong>&lt;asp:ScriptManager <span style="color: #ff0000;">ID</span>="<span style="color: #0000ff;">ScriptManager1</span>" <span style="color: #ff0000;">runat</span>="<span style="color: #0000ff;">server</span>"&gt;</strong></pre>
<pre><strong>    &lt;Services&gt;</strong></pre>
<pre><strong>        &lt;asp:ServiceReference <span style="color: #ff0000;">Path</span>="<span style="color: #0000ff;">Customer.asmx</span>" /&gt;</strong></pre>
<pre><strong>    &lt;/Services&gt;</strong></pre>
<pre><strong>&lt;/asp:ScriptManager&gt;</strong></pre>
<p><strong>Step 4: <span style="color: #800000;">Call the Webservice and the JavaScript Code</span></strong></p>
<p>Once you have defined the proxy, you can now call the ‘Customer’ proxy directly to make method calls.</p>
<p><strong>function LoadAll() </strong><br />
<strong>{</strong><br />
<strong>Customer.LoadCustomers(LoadCustomerToSelectOption, ErrorHandler, TimeOutHandler);</strong><br />
<strong>}</strong></p>
<p>When you call the JavaScript proxy object, then you need to provide three functions; the first function (‘LoadCustomerToSelectOption’) will be called when the web service finishes and returns data. The data will be returned in the fill variable which will then be looped and added to the customer combo box.</p>
<p><strong>function LoadCustomerToSelectOption(Fill)</strong><br />
<strong>{</strong><br />
<strong><span style="color: #0000ff;">var </span>select = document.getElementById(&#8221;<span style="color: #800000;">cmbCustomers</span>&#8220;);</strong><br />
<strong><br />
</strong></p>
<p><strong><span style="color: #0000ff;">for </span>(<span style="color: #0000ff;">var </span>i = 0; i &lt; Fill.length; i++) </strong><br />
<strong>{</strong><br />
<strong><span style="color: #0000ff;">var </span>value = <span style="color: #0000ff;">new </span>Option(Fill[i].FirstName, Fill[i].CustomerID);</strong><br />
<strong>select.options.add(value);</strong><br />
<strong>}</strong><br />
<strong>}</strong></p>
<p>There are two more functions which are attached; one which handles error and the other which handles time out.</p>
<p><strong>function ErrorHandler(result) </strong><br />
<strong>{</strong><br />
<strong><span style="color: #0000ff;">var </span>msg = result.get_exceptionType() + &#8220;<span style="color: #800000;">\r\n</span>&#8220;;</strong><br />
<strong>msg += result.get_message() + &#8220;<span style="color: #800000;">\r\n</span>&#8220;;</strong><br />
<strong>msg += result.get_stackTrace();</strong><br />
<strong>alert(msg);</strong><br />
<strong>}</strong><br />
<strong>function TimeOutHandler(result) </strong><br />
<strong>{</strong><br />
<strong>alert(&#8221;<span style="color: #800000;">Timeout </span>:&#8221; + result);</strong><br />
<strong>}</strong></p>
<p><a href="http://www.all1martpro.com" target="_blank">http://www.all1martpro.com</a><br />
<a href="http://get-a-designer.com/" target="_blank">http://get-a-designer.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/4-steps-consume-web-services-ajax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML Tools: Haml 2.3.0</title>
		<link>http://www.all1sourcetech.com/html-tools-haml-230/</link>
		<comments>http://www.all1sourcetech.com/html-tools-haml-230/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 10:54:11 +0000</pubDate>
		<dc:creator>Suzanne</dc:creator>
				<category><![CDATA[Purely Technical]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[Haml 2.3.0]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[markup]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=946</guid>
		<description><![CDATA[Haml 2.3.0 is a markup language, which is used to describe the HTML of any web document easily and simply, without the use of inline code.
It is compiled into XHTML, similarly to ERB, and attempts to fix many flaws in templating engines like explicitly coding HTML into the template.
Haml itself is a description of the [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Haml 2.3.0</strong> is a <a href="http://www.all1martpro.com" target="_blank">markup</a> language, which is used to describe the HTML of any web document easily and simply, without the use of <a href="http://www.all1social.com" target="_blank">inline code</a>.</p>
<p>It is compiled into <strong>XHTML</strong>, similarly to ERB, and attempts to fix many flaws in templating engines like explicitly <strong>coding HTML into the template</strong>.</p>
<p>Haml itself is a description of the HTML, with code to generate <a href="http://www.all1press.com" target="_blank">dynamic content</a>. And it functions as a replacement for inline <a href="http://www.all1tunes.com" target="_blank">page templating systems</a> such as PHP, ASP, and ERB.</p>
<p>Example:<br />
The <strong>#foo Hello World! line of code</strong> will output this HTML line of code: <strong>&lt;div id=&#8221;foo&#8221;&gt;Helo World!&lt;/div&gt;</strong><strong><br />
</strong></p>
<p>Automatically, Haml handled the end tag and tag defining. For CSS stylings, SASS does the same thing as Haml does for HTML. SASS is bundled with Haml by default.</p>
<p>Platform: Windows/ Linux/ Mac OS/ BSD/ Solaris<br />
Language: Ruby</p>
<p><a href="http://www.all1martpro.com" target="_blank">http://www.all1martpro.com</a></p>
<p><a href="http://www.all1sourcetech.com" target="_blank">http://www.all1sourcetech.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/html-tools-haml-230/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dell plans new line of &#8216;private cloud&#8217; servers this year</title>
		<link>http://www.all1sourcetech.com/dell-plans-new-line-of-private-cloud-servers-this-year/</link>
		<comments>http://www.all1sourcetech.com/dell-plans-new-line-of-private-cloud-servers-this-year/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 12:07:01 +0000</pubDate>
		<dc:creator>Suzanne</dc:creator>
				<category><![CDATA[Opensource]]></category>
		<category><![CDATA[Technical News]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[data migration]]></category>
		<category><![CDATA[Hosted PBX Solutions]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[IP Trunking Solutions]]></category>
		<category><![CDATA[Legacy retirement]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[POP3 & IMAP]]></category>
		<category><![CDATA[RedHat]]></category>
		<category><![CDATA[services. support  .NET]]></category>
		<category><![CDATA[Single Line Business Solutions]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=489</guid>
		<description><![CDATA[Dell is planning to take some of the custom servers designed by its Data Center Solutions division for Web giants like Yahoo and Facebook and sell them to a wider range of companies, including large enterprises, according to Dell executives.
About three years ago, the DCS unit was formed to help Dell get more business from [...]]]></description>
			<content:encoded><![CDATA[<p>Dell is planning to take some of the custom servers designed by its Data Center Solutions division for Web giants like Yahoo and <a href="http://www.all1martpro.com" target="_blank">Facebook</a> and sell them to a wider range of companies, including large enterprises, according to Dell executives.</p>
<p>About three years ago, the DCS unit was formed to help Dell get more business from large Internet firms. Its engineers often spend several weeks on-site with those companies to design low-cost, low-power systems that meet the special requirements of their search, <a href="http://www.all1social.com" target="_blank">social networking</a> and other Web applications.</p>
<p>In an interview, Dell executives said that hands-on role means the DCS group designs servers only for large companies, such as Ask.com and Microsoft&#8217;s Azure division, which order tens of thousands of servers per year, but that&#8217;s about to change.</p>
<p>Dell will turn some of those custom servers into standardized products and sell them to companies that order lower volumes of systems later this year, including enterprises building &#8220;private cloud&#8221; environments in their data centers, and a second tier of smaller Internet companies. They will likely be sold under a new brand, CloudEdge.</p>
<p>Andy Rhodes, a director with Dell’s DCS group, said &#8220;What we&#8217;ve found is, there are a whole bunch of other customers who want access to those designs but who are not buying in those types of quantities”. &#8220;So the big thing we&#8217;re solving now, and we&#8217;ll talk more publicly about over the next couple of months, is how to provide more of that capability to many, many more customers.&#8221;</p>
<p>Dell isn&#8217;t discussing specific products yet and is still working out details, such as whether the servers will be sold by DCS or through Dell&#8217;s standard server channels. But the goal is to offer the designs to a wider market, even while DCS continues to do custom work for very large customers..</p>
<p>DCS aims to build highly energy-efficient servers that pack a <a href="http://www.all1Press.com" target="_blank">lot of computing</a> power into a small space. The systems often forego redundant power supplies and fans, for example, which saves on component costs and energy bills.</p>
<p>That also makes the servers less resilient to failure &#8212; a trade-off large Internet companies are willing to make for lower operational costs. Companies like Google and Yahoo design their Web applications to run on such &#8220;fail in place&#8221; architectures, so that workloads are rerouted around failed servers with little or no disruption to services.</p>
<p>According to Barton George, cloud evangelist for Dell, the main thing with these hyperscale systems is that the availability and resiliency are baked into the customers&#8217; applications rather than into the hardware.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/dell-plans-new-line-of-private-cloud-servers-this-year/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moonlight 3.0 preview offered for rich Internet apps</title>
		<link>http://www.all1sourcetech.com/moonlight-3-0-preview-offered-for-rich-internet-apps/</link>
		<comments>http://www.all1sourcetech.com/moonlight-3-0-preview-offered-for-rich-internet-apps/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 11:19:00 +0000</pubDate>
		<dc:creator>Naggie</dc:creator>
				<category><![CDATA[New Product Release]]></category>
		<category><![CDATA[Technical News]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[data migration]]></category>
		<category><![CDATA[Full scripting]]></category>
		<category><![CDATA[Legacy retirement]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[POP3 & IMAP]]></category>
		<category><![CDATA[Search Engine Marketing]]></category>
		<category><![CDATA[support  .NET]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=459</guid>
		<description><![CDATA[Moonlight 3.0 that puts Microsoft&#8217;s Silverlight rich Internet plug-in software on Linux and UNIX platforms is now being offered in an alpha release, according to Web pages from the Mono project, which has jurisdiction over Moonlight.

Novell, which sponsors Mono, said the release features infrastructural capabilities designed to move Moonlight closer to the capabilities of Silverlight [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Moonlight 3.0</strong> that puts Microsoft&#8217;s Silverlight rich Internet plug-in software on Linux and UNIX platforms is now being offered in an alpha release, according to Web pages from the Mono project, which has jurisdiction over Moonlight.</p>
<p><img alt="Silverlight Moonlight 3.0 preview offered for rich Internet apps" src="http://upload.wikimedia.org/wikipedia/en/d/db/Silverlight.png" class="alignleft" width="300" height="332" title="Moonlight 3.0 preview offered for rich Internet apps" /></p>
<p>Novell, which sponsors Mono, said the release features infrastructural capabilities designed to move Moonlight closer to the capabilities of Silverlight 3.</p>
<p>Novell VP Miguel de Icaza, who has been in <a href="http://www.all1tunes.com" target="_blank">charge of Moonlight</a> and Mono projects, described the release as the first preview of Moonlight 3.0 in a blog posted this week.</p>
<p>Capabilities include MP4 demuxer support, although there are no codecs for it yet unless a developer builds them from source code and configures Moonlight to pick up codecs from ffmpeg.</p>
<p>Also featured is initial work on UI virtualization and a platform abstraction layer. The Moonlight core is now separated from the windowing system engine. This should make it possible for developers to port Moonlight that are not X11/Gtk+-centric, according to de Icaza.</p>
<p>The alpha release features 3.0 Binding/Binding Expression support and updates to APIs. An SVN (Subversion) of <a href="http://www.all1social.com" target="_blank">Silverlight 3.0</a> offers pixel shader support from developer David Reveman.</p>
<p>A beta version of Moonlight 3.0 is due this summer, followed by a final release in the fall, according to Novell. A download page for <a href="http://www.all1martpro.com" target="_blank">Moonlight 3.0</a> stresses that the project is only in an alpha stage and offers caution.</p>
<p>According to the page, this release should be considered alpha quality. There are various new subsystems in Silverlight 3 which expose new and different attack vectors, and the implementations of these subsystems have not yet been exercised or audited.</p>
<p>The page recommends that one should use this plugin on trusted sites on non-production computers. This situation will gradually evolve over the beta releases. According to the page, an up- to-date overview of Moonlight security features status can be found on Moonlight Security Status wiki page.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/moonlight-3-0-preview-offered-for-rich-internet-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Intel Pushes out VPro for Core I5, I7 Processors</title>
		<link>http://www.all1sourcetech.com/intel-pushes-out-vpro-for-core-i5-i7-processors/</link>
		<comments>http://www.all1sourcetech.com/intel-pushes-out-vpro-for-core-i5-i7-processors/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 10:32:36 +0000</pubDate>
		<dc:creator>Shweta</dc:creator>
				<category><![CDATA[New Product Release]]></category>
		<category><![CDATA[Technical News]]></category>
		<category><![CDATA[24X7 Support]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[data migration]]></category>
		<category><![CDATA[Legacy retirement]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[POP3 & IMAP]]></category>
		<category><![CDATA[RedHat]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[support  .NET]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=455</guid>
		<description><![CDATA[On Thursday, Intel announced a new vPro platform for its Core processors to make remote maintenance and management of PCs easier in an enterprise.
With vPro technology, Laptops and desktops enable IT administrators to use hardware-based technologies to manage and secure PCs through a wired or wireless network. The new vPro technologies will be in systems [...]]]></description>
			<content:encoded><![CDATA[<p>On Thursday, Intel announced a new vPro platform for its Core processors to make remote maintenance and management of PCs easier in an enterprise.</p>
<p>With vPro technology, Laptops and desktops enable IT administrators to use hardware-based technologies to manage and secure PCs through a wired or wireless network. The <a href="http://www.all1martpro.com" target="_blank">new vPro technologies</a> will be in systems with Intel&#8217;s Core i5 and Core i7 processors, which were announced earlier this year, Intel executives said during a webcast on Thursday.<br />
<img class="alignleft" src="http://media.bestofmicro.com/intel-logo-2009,E-U-194934-3.png" alt="intel logo 2009,E U 194934 3 Intel Pushes out VPro for Core I5, I7 Processors" width="320" height="240" title="Intel Pushes out VPro for Core I5, I7 Processors" /></p>
<p>The vPro platform includes new hardware, which can solve a larger number of problems than prior vPro platforms. The technologies could help reduce support costs and the number of support visits to desktops, said Rick Echevarria, vice president of the Intel architecture group.</p>
<p>For example, a technology called <a href="http://www.all1tunes.com" target="_blank">Anti-Theft 2.0</a> uses software and hardware technology to remotely disable systems and lock access to data if a PC falls into wrong hands. A message can also be designed for disabled PCs that will be displayed after boot. This feature will be especially important to secure data on laptops, which can get easily stolen. The technology can also enable a disabled laptop remotely.</p>
<p>The new platform also includes technology called Keyboard-Video-Mouse Remote Control (KVM Remote Control), which gives support personnel better control of PCs remotely. Intel has introduced new hardware to enable the KVM capability, which helps establish a stable connection to remote PCs, Echevarria said. System administrators get pre-boot access to systems, which help solve a larger set of problems including disk and <a href="http://www.all1Press.com" target="_blank">operating system</a> failure.</p>
<p>Users will need to agree to start a KVM session with support personnel in order to maintain privacy, according to Echevarria. Built-in KVM technology also helps cut costs as it reduces the need for a KVM switch or software usually needed to enable such functionality.</p>
<p>As part of vPro, the new Core i5 and Core i7 chips will take advantage of a new instruction called Advanced Encryption Standard (AES) for faster data encryption and decryption. That could help secure data residing in servers or virtualized environments.</p>
<p>During the webcast, Brad Anderson, corporate vice president of Microsoft’s server division, said Intel has worked with Microsoft to enable vPro features on Windows 7. The platform enables Windows 7 to do things in System Center that previously required a desk-side visit from support, including remotely awakening and troubleshooting PCs.</p>
<p>The latest vPro platform based systems will include Intel&#8217;s Q57 Express chipset. Close to 500 hardware and software vendors will take advantage of the latest vPro technology. PC makers including Hewlett-Packard, Dell and Lenovo will be releasing systems based on the platform, according to Intel.</p>
<p>The company declined comment on whether the new platform will support systems with Advanced Micro Devices processors. But Echevarria said that there are scenarios that Intel has enabled with vPro that utilize specific Intel-developed technologies. For example, the new AES instructions are found only in Intel&#8217;s new Core processors, and do not apply to platforms that don&#8217;t include support for those instructions.</p>
<p>Advanced Micro Devices offers competitive tools to compete with vPro. It offers a tool to remotely fix PCs based on DASH (Desktop and Mobile Architecture for System Hardware), a suite of specifications set by Distributed Management Task Force for remote management of laptops and desktops.</p>
<p>Intel&#8217;s <a href="http://www.all1social.com" target="_blank">Core vPro processor technology</a> supports standards such as DASH, Echevarria said in an e-mail. &#8220;Intel is a contributor to the specifications from the DMTF. Remember that standards are necessary, but not always sufficient,&#8221; he said.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/intel-pushes-out-vpro-for-core-i5-i7-processors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Download ASP.NET MVC 2 RC 2</title>
		<link>http://www.all1sourcetech.com/download-asp-net-mvc-2-rc-2/</link>
		<comments>http://www.all1sourcetech.com/download-asp-net-mvc-2-rc-2/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 11:36:41 +0000</pubDate>
		<dc:creator>Naggie</dc:creator>
				<category><![CDATA[Microsoft Technology]]></category>
		<category><![CDATA[New Product Release]]></category>
		<category><![CDATA[Technical News]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[ASP.NET 3.5 SP 1]]></category>
		<category><![CDATA[ASP.NET MVC application]]></category>
		<category><![CDATA[Model-View-Controller]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Windows Server 2003]]></category>
		<category><![CDATA[Windows Server 2008]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=440</guid>
		<description><![CDATA[ASP.NET MVC 2 RC 2 provides a new Model-View-Controller (MVC) framework on top of the existing ASP.NET 3.5 SP1 runtime.
ASP.NET MVC 2 is a framework for developing highly testable and maintainable Web applications by leveraging the Model-View-Controller (MVC) pattern. The framework encourages developers to maintain a clear separation of concerns among the responsibilities of the [...]]]></description>
			<content:encoded><![CDATA[<p><strong>ASP.NET MVC 2 RC 2</strong> provides a new Model-View-Controller (MVC) framework on top of the existing ASP.NET 3.5 SP1 <a href="http://www.all1tunes.com" target="_blank">runtime</a>.</p>
<p>ASP.NET MVC 2 is a framework for developing highly testable and maintainable Web applications by leveraging the Model-View-Controller (MVC) pattern. The framework encourages developers to maintain a clear separation of concerns among the responsibilities of the application – the UI logic using the view, user-input handling using the controller, and the domain logic using the model. <a href="http://www.all1social.com" target="_blank">ASP.NET MVC applications</a> are easily testable using techniques such as test-driven development (TDD).</p>
<p>The installation package includes templates and tools for Visual Studio 2008 SP 1 to increase productivity when writing ASP.NET MVC applications. For example, the Add View dialog box takes advantage of customizable code generation (T4) templates to generate a view based on a model object. The default project template allows the developer to automatically hook up a unit-test project that is associated with the ASP.NET MVC application.</p>
<p>Because the ASP.NET MVC framework is built on <a href="http://www.all1martpro.com" target="_blank">ASP.NET 3.5 SP 1</a>, developers can take advantage of existing ASP.NET features like authentication and authorization, profile settings, localization, and so on.</p>
<p>System Requirements</p>
<p>-Supported Operating Systems: Windows 7; Windows Server 2003; Windows Server 2008; Windows Vista; Windows XP</p>
<p>.NET 3.5 SP1. Visual Studio 2008, Visual Studio 2008 SP1 or Visual Web Developer 2008 SP1 are required to use certain parts of this feature.</p>
<p><a href="http://get-a-designer.com/" target="_blank">http://get-a-designer.com</a></p>
<p><a href="http://www.all1sourcetech.com" target="_blank">http://www.all1sourcetech.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/download-asp-net-mvc-2-rc-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook gets more Bing &#8212; and control of display ads</title>
		<link>http://www.all1sourcetech.com/facebook-gets-more-bing-and-control-of-display-ads/</link>
		<comments>http://www.all1sourcetech.com/facebook-gets-more-bing-and-control-of-display-ads/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 11:18:55 +0000</pubDate>
		<dc:creator>Naggie</dc:creator>
				<category><![CDATA[Opensource]]></category>
		<category><![CDATA[Technical News]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[Hosted PBX Solutions]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[IP Trunking Solutions]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[POP3 & IMAP]]></category>
		<category><![CDATA[RedHat]]></category>
		<category><![CDATA[services. Full scripting]]></category>
		<category><![CDATA[Single Line Business Solutions]]></category>
		<category><![CDATA[support  .NET]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=433</guid>
		<description><![CDATA[
On Friday, Microsoft said Bing will power Internet searches for Facebook’s 400 million members in an arrangement that returns control of display advertising to the social-networking service. 
Previously, Bing had powered online searches on US Facebook pages.
According to Bing general manager Jon Tinter, Microsoft will provide Facebook users full access to Bing features as part [...]]]></description>
			<content:encoded><![CDATA[<p><img alt=" Facebook gets more Bing    and control of display ads" src="http://d.yimg.com/a/p/afp/20100206/capt.photo_1265415827245-1-0.jpg?x=213&#038;y=142&#038;xc=1&#038;yc=1&#038;wc=410&#038;hc=273&#038;q=85&#038;sig=mT3Eo0ybcvzf4VPk.unxJA--" class="alignright" width="213" height="142" title="Facebook gets more Bing    and control of display ads" /></p>
<p>On Friday, Microsoft said Bing will power Internet searches for Facebook’s 400 million members in an arrangement that returns control of display advertising to the <a href="http://www.all1tunes.com" target="_blank">social-networking service</a>. </p>
<p>Previously, Bing had powered online searches on US Facebook pages.</p>
<p>According to Bing general manager Jon Tinter, Microsoft will provide Facebook users full access to Bing features as part of an &#8220;expanded cooperation in search”. You will start to see the fruits of our expanded relationship show up in the Facebook experience over the weeks and months ahead, he said.</p>
<p>According to Tinter, the companies mutually agreed that <a href="http://www.all1social.com" target="_blank">Facebook</a> will take over selling display advertising posted at the website because it &#8220;just made more sense&#8221; given the unique nature of the website.</p>
<p>The control over the displaying advertisement by Microsoft served up at Facebook stretched back to shortly before the <a href="http://www.all1martpro.com" target="_blank">US software</a> giant bought a 1.6-percent stake in Facebook in 2007 for 240 million dollars.</p>
<p>The arrangement was inked in a contract, which was up for renewal. </p>
<p>Last year, Microsoft launched its new Bing <a href="http://www.all1Press.com" target="_blank">search engine</a>.</p>
<p><a href="http://www.all1martpro.com" target="_blank">http://www.all1martpro.com</a></p>
<p><a href="http://get-a-designer.com/" target="_blank">http://get-a-designer.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/facebook-gets-more-bing-and-control-of-display-ads/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Videogame star &#8220;Fallout 3&#8243; heading for Sin City</title>
		<link>http://www.all1sourcetech.com/videogame-star-fallout-3-heading-for-sin-city/</link>
		<comments>http://www.all1sourcetech.com/videogame-star-fallout-3-heading-for-sin-city/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 12:40:23 +0000</pubDate>
		<dc:creator>Naggie</dc:creator>
				<category><![CDATA[Opensource]]></category>
		<category><![CDATA[Technical News]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[Hosted Exchange]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Microsoft Windows™]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[POP3 & IMAP]]></category>
		<category><![CDATA[RedHat]]></category>
		<category><![CDATA[services. Full scripting]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[support  .NET]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=424</guid>
		<description><![CDATA[
Videogame star “Fallout 3” is taking its devoted fans to nuclear war ravaged Las Vegas. Bethesda Softworks announced Thursday that a &#8220;New Vegas&#8221; chapter in the award-winning franchise will be available by the end of this year. A video trailer has been posted online by the studio at fallout.bethsoft.com.
According to Bethesda, &#8216;Fallout: New Vegas&#8217; takes [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" src="http://d.yimg.com/a/p/afp/20100205/capt.photo_1265328615764-1-0.jpg?x=213&amp;y=107&amp;xc=2&amp;yc=1&amp;wc=408&amp;hc=205&amp;q=85&amp;sig=UxR0A_X9Km_26r7VJRMFVg--" alt=" Videogame star Fallout 3 heading for Sin City" width="213" height="107" title="Videogame star Fallout 3 heading for Sin City" /></p>
<p>Videogame star “Fallout 3” is taking its devoted fans to nuclear war ravaged Las Vegas. Bethesda Softworks announced Thursday that a &#8220;<a href="http://www.all1social.com" target="_blank">New Vegas</a>&#8221; chapter in the award-winning franchise will be available by the end of this year. A video trailer has been posted online by the studio at fallout.bethsoft.com.</p>
<p>According to Bethesda, &#8216;Fallout: New Vegas&#8217; takes all the action, humor, and post-apocalyptic grime and grit of this legendary series, and raises the stakes.</p>
<p>After the release of &#8220;<a href="http://www.all1martpro.com" target="_blank">Fallout 3</a>&#8221; in 2008, it was crowned Game of the Year, and proved so popular that Bethesda has expanded on it with adventures in an array of downloadable <a href="http://www.all1Press.com" target="_blank">software</a>.</p>
<p>A &#8220;Broken Steel&#8221; addition to &#8220;Fallout 3&#8243; even modified the end of the original game to resurrect the hero, who had sacrificed himself for the sake of other survivors in the post nuclear war scenario.</p>
<p>&#8220;Fallout 3&#8243; players start out as a youth venturing out of an underground survival bunker to search for a scientist father and make moral choices shaping his or her destiny.</p>
<p>Players take on quests such as freeing slaves, rescuing hostages, and integrating an elitist survivor settlement.</p>
<p>Conversations players have with in-world characters affect directions stories take, with choices regarding whether to do good or evil determining their reputations, opportunities and allies.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/videogame-star-fallout-3-heading-for-sin-city/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android apps for business users</title>
		<link>http://www.all1sourcetech.com/android-apps-for-business-users/</link>
		<comments>http://www.all1sourcetech.com/android-apps-for-business-users/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 12:05:07 +0000</pubDate>
		<dc:creator>Naggie</dc:creator>
				<category><![CDATA[Technical News]]></category>
		<category><![CDATA[24X7 Support]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[Colocation]]></category>
		<category><![CDATA[communications systems]]></category>
		<category><![CDATA[disaster recovery site NET]]></category>
		<category><![CDATA[Hardware solutions]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[POP3 & IMAP]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=401</guid>
		<description><![CDATA[In businesses today, the Blackberry may be the most popular phone, but the openness of the Google Android platform is attractive too. Most of the big-name apps from the iPhone world are now available for the Android. And because the Android&#8217;s Web browser is based on the same WebKit rendering engine the iPhone uses, Web [...]]]></description>
			<content:encoded><![CDATA[<p>In businesses today, the <a href="http://www.all1martpro.com" target="_blank">Blackberry</a> may be the most popular phone, but the openness of the Google Android platform is attractive too. Most of the big-name apps from the iPhone world are now available for the Android. And because the Android&#8217;s Web browser is based on the same WebKit rendering engine the iPhone uses, Web apps built for the iPhone will likely require minimal changes to work on Android devices.</p>
<p>Programmers enjoy the freedom offered by Google&#8217;s looser reins, and this will make life much easier for any business that adopts the platform. The Android <a href="http://www.all1social.com" target="_blank">operating system</a> and marketplace are both pretty open, something that makes life much easier for the IT departments that support the phone. Distributing an app to all internal clients, consultants, and customers is much simpler without the tight strictures of the iPhone world.</p>
<p>Nowhere, the Android Market is near as deep as the iPhone&#8217;s App Store, and it shows when you browse through the apps. But the lack of depth isn&#8217;t as important to a business user as it might be to the casual consumer or gamer. Many of the dumb apps filled with scantily clad models aren&#8217;t available for Android yet, and those are a surprisingly large slice of the iPhone marketplace.</p>
<p>Even though the market for <a href="http://www.all1tunes.com" target="_blank">Android</a> apps is still emerging, there are a number of good apps for business users. Take InfoWorld&#8217;s quick, at-a-glance tour of 10 Android apps for business users that help you find where you&#8217;re going, track your expenses and exchange rates, overcome language barriers, view and edit Office documents, and connect remotely to a company database or your desktop PC.</p>
<p>This story, &#8220;Android apps for business users,&#8221; was originally published at InfoWorld.com. Follow the latest developments on mobile computing and Google Android at InfoWorld.com.</p>
<p><a href="http://get-a-designer.com/" target="_blank">http://get-a-designer.com</a></p>
<p><a href="http://www.all1sourcetech.com" target="_blank">http://www.all1sourcetech.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/android-apps-for-business-users/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hack Brings Mac OS X to the Nokia N900</title>
		<link>http://www.all1sourcetech.com/hack-brings-mac-os-x-to-the-nokia-n900/</link>
		<comments>http://www.all1sourcetech.com/hack-brings-mac-os-x-to-the-nokia-n900/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 11:49:22 +0000</pubDate>
		<dc:creator>Naggie</dc:creator>
				<category><![CDATA[Technical News]]></category>
		<category><![CDATA[24X7 Support]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[Colocation]]></category>
		<category><![CDATA[communications systems]]></category>
		<category><![CDATA[disaster recovery site NET]]></category>
		<category><![CDATA[Hardware solutions]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[POP3 & IMAP]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=380</guid>
		<description><![CDATA[Have you ever thought of running a full-blown copy of Mac OS X on your mobile device? One hacker has managed to get Apple&#8217;s operating system running on a smartphone, and it&#8217;s not the iPhone.
In this case, Finnish geek Toni Nikkanen has become the first person to successfully run Mac OS X&#8211;, Mac OS X [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever thought of running a full-blown copy of Mac OS X on your mobile device? One hacker has managed to get Apple&#8217;s <a href="http://www.all1tunes.com" target="_blank">operating system</a> running on a smartphone, and it&#8217;s not the iPhone.</p>
<p>In this case, Finnish geek Toni Nikkanen has become the first person to successfully run Mac OS X&#8211;, <a href="http://www.all1social.com" target="_blank">Mac OS X 10.3</a> &#8220;Panther&#8221;(released in 2003)&#8211;on a cell phone. The phone he managed to achieve this feat with &#8211; Nokia&#8217;s N900 smartphone. Sadly the hack, which makes use of PowerPC emulator Pear PC, runs incredibly slowly.</p>
<p>Some bloggers had suggested that the iPad might finally deliver a more full Mac OS X mobile experience. However, this was not to be, as last week&#8217;s unveiling revealed that Apple&#8217;s tablet will run a variant of the iPhone&#8217;s <a href="http://www.all1martpro.com" target="_blank">operating system</a>, multi-tasking limitations included.</p>
<p>If you have a few hours to spare&#8211;and you don&#8217;t mind stepping into a legal gray area by breaking Mac OS X&#8217;s end-user license agreement&#8211;check out Nikkanen&#8217;s blog for more information.</p>
<p><a href="http://www.all1martpro.com" target="_blank">http://www.all1martpro.com</a></p>
<p><a href="http://get-a-designer.com/" target="_blank">http://get-a-designer.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/hack-brings-mac-os-x-to-the-nokia-n900/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox for Mobile Browser Runs on Nokia N900</title>
		<link>http://www.all1sourcetech.com/firefox-for-mobile-browser-runs-on-nokia-n900/</link>
		<comments>http://www.all1sourcetech.com/firefox-for-mobile-browser-runs-on-nokia-n900/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 11:53:10 +0000</pubDate>
		<dc:creator>Suzanne</dc:creator>
				<category><![CDATA[Expert's Opinions]]></category>
		<category><![CDATA[Technical News]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Microsoft Windows™]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[POP3 & IMAP]]></category>
		<category><![CDATA[RedHat]]></category>
		<category><![CDATA[services. Full scripting]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[support  .NET]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=370</guid>
		<description><![CDATA[
Mozilla has launched a mobile version of its Firefox browser for the users of Nokia’s N900 smartphone, which runs the handset maker&#8217;s high-end Maemo operating system. And it’s built on the same engine as Firefox 3.6 for PCs.
According to the developers, the new mobile browser is currently available for download in more than 30 languages, [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" title="Firefox 3.6" src="http://niponwave.com/wp-content/uploads/2007/07/firefox.jpg" alt="firefox Firefox for Mobile Browser Runs on Nokia N900" width="310" height="300" /></p>
<p>Mozilla has launched a mobile version of its Firefox browser for the users of Nokia’s N900 smartphone, which runs the handset maker&#8217;s high-end Maemo operating system. And it’s built on the same engine as <a href="http://www.all1tunes.com" target="_blank">Firefox 3.6</a> for PCs.</p>
<p>According to the developers, the new mobile browser is currently available for download in more than 30 languages, with support for more smartphone platforms and languages on the way.</p>
<p>It’s the next step of Mozilla’s mission of providing one web that everyone can access &#8212; regardless of device or location, Mozilla blogger Erica Jostedt said Friday. &#8220;Key design principles are at the heart of the mobile browsing experience, including minimal typing, seamless synchronization with desktop Firefox, and the ability to take your Firefox with you, to name a few,&#8221; Jostedt wrote.</p>
<p><strong>Expanding the Market</strong></p>
<p>According to Gartner, the fledgling mobile browser market represents a huge opportunity for browser makers, since smartphones accounted for about 14 percent of the estimated 1.2 billion mobile devices shipped last year. The new mobile <a href="http://www.all1social.com" target="_blank">version of Firefox</a> is intended in part to help counter the browser&#8217;s slowing growth on desktop and notebook PCs. According to Net Applications, Google&#8217;s Chrome browser outpaced Firefox by increasing its market share from 1.6 percent to 5.2 percent since March, even as Firefox boosted its share from 23.3 percent to 24.4 percent.</p>
<p>Mozilla is hoping to expand the browser market by bringing a full-fledged browser experience to smartphones, beginning with the N900. Though the world&#8217;s leading handset maker has not released any sales numbers for the smartphone so far, Nokia did say the device has been positively received.</p>
<p><img class="alignleft" title="Nokia N900" src="http://themobileblog.co.uk/wp-content/uploads/2009/12/nokia-n900-black-middle.jpg" alt="nokia n900 black middle Firefox for Mobile Browser Runs on Nokia N900" width="326" height="550" /></p>
<p>Due to the N900&#8217;s fairly expensive price, however, Gartner expects the device to be of interest to technology lovers rather than a product destined for the mass market, noted Research Director Carolina Milanesi.</p>
<p>According to Milanesi, &#8220;What it does is to show the potential of the Maemo platform for the next-generation device, which should be in the market in the second half of the year”. Moreover, the Gartner analyst thinks the appeal of the platform &#8220;will be higher&#8221; once Nokia&#8217;s OVI Store gains &#8220;some traction as an ecosystem.&#8221;</p>
<p><strong>Playing YouTube Videos</strong></p>
<p>According to Mozilla, it&#8217;s currently investigating the development of a mobile Firefox version for smartphones running Google&#8217;s Android operating system and indicated that smartphones running Windows Mobile are also possible. Jostedt wrote, &#8220;We will continue to investigate and consider other platforms that can support the full Firefox experience”.</p>
<p>Still, the browser maker admits the door is currently closed to developing a browser for Apple&#8217;s iPhone. Moreover, smartphones from Research In Motion are out of bounds because Firefox&#8217;s Java-based operating system is not compatible with RIM&#8217;s <a href="http://www.all1martpro.com" target="_blank">Blackberry OS</a>.</p>
<p>Firefox for the N900 introduces support for add-ons that anyone can build and distribute to bring new features to the mobile browser. For example, N900 owners can customize Firefox by adding language translators, AdBlock Plus, TwitterBar and even an enabler for watching the latest YouTube videos. However, the mobile browser does not yet offer a plug-in for Adobe Flash.</p>
<p>&#8220;The Adobe Flash plug-in used on many sites degraded the performance of the browser to the point where it didn&#8217;t meet our standards,&#8221; Jostedt wrote. &#8220;We are working on an add-on that will allow the user to have control of which sites to enable plug-ins for.&#8221;</p>
<p>For the Nokia N900, Mobile Firefox offers support for touch-interface capabilities such as quick zoom, panning and scrolling. Tabs and browser controls are on the sides of the screen to enable the user to see entire web pages.</p>
<p>Additionally, a new technology called Weave Sync is on tap for synchronizing the user&#8217;s Firefox history, saved passwords, bookmarks and open tabs between computers and the Nokia N900.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/firefox-for-mobile-browser-runs-on-nokia-n900/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JooJoo Tablet PC Promised by End of February</title>
		<link>http://www.all1sourcetech.com/joojoo-tablet-pc-promised-by-end-of-february/</link>
		<comments>http://www.all1sourcetech.com/joojoo-tablet-pc-promised-by-end-of-february/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 11:45:08 +0000</pubDate>
		<dc:creator>Naggie</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[New Product Release]]></category>
		<category><![CDATA[Technical News]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[data migration]]></category>
		<category><![CDATA[Hosted PBX Solutions]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[IP Trunking Solutions]]></category>
		<category><![CDATA[Legacy retirement]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[POP3 & IMAP]]></category>
		<category><![CDATA[RedHat]]></category>
		<category><![CDATA[services. Full scripting]]></category>
		<category><![CDATA[support  .NET]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=368</guid>
		<description><![CDATA[
By the end of February, Fusion Garage’s JooJoo tablet PC is expected to be in consumer hands when it will likely give some indication as to the public&#8217;s interest in tablets such as the Apple iPad.
Fusion Garage CEO Chandra Rathakrishnan says that not only have the preorders for the JooJoo tablet exceeded expectations, but there [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter" title="JooJoo Tablet PC" src="http://i278.photobucket.com/albums/kk113/redalfa/locoav/sunrainey/joojoo-press-pic_6.jpg" alt="joojoo press pic 6 JooJoo Tablet PC Promised by End of February" width="480" height="239" /></p>
<p>By the end of February, Fusion Garage’s JooJoo tablet PC is expected to be in consumer hands when it will likely give some indication as to the public&#8217;s interest in tablets such as the <a href="http://www.all1tunes.com" target="_blank">Apple iPad</a>.</p>
<p>Fusion Garage CEO Chandra Rathakrishnan says that not only have the preorders for the JooJoo tablet exceeded expectations, but there has been an increase in inquiries since the debut of the iPad&#8211;so it looks like the public may be ready for tablet computers after all, according to Venture Beat.</p>
<p>The JooJoo tablet, which began its life as the <a href="http://www.all1social.com" target="_blank">TechCrunch Crunch Pad</a>, was announced in December 2009. The 2.4-pound touch screen tablet has a 12-inch, 1366-by-768-pixel display, 1GB of memory, and a 4GB Solid State Drive (used to store the OS and cache data). It also features a USB 2.0 port, Bluetooth support, built-in speakers, Wi-Fi, and a Webcam with a mic. The JooJoo tablet also features a fun (and potentially incredibly annoying) color-tinted screen&#8211;but don&#8217;t worry, the color can be changed.</p>
<p>The JooJoo tablet uses the web as its primary platform instead of custom-built apps. It also supports Flash and reportedly plays 1080p YouTube streaming videos fairly well. The JooJoo tablet&#8217;s price point is close to that of the iPad&#8217;s, at $499.</p>
<p>While the JooJoo tablet does beat the iPad in a few ways, it also falls short in some pretty major areas. It has a 4GB SSD, but users cannot directly save files to said drive&#8211;it&#8217;s purely an internet tablet. The problem with this, of course, is that the JooJoo has Wi-Fi and Wi-Fi only&#8211;there is no 3G option, though Fusion Garage is &#8220;not ruling out the possibility of 3G in the near future.&#8221; Here&#8217;s a tip, guys&#8211;the &#8220;near future&#8221; had better come pretty soon or people are going to start wondering what the point is of a big Internet-only-device that you can&#8217;t store music on.</p>
<p>Because the JooJoo tablet uses the Internet as its platform, the lack of an &#8220;App Store&#8221; is another downside. Sure, you don&#8217;t really need a Facebook app when you can just go to Facebook itself, but the Apple App Store is definitely a benefit of having an Apple product. Though some are critical of Apple&#8217;s extreme vigilance when it comes to apps, recent influxes of malware into other, similar app stores suggest that perhaps Apple is merely being alert. Not only will JooJoo&#8217;s lack of an app store make it harder for users to use the platform, but the openness may leave the JooJoo vulnerable to outside attacks.</p>
<p>Simply, the <a href="http://www.all1martpro.com" target="_blank">JooJoo tablet</a> is just an internet in your hands, but if Rathakrishnan&#8217;s report of increased interest in the JooJoo after the announcement of the iPad is true, perhaps there is a big market for tablet PCs, regardless of what they do (or don&#8217;t).</p>
<p><a href="http://www.all1martpro.com" target="_blank">http://www.all1martpro.com</a></p>
<p><a href="http://get-a-designer.com/" target="_blank">http://get-a-designer.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/joojoo-tablet-pc-promised-by-end-of-february/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New PlayStation 3 show pits gamer against gamer</title>
		<link>http://www.all1sourcetech.com/new-playstation-3-show-pits-gamer-against-gamer/</link>
		<comments>http://www.all1sourcetech.com/new-playstation-3-show-pits-gamer-against-gamer/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 11:33:35 +0000</pubDate>
		<dc:creator>Naggie</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Technical News]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[data migration]]></category>
		<category><![CDATA[Full scripting]]></category>
		<category><![CDATA[Legacy retirement]]></category>
		<category><![CDATA[Managed Services]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[POP3 & IMAP]]></category>
		<category><![CDATA[Search Engine Marketing]]></category>
		<category><![CDATA[support  .NET]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=364</guid>
		<description><![CDATA[
“The Tester” is a reality show in which the top prize will be a job at Sony.
Sony Corp. is launching the show on its PlayStation 3 on Feb. 18. The premise? Pit a broad swath of video game fans against one another to see who’s the best at testing out the games.
The winner will get [...]]]></description>
			<content:encoded><![CDATA[<p><img alt="sony logo New PlayStation 3 show pits gamer against gamer" src="http://videomaker.com/community/blogs/videonews/files/2009/12/sony-logo.jpg" title="Sony-PS3" class="alignleft" width="300" height="300" /></p>
<p>“The Tester” is a reality show in which the top prize will be a job at Sony.</p>
<p>Sony Corp. is launching the show on its <a href="http://www.all1martpro.com" target="_blank">PlayStation 3</a> on Feb. 18. The premise? Pit a broad swath of video game fans against one another to see who’s the best at testing out the games.</p>
<p>The winner will get a job as a real game tester at Sony. It&#8217;s an entry-level job, a way to get a start in the industry. The show will have 11 contestants, which include a writer from Ohio, a cheerleading coach from California and a used car salesman from Maryland.</p>
<p>According to Sony, the show is part of its strategy to provide content beyond games on the <a href="http://www.all1tunes.com" target="_blank">PlayStation</a>. This includes music, movies and TV episodes.</p>
<p><a href="http://www.all1tunes.com" target="_blank">http://www.all1tunes.com</a></p>
<p><a href="http://www.all1social.com" target="_blank">http://www.all1social.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/new-playstation-3-show-pits-gamer-against-gamer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pearson, Nokia form English teaching JV in China</title>
		<link>http://www.all1sourcetech.com/pearson-nokia-form-english-teaching-jv-in-china/</link>
		<comments>http://www.all1sourcetech.com/pearson-nokia-form-english-teaching-jv-in-china/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 12:20:51 +0000</pubDate>
		<dc:creator>Naggie</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Technical News]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Microsoft Windows™]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[POP3 & IMAP]]></category>
		<category><![CDATA[RedHat]]></category>
		<category><![CDATA[services. Full scripting]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[support  .NET]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=353</guid>
		<description><![CDATA[On Monday, the two companies said the publishing group Pearson and phone maker Nokia have formed a joint venture to deliver English-language learning materials to mobile phone users in China.
More English learners-based country, China is playing an increasingly important role for UK-based Pearson, which owns the world&#8217;s largest education publishing business as well as the [...]]]></description>
			<content:encoded><![CDATA[<p>On Monday, the two companies said the publishing group Pearson and phone maker Nokia have formed a joint venture to deliver English-language learning materials to <a href="http://www.all1social.com" target="_blank">mobile phone</a> users in China.</p>
<p>More English learners-based country, China is playing an increasingly important role for UK-based Pearson, which owns the world&#8217;s largest education publishing business as well as the Financial Times and Penguin books.</p>
<p>Last year, it bought Wall Street English for $145 million in cash, giving it a leading position in China&#8217;s English-language teaching market.</p>
<p>The new joint venture, named Beijing Mobiledu Technologies, builds on a service that Nokia launched in 2007, providing content from a <a href="http://www.all1martpro.com" target="_blank">variety of publishers</a>, which so far has about 20 million subscribers and 1.5 million active users each month.</p>
<p>Customers can access the content through an application preloaded on new Nokia handsets, or by visiting the service&#8217;s mobile website.</p>
<p>In order to access the information in China, mobile phones are crucial that has at least 720 million mobile subscribers, double the amount of <a href="http://www.all1tunes.com" target="_blank">Internet</a> users it has.</p>
<p>Nokia, the world&#8217;s biggest handset maker, sold almost 18 million phones in China last quarter, 36 percent more than a year earlier.</p>
<p><a href="http://www.all1tunes.com" target="_blank">http://www.all1tunes.com</a></p>
<p><a href="http://www.all1sourcetech.com" target="_blank">http://www.all1sourcetech.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/pearson-nokia-form-english-teaching-jv-in-china/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google to End Support for IE6</title>
		<link>http://www.all1sourcetech.com/google-to-end-support-for-ie6/</link>
		<comments>http://www.all1sourcetech.com/google-to-end-support-for-ie6/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 11:28:06 +0000</pubDate>
		<dc:creator>Naggie</dc:creator>
				<category><![CDATA[Editorial]]></category>
		<category><![CDATA[Microsoft Technology]]></category>
		<category><![CDATA[24X7 Support]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[Colocation]]></category>
		<category><![CDATA[communications systems]]></category>
		<category><![CDATA[disaster recovery site NET]]></category>
		<category><![CDATA[Hardware solutions]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[POP3 & IMAP]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=343</guid>
		<description><![CDATA[On Friday, Google said it will phase out support for Microsoft&#8217;s Internet Explorer 6 Web browser starting in March.
Google Apps senior product manager, Rajen Sheth, wrote in a blog post Friday that many other companies have already stopped supporting older browsers like Internet Explorer 6.0 as well as browsers that are not supported by their [...]]]></description>
			<content:encoded><![CDATA[<p>On Friday, Google said it will phase out support for Microsoft&#8217;s Internet Explorer 6 Web browser starting in March.</p>
<p>Google Apps senior product manager, Rajen Sheth, wrote in a blog post Friday that many other companies have already stopped supporting older browsers like <a href="http://www.all1tunes.com" target="_blank">Internet Explorer 6.0</a> as well as browsers that are not supported by their own manufacturers, and they&#8217;re also going to begin phasing out our support, starting with Google Docs and Google Sites.</p>
<p>The announcement comes more than two weeks after Google reported that its servers had been the target of attacks originating in China. Those attacks targeted a vulnerability in IE 6, for which <a href="http://www.all1social.com" target="_blank">Microsoft</a> has since issued a fix.</p>
<p>According to Sheth, the support for IE6 in Google Docs and Google Sites will end March 1. At that point, IE6 users who try to access Docs or Sites may find that &#8220;key functionality&#8221; won&#8217;t work properly, he added.</p>
<p>Sheth suggested that customers upgrade to Internet Explorer 7, Mozilla Firefox 3.0, <a href="http://www.all1martpro.com" target="_blank">Google Chrome</a> 4.0 or Safari 3.0, or more recent versions of those browsers.</p>
<p>According to Stat Counter, IE6 has 18 percent market share among browsers.</p>
<p><a href="http://get-a-designer.com/" target="_blank">http://get-a-designer.com</a></p>
<p><a href="http://www.all1sourcetech.com" target="_blank">http://www.all1sourcetech.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/google-to-end-support-for-ie6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

