<?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/"
	>

<channel>
	<title>SPEC INDIA</title>
	<atom:link href="http://blog.spec-india.com/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.spec-india.com</link>
	<description>Custom Software Application Development</description>
	<pubDate>Wed, 16 May 2012 13:55:45 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>White Box Testing</title>
		<link>http://blog.spec-india.com/white-box-testing</link>
		<comments>http://blog.spec-india.com/white-box-testing#comments</comments>
		<pubDate>Wed, 16 May 2012 13:55:45 +0000</pubDate>
		<dc:creator>SPECIndia</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Automated Testing]]></category>

		<category><![CDATA[iPad Application Testing and Android Application Testing]]></category>

		<category><![CDATA[Manual Testing]]></category>

		<category><![CDATA[Mobile Application Testing]]></category>

		<category><![CDATA[Mobile Software Testing]]></category>

		<category><![CDATA[Quick Test Pro - Mercury QTP Testing]]></category>

		<category><![CDATA[Software Performance Testing]]></category>

		<category><![CDATA[Software Quality Testing]]></category>

		<category><![CDATA[Software Testing Automation]]></category>

		<category><![CDATA[Third Party Software Testing]]></category>

		<category><![CDATA[Third Party Verification and Validation and Performance Testing]]></category>

		<category><![CDATA[Website Usability Testing]]></category>

		<guid isPermaLink="false">http://blog.spec-india.com/?p=2066</guid>
		<description><![CDATA[There are mainly two types of software testing: White Box and Black Box Testing.
Developers do White Box testing and Black Box testing is done by Software Testers. In White Box testing, checking of internal structure of the application is done and which is why it is also called Structural Testing. It is also known as [...]]]></description>
			<content:encoded><![CDATA[<p>There are mainly two types of software testing: <a href="http://www.spec-india.com/overview-of-test-tools-and-testing.htm" target="_blank">White Box and Black Box Testing</a>.</p>
<p>Developers do <a href="http://www.spec-india.com/overview-of-test-tools-and-testing.htm" target="_blank">White Box testing and Black Box testing</a> is done by Software Testers. In <a href="http://www.spec-india.com/overview-of-test-tools-and-testing.htm" target="_blank">White Box testing</a>, checking of internal structure of the application is done and which is why it is also called Structural Testing. It is also known as Glass Box Testing. How the system has been built and how is it working is the main consideration in the <a href="http://www.spec-india.com/overview-of-test-tools-and-testing.htm" target="_blank">White Box testing approach</a>, which is totally opposite to the Black Box testing in which the main concern is the functionality of the application.  In Black Box testing, irrespective of the internal structure of the application, only the outputs are checked and verified.</p>
<p>While <a href="http://www.spec-india.com/overview-of-test-tools-and-testing.htm" target="_blank">white-box testing</a> can be applied at the unit, integration and system levels of the software testing process, it is usually done at the unit level. It can test paths within a unit, paths between units during integration, and between sub-systems during a system–level test.<br />
<a href="http://www.spec-india.com/overview-of-test-tools-and-testing.htm" target="_blank"><br />
Structure-based testing or white-box testing</a> is based on an identified structure of the software or system, as seen in the following examples:</p>
<ul>
<li><strong>Component level</strong>: the structure is that of the code itself, i.e. statements, decisions or branches.</li>
<li><strong>Integration level</strong>: the structure may be a call tree (a diagram in which modules call other modules).</li>
<li><strong>System level</strong>: the structure may be a menu structure, business process or web page structure.</li>
</ul>
<p>In this section, two code-related structural techniques for code coverage, based on statements and decisions, are discussed.</p>
<p><strong>Statement testing and coverage</strong><br />
In <a href="http://www.spec-india.com/overview-of-test-tools-and-testing.htm" target="_blank">component testing</a>, statement coverage is the assessment of the percentage of executable statements that have been exercised by a test case suite. Statement testing derives test cases to execute specific statements, normally to increase statement coverage.</p>
<p><strong>Decision testing and coverage</strong><br />
Decision coverage, related to branch testing, is the assessment of the percentage of decision outcomes (e.g. the True and False options of an IF statement) that have been exercised by a test case suite. Decision testing derives test cases to execute specific decision outcomes, normally to increase decision coverage. <a href="http://www.spec-india.com/overview-of-test-tools-and-testing.htm" target="_blank">Decision testing</a> is a form of control flow testing as it generates a specific flow of control through the decision points. Decision coverage is stronger than statement coverage: 100% decision coverage guarantees 100% statement coverage, but not vice versa.</p>
<p><strong>Other structure-based techniques</strong><br />
There are stronger levels of structural coverage beyond decision coverage, for example, condition coverage and multiple condition coverage. The concept of coverage can also be applied at other test levels (e.g. at integration level) where the percentage of modules, components or classes that have been exercised by a test case suite could be expressed as module, component or class coverage.</p>
<p><span style="text-decoration: underline;"><strong>White Box Testing by Stubs and Drivers</strong></span><br />
With <a href="http://www.spec-india.com/overview-of-test-tools-and-testing.htm" target="_blank">White Box testing</a>, programmers run a particular part of the code and check that if it produces expected result or not. Programmers always use Stubs and Drivers for White Box testing. Drivers are piece of code, which calls a method and passes that method a value. A Stub is a dummy procedure, module or unit that stands in for an unfinished portion of a system.</p>
<p>In simple words stubs and drivers are small programs, which are used in integration testing in place of undeveloped modules. In some cases, when we need output of a particular module which is not developed yet, the developer writes a small program for white box testing, which generates the same output generated by undeveloped module, these programs are called stubs and drivers. Stubs are used when we test an application in <a href="http://www.spec-india.com/overview-of-test-tools-and-testing.htm" target="_blank">top-down approach </a>while Drivers are used when we test an application in bottom-top approach.</p>
<p>Concluding this we can say that this method of test design can uncover many errors or problems but it might not detect unimplemented parts of the specification or missing requirements. So the traceability of the <a href="http://www.spec-india.com/overview-of-test-tools-and-testing.htm" target="_blank">functional requirements</a> will not be guaranteed covered for this type of testing methodology.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.spec-india.com/white-box-testing/feed</wfw:commentRss>
		</item>
		<item>
		<title>Performance Monitoring Using Java Melody</title>
		<link>http://blog.spec-india.com/performance-monitoring-using-java-melody</link>
		<comments>http://blog.spec-india.com/performance-monitoring-using-java-melody#comments</comments>
		<pubDate>Wed, 16 May 2012 13:14:34 +0000</pubDate>
		<dc:creator>SPECIndia</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Expert Java/J2EE developers]]></category>

		<category><![CDATA[J2EE]]></category>

		<category><![CDATA[J2EE Application Development]]></category>

		<category><![CDATA[J2EE Development India]]></category>

		<category><![CDATA[J2EE Web application development]]></category>

		<category><![CDATA[Java]]></category>

		<category><![CDATA[java application developers]]></category>

		<category><![CDATA[Java Development India]]></category>

		<category><![CDATA[Java Software Developer]]></category>

		<category><![CDATA[JavaMelody]]></category>

		<category><![CDATA[performance monitoring for Java]]></category>

		<guid isPermaLink="false">http://blog.spec-india.com/?p=2063</guid>
		<description><![CDATA[The goal of JavaMelody (http://code.google.com/p/javamelody/) is to monitor Java or Java EE application servers in QA and production environments.  It is not a tool to simulate requests from users, it is a tool to measure and calculate statistics on real operation of an application depending on the usage of the application by users.
JavaMelody is [...]]]></description>
			<content:encoded><![CDATA[<p>The goal of <a href="http://www.spec-india.com/services/java-j2ee-struts-development.htm" target="_blank">JavaMelody</a> (http://code.google.com/p/javamelody/) is to monitor Java or Java EE application servers in QA and production environments.  It is not a tool to simulate requests from users, it is a tool to measure and calculate statistics on real operation of an application depending on the usage of the application by users.</p>
<p><a href="http://www.spec-india.com/services/java-j2ee-struts-development.htm" target="_blank">JavaMelody is open source (LGPL)</a> and production ready. It can be used in below mentioned manner.</p>
<ol>
<li>Install <a href="http://www.spec-india.com/services/java-j2ee-struts-development.htm" target="_blank">Java Melody</a> agent on the application server ,which you want to monitor</li>
<li>Install the Java melody central server from where actual statistics would be viewed by admin. These statistics data would be collected from the agents, which are installed on each of the application server.</li>
</ol>
<p style="padding-left: 60px;">When a centralized collect server is used, it is a pull model:<br />
The collect server makes http requests and the <a href="http://www.spec-india.com/services/java-j2ee-struts-development.htm" target="_blank">webapp</a> sends back binary<br />
Serialized data over http, which is automatically compressed with gzip<br />
if necessary (json is possible with configuration instead of<br />
Serialized). These serialized data, retrieved by the collect server,<br />
Only contains the delta since the last collect for the statistics data</p>
<p>By viewing the <a href="http://www.spec-india.com/services/java-j2ee-struts-development.htm" target="_blank">Java Melody console</a>, we can get below mentioned data</p>
<ol>
<li>Number of HTTP Sessions</li>
<li> Opened <a href="http://www.spec-india.com/services/java-j2ee-struts-development.htm" target="_blank">JDBC Connections</a></li>
<li> HTTP Request Timings</li>
<li> SQL Query Execution</li>
<li> SQL Error Logs</li>
<li> HTTP Error Logs</li>
<li> CPU, Memory &amp; Threads Information</li>
</ol>
<p>Recently with the help of <a href="http://www.spec-india.com/" target="_blank">Java Melody SPEC INDIA</a> helped the customer to find the performance bottleneck in the application and tune the <a href="http://www.spec-india.com/services/java-j2ee-struts-development.htm" target="_blank">application performance</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.spec-india.com/performance-monitoring-using-java-melody/feed</wfw:commentRss>
		</item>
		<item>
		<title>SPEC INDIA’s sales force automation solution for FMCG</title>
		<link>http://blog.spec-india.com/spec-india%e2%80%99s-sales-force-automation-solution-for-fmcg</link>
		<comments>http://blog.spec-india.com/spec-india%e2%80%99s-sales-force-automation-solution-for-fmcg#comments</comments>
		<pubDate>Thu, 10 May 2012 10:15:12 +0000</pubDate>
		<dc:creator>SPECIndia</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Beverages Field Service Management Software]]></category>

		<category><![CDATA[Dairy sales force management system]]></category>

		<category><![CDATA[enterprise mobility application]]></category>

		<category><![CDATA[Field Force Automation Solutions INDIA]]></category>

		<category><![CDATA[FMCG Field force automation software]]></category>

		<category><![CDATA[mobile business solutions]]></category>

		<category><![CDATA[Mobile Sales Force Automation]]></category>

		<category><![CDATA[Pharmacy Sales Force Automation]]></category>

		<category><![CDATA[Sales Force Automation (SFA) Solutions]]></category>

		<category><![CDATA[sfa sales force automation]]></category>

		<category><![CDATA[SFA solution]]></category>

		<guid isPermaLink="false">http://blog.spec-india.com/?p=2061</guid>
		<description><![CDATA[SPEC INDIA is a leading custom software development company with over 12 years of experience in providing Sales Force Automation solution to its esteemed clientele spread across the globe. We have integrated our Sales Force Automation solution for some of the leading FMCG companies in India &#38; worldwide.
With the increasing need to standardize business practices [...]]]></description>
			<content:encoded><![CDATA[<p>SPEC INDIA is a leading <a href="http://www.spec-india.com">custom software development company</a> with over 12 years of experience in providing <a href="http://www.mobilesalesforceautomation.net/sales-force-automation-solutions.html">Sales Force Automation solution</a> to its esteemed clientele spread across the globe. We have integrated our <a href="http://www.mobilesalesforceautomation.net/sales-force-automation-solutions.html">Sales Force Automation solution</a> for some of the leading FMCG companies in India &amp; worldwide.</p>
<p>With the increasing need to standardize business practices more and more FMCG companies are moving towards <a href="http://www.mobilesalesforceautomation.net/sales-force-automation-solutions.html">Sales Force Automation solutions</a>. We have implemented this <a href="http://www.mobilesalesforceautomation.net/sales-force-automation-solutions.html">sales force automation mobile client</a> for leading FMCG companies, where their sales executives use application on their handheld and mobile devices for executing sales activities. <a href="http://www.mobilesalesforceautomation.net/sales-force-automation-solutions.html">“ZooM”</a> can be deployed on various Windows based handheld devices or Java enabled smartphones. This application has different modules i.e. Presales, Van sales and Survey.</p>
<p>The <a href="http://www.mobilesalesforceautomation.net/mobile-client-application.html#">Presales module</a> enables the sales executives to take order from the customers and the delivery can be made the next day or a predefined date. While through <a href="http://www.mobilesalesforceautomation.net/mobile-client-application.html#">Van sales</a> the sales executive can take order and deliver the good immediately followed by generating invoice and taking payment for the goods. Whereas a <a href="http://www.mobilesalesforceautomation.net/mobile-client-application.html#">Survey application</a> enables the management to conduct surveys about their new products, collect customer feedback etc. Through <a href="http://www.mobilesalesforceautomation.net/mobile-client-application.html#">survey application</a> it is ensured that the feedback/comments received from the customers are genuine and not tempered by the sales executives. This also helps in planning different sales activities to promote different services and products.</p>
<p>Some of the benefits realized by implementing S<a href="http://www.mobilesalesforceautomation.net/sales-force-automation-solutions.html">ales force automation solutions</a> are:</p>
<ul>
<li>Increases operational efficiency</li>
<li> Improved field sales activities</li>
<li> Reduced sales cycles from company to distribution network / distributor to end customer</li>
<li> Improved sales data management</li>
<li> Customer focus</li>
<li> Effective sales strategy planning &amp; formulation</li>
<li> Increased profitability and much more</li>
</ul>
<p>For more details about our sales force automation solution “ZooM” <a href="http://www.mobilesalesforceautomation.net/contact-us.php">contact us at lead@spec-india.com</a> or visit us at <a href="http://www.mobilesalesforceautomation.net/">www.mobilesalesforceautomation.net</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.spec-india.com/spec-india%e2%80%99s-sales-force-automation-solution-for-fmcg/feed</wfw:commentRss>
		</item>
		<item>
		<title>SPEC INDIA: Android application development services</title>
		<link>http://blog.spec-india.com/spec-india-android-application-development-services</link>
		<comments>http://blog.spec-india.com/spec-india-android-application-development-services#comments</comments>
		<pubDate>Thu, 10 May 2012 10:04:30 +0000</pubDate>
		<dc:creator>SPECIndia</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Android application development india]]></category>

		<category><![CDATA[Android Apps development]]></category>

		<category><![CDATA[android developement]]></category>

		<category><![CDATA[android tablet development]]></category>

		<category><![CDATA[Hire Android Developer]]></category>

		<category><![CDATA[Hire Android Developer India]]></category>

		<category><![CDATA[Hire android experts]]></category>

		<guid isPermaLink="false">http://blog.spec-india.com/?p=2058</guid>
		<description><![CDATA[Since its inception, Android has become one of the most preferred technologies for mobile &#38; smartphone devices. Android is a wonderful open source platform which supports development of various innovative and dynamic applications. With the increase in availability of Android based smartphones the demand for custom applications is also increasing.
SPEC INDIA offers expert Android application [...]]]></description>
			<content:encoded><![CDATA[<p>Since its inception, <a href="http://www.androidapplicationworld.com/">Android</a> has become one of the most preferred technologies for mobile &amp; smartphone devices. Android is a wonderful open source platform which supports development of various innovative and dynamic applications. With the increase in availability of <a href="http://www.androidapplicationworld.com/">Android based smartphones</a> the demand for custom applications is also increasing.</p>
<p>SPEC INDIA offers <a href="http://www.androidapplicationworld.com/">expert Android application development services</a> to its prestigious clients across the globe at cost effective rates. Our hands-on experience of developing various applications provides us an edge over other. We utilize latest <a href="http://www.androidapplicationworld.com/">Google Android SDK’s</a> and other 3rd party API’s &amp; tools for designing highly creative and robust applications as per the client requirements. At <a href="http://www.spec-india.com">SPEC INDIA</a>, we give equal importance to design while developing and <a href="http://www.androidapplicationworld.com/">Android application</a> to provide rich user experience.</p>
<p>Some of the <a href="http://www.androidapplicationworld.com/">advantages of Android application development</a> are:</p>
<ul>
<li>It is an open source platform</li>
<li> Requires low investment</li>
<li> Easy to integrate 3rd party API’s and development tools</li>
<li> Offers stability &amp; security</li>
<li> Google mail &amp; calendar can be easily integrate with the application</li>
<li> And much more</li>
</ul>
<p>We provide various <a href="http://www.androidapplicationworld.com/">Android application development services</a> like:</p>
<ul>
<li>Custom Android application development</li>
<li> Android game development</li>
<li> Android tabled application development</li>
<li> Enterprise Android application development</li>
<li> Android web application development</li>
<li> Android application testing</li>
<li> Enhance existing Android application</li>
<li> Hire android development</li>
</ul>
<p>For more detail about our <a href="http://www.androidapplicationworld.com/">Android application development</a> services <a href="http://www.spec-india.com/contactus.php">contact us</a> at lead@androidapplicationworld.com or visit us at <a href="http://www.androidapplicationworld.com/">www.androidapplicationworld.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.spec-india.com/spec-india-android-application-development-services/feed</wfw:commentRss>
		</item>
		<item>
		<title>Great demand arising for sales force automation in UAE</title>
		<link>http://blog.spec-india.com/great-demand-arising-for-sales-force-automation-in-uae</link>
		<comments>http://blog.spec-india.com/great-demand-arising-for-sales-force-automation-in-uae#comments</comments>
		<pubDate>Thu, 03 May 2012 13:29:25 +0000</pubDate>
		<dc:creator>SPECIndia</dc:creator>
		
		<category><![CDATA[Sales Force Automation (SFA)]]></category>

		<category><![CDATA[force automation]]></category>

		<category><![CDATA[Mobile Sales Force Automation]]></category>

		<category><![CDATA[online sales force automation India]]></category>

		<category><![CDATA[online sales force India]]></category>

		<category><![CDATA[Sales Force Automation]]></category>

		<category><![CDATA[sales force automation system]]></category>

		<category><![CDATA[sales force solutions]]></category>

		<category><![CDATA[sales management systems India]]></category>

		<category><![CDATA[sales management tools]]></category>

		<guid isPermaLink="false">http://blog.spec-india.com/?p=2053</guid>
		<description><![CDATA[SPEC INDIA’s mobile sales force automation solution “ZooM” is designed to handle complete sales cycle form visiting the customer to delivering order and taking payments. “ZooM” is designed keeping in mind sales activities followed in different industries and it can be easily customized as per your business needs.
Nowadays enterprises believe in increase field presence and [...]]]></description>
			<content:encoded><![CDATA[<p>SPEC INDIA’s <a href="http://www.spec-india.com/mobile-sales-force-automation.htm">mobile sales force automation solution</a> “ZooM” is designed to handle complete sales cycle form visiting the customer to delivering order and taking payments. <a href="http://www.spec-india.com/mobile-sales-force-automation.htm">“ZooM”</a> is designed keeping in mind sales activities followed in different industries and it can be easily customized as per your business needs.</p>
<p>Nowadays enterprises believe in increase field presence and easy communication with the customers. There are many <a href="http://www.spec-india.com/mobile-sales-force-automation.htm">small to large scare enterprises</a> spread across UAE who are moving towards <a href="http://www.spec-india.com/mobile-sales-force-automation.htm">sales automation solutions</a> to increase their revenue and field presence. SPEC INDIA’s <a href="http://www.spec-india.com/mobile-sales-force-automation.htm">mobile sales force automation solution &#8220;ZooM”</a> is a perfect solution for their complete automation requirement.</p>
<p>“ZooM” is a complete sales automation solution comprising of three different modules. They are <a href="http://www.spec-india.com/mobile-sales-force-automation.htm">Door to door selling</a> / Van Sales, Pre-Sales and  <a href="http://www.spec-india.com/mobile-sales-force-automation.htm">Pre-sales</a> from 3rd party distribution center. “ZooM” is compatible with wide range of mobile platforms like J2ME, Windows Phone and Android. Through this application sales executive can take orders, customer feedback etc and send it to back-office via GPRS at the end of the day. This application can be easily customized and integrated with you your <a href="http://www.spec-india.com/mobile-sales-force-automation.htm">back-office applications</a>.</p>
<p>For more details visit us at <a href="http://www.mobilesalesforceautomation.net">www.mobilesalesforceautomation.net</a> or feel free to write to us at lead@spec-india.com for all your <a href="http://www.spec-india.com/contactus.php">business inquiries</a>.</p>
<p><img class="aligncenter size-full wp-image-2054" src="http://blog.spec-india.com/wp-content/zoom.jpg" alt="&quot;ZooM&quot; Mobile Sale Force Automation Solution" width="237" height="220" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.spec-india.com/great-demand-arising-for-sales-force-automation-in-uae/feed</wfw:commentRss>
		</item>
		<item>
		<title>Hire reliable iPhone games developer</title>
		<link>http://blog.spec-india.com/hire-reliable-iphone-games-developer</link>
		<comments>http://blog.spec-india.com/hire-reliable-iphone-games-developer#comments</comments>
		<pubDate>Fri, 27 Apr 2012 10:18:00 +0000</pubDate>
		<dc:creator>SPECIndia</dc:creator>
		
		<category><![CDATA[iPhone application development]]></category>

		<category><![CDATA[Expert iPhone Game Developers]]></category>

		<category><![CDATA[hire iphone game developer]]></category>

		<category><![CDATA[iphone 3G game development]]></category>

		<category><![CDATA[iphone 3GS game development]]></category>

		<category><![CDATA[iphone app developer]]></category>

		<category><![CDATA[iPhone App development]]></category>

		<category><![CDATA[iphone game development]]></category>

		<category><![CDATA[iphone game programming]]></category>

		<category><![CDATA[iPhone games]]></category>

		<category><![CDATA[iPhone programming]]></category>

		<category><![CDATA[iphone sdk developer]]></category>

		<category><![CDATA[iPhone SDK Development]]></category>

		<category><![CDATA[mac game development]]></category>

		<guid isPermaLink="false">http://blog.spec-india.com/?p=2051</guid>
		<description><![CDATA[iPhone is one of the best Smartphone devices available and supports wide range of innovative apps available in App Store. It also supports many interactive and complex game apps developed through iPhone game programming. With the increased user requirement for new and innovative game app for iPhone the demand for iPhone game developers has also [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.iphonequalityapplications.com/iphone-game-development.html">iPhone</a> is one of the best Smartphone devices available and supports wide range of innovative apps available in App Store. It also supports many interactive and <a href="http://www.iphonequalityapplications.com/iphone-game-development.html">complex game apps</a> developed through <a href="http://www.iphonequalityapplications.com/iphone-game-development.html">iPhone game programming</a>. With the increased user requirement for new and innovative game app for iPhone the demand for iPhone game developers has also increased.</p>
<p>SPEC INDIA offers great <a href="http://www.iphonequalityapplications.com/iphone-game-development.html">iPhone games development solutions</a> to develop game apps as per the requirements to fulfill your business needs. We have a team of highly <a href="http://www.iphonequalityapplications.com/iphone-game-development.html">skilled iPhone developers</a> who have vast experience in iPhone application development, <a href="http://www.iphonequalityapplications.com/iphone-game-development.html">iPhone game programming</a>, iPhone game development and iPhone game development engines. iPhone games developed by our experience <a href="http://www.iphonequalityapplications.com/iphone-application-development.html">iPhone developers</a> includes following to get rich user experience:<br />
•	Interactive &amp; appealing game designs<br />
•	Outstanding layouts &amp; backgrounds<br />
•	Flexible game environments<br />
•	Remarkable design based user interfaces<br />
•	Rich audio &amp; video combinations</p>
<p>At SPEC INDIA, you can h<a href="http://www.iphonequalityapplications.com/hire-iphone-developer.html">ire iPhone developers</a>, iPhone game developers or iPhone development team as per your business requirement to develop various iPhone apps such as business application, enterprise application, entertainment application, utility application, gamming application etc. For more detail you can visit us at <a href="http://www.iphonequalityapplications.com/">www.iphonequalityapplications.com</a> or you may please feel free to write to us at lead@iphonequalityapplications.com for all your business inquiries.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.spec-india.com/hire-reliable-iphone-games-developer/feed</wfw:commentRss>
		</item>
		<item>
		<title>Hire android developers from SPEC INDIA</title>
		<link>http://blog.spec-india.com/hire-android-developers-from-spec-india</link>
		<comments>http://blog.spec-india.com/hire-android-developers-from-spec-india#comments</comments>
		<pubDate>Fri, 27 Apr 2012 10:13:22 +0000</pubDate>
		<dc:creator>SPECIndia</dc:creator>
		
		<category><![CDATA[Android Application Development]]></category>

		<category><![CDATA[android app world]]></category>

		<category><![CDATA[Android application development india]]></category>

		<category><![CDATA[android applications development India]]></category>

		<category><![CDATA[Android Apps development]]></category>

		<category><![CDATA[android developement]]></category>

		<category><![CDATA[android development New York]]></category>

		<category><![CDATA[android honeycomb development]]></category>

		<category><![CDATA[Android Software Development]]></category>

		<category><![CDATA[android tablet development]]></category>

		<category><![CDATA[google android phone development]]></category>

		<category><![CDATA[Hire Android Developer]]></category>

		<category><![CDATA[Hire android experts]]></category>

		<category><![CDATA[Offshore Android Software Development India]]></category>

		<category><![CDATA[Outsourcing Android Apps]]></category>

		<guid isPermaLink="false">http://blog.spec-india.com/?p=2049</guid>
		<description><![CDATA[SPEC INDIA is a leading Android Application Development company based in Ahmedabad, India. We provide wide range of Android solutions using our resources and skilled Android developers. With over 5 years of experience in developing mobile applications, we use the vast knowledge of our developers to design and develop Android apps that enhance your business [...]]]></description>
			<content:encoded><![CDATA[<p>SPEC INDIA is a leading <a href="http://www.androidapplicationworld.com/">Android Application Development company</a> based in Ahmedabad, India. We provide wide range of <a href="http://www.androidapplicationworld.com/">Android solutions</a> using our resources and <a href="http://www.androidapplicationworld.com/">skilled Android developers</a>. With over 5 years of experience in developing mobile applications, we use the vast knowledge of our developers to design and <a href="http://www.androidapplicationworld.com/">develop Android apps</a> that enhance your business growth.</p>
<p>We offer <a href="http://www.androidapplicationworld.com/">android application development services</a> for the following categories:</p>
<ul>
<li>Business and Finance apps</li>
<li> Utility apps</li>
<li> Entertainment apps</li>
<li> Educational apps</li>
<li> Android game apps</li>
<li> Health and fitness apps</li>
<li> Social networking apps</li>
<li> Travel and lifestyle apps</li>
<li> Sorts apps</li>
<li>Custom Android apps</li>
<li> Enhance existing apps</li>
</ul>
<p>Our main object at SPEC INDIA is to provide robust &amp; <a href="http://www.androidapplicationworld.com/">customized Android application development services</a> to our esteemed clientele. Our <a href="http://www.androidapplicationworld.com/">Android developer’s</a> possess profound technical knowledge about Android operating system for developing an application for any domain. We enable our customers to <a href="http://www.androidapplicationworld.com/">hire Android developer / Android Development team</a> according to your project requirements. We offer various highly convenient hiring models to our clients to choose from for <a href="http://www.androidapplicationworld.com/">hiring Android developers</a> at competitive rates.</p>
<p>For more detail visit us at <a href="http://www.androidapplicationworld.com/">www.androidapplicationworld.com</a> or you may please feel free to write to us lead@androidapplicationworld.com for any business inquiry.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.spec-india.com/hire-android-developers-from-spec-india/feed</wfw:commentRss>
		</item>
		<item>
		<title>Enterprise Mobility solution by SPEC INDIA</title>
		<link>http://blog.spec-india.com/enterprise-mobility-solution-by-spec-india</link>
		<comments>http://blog.spec-india.com/enterprise-mobility-solution-by-spec-india#comments</comments>
		<pubDate>Wed, 25 Apr 2012 09:15:10 +0000</pubDate>
		<dc:creator>SPECIndia</dc:creator>
		
		<category><![CDATA[Sales Force Automation (SFA)]]></category>

		<category><![CDATA[enterprise business solutions]]></category>

		<category><![CDATA[enterprise mobile]]></category>

		<category><![CDATA[enterprise mobile applications]]></category>

		<category><![CDATA[enterprise mobility]]></category>

		<category><![CDATA[enterprise mobility management]]></category>

		<category><![CDATA[enterprise mobility services]]></category>

		<category><![CDATA[Enterprise Mobility Solutions]]></category>

		<category><![CDATA[enterprise solution]]></category>

		<category><![CDATA[enterprise solutions]]></category>

		<category><![CDATA[mobile enterprise solution]]></category>

		<category><![CDATA[mobile enterprise solutions]]></category>

		<category><![CDATA[mobility solutions]]></category>

		<guid isPermaLink="false">http://blog.spec-india.com/?p=2046</guid>
		<description><![CDATA[An enterprise mobility solution provides an access to all the significant information whenever required. Apart from this mobility solution also helps enhance business processes and bring improvement in field staff efficiency. Enterprise applications like mobile sales force automation system helps increase user efficiency and smoothing business operations.
At SPEC INDIA, we have over a decade of [...]]]></description>
			<content:encoded><![CDATA[<p>An <a href="http://www.mobilesalesforceautomation.net/enterprise-mobility-solutions.html">enterprise mobility solution</a> provides an access to all the significant information whenever required. Apart from this <a href="http://www.mobilesalesforceautomation.net/enterprise-mobility-solutions.html">mobility solution</a> also helps enhance business processes and bring improvement in field staff efficiency. <a href="http://www.mobilesalesforceautomation.net/enterprise-mobility-solutions.html">Enterprise applications</a> like <a href="http://www.mobilesalesforceautomation.net/enterprise-mobility-solutions.html">mobile sales force automation system </a>helps increase user efficiency and smoothing business operations.</p>
<p>At SPEC INDIA, we have over a decade of experience in providing mobile sales force automation solution to some of the industry giants in their respective domains. With our years of experience we have understood the challenges and complexity involved in mobilizing business processes.  We have developed a <a href="http://www.mobilesalesforceautomation.net/enterprise-mobility-solutions.html">mobile sales force automation solution “ZooM”</a>, based on our own experience and best industry practices to help <a href="http://www.mobilesalesforceautomation.net/enterprise-mobility-solutions.html">automate your sales activities</a> to enable your organization to manage customer relationships better. <a href="http://www.mobilesalesforceautomation.net/enterprise-mobility-solutions.html">“ZooM”</a> is a full fledged mobile sales force automation solution catering needs of all types of industry verticals like distribution management, <a href="http://www.mobilesalesforceautomation.net/enterprise-mobility-solutions.html">FMCG, Pharmaceutical</a> etc. wherein field sales is an integral part of business operations.</p>
<p>For more details, you can visit us <a href="http://www.mobilesalesforceautomation.net/">www.mobilesalesforceautomation.net</a> or you may please feel free to write to us on lead@spec-india.com.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.spec-india.com/enterprise-mobility-solution-by-spec-india/feed</wfw:commentRss>
		</item>
		<item>
		<title>Action Bars in Honeycomb</title>
		<link>http://blog.spec-india.com/action-bars-in-honeycomb</link>
		<comments>http://blog.spec-india.com/action-bars-in-honeycomb#comments</comments>
		<pubDate>Tue, 24 Apr 2012 07:13:33 +0000</pubDate>
		<dc:creator>SPECIndia</dc:creator>
		
		<category><![CDATA[Android Application Development]]></category>

		<category><![CDATA[Android]]></category>

		<category><![CDATA[Android 3.0 honeycomb]]></category>

		<category><![CDATA[android app world]]></category>

		<category><![CDATA[Android application development india]]></category>

		<category><![CDATA[Android Apps development]]></category>

		<category><![CDATA[Android honeycomb]]></category>

		<category><![CDATA[Android honeycomb application development]]></category>

		<category><![CDATA[android tablet development]]></category>

		<category><![CDATA[Hire Android Developer]]></category>

		<category><![CDATA[Hire android experts]]></category>

		<category><![CDATA[hire droid developer]]></category>

		<category><![CDATA[Honeycomb]]></category>

		<category><![CDATA[honeycomb action bar]]></category>

		<category><![CDATA[Offshore Android Software Development India]]></category>

		<guid isPermaLink="false">http://blog.spec-india.com/?p=2042</guid>
		<description><![CDATA[Introduction:
Action Bars are powerfull UI feature in introduced in Android Honeycomb, Action bar is a branded top bar of the application that provides easy access to relevant actions on the screen and a shortcut to application&#8217;s home screen.Most of the basic functionality of Action bar are backward compatible . action bar is a bar placed [...]]]></description>
			<content:encoded><![CDATA[<p><strong><span style="text-decoration: underline;">Introduction:</span></strong></p>
<p><a href="http://www.androidapplicationworld.com/" target="_blank">Action Bars</a> are powerfull UI feature in introduced in <a href="http://www.androidapplicationworld.com/" target="_blank">Android Honeycomb</a>, Action bar is a branded top bar of the application that provides easy access to relevant actions on the screen and a shortcut to application&#8217;s home screen.Most of the basic functionality of Action bar are backward compatible . action bar is a bar placed atop the screen that houses all the essential actions used in an application. It contains only those actions that are common to the entire application, and not activity specific ones.</p>
<p>The <a href="http://www.androidapplicationworld.com/" target="_blank">Action Bar is a widge</a>t for activities that replaces the traditional title bar at the top of the screen. By default, the Action Bar includes the application logo on the left side, followed by the activity title, and any available items from the Options Menu on the right side.</p>
<p><strong><span style="text-decoration: underline;">Benefits of using Action Bars:</span></strong></p>
<p>1. Very easy and fast access to relevant action on current screen.<br />
2. Easy access to application&#8217;s home screen by clicking the application logo at left. This paradigm is already well known from web sites.<br />
3. opportunity to provide branding to the application.<br />
4. Helps user in navigation by indicating his / her current location in app<br />
5. Easy customization.</p>
<p><strong>There are lot of things that can be done on action bars :</strong></p>
<ul class="unIndentedList">
<li> Action items</li>
<li> Tabs</li>
<li> Dropdown menu</li>
<li> Action views</li>
</ul>
<p><strong><span style="text-decoration: underline;">Implementing Action Bars:</span></strong><br />
1) <a href="http://www.androidapplicationworld.com/" target="_blank">Create a Android</a> xml by selecting menu in the /res/menu folder.</p>
<p>&lt;menu xmlns:android=<em>&#8220;http://<a href="http://www.androidapplicationworld.com/" target="_blank">schemas.android.com</a>/apk/res/android&#8221;</em> &gt;</p>
<p style="padding-left: 30px;">&lt;item</p>
<p style="padding-left: 30px;">android:id=<em>&#8220;@+id/user_locate&#8221;</em></p>
<p style="padding-left: 60px;">android:icon=<em>&#8220;@android:drawable/ic_input_add&#8221;</em></p>
<p style="padding-left: 60px;">android:title=<em>&#8220;@string/locate&#8221;</em></p>
<p style="padding-left: 60px;">android:showAsAction = <em>&#8220;never&#8221;</em></p>
<p style="padding-left: 60px;">android:onClick=<em>&#8220;onOptionLocate&#8221;</em> /&gt;&#8230;&#8230;..&lt;/menu&gt;</p>
<p>2) Create the actionbar option menu .</p>
<p>@Override</p>
<p style="padding-left: 30px;"><strong>public</strong> <strong>boolean</strong> onCreateOptionsMenu(Menu menu) {</p>
<p style="padding-left: 60px;">MenuInflater menuInflater = getMenuInflater();</p>
<p style="padding-left: 60px;">menuInflater.inflate(R.menu.<em>actionmenu</em>, menu);</p>
<p style="padding-left: 60px;"><strong>return</strong> <strong>true</strong>;</p>
<p style="padding-left: 30px;">}</p>
<p>The menu resource is just like a regular menu resource file, except there&#8217;s a new option that you can specify per item, with the name showAsAction. This property is available since API level 12 (Which is Android 3.0) if you run Android 2.3 or lower, this optionIf however you specify ifRoom, it will get displayed when there&#8217;s room on the screen. The OS will automatically hide the item when there isn&#8217;t enough room to show the item. is simply ignored by the OS.</p>
<p>The showAsAction option tells the OS how to display the action item. If you specify &#8220;never&#8221; it will hide the item under the menu button that gets displayed at the right hand side of the action bar.</p>
<p>Of course if you always want the item to be displayed on the screen, you can specify the &#8220;always&#8221; setting for the showAsAction attribute in the menu file.</p>
<p>The last option you can specify is whether the action item should be displayed with our without text. If you append the withText option to the showAsAction attribute, you will get the icon of the action item and the display text for the action item.</p>
<p>3) On to display action bars on the activity you need to activate it as a window feature</p>
<p><strong>protected</strong> override <strong>void</strong> OnCreate(Bundle savedInstanceState)</p>
<p>{</p>
<p style="padding-left: 30px;"><strong>super</strong>.OnCreate(savedInstanceState);</p>
<p style="padding-left: 30px;">// Activate the action bar and display it in navigation         //mode.</p>
<p style="padding-left: 30px;">RequestWindowFeature(WindowFeatures.ActionBar);</p>
<p style="padding-left: 30px;">// Initialize the view for the activity</p>
<p style="padding-left: 30px;">SetContentView(Resource.Layout.MainActivity);</p>
<p style="padding-left: 30px;">// Initialize the action bar</p>
<p style="padding-left: 30px;">InitializeActionBar();   }</p>
<p><strong><span style="text-decoration: underline;">Adding Tabs to Action Bar:</span></strong></p>
<p>1) The tabs feature of the action bar combines the possibility to create custom tab like you can on the tab control with the power of fragments.</p>
<p>2)  tabs to work you tell the action bar to go into tabs navigation mode</p>
<p>3)   The important bits for a tab are the name to display and the handler to attach</p>
<p style="padding-left: 30px;"><strong>private</strong> <strong>void</strong> InitializeActionBar()</p>
<p style="padding-left: 30px;">{</p>
<p style="padding-left: 60px;">// Set the action bar to Tab mode</p>
<p style="padding-left: 60px;">ActionBar.NavigationMode = ActionBarNavigationMode.Tabs;</p>
<p style="padding-left: 60px;">// Create a new tab (CreateTabSpec on the TabControl)</p>
<p style="padding-left: 60px;">var homeTab = ActionBar.NewTab();</p>
<p style="padding-left: 60px;">homeTab.SetTabListener(</p>
<p style="padding-left: 60px;"><strong>new</strong> TabListener&lt;CrumbsOverviewFragment&gt;());</p>
<p style="padding-left: 60px;">homeTab.SetText(&#8221;Crumbs&#8221;);</p>
<p style="padding-left: 60px;">// Add the new tab to the action bar</p>
<p style="padding-left: 60px;">ActionBar.AddTab(homeTab);</p>
<p style="padding-left: 30px;">}</p>
<p>4) Implementing the tab handler is done by creating a new class that derives from Java.Lang.Object and implements the ActionBar.ITabListener interface.</p>
<p><strong> public</strong> <strong>void</strong> OnTabSelected(ActionBar.Tab tab,FragmentTransaction ft)</p>
<p>{</p>
<p style="padding-left: 30px;">ft.Add(Resource.Id.MainFragmentContainer,_fragment,typeof(T).FullName);</p>
<p>}</p>
<p><strong><span style="text-decoration: underline;">Adding DropDown to Action Bars:</span></strong></p>
<p>The third way in which you can customize the action bar is by adding a dropdown to the action bar. For this mode of operation to work you need to switch the action bar to List navigation mode.</p>
<p>OnNavigationListener navListener = <strong>new </strong>OnNavigationListener() {</p>
<p>String[] strings = getResources().getStringArray(R.array.<em>Contentlist</em>);</p>
<p>@Override</p>
<p><strong>public</strong> <strong>boolean</strong> onNavigationItemSelected(<strong>int</strong> itemPosition,<strong>long</strong> itemId)</p>
<p>{</p>
<p>TabListFragment newFragment = <strong>new</strong> TabListFragment();</p>
<p>FragmentManager fragmentManager = getFragmentManager();</p>
<p>FragmentTransaction ft = fragmentManager.beginTransaction();</p>
<p>ft.replace(R.id.<em>mainFrg</em>, newFragment, strings[itemPosition]);</p>
<p>ft.commit();</p>
<p><strong>return</strong> <strong>true</strong>;</p>
<p>}};</p>
<p>spinnerAdapter = ArrayAdapter.<em>createFromResource</em>(ActionBarActivity.<strong>this</strong>,R.array.</p>
<p><em> Contentlist</em>,android.R.layout.<em>simple_dropdown_item_1line</em>);</p>
<p>ActionBar actionBar = getActionBar();</p>
<p>actionBar.setNavigationMode(ActionBar.<em>NAVIGATION_MODE_LIST</em>);</p>
<p>actionBar.setListNavigationCallbacks(spinnerAdapter, mOnNavigationListener);</p>
<p>The spinner adapter can be derived from BaseAdapter to get a quick and easy foundation for it. It saves on hugely on implementation details</p>
<p>This component will receive the selection the user made in the list, upon which you can for example load a different fragment on the user interface or start another activity.</p>
<p><strong><span style="text-decoration: underline;">Add a action view to action bar:</span></strong></p>
<p>Action views are custom views that display arbitrary controls on the action bar.</p>
<p>Configuring an action view is done by specifying the android:actionViewClass attribute in the menu resource file.</p>
<p>&lt;item</p>
<p style="padding-left: 30px;">android:id=<em>&#8220;@+id/vacuum&#8221;</em></p>
<p style="padding-left: 30px;">android:icon=<em>&#8220;@android:drawable/ic_input_add&#8221;</em></p>
<p style="padding-left: 30px;">android:title=<em>&#8220;search&#8221;</em></p>
<p style="padding-left: 30px;">android:showAsAction=<em>&#8220;ifRoom&#8221;</em></p>
<p style="padding-left: 30px;">android:actionViewClass=<em>&#8220;android.widget.SearchView&#8221;</em></p>
<p style="padding-left: 30px;">android:onClick=<em>&#8220;onOptionVacuum&#8221;</em> /&gt;</p>
<p><strong>public</strong> override bool OnCreateOptionsMenu(IMenu menu)</p>
<p>{</p>
<p style="padding-left: 30px;">MenuInflater.Inflate(Resource.Menu.ActionItems, menu);</p>
<p style="padding-left: 30px;">var searchView =  (SearchView)menu.FindItem(Resource.Id.menu_search).ActionView;</p>
<p style="padding-left: 30px;">searchView.SearchClick += OnSearchClicked;   }</p>
<p><strong><span style="text-decoration: underline;">Styling the Action Bar:</span></strong></p>
<p><a href="http://www.androidapplicationworld.com/" target="_blank">Customizing the action bar</a> is a great way to extend your application branding to the standard control components.</p>
<p>To give Style to action style.xml is to be created.</p>
<p>This style must be appended to the manifest as a theme in the application tag. Basically these lines specify that there will be no title bar in the application, and instead will be overlaid by our own custom action bar.</p>
<p>&lt;style name=<em>&#8220;MyPopupMenu&#8221;</em> parent=<em>&#8220;android:style/Widget.Holo.Light.ListPopupWindow&#8221;</em>&gt;</p>
<p>&lt;item name=<em>&#8220;android:popupBackground&#8221;</em>&gt;@drawable/ad_menu_dropdown_panel_holo_light&lt;/item&gt;</p>
<p>&lt;/style&gt;</p>
<p>&lt;style name=<em>&#8220;Theme.<a href="http://www.androidapplicationworld.com/" target="_blank">AndroidDevelopers&#8221;</a></em> parent=<em>&#8220;android:style/Theme.Holo.Light&#8221;</em>&gt;</p>
<p>&lt;item name=<em>&#8220;android:selectableItemBackground&#8221;</em>&gt;@drawable/list_bg&lt;/item&gt;</p>
<p>&lt;item name=<em>&#8220;android:popupMenuStyle&#8221;</em>&gt;@style/MyPopupMenu&lt;/item&gt;</p>
<p>&lt;/style&gt;</p>
<p><strong> </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.spec-india.com/action-bars-in-honeycomb/feed</wfw:commentRss>
		</item>
		<item>
		<title>Business Intelligence application development services by SPEC INDIA</title>
		<link>http://blog.spec-india.com/business-intelligence-application-development-services-by-spec-india</link>
		<comments>http://blog.spec-india.com/business-intelligence-application-development-services-by-spec-india#comments</comments>
		<pubDate>Wed, 18 Apr 2012 09:57:22 +0000</pubDate>
		<dc:creator>SPECIndia</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[bi report]]></category>

		<category><![CDATA[BI Reporting Analyst]]></category>

		<category><![CDATA[Business intelligence]]></category>

		<category><![CDATA[data warehouse applications]]></category>

		<category><![CDATA[data warehousing and data mining]]></category>

		<category><![CDATA[database administration]]></category>

		<category><![CDATA[database developer]]></category>

		<category><![CDATA[MySQL]]></category>

		<category><![CDATA[oracle business intelligence]]></category>

		<category><![CDATA[oracle development]]></category>

		<category><![CDATA[oracle performance tuning]]></category>

		<category><![CDATA[oracle pl]]></category>

		<category><![CDATA[Oracle PL/SQL]]></category>

		<category><![CDATA[Pentaho]]></category>

		<category><![CDATA[PL/SQL and database]]></category>

		<category><![CDATA[report in a database]]></category>

		<category><![CDATA[sql server tuning]]></category>

		<guid isPermaLink="false">http://blog.spec-india.com/?p=2040</guid>
		<description><![CDATA[What is Business intelligence (BI)? BI is wide category of technologies and applications used for gathering, storing, analyzing and presenting enterprise data in required format for business decisions. Business intelligence application enables activities like query and reporting, OLAP, forecasting, data mining etc.
At SPEC INDIA, we have over a decade of experience in designing and developing [...]]]></description>
			<content:encoded><![CDATA[<p>What is <a href="http://www.spec-india.com/database-services.htm">Business intelligence (BI)</a>? BI is wide category of technologies and applications used for gathering, storing, analyzing and presenting <a href="http://www.spec-india.com/database-services.htm">enterprise data</a> in required format for business decisions. <a href="http://www.spec-india.com/database-services.htm">Business intelligence application</a> enables activities like query and reporting, OLAP, forecasting, data mining etc.</p>
<p>At SPEC INDIA, we have over a decade of experience in designing and developing <a href="http://www.spec-india.com/database-services.htm">business intelligence solutions</a> for some of our esteemed clientele including Fortune 100 companies. Our expert team of developers has wide experience working on <a href="http://www.spec-india.com/database-services.htm">BI applications</a>, and based on their expertise they understand client requirements and helps them devise a solution that best suits their business needs. We also have wide experience in interfacing customized solutions with different 3rd party interfaces. We have expertise in designing various <a href="http://www.spec-india.com/database-services.htm">BI &amp; reporting solutions</a> using different tools like:</p>
<ul>
<li>Pentaho Dashboard</li>
<li>Oracle Discoverer</li>
<li>Jasper Reports</li>
<li>Jfree Reports</li>
<li>Pentaho Reports</li>
<li>Pentaho Analyticals</li>
</ul>
<p>For further details regarding our <a href="http://www.spec-india.com/database-services.htm">business intelligences application development services</a> you can visit us at <a href="http://www.spec-india.com/">www.spec-india.com</a> or you may please feel free to write to us at lead@spec-india.com</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.spec-india.com/business-intelligence-application-development-services-by-spec-india/feed</wfw:commentRss>
		</item>
	</channel>
</rss>

