<?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>GoodCore Software Blog &#187; Development</title>
	<atom:link href="http://www.goodcoresoft.com/blog/category/development/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.goodcoresoft.com/blog</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Fri, 03 Apr 2009 11:35:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Silverlight 3 : A very promising preview</title>
		<link>http://www.goodcoresoft.com/blog/2009/04/03/silverlight-3-a-very-promising-preview/</link>
		<comments>http://www.goodcoresoft.com/blog/2009/04/03/silverlight-3-a-very-promising-preview/#comments</comments>
		<pubDate>Fri, 03 Apr 2009 11:35:49 +0000</pubDate>
		<dc:creator>mehroz</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[silverlight3]]></category>

		<guid isPermaLink="false">http://www.goodcoresoft.com/blog/?p=32</guid>
		<description><![CDATA[The first beta of Silverlight 3 was recently announced at MIX09 conference. The changes are really exciting and the new release brings Silverlight closer to ASP.NET as well as WPF. There are several great features in Silverlight 3 including:

 Enhanced data validation support
 Support for business objects via RIA Services
 Deep linking and Navigational support [...]]]></description>
			<content:encoded><![CDATA[<p>The first beta of Silverlight 3 was recently announced at <a href="http://visitmix.com/" >MIX09</a> conference. The changes are really exciting and the new release brings Silverlight closer to ASP.NET as well as WPF. There are several great features in Silverlight 3 including:</p>
<ul>
<li> Enhanced data validation support</li>
<li> Support for business objects via RIA Services</li>
<li> Deep linking and Navigational support within an application</li>
<li>Library caching support</li>
<li> Out of Browser Capabilities</li>
<li> New controls like DataForm and  DataPager</li>
<li> And much more</li>
</ul>
<p>GoodCore is already developing an enterprise application in Silverlight 2, and the organization look forward to Silverlight 3 development as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.goodcoresoft.com/blog/2009/04/03/silverlight-3-a-very-promising-preview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up Navision on SQL Server manually</title>
		<link>http://www.goodcoresoft.com/blog/2008/09/15/setting-navision-on-sql-server/</link>
		<comments>http://www.goodcoresoft.com/blog/2008/09/15/setting-navision-on-sql-server/#comments</comments>
		<pubDate>Mon, 15 Sep 2008 05:21:42 +0000</pubDate>
		<dc:creator>mehroz</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Navision]]></category>
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://www.goodcoresoft.com/blog/?p=20</guid>
		<description><![CDATA[Settng up a Navision database on SQL Server requires a few steps. Here&#8217;s a quick checklist:
Navision requires traceflag 4616 to be set ON. We have two choices for this:

Execute the following SQL-statement.
DBCC TRACEON (4616,-1)
This approach will turn the flag on for the current session only, that is, as long as the SQL Server is not [...]]]></description>
			<content:encoded><![CDATA[<p>Settng up a Navision database on SQL Server requires a few steps. Here&#8217;s a quick checklist:</p>
<p>Navision requires traceflag <strong>4616 </strong>to be set ON. We have two choices for this:</p>
<ol>
<li>Execute the following SQL-statement.<br />
<strong><code>DBCC TRACEON (4616,-1)</code></strong><br />
This approach will turn the flag on for the current session only, that is, as long as the SQL Server is not restarted. Once the server gets restarted, you will have to run the above query again.</li>
<li>Add the startup parameter <strong>-T 4616</strong> to the SQL server database service: <strong>MSSQLSERVER</strong>. The best way to do this is to use the <em>SQL Server Configuration Manager</em>. This solution is rather a permanent one and the flag is set across system/service restarts.</li>
</ol>
<p>If you try to open a Navision database using Windows authentication, it displays a missing stored procedure xp_ndo_enumusersids error in xp_ndo.dll. To solve this, you will need to copy xp_ndo.dll to C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn (default path) and run the following SQL-script:</p>

<div class="wp_syntax"><div class="code"><pre class="sql sql" style="font-family:monospace;"><span style="color: #993333; font-weight: bold;">USE</span> master
EXEC sp_addextendedproc xp_ndo_enumusergroups<span style="color: #66cc66;">,</span> <span style="color: #ff0000;">'C:<span style="color: #000099; font-weight: bold;">\P</span>rogram Files<span style="color: #000099; font-weight: bold;">\M</span>icrosoft SQL Server<span style="color: #000099; font-weight: bold;">\M</span>SSQL.1<span style="color: #000099; font-weight: bold;">\M</span>SSQL<span style="color: #000099; font-weight: bold;">\B</span>inn<span style="color: #000099; font-weight: bold;">\x</span>p_ndo.dll'</span>
GO
<span style="color: #993333; font-weight: bold;">GRANT</span> EXECUTE
<span style="color: #993333; font-weight: bold;">ON</span> <span style="color: #66cc66;">&#91;</span>xp_ndo_enumusergroups<span style="color: #66cc66;">&#93;</span>
<span style="color: #993333; font-weight: bold;">TO</span> PUBLIC
&nbsp;
GO
<span style="color: #993333; font-weight: bold;">USE</span> master
EXEC sp_addextendedproc xp_ndo_enumusersids<span style="color: #66cc66;">,</span> <span style="color: #ff0000;">'C:<span style="color: #000099; font-weight: bold;">\P</span>rogram Files<span style="color: #000099; font-weight: bold;">\M</span>icrosoft SQL Server<span style="color: #000099; font-weight: bold;">\M</span>SSQL.1<span style="color: #000099; font-weight: bold;">\M</span>SSQL<span style="color: #000099; font-weight: bold;">\B</span>inn<span style="color: #000099; font-weight: bold;">\x</span>p_ndo.dll'</span>
GO
<span style="color: #993333; font-weight: bold;">GRANT</span> EXECUTE
<span style="color: #993333; font-weight: bold;">ON</span> <span style="color: #66cc66;">&#91;</span>xp_ndo_enumusersids<span style="color: #66cc66;">&#93;</span>
<span style="color: #993333; font-weight: bold;">TO</span> PUBLIC
GO</pre></div></div>

<p><strong>Useful References:</strong></p>
<p>DBCC TRACEON:<br />
<a href="http://msdn.microsoft.com/en-us/library/ms187329.aspx" >http://msdn.microsoft.com/en-us/library/ms187329.aspx</a></p>
<p>SQL Startup options:<br />
<a href="http://msdn.microsoft.com/en-us/library/ms190737.aspx" >http://msdn.microsoft.com/en-us/library/ms190737.aspx</a></p>
<p>Adding xp_ndo.dll manually:<br />
<a href="http://www.dynamicsnation.com/NAVNavision/Forums/tabid/61/forumid/53/threadid/67/scope/posts/Default.aspx" >http://www.dynamicsnation.com/NAVNavision/Forums/tabid/61/forumid/53/threadid/67/scope/posts/Default.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.goodcoresoft.com/blog/2008/09/15/setting-navision-on-sql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Evaluation of Testing Automation Software</title>
		<link>http://www.goodcoresoft.com/blog/2008/08/11/testing-automation-tools/</link>
		<comments>http://www.goodcoresoft.com/blog/2008/08/11/testing-automation-tools/#comments</comments>
		<pubDate>Mon, 11 Aug 2008 07:26:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.goodcoresoft.com/blog/?p=16</guid>
		<description><![CDATA[Recently I evaluated a few tools for the automation of testing for one of our web applications. I tried a few tools, which are as the following:

AutomatedQA’s TestComplete &#8211; It is a very nice product offering a very rich set of features. This produce could be used very nicely for GUI application testing automation. It [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I evaluated a few tools for the automation of testing for one of our web applications. I tried a few tools, which are as the following:</p>
<ul>
<li><a href="http://www.automatedqa.com/products/testcomplete/index.asp" >AutomatedQA’s TestComplete</a> &#8211; It is a very nice product offering a very rich set of features. This produce could be used very nicely for GUI application testing automation. It provides scripting support in C# and has native support for .NET application.</li>
<li><a href="http://wtr.rubyforge.org/" >Watir</a> &#8211; I couldn’t try this much but it was mainly dropped from the list due to the learning curve involved in learning Ruby for using this whole suite efficiently. It is a very good testing automation suite both for web and desktop applications. Later after my evaluation, I also got to know that there is a .Net port available for Watir named <a href="http://watin.sourceforge.net/" >Watin</a>. I am looking forward to try that some time later.</li>
<li><a href="http://www.sahi.co.in/w/" >Sahi</a> &#8211; I evaluated it and found it super fit for my testing automation. I chose Sahi mainly for the ease of use and the scripting language being Javascript. It provides an easy to use interface for recording and playing back the test cases. I started automating testing of the web application and to date I have been able to automate a very large portion of it. I hope to achieve about 60-70% of automated testing for my web application.</li>
</ul>
<p>In the next post, I will write more in detail about Sahi that how we used it.</p>
<p>by Meraj Khattak</p>
]]></content:encoded>
			<wfw:commentRss>http://www.goodcoresoft.com/blog/2008/08/11/testing-automation-tools/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
