<?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>Software Associates - India &#187; united kingdom</title>
	<atom:link href="http://www.softwareassociates.in/blog/category/united-kingdom/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.softwareassociates.in</link>
	<description>Synergize with experience and expertise</description>
	<lastBuildDate>Tue, 07 Feb 2012 08:31:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
		<item>
		<title>iPhone app &#8211; news reader</title>
		<link>http://www.softwareassociates.in/blog/iphone-application-development/</link>
		<comments>http://www.softwareassociates.in/blog/iphone-application-development/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 12:02:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[Case studies]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[lamp]]></category>
		<category><![CDATA[portal development]]></category>
		<category><![CDATA[united kingdom]]></category>
		<category><![CDATA[code analysis]]></category>
		<category><![CDATA[hudson]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[web service]]></category>
		<category><![CDATA[wifi]]></category>

		<guid isPermaLink="false">http://www.softwareassociates.in/?p=1376</guid>
		<description><![CDATA[iPhone news reader application We have recently developed an iPhone application for one of our web portal clients based out of United Kingdom. The application talks to the custom news reader via a web service (LAMP stack) to display the &#8230; <a href="http://www.softwareassociates.in/blog/iphone-application-development/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h2><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;"><b>iPhone news reader application</b></span></span></h2>
<p style="font-size: medium; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">We have recently developed an iPhone application for one of our web portal clients based out of United Kingdom. The application talks to the custom news reader via a web service (LAMP stack) to display the recent updates in a pictorial grid based view. On clicking a picture the iPhone application retrieves the associated news article. It also allows the user to view the news based on categories.<br />
	</span></span></p>
<p style="font-size: medium; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;"><b>Challenges &#8211; work around and issues solved</b><br />
	</span></span></p>
<h2><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;"><b>Slow loading of images</b></span></span></h2>
<p style="font-size: medium; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">The application loads the latest news in pictorial grid format. When we used synchronous loading the launch of application was really slow. So, the only possible way to load images without hampering the application loading time was asynchronous loading. Even when the application was launched the user felt that it was still being launched as images were still being loaded. Therefore, the user couldn`t interact with the application.</span></span></p>
<p style="font-size: medium; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">So we tried creating a new thread (apple recommends avoiding threads) dedicated for image loading. But putting a thread into a different auto release pool, caused unexpected crashes. Initialization of connection and loading images took more time than expected. Our aim was to load images as fast as possible and reduce inconsistency and yet retain the features provided by application. The solution was to remove the imageview and use a webview (used to load web pages) of the size of imageview and programmatically inject an html page with just the corresponding image inside it.&nbsp;<br />
	</span></span></p>
<h2><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;"><b>Dynamically loading images in Grid format on scrolling</b></span></span></h2>
<p style="font-size: medium; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">We wanted dynamic loading of images enabled. The idea was that images were loaded whenever the user scrolled down for more images. We needed to know when the user scrolls down whether we need to download the images. This is because the user could have earlier scrolled down and the application would have already fetched those images.</span></span></p>
<p style="font-size: medium; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">A way to implement it was to parse the XML file for the next nine images when user scrolls down for more images (if not already downloaded). We then check whether the scrolling is going beyond a certain threshold (which multiples as the number of images being displayed increases). Then we increase contentsize of scrollview and insert images into it in grid format.&nbsp;<br />
	</span></span></p>
<h2><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;"><b>Translucent tree structured Menu</b></span></span></h2>
<p style="font-size: medium; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Since there was no translucent tree structure menu for the application we developed one. The problem we faced here was that when views were expanded selection of sub menus weren&#39;t happening. Later it was found out that even though the view size was increased its superviews size wasn&#39;t getting increased. So the events on the view weren&#39;t getting caught. So it is a must that to catch the event of a view it should be perfectly contained inside its superview.&nbsp;<br />
	</span></span></p>
<h2><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;"><b>Checking network connection</b></span></span></h2>
<p style="font-size: medium; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">A network based application it is supposed to give the end user network status details. So we implemented a network status checking class using SCNetworkReachabilityRef. It checks Wi-Fi and Internet connection, but can&#39;t guarantee whether the server is available. It just checks whether request was being sent out of the device. So we had to implement another function to confirm that the server is up using NSURLConnection. This enabled us to setup a custom timeout.&nbsp;&nbsp;<br />
	</span></span></p>
<h2><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;"><b>Best practices for iPhone development<br />
	</b></span></span></h2>
<p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">We have setup continuous integration using HUDSON. This is to prevent integration errors and to have a build version is ready whenever integration is done to the application. Each time a build is done in HUDSON a static code analysis using scan build is done over the source code. Used performance tool to monitor memory leaks and ensured that application had low memory leaks. <br />
	</span></span></p>
<p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Also read <a href="http://www.softwareassociates.in/iphone-and-android-application-development/">Android and iPhone development</a></span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.softwareassociates.in/blog/iphone-application-development/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Umbraco Dotnetnuke development services &#8211; London, Manchester, Brighton</title>
		<link>http://www.softwareassociates.in/blog/microsoft-technologies-skills-update/</link>
		<comments>http://www.softwareassociates.in/blog/microsoft-technologies-skills-update/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 04:10:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[sql server]]></category>
		<category><![CDATA[Umbraco]]></category>
		<category><![CDATA[united kingdom]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[code generation]]></category>
		<category><![CDATA[microsoft dotnet]]></category>
		<category><![CDATA[Microsoft Technologies]]></category>
		<category><![CDATA[Payment Gateway]]></category>

		<guid isPermaLink="false">http://softwareassociatesuk.com/blog/?p=102</guid>
		<description><![CDATA[T4 code generation approach for faster project deliveries. Over the last 10 years, we have built considerable expertise in ASP.NET web application development using ASP.NET 2.0/3.5, AJAX, payment gateway integration using Worldpay, paypal etc to build complex intranets and ecommerce &#8230; <a href="http://www.softwareassociates.in/blog/microsoft-technologies-skills-update/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><span style="font-size: 14px;"><span style="font-family: arial,helvetica,sans-serif;">T4 code generation approach for faster project deliveries.</p>
<p>	Over the last 10 years, we have built considerable expertise in ASP.NET web application development using ASP.NET 2.0/3.5, AJAX, payment gateway integration using Worldpay, paypal etc to build complex intranets and ecommerce applications for web development. <br />
	</span></span></p>
<p style="text-align: justify;"><span style="font-size: 14px;"><span style="font-family: arial,helvetica,sans-serif;"><span>Third party components, controls and tools like ABCpdf.net, Aurigma Mass Image uploader are used commonly by our aspnet web development team.</span></span></span></p>
<ul>
<li><span style="font-size: 14px;"><span style="font-family: arial,helvetica,sans-serif;">Data Access Layer using custom objects or typed data sets based on the project requirements. </span></span></li>
<li><span style="font-size: 14px;"><span style="font-family: arial,helvetica,sans-serif;">Middle tier abstract for business layer<br />
		</span></span></li>
<li><span style="font-size: 14px;"><span style="font-family: arial,helvetica,sans-serif;">Provider Independent Data Access Layer using ADONET provider pattern.</span></span></li>
<li><span style="font-size: 14px;"><span style="font-family: arial,helvetica,sans-serif;">Custom controls by inheriting existing controls or creating compound controls and components</span></span></li>
<li><span style="font-size: 14px;"><span style="font-family: arial,helvetica,sans-serif;">ASPNET 2.0 Security, Membership, and Role Management &ndash; Implementation<br />
		</span></span></li>
<li><span style="font-size: 14px;"><span style="font-family: arial,helvetica,sans-serif;">ASPNET page level and data level caching to boost application performance<br />
		</span></span></li>
<li><span style="font-size: 14px;"><span style="font-family: arial,helvetica,sans-serif;">Domain objects serialized into XML and persisted in database. <br />
		</span></span></li>
<li><span style="font-size: 14px;"><span style="font-family: arial,helvetica,sans-serif;">Image and Graphics programming. in C# <br />
		</span></span></li>
<li><span style="font-size: 14px;"><span style="font-family: arial,helvetica,sans-serif;">ASPNET themes for skinning websites</span><br />
		</span></li>
<li><span style="font-size: 14px;">Microsoft excel manipulation &ndash; Read and Writing excel files<br />
		</span></li>
<li><span style="font-size: 14px;">Custom windows services using C# managed code<br />
		</span></li>
<li><span style="font-size: 14px;">Active directory accounts authentication system for ASPNET intranet web application<br />
		</span></li>
<li><span style="font-size: 14px;">Communication using MSMQ<br />
		</span></li>
</ul>
<h3><span style="font-size: 14px;">ASPNET Ajax:<br />
	</span></h3>
<ul>
<li><span style="font-size: 14px;">ASPNET Ajax Control Tool Kit</span></li>
<li><span style="font-size: 14px;">ASPNET Ajax UI Effects &#8211; UI manipulations like Drag n drop, sorting, reordering, resizing and pagination.</span></li>
<li><span style="font-size: 14px;">ASPNET Ajax Custom Control Extenders &#8211; Developing custom client components using AJAX framework.<br />
		</span></li>
<li><span style="font-size: 14px;">Script globalization and localization using AJAX framework.<br />
		</span></li>
<li><span style="font-size: 14px;">Web services and page methods using JavaScript and ASPNET AJAX.<br />
		</span></li>
<li><span style="font-size: 14px;">ASPNET Page method &ndash; To implement popular JavaScript frameworks and scripting libraries like JQuery.</span></li>
<li><span style="font-size: 14px;">Prototype and YahooUI.<br />
		</span></li>
</ul>
<h3><span style="font-size: 14px;">SQL Server 2000/2005/2008:<br />
	</span></h3>
<ul>
<li><span style="font-size: 14px;">Database design.<br />
		</span></li>
<li><span style="font-size: 14px;">Normalization.<br />
		</span></li>
<li><span style="font-size: 14px;">Query Optimization.<br />
		</span></li>
<li><span style="font-size: 14px;">Stored Procedures.<br />
		</span></li>
<li><span style="font-size: 14px;">User defined functions.<br />
		</span></li>
<li><span style="font-size: 14px;">Crosstab queries.<br />
		</span></li>
<li><span style="font-size: 14px;">Site Search implementation using Full Text Catalog and Indexing.<br />
		</span></li>
</ul>
<h3><span style="font-size: 14px;">Payment Integration:<br />
	</span></h3>
<ul>
<li><span style="font-size: 14px;">PROTX<br />
		</span></li>
<li><span style="font-size: 14px;">WorldPay<br />
		</span></li>
<li><span style="font-size: 14px;">Paypal<br />
		</span></li>
<li><span style="font-size: 14px;">Authorize.NET<br />
		</span></li>
<li><span style="font-size: 14px;">Google Checkout<br />
		</span></li>
<li><span style="font-size: 14px;">HSBC API / CPI<br />
		</span></li>
</ul>
<h3><span style="font-size: 14px;">Third Party Components, Controls and Tools:<br />
	</span></h3>
<ul>
<li>ABCpdf.net.</li>
<li><span style="font-size: 14px;">netCharting.</span></li>
<li><span style="font-size: 14px;">Aurigma Mass Image Uploader.</span></li>
<li><span style="font-size: 14px;">PDFBox &#8211; .NET Version.</span></li>
<li><span style="font-size: 14px;">iText.NET.</span></li>
</ul>
<h3><span style="font-size: 14px;">Other Frameworks and Script Libraries:<br />
	</span></h3>
<ul>
<li><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Jquery</span></span></li>
<li><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Lightwindow</span></span></li>
<li><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Scriptaculous</span></span></li>
<li><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Prototype</span></span></li>
<li><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Yahoo UI</span></span></li>
<li><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Google Map Geo coding based on UK Post Codes</span></span></li>
<li><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Open ID Integration</span></span></li>
<li><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Social Bookmarking</span></span></li>
<li><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Open Source CMS Integration &ndash; <a href="http://www.softwareassociates.in/umbraco-capabilities/">Umbraco development</a><br />
		</span></span></li>
<li><span style="font-size: 14px;"><span style="font-family: arial,helvetica,sans-serif;">ELMAH: Error Logging Modules and Handlers &ndash; To log, handle and mail runtime errors</span>.<br />
		</span></li>
</ul>
<h3><span style="font-size: 14px;">ASPNET 3.5:<br />
	</span></h3>
<ul>
<li><span style="font-size: 14px;">URL Rewriting and routing</span></li>
<li><span style="font-size: 14px;">ASPNET Dynamic data using scaffolding framework (Full CRUD operations supported)</span></li>
<li><span style="font-size: 14px;">History Control, Drag overlay extender, Media Control, XAML and Web Part manager,</span></li>
<li><span style="font-size: 14px;">LINQ</span></li>
<li><span style="font-size: 14px;">Powerful URL mapping component that enables to build applications with clean URLs.</span></li>
<li><span style="font-size: 14px;">REST-friendly naming patterns.</span></li>
<li><span style="font-size: 14px;">Silverlight &ndash; application using WCF service</span></li>
</ul>
<p style="text-align: justify;">&nbsp;</p>
<p style="text-align: justify;"><span style="font-size: 14px;">Our Microsoft aspnet web application team practices <a href="http://www.softwareassociates.in/blog/continuous-integration/">continous integration</a> and agile scum methodologies to build enterprise web applications for umbraco developers in London, New York, Washington and Seattle.</span></p>
<p style="text-align: justify;"><span style="font-size: 14px;">Read about our <a href="http://www.softwareassociates.in/blog/case-studies-london-newyork/">Microsoft dotnet case studies</a></p>
<p>	To have a no obligation quote please click following link <a href="http://www.softwareassociates.in/contact-software-associates/">Contact Us.</a><br />
	</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.softwareassociates.in/blog/microsoft-technologies-skills-update/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Sitemap</title>
		<link>http://www.softwareassociates.in/blog/sitemap/</link>
		<comments>http://www.softwareassociates.in/blog/sitemap/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 11:33:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[India]]></category>
		<category><![CDATA[united kingdom]]></category>
		<category><![CDATA[USA]]></category>

		<guid isPermaLink="false">http://www.softwareassociates.in/?p=592</guid>
		<description><![CDATA[Home &#160; About Software Associates, Kozhikode, India &#160; &#160; &#160;&#160;&#160;&#160; &#187; Company Profile &#160; &#160; &#160; &#160;&#160; &#187; Management Team &#160; Our services &#8211; The difference is experience &#160; Technology &#8211; Your research and development partner &#160; Projects &#8211; Some &#8230; <a href="http://www.softwareassociates.in/blog/sitemap/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<ul>
<li><strong><a href="http://www.softwareassociates.in/">Home</a></strong></li>
<li>&nbsp;</li>
<li><strong><a href="http://www.softwareassociates.in/about-software-associates/">About Software Associates, Kozhikode, India</a></strong></li>
<li><strong>&nbsp;</strong></li>
<li><a href="http://www.softwareassociates.in/about-software-associates/">&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &raquo; Company Profile</a></li>
<li>&nbsp;</li>
<li><a href="http://www.softwareassociates.in/management-team-software-associates/">&nbsp; &nbsp; &nbsp;&nbsp; &raquo; Management Team</a></li>
<li><strong><strong>&nbsp;</strong></strong></li>
<li><strong><a href="http://www.softwareassociates.in/services-software-associates/">Our services &#8211; The difference is experience</a></strong></li>
<li><strong><strong>&nbsp;</strong></strong></li>
<li><strong><a href="http://www.softwareassociates.in/technology-software-associates/">Technology &#8211; Your research and development partner</a></strong></li>
<li><strong><strong>&nbsp;</strong></strong></li>
<li><strong><a href="http://www.softwareassociates.in/projects-software-associates/">Projects &#8211; Some of our project case studies</a></strong></li>
<li><strong><strong>&nbsp;</strong></strong></li>
<li><strong><a href="http://www.softwareassociates.in/blog/">Our Blogs</a></strong></li>
<li><strong><strong>&nbsp;</strong></strong></li>
<li><strong><a href="http://www.softwareassociates.in/contact-software-associates/">Contact &#8211; Be in touch. India, USA and United Kingdom direct numbers</a></strong></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.softwareassociates.in/blog/sitemap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LINQ</title>
		<link>http://www.softwareassociates.in/blog/linq/</link>
		<comments>http://www.softwareassociates.in/blog/linq/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 10:46:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[research]]></category>
		<category><![CDATA[united kingdom]]></category>

		<guid isPermaLink="false">http://softwareassociatesuk.com/blog/?p=98</guid>
		<description><![CDATA[LINQ is Language Integrated Query Uniform programming model for any kind of data Just a tool for embedding SQL queries into code. Just another Data abstraction layer. All the above facts are correct and each focus on a single aspect. &#8230; <a href="http://www.softwareassociates.in/blog/linq/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<ul style="text-align: justify;">
<li>LINQ is Language Integrated Query</li>
<li>Uniform programming model for any kind of data</li>
<li>Just a tool for embedding SQL queries into code.</li>
<li>Just another Data abstraction layer.</li>
</ul>
<div style="text-align: justify;">All the above facts are correct and each focus on a single aspect. LINQ can do a lot more than what is being stated above.</p>
<p>	LINQ is a methodology that simplifies and unifies the implementation of any kind of data access. LINQ does not force you to use a specific architecture; it facilitates the implementation of several existing architectures for accessing data. As with every tool, it can be used in both good and bad ways.</p>
<p>	<strong>What is LINQ?</strong></p>
<p>	LINQ is a programming model that introduces queries as a first-class concept into any Microsoft .NET language. However, complete support for LINQ requires some extensions in the language used. These extensions boost productivity, thereby providing a shorter, meaningful, and expressive syntax to manipulate data.</p>
<p>	For ex:</p>
<p>	var query = from c in Customers<br />
	where c.Country == &quot;United Kingdom&quot;<br />
	select c.CompanyName;</p>
<p>	The above written query is a simple LINQ query that fetches all Customers whose country is United Kingdom.</p>
<p>	As you will see, the SQL-like syntax used in LINQ is called a query expression. Languages that implement embedded SQL define only a simplified syntax to put SQL statements into a different language, but these statements are not integrated into the language&rsquo;s native syntax and type system. For example, you cannot call a function written using the host language in the middle of an SQL statement, although this is possible in LINQ. Moreover, LINQ is not limited to querying databases, as embedded SQL is.</p>
<p>	<strong>How LINQ Works:</strong></p>
<p>	Let see how a LINQ Query works</p>
<p>	Customer[] Customers = GetCustomers();</p>
<p>	var query = from c in Customers</p>
<p>	where c.Country == &quot;United States&quot;</p>
<p>	select c;</p>
<p>	the compiler generates this code:</p>
<p>	Customer[] Customers = GetCustomers();</p>
<p>	IEnumerable<customer> query =</customer><br />
	<customer></customer><br />
	<customer>Customers</customer><br />
	<customer></customer><br />
	<customer>.Where( c =&gt; c.Country == &quot;United States&quot; );</customer><br />
	<customer></customer><customer></customer><br />
	<customer>As you can see, the code apparently calls instance members on the object returned from the previous call. You will see that this apparent behavior is regulated by the extension methods feature of the host language (C# in this case). The implementation of the Where, OrderBy, and Select methods&mdash;called by the sample query&mdash;depends on the type of Customers and on namespaces specified in previous using statements. Extension methods are a fundamental syntax feature that is used by LINQ to operate with different data domains using the same syntax.</customer><br />
	<customer></customer><br />
	<customer><strong>Extension Methods</strong></customer><br />
	<customer></customer><br />
	<customer>Extension methods enable you to &quot;add&quot; methods to existing types without creating a new derived type, recompiling, or otherwise modifying the original type. Extension methods are a special kind of static method, but they are called as if they were instance methods on the extended type. For client code written in C# and Visual Basic, there is no apparent difference between calling an extension method and the methods that are actually defined in a type.</customer><br />
	<customer></customer><br />
	<customer><strong>Relational Model vs. Hierarchical/Graph Model:</strong></customer><br />
	<customer></customer><br />
	<customer>At first sight, LINQ might appear to be just another SQL dialect. This similarity has its roots in the way a LINQ query can describe a relationship between entities such as an SQL join:</customer><br />
	<customer></customer><br />
	<customer>var query =</customer><br />
	<customer></customer><br />
	<customer>from c in Customers</customer><br />
	<customer></customer><br />
	<customer>join o in Orders</customer><br />
	<customer></customer><br />
	<customer>on c.CustomerID equals o.CustomerID</customer><br />
	<customer></customer><br />
	<customer>select new { c.CustomerID, c.CompanyName, o.OrderID };</customer><br />
	<customer></customer><br />
	<customer>This is similar to the regular way of querying data in a relational model. However, LINQ is not limited to a single data domain like the relational model is. In a hierarchical model, suppose that each customer has its own set of orders, and each order has its own list of products. In LINQ, we can get the list of products ordered by each customer in this way:</customer><br />
	<customer></customer><br />
	<customer>var query =</customer><br />
	<customer></customer><customer>from c in Customers</customer><br />
	<customer></customer><customer>from o in c.Orders</customer><br />
	<customer></customer><customer>select new { c.Name, o.Quantity, o.Product.ProductName };</customer><br />
	<customer></customer><br />
	<customer>The previous query contains no joins. The relationship between Customers and Orders is expressed by the second from clause, which uses c.Orders to say &ldquo;get all Orders of the c Customer.&rdquo; The relationship between Orders and Products is expressed by the Product member of the Order instance. The result projects the product name for each order row using</customer><customer> o.Product.ProductName. Hierarchical relationships are expressed in type definitions through references to other objects.</customer><br />
	<customer></customer><br />
	<customer><strong>LINQ Flavors:</strong></customer><br />
	<customer></customer><br />
	<customer>LINQ is a technology that covers many data domains. Some of these domains are included in those &ldquo;LINQ Flavors&rdquo; that Microsoft provides as part of the .NET 3.5 Framework, as shown in the above picture. Each of these implementations is defined through a set of extension methods that implement the operators needed by LINQ to run over a particular data domain. The access to these features is controlled by the imported namespaces.</customer><br />
	<customer></customer><br />
	<customer><strong>LINQ to Objects:</strong></customer><br />
	<customer></customer><br />
	<customer>LINQ to Objects has the goal of manipulating collections of objects, which can be related to each other to form a hierarchy or a graph. From a certain point of view, LINQ to Objects is the default implementation used by a LINQ query. LINQ to Objects is enabled including the System.Linq namespace.</customer><br />
	<customer></customer><br />
	<customer><strong>LINQ to ADO.NET</strong></customer><br />
	<customer></customer><br />
	<customer>LINQ to ADO.NET includes different LINQ implementations that share the need to manipulate relational data. It includes other technologies that are specific to each particular persistence layer:</customer><br />
	<customer></customer><br />
	<customer>LINQ to SQL Handles the mapping between custom types in C# and the physical table schema.</customer><br />
	<customer></customer><br />
	<customer>LINQ to Entities Is in many ways similar to LINQ to SQL. However, instead of using the physical database as a persistence layer, it uses a conceptual Entity Data Model</customer>. <customer>The result is an abstraction layer that is independent from the physical data layer.</customer><br />
	<customer></customer><br />
	<customer>LINQ to DataSet Makes it possible to query a DataSet using LINQ.</customer><br />
	<customer></customer><br />
	<customer><strong>LINQ to XML</strong></customer><br />
	<customer></customer><br />
	<customer>LINQ to XML offers a slightly different syntax that operates on XML data, allowing query and data manipulation. A particular type of support for LINQ to XML is offered by Visual Basic 9.0, which includes XML literals in the language. This enhanced support simplifies the code necessary to manipulate XML data. In fact, you can write such a query in Visual Basic 9.0</customer><br />
	<customer></customer><br />
	<customer><strong>Summary</strong></customer><br />
	<customer></customer><br />
	<customer>We have walked through the LINQ introduction, language enhancements to the LINQ flavors. .NET Language-Integrated Que ry adds query capabilities to the CLR and the languages that target it. The query facility builds on lambda expressions and expression trees to allow predicates, projections, and key extraction expressions to be used as opaque executable code or as transparent in-memory data suitable for downstream processing or translation. The standard query operators defined by the LINQ project work over any IEnumerable<t>-based information source, and are integrated with ADO.NET (LINQ to SQL) and System.Xml (LINQ to XML) to allow relational and XML data to gain the benefits of language-integrated query.</t></customer><br />
	<customer><t></t></customer><br />
	<customer><t>References:</t></customer><br />
	<customer><t></t></customer><br />
	<customer><t>Introducing Microsoft LINQ by Paolo Pialorsi and Marco Russo</t></customer></div>
]]></content:encoded>
			<wfw:commentRss>http://www.softwareassociates.in/blog/linq/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android and iPhone tablet browsers</title>
		<link>http://www.softwareassociates.in/blog/website-testing-and-browse-compliance/</link>
		<comments>http://www.softwareassociates.in/blog/website-testing-and-browse-compliance/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 13:11:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[best practices]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[united kingdom]]></category>
		<category><![CDATA[USA]]></category>
		<category><![CDATA[Web standards]]></category>
		<category><![CDATA[Web testing]]></category>
		<category><![CDATA[android application]]></category>
		<category><![CDATA[cross browser testing]]></category>
		<category><![CDATA[London]]></category>
		<category><![CDATA[new york]]></category>
		<category><![CDATA[testcomplete]]></category>
		<category><![CDATA[testing services]]></category>

		<guid isPermaLink="false">http://softwareassociatesuk.com/blog/?p=92</guid>
		<description><![CDATA[Quality is free but no one is ever going to know it unless there is some agreed system of measurement.&#160;A report by Creative Good showed that 39 per cent of test shoppers failed in their buying attempts because sites were &#8230; <a href="http://www.softwareassociates.in/blog/website-testing-and-browse-compliance/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Quality is free but no one is ever going to know it unless there is some agreed system of measurement.&nbsp;A report by Creative Good showed that 39 per cent of test shoppers failed in their buying attempts because sites were too difficult to navigate. Additionally, 56 per cent of search attempts failed.</span></span></div>
<div style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;"><br />
	</span></span></div>
<div style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Portal development is only half the work done. You need professional web site testers who can unearth hidden bugs and enforce webs standards that would otherwise cost your company thousands of pounds in maintaining and fixing these costly errors. In 2004, the <span class="blsp-spelling-error" id="SPELLING_ERROR_0">UK&#39;s</span> Department of Inland Revenue experienced software errors that resulted in a $3.45 billion tax-credit over payment.&nbsp;</span></span></div>
<div style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;"><br />
	</span></span></div>
<div style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Here is a recent report on the horrors of coding errors &#8211; surprisingly from a <a href="http://dealbook.blogs.nytimes.com/2010/06/21/the-tremors-from-a-coding-error/" target="_blank">mutual fund company</a></span></span></div>
<div style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;"><br />
	</span></span></div>
<div style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">It seems to be happening all over the world &#8211; but who or what is to blame? All web developers understand the need to test their own scripts, but few take the time or make it a priority to test early in the web application development cycle. The result is a vicious cycle of few tests, poor-quality code and an increasing amount of debugging work. This is often due to insufficient resources, lack of technical know how, inadequate planning, scope creep and poor design.</span></span></div>
<div style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;"><br />
	</span></span></div>
<div style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Our experienced team of web and application testers could help you save thousands of dollars through our manual and automated testing procedures for ERP applications using <span class="blsp-spelling-error" id="SPELLING_ERROR_1">TestComplete</span> and selenium.<br />
	</span></span></div>
<div style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;"><br />
	</span></span></div>
<div style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">We do quality assurance testing services for web portals, extranets&nbsp;and intranets; they includ<strong>e tests for cross browsers, website functionality, performance, security and web standards</strong> ; work closely with designers and developers to bring about drastic improvement in code quality and predictability. Our quality assurance projects include big names in United Kingdom such as O2, <span class="blsp-spelling-error" id="SPELLING_ERROR_3">NHS</span>, Honda, Esprit, Dell and <span class="blsp-spelling-error" id="SPELLING_ERROR_4">Cadbury</span>.</span></span></div>
<div style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;"><br />
	</span></span></div>
<div style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Whether you are based at London or New York,&nbsp; &#8211; our web standards testing, application testing and web portal application development and testing services are available to you at a short notice.&nbsp;We also provide long term independent testing services for web development companies who build portals and social networks to bring about tangible benefits in testing time and shorter version release cycles</span></span></div>
<div style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;"><br />
	</span></span></div>
<div style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;"><strong>What we provide</strong></span></span></div>
<div style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;"><br />
	</span></span></div>
<div style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;"><strong>#Standard operating checklist with severity of errors</strong></span></span></div>
<ul>
<li style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Critical Error</span></span></li>
<li style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Lack of Functionality / Logical Error</span></span></li>
<li style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Not Living up to Specification</span></span></li>
<li style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Spelling or Grammar Error</span></span></li>
<li style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Design Problem</span></span></li>
</ul>
<div style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;"><strong># Web security</strong></span></span></div>
<ul>
<li style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;"><span class="blsp-spelling-error" id="SPELLING_ERROR_5">SQL</span> injection</span></span></li>
<li style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Bot <span class="blsp-spelling-error" id="SPELLING_ERROR_6">login</span> prevention</span></span></li>
<li style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">JavaScript loopholes</span></span></li>
<li style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Password protection</span></span></li>
<li style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Document privacy</span></span></li>
<li style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Reader privacy</span></span></li>
<li style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;"><span class="blsp-spelling-error" id="SPELLING_ERROR_7">IP</span> restrictions</span></span></li>
<li style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Credit card encryption</span></span></li>
</ul>
<div style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;"><strong># HTML web standards</strong></span></span></div>
<ul>
<li style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">W3C standards</span></span></li>
<li style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Web accessibility</span></span></li>
<li style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Section 508 compliance</span></span></li>
<li style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">AAA compliance</span></span></li>
<li style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;"><span class="blsp-spelling-error" id="SPELLING_ERROR_8">XHTML</span> compliance</span></span></li>
</ul>
<div style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;"><strong># Cross browser compatibility testing</strong></span></span></div>
<ul>
<li style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Internet Explorer 6</span></span></li>
<li style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Internet Explorer 7</span></span></li>
<li style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">IE 8</span></span></li>
<li style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;"><span class="blsp-spelling-error" id="SPELLING_ERROR_9">Firefox</span> 1.5 browser</span></span></li>
<li style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Safari browser for Mac and Windows <span class="blsp-spelling-error" id="SPELLING_ERROR_10">XP</span></span></span></li>
<li style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">IE 5.2 for Macintosh</span></span></li>
<li style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Netscape browser 7.x</span></span></li>
<li style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Opera 8.x</span></span></li>
<li style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Android and iPhone tablet browsers<br />
		</span></span></li>
</ul>
<div style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;"><strong># Coding and performance</strong></span></span></div>
<ul>
<li style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Portal development standards</span></span></li>
<li style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Web services testing</span></span></li>
<li style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Web load performance testing</span></span></li>
<li style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Automated web testing</span></span></li>
<li style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Web site optimization</span></span></li>
<li style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Website coder <span class="blsp-spelling-error" id="SPELLING_ERROR_11">matrices</span></span></span></li>
</ul>
<div style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;"><strong># Requirements</strong></span></span></div>
<ul>
<li style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Functional specification of the project</span></span></li>
<li style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Client / Admin <span class="blsp-spelling-error" id="SPELLING_ERROR_12">login</span> access on staging server</span></span></li>
</ul>
<div style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;"><strong># Engagement models</strong></span></span></div>
<ul>
<li><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Pay per bug</span></span></li>
<li><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Fixed hour testing</span></span></li>
<li><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Agile testing for large projects</span></span></li>
</ul>
<p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: 14px;">Write to us to know about skill sets and the services that we can provide to you.&nbsp;</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.softwareassociates.in/blog/website-testing-and-browse-compliance/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SWOT analysis for portal</title>
		<link>http://www.softwareassociates.in/blog/swot-analysis-for-portal/</link>
		<comments>http://www.softwareassociates.in/blog/swot-analysis-for-portal/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 04:49:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[consulting]]></category>
		<category><![CDATA[portal development]]></category>
		<category><![CDATA[united kingdom]]></category>
		<category><![CDATA[web 2.0]]></category>

		<guid isPermaLink="false">http://softwareassociatesuk.com/blog/?p=91</guid>
		<description><![CDATA[Recently we undertook a consulting project for a client of ours based out of United Kingdom which involved detailed research on competitive information. The portal has hits from 102 countries and is considered to be the leader in its category. &#8230; <a href="http://www.softwareassociates.in/blog/swot-analysis-for-portal/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Recently we undertook a consulting project for a client of ours based out of United Kingdom which involved detailed research on competitive information. The portal has hits from 102 countries and is considered to be the leader in its category. We undertook following set activities for the client.</p>
<ul>
<li style="text-align: justify;">Analysis of the business model followed</li>
<li style="text-align: justify;">Content aggregation</li>
<li style="text-align: justify;">Search engine strategy</li>
<li style="text-align: justify;">Ways to improve customer loyalty</li>
<li style="text-align: justify;">Role of blogs on traffic generation</li>
<li style="text-align: justify;">Tips on increasing repeat purchases</li>
<li style="text-align: justify;">Buyer demographics</li>
<li style="text-align: justify;">Competitor analysis</li>
<li style="text-align: justify;">Sustainable competitive edge</li>
<li style="text-align: justify;">Future web trends and recommendations</li>
<li style="text-align: justify;">Web 2.0 strategy</li>
<li style="text-align: justify;">Social media optimization</li>
</ul>
<p style="text-align: justify;">This was as an add-on to the web development services that we offered. Results of the analysis part were used as a framework for subsequent web development. Apart from marketing and function aspect of business we are also here to help you out in technology selection, choice of databases and other hardware requirements suited for your business need. Our team is always ready to work hand in hand with your team, giving them support in any aspect whenever they need it.</p>
<p style="text-align: justify;">To know more about our Internet Consultancy Services <a href="http://www.softwareassociates.in/blog/consulting/internet-consulting-services/">read</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.softwareassociates.in/blog/swot-analysis-for-portal/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Database of Individual Patient Experiences</title>
		<link>http://www.softwareassociates.in/blog/database-of-individual-patient-experiences/</link>
		<comments>http://www.softwareassociates.in/blog/database-of-individual-patient-experiences/#comments</comments>
		<pubDate>Sun, 20 Jul 2008 11:09:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Case studies]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[united kingdom]]></category>

		<guid isPermaLink="false">http://softwareassociatesuk.com/blog/?p=77</guid>
		<description><![CDATA[uniDmex &#8211; Rebuilding of existing site into three individual sites; The main goal is to collect, upload and show patient interviews about their illnesses and experience. Uploaded interviews videos are stored in Flash Media Server for streaming and all interviews &#8230; <a href="http://www.softwareassociates.in/blog/database-of-individual-patient-experiences/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>uniDmex &#8211; Rebuilding of existing site into three individual sites;</p>
<p>	The main goal is to collect, upload and show patient interviews about their illnesses and experience.</p>
<p>	Uploaded interviews videos are stored in Flash Media Server for streaming and all interviews are displayed categorized by disease group, condition and symptoms.</p>
<p>	Data importing involved conversion of over 15,000 windows media video files to flash format and importing of existing data from old to new database using complex sql queries and cursors.</p>
<p>	Technologies:</p>
<p>	ASP.NET 2 C#, SQL Server 2005, ASP.NET AJAX, Flash CS3, Flash Media Server<br />
	and jquery.</p>
<p>	Technology features:</p>
<ul>
<li>Object Oriented Programming with layered architecture &#8211; for</li>
<li>extensibility and easy maintenance.</li>
<li>AJAX based CMS and Front end &#8211; Easy and comfortable user experience,</li>
<li>less page post backs.</li>
<li>Front end navigations and styles are manageable through CMS.</li>
<li>Dynamic creation of CSS using template and Regular expression for each</li>
<li>disease group.</li>
<li>Video streaming using Flash Media Server</li>
<li>URL Rewriting &#8211; for readable urls and search engine optimization</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.softwareassociates.in/blog/database-of-individual-patient-experiences/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Field Intelligence System Host</title>
		<link>http://www.softwareassociates.in/blog/field-intelligence-system-host/</link>
		<comments>http://www.softwareassociates.in/blog/field-intelligence-system-host/#comments</comments>
		<pubDate>Sun, 20 Jul 2008 11:04:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Case studies]]></category>
		<category><![CDATA[united kingdom]]></category>

		<guid isPermaLink="false">http://softwareassociatesuk.com/blog/?p=76</guid>
		<description><![CDATA[LG UK The purpose of the project is to provide a portal for LG staff to manage the field activity and for retailers and staff to interact with LG by accessing a range of services and managing their own data &#8230; <a href="http://www.softwareassociates.in/blog/field-intelligence-system-host/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p style="font-weight: bold;"><span style="font-size: 85%;"><u><span style="font-family: Times New Roman;"><span style="">LG UK</span></span></u></span></p>
<p><span style="font-family: Arial; font-size: 85%;"><span style="font-family: Arial;">The purpose of the project is to provide a portal for LG staff to manage the field activity and for retailers and staff to interact with LG by accessing a range of services and managing their own data profiles. </span></span></p>
<p><span style="font-family: Arial; font-size: 85%;"><span style="font-family: Arial;">The system will be designed to provide functionality to the following users:</span></span></p>
<ul style="margin-top: 0in;" type="square">
<li style="text-align: justify; line-height: 120%;"><span style="font-family: Arial; font-size: 85%;"><span style="line-height: 120%; font-family: Arial;">LG Trainers/ LG Staff</span></span></li>
<li style="text-align: justify; line-height: 120%;"><span style="font-family: Arial; font-size: 85%;"><span style="line-height: 120%; font-family: Arial;">Stores/Customers</span></span></li>
<li style="text-align: justify; line-height: 120%;"><span style="font-family: Arial; font-size: 85%;"><span style="line-height: 120%; font-family: Arial;">LG Administrators/LG Staff</span></span></li>
</ul>
<p><span style="font-size: 85%;">We have the following managing sections in the extranet</p>
<p>	E-Learning module :<br />
	</span></p>
<ul>
<li><span style="font-size: 85%;">Manage E-Learning Courses, Training Resources and Questionnaire</span></li>
<li><span style="font-size: 85%;">Training resources</span></li>
<li><span style="font-size: 85%;">Retail Users</span></li>
<li><span style="font-size: 85%;">Staff Users</span></li>
<li><span style="font-size: 85%;">Training Areas</span></li>
<li><span style="font-size: 85%;">Categorize Training Areas with Post codes</span></li>
<li><span style="font-size: 85%;">Store Accounts : Stores comes under an Account</span></li>
<li><span style="font-size: 85%;">Trainer Activities Management</span></li>
<li><span style="font-size: 85%;">Reports : System generated reports based on the Training Performances</span></li>
<li><span style="font-size: 85%;">Information Database management</span></li>
<li><span style="font-size: 85%;">Mass Image Upload and management</span></li>
</ul>
<p><span style="font-size: 85%;">Technology features included</p>
<p>	Mass Image upload using Aurigma Image Up loader<br />
	Image tagging functionality<br />
	Extract Geo codes based on UK Post codes implemented using Google AJAX Search API<br />
	Dot net Charting tool for the Graphs generation<br />
	Training slides presentation implemented using ASP.NET Wizard server control</p>
<p>	Technology and platform:</p>
<p>	ASP.NET 2.0<br />
	Ajax Enabled<br />
	SQL Server 2005<br />
	J Query<br />
	</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.softwareassociates.in/blog/field-intelligence-system-host/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Electronic Rota &amp; Nursing Indicators</title>
		<link>http://www.softwareassociates.in/blog/electronic-rota-nursing-indicators/</link>
		<comments>http://www.softwareassociates.in/blog/electronic-rota-nursing-indicators/#comments</comments>
		<pubDate>Sun, 20 Jul 2008 10:56:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Case studies]]></category>
		<category><![CDATA[united kingdom]]></category>

		<guid isPermaLink="false">http://softwareassociatesuk.com/blog/?p=75</guid>
		<description><![CDATA[The main purpose of this project is to provide NHIS nurses, staffs and organization administrators the means to view and manage staff shifts and to generate reports to analyse and optimise resource utilisation and save valuable supervisory time. As always, &#8230; <a href="http://www.softwareassociates.in/blog/electronic-rota-nursing-indicators/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><span style="font-family: Arial; font-size: 85%;"><span style="font-family: Arial;">The main purpose of this project is to provide NHIS nurses, staffs and organization administrators the means to view and manage staff shifts and to generate reports to analyse and optimise resource utilisation and save valuable supervisory time.</p>
<p>	As always, <a href="http://www.softwareassociates.in/">we</a> delivered on time and within budget &#8211; meeting customer expectations.<br />
	</span></span></p>
<p><u><span style="font-family: Arial; font-size: 85%;"><span style="font-family: Arial;">Manage staff shifts (Rota Section)</span></span></u><span style="font-family: Arial; font-size: 85%;"><span style="font-family: Arial;"><br />
	</span></span></p>
<p><span style="font-family: Arial; font-size: 85%;"><span style="font-family: Arial;">Perform functions like adding rota codes, manage shift timings, bed details available for a particular day, allocating leave hours etc.</span></span></p>
<p><u><span style="font-family: Arial; font-size: 85%;"><span style="font-family: Arial;">Reports section</span></span></u><span style="font-family: Arial; font-size: 85%;"><span style="font-family: Arial;"> &ndash; Generate charts, reports and data based on rotas.</span></span></p>
<p><u><span style="font-family: Arial; font-size: 85%;"><span style="font-family: Arial;">Administration section</span></span></u><span style="font-family: Arial; font-size: 85%;"><span style="font-family: Arial;"> &ndash; Performing tasks such as managing user profiles and roles, importing staff and budget data details.</span></span></p>
<p><b><u><span style="font-family: Arial; font-size: 85%;"><span style="font-weight: bold; font-family: Arial;">Technologies used</span></span></u></b></p>
<p><span style="font-family: Arial; font-size: 85%;"><span style="font-family: Arial;"><a href="http://asp.net/" target="_blank">ASP.NET</a> 2.0, C#, <a href="http://asp.net/" target="_blank">ASP.NET</a> AJAX (formerly MS Atlas), SQL Server 2005, dotnetcharting engine (for generating charts) </span></span></p>
<p><b><u><span style="font-family: Arial; font-size: 85%;"><span style="font-weight: bold; font-family: Arial;">Features</span></span></u></b></p>
<ul>
<li><span style="font-family: Arial; font-size: 85%;"><span style="font-family: Arial;">Rota section is completely ajax enabled (look and feel of a desktop application) </span></span></li>
<li><span style="font-family: Arial; font-size: 85%;"><span style="font-family: Arial;">Used Web services to call AJAX requests</span></span></li>
<li><span style="font-family: Arial; font-size: 85%;"><span style="font-family: Arial;">On the fly editing of rota codes (changes will be reflected at that moment itself without reloading the page)</span></span></li>
<li><span style="font-family: Arial; font-size: 85%;"><span style="font-family: Arial;">Various events are handled in the Rota page (left, right click and hover events)</span></span></li>
<li><span style="font-family: Arial; font-size: 85%;"><span style="font-family: Arial;">Customized context menu while right clicking</span></span></li>
<li><span style="font-family: Arial; font-size: 85%;"><span style="font-family: Arial;">View staffs from multiple wards</span></span></li>
<li><span style="font-family: Arial; font-size: 85%;"><span style="font-family: Arial;">Importing staff data from ESR (Electronic Staff Record)</span></span></li>
<li><span style="font-family: Arial; font-size: 85%;"><span style="font-family: Arial;">Reports are viewable at any levels (Trust=&gt;Board=&gt;Division=&gt;Ward) and between any dates</span></span></li>
<li><span style="font-family: Arial; font-size: 85%;"><span style="font-family: Arial;">Converted existing excel application into corresponding .NET application</span></span></li>
<li><span style="font-family: Arial; font-size: 85%;"><span style="font-family: Arial;">Importing budget data from excel sheets</span></span></li>
<li><span style="font-family: Arial; font-size: 85%;"><span style="font-family: Arial;">Special mode for viewing 72 hours Rota details (each hour is further drilled to 15 minutes) </span></span></li>
<li><span style="font-family: Arial; font-size: 85%;"><span style="font-family: Arial;">Have facility to get the number of staffs working at a particular hour increment</span></span></li>
<li><span style="font-family: Arial; font-size: 85%;"><span style="font-family: Arial;">Facility to generate charts using dotnetcharting engine</span></span></li>
<li><span style="font-family: Arial; font-size: 85%;"><span style="font-family: Arial;">Exporting reports to either CSV or native Excel format</span></span></li>
<li><span style="font-family: Arial; font-size: 85%;"><span style="font-family: Arial;">Facility to take print outs from the UI itself</span></span></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.softwareassociates.in/blog/electronic-rota-nursing-indicators/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Extranet for NHS</title>
		<link>http://www.softwareassociates.in/blog/extranet-for-nhs/</link>
		<comments>http://www.softwareassociates.in/blog/extranet-for-nhs/#comments</comments>
		<pubDate>Sat, 19 Jul 2008 16:02:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Case studies]]></category>
		<category><![CDATA[united kingdom]]></category>

		<guid isPermaLink="false">http://softwareassociatesuk.com/blog/?p=74</guid>
		<description><![CDATA[The purpose of the extranet project is to provide NHS nurses, users and organisation administrators the means to view and manage recordable events. The website will provide nurses, users and organisation administrators with the ability to: Input new recordable events &#8230; <a href="http://www.softwareassociates.in/blog/extranet-for-nhs/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The purpose of the extranet project is to provide NHS nurses, users and organisation administrators the means to view and manage recordable events. The website will provide nurses, users and organisation administrators with the ability to:</p>
<ul>
<li>Input new recordable events</li>
<li>Generate and save reports and data on events</li>
<li>Perform administration tasks such as adding, editing and deleting: user profiles on a organisation only level</li>
</ul>
<p>System Users</p>
<p>	The system will be designed to provide functionality to the following users:</p>
<ul>
<li>The system administrator has the sole ability to manage multiple organisations.</li>
<li>The organisation administrator has the ability to manage and perform the same tasks as a user within their organisation</li>
<li>Nurses &#8211; The user has the ability to, depending on their privileges, input new events, generate reports, change passwords and log out within their organisation</li>
</ul>
<p>The system has the following modules:</p>
<ul>
<li>Input new recordable events</li>
<li>Generate report</li>
<li>Manage organisation</li>
<li>Manage User</li>
<li>Audit trial</li>
</ul>
<p>Technology features Included</p>
<ul>
<li>3D graph generation for report &ndash; Pie chart and Bar chart for selected events</li>
<li>Download/Save generated graph as image(*.gif) or CSV</li>
<li>Audit trail of every function &ndash; Date and Time, Username, IP address</li>
</ul>
<p>Technology and platform</p>
<p>	Database &#8211; SQL Server 2005</p>
<p>	Programming Language &#8211; ASP.Net C#</p>
<p>	Technologies:</p>
<p>	AJAX<br />
	.NET charting tool (3rd party tool for graph generation)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.softwareassociates.in/blog/extranet-for-nhs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  www.softwareassociates.in/blog/category/united-kingdom/feed/ ) in 0.56013 seconds, on Feb 8th, 2012 at 3:45 am UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 8th, 2012 at 4:45 am UTC -->
