<?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>Sarmaad Amin</title>
	<atom:link href="http://www.sarmaad.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sarmaad.com</link>
	<description>Software development with ASP.NET MVC, WPF, MEF and Windows Azure</description>
	<lastBuildDate>Tue, 22 Feb 2011 11:41:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Cloud Computing &#8211; CloudCamp Sydney</title>
		<link>http://www.sarmaad.com/2010/03/cloud-computing-cloudcamp-sydney/</link>
		<comments>http://www.sarmaad.com/2010/03/cloud-computing-cloudcamp-sydney/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 11:47:04 +0000</pubDate>
		<dc:creator>Sarmaad</dc:creator>
				<category><![CDATA[Azure]]></category>
		<category><![CDATA[Cloud]]></category>
		<category><![CDATA[Event]]></category>

		<guid isPermaLink="false">http://stage.sarmaad.com/?p=82</guid>
		<description><![CDATA[Last night I attended CloudCamp Sydney.  It was pitched as an “unconference” format where quick 5 mins presentations are made and upon completion the attendees outline points they wish to speak about.  Those ideas are grouped into categories and then breakout sessions are created. Conceptually the idea is great however, when we got to those [...]]]></description>
			<content:encoded><![CDATA[<p>Last night I attended CloudCamp Sydney.  It was pitched as an “unconference” format where quick 5 mins presentations are made and upon completion the attendees outline points they wish to speak about.  Those ideas are grouped into categories and then breakout sessions are created.</p>
<p>Conceptually the idea is great however, when we got to those sessions I found that not having a dedicated leader for the session meant the topic often moved into different areas.</p>
<p>Enough about the structure and more about the actual content.</p>
<p>As early adopters of Cloud Computing we identify issues and concerns having greater importance compared to actual uptake of the technology.</p>
<p>It was interesting to hear the delegates last night speak about what they wanted from the “Cloud” providers.</p>
<p>“Standards” is what everyone was crying out for.  The problem with standards is that when its created those who invested in creating those standards are set to lose the most financially.  The IT industry is quite well known for creating standards and then choosing not to either accept them or implement them.</p>
<p>“Data portability” between providers was the other main sticking point with uptake.  There is a fear that when a company or user stops paying for the service, the Cloud provider simply turns them off and they have now lost their data.</p>
<p>This is a valid point, but how one company stores data (and therefore converts that data into information) is what makes people either buy or use that application.  Those different methods are called IP.  Again, why would businesses want to share IP amongst competitors if there was no financial benefit?</p>
<p>What was positive about the night was that this particular movement in the industry begins to open new untapped market opportunities, <strong>Services</strong>.  Across all industries, service companies are making good headway into providing what suppliers can’t, customer service, support, etc.</p>
<p>As this industry (Cloud Computing) is starting to gain legs, integration, migration, data management services are all new verticals that will spring into the foreground for people/companies to make a living from.</p>
<p>Overall, it was an interesting evening to attend.  The night not only provided the standard “Cloud Provider” pitches but allowed for attendees to have general chats and discussions.  One point I would make, is that I would have preferred to have a mediator in each breakout session to ensure the conversation/discussion stayed on topic.</p>
<p>Interesting times ahead for “Cloud” Computing and what will the catalyst be for businesses to take up Cloud Computing?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sarmaad.com/2010/03/cloud-computing-cloudcamp-sydney/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Running MSBuild 4.0 and MSBuild 3.5 on Continuous Integration</title>
		<link>http://www.sarmaad.com/2010/02/running-msbuild-4-0-and-msbuild-3-5-on-continuous-integration/</link>
		<comments>http://www.sarmaad.com/2010/02/running-msbuild-4-0-and-msbuild-3-5-on-continuous-integration/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 10:38:26 +0000</pubDate>
		<dc:creator>Sarmaad</dc:creator>
				<category><![CDATA[References]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[MS Build]]></category>

		<guid isPermaLink="false">http://stage.sarmaad.com/?p=80</guid>
		<description><![CDATA[With Visual Studio 2010 RC released recently, we jumped on the release and began to code with VS2010.  One issue that popped up was that now all builds were targeting MSBuild 4.0. That doesn’t seem to be a big problem until our CruiseControl CI server kicked in, downloaded our updated code and failed building the [...]]]></description>
			<content:encoded><![CDATA[<p>With Visual Studio 2010 RC released recently, we jumped on the release and began to code with VS2010.  One issue that popped up was that now all builds were targeting MSBuild 4.0.</p>
<p>That doesn’t seem to be a big problem until our CruiseControl CI server kicked in, downloaded our updated code and failed building the upgraded projects.</p>
<p>Fortunately there is a very quick solution to this little problem.  There are a couple of requirements.</p>
<ol>
<li>You need to have VS2010 RC installed somewhere</li>
<li>You need to download the .Net Framework 4.0 (I recommend the full version and not just the Client Profile, it ensures you don’t miss anything)</li>
</ol>
<p>To fix, do the following:</p>
<ol>
<li>download and install the .Net Framework 4.0 on the CI server (then restart the server)</li>
<li>on the computer where VS2010 RC is installed go to the following path:<br />
%programfiles%\MSBuild\Microsoft\VisualStudio</li>
<li>copy the v10.0 folder located in that directory into the CI server at the same path (or wherever our MSbuild path is on the CI server)</li>
<li>Once that is done, edit the ccnet.config file at the &lt;msbuild&gt;&lt;executable&gt; tag and change it to the new .Net 4.0 Framework installed (you should only need to change the section “\v3.5\” to “\v4.0.xxxxx\”</li>
</ol>
<p>Hope this helps</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sarmaad.com/2010/02/running-msbuild-4-0-and-msbuild-3-5-on-continuous-integration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The StartupCamp III Experience and ChefMeUp.com</title>
		<link>http://www.sarmaad.com/2010/02/the-startupcamp-iii-experience-and-chefmeup-com/</link>
		<comments>http://www.sarmaad.com/2010/02/the-startupcamp-iii-experience-and-chefmeup-com/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 01:00:32 +0000</pubDate>
		<dc:creator>Sarmaad</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Competition]]></category>
		<category><![CDATA[StartupCamp]]></category>

		<guid isPermaLink="false">http://stage.sarmaad.com/?p=76</guid>
		<description><![CDATA[On Friday 19th February 2010, a group of 38 individual gather to race through the next 2 nights and 3 days to build, demo and pitch new concepts, ideas and ultimately demonstrate innovation. Yes, I was one of these 38, enduring two days with only 2.5 hours of sleep. Nothing else mattered, but delivering the [...]]]></description>
			<content:encoded><![CDATA[<p>On Friday 19th February 2010, a group of 38 individual gather to race through the next 2 nights and 3 days to build, demo and pitch new concepts, ideas and ultimately demonstrate innovation.</p>
<p>Yes, I was one of these 38, enduring two days with only 2.5 hours of sleep. Nothing else mattered, but delivering the promised goods. My team of 4 – successfully and proudly delivered this service: <a href="http://www.chefmeup.com" target="_blank">ChefMeUp.com</a></p>
<p>Since this is a technical blog, I wont bore you with the emotional details of the three days, but I will introduce you to the team that made this happen.</p>
<p><strong>Casey Butler – Role: PR/Marketing<br />
</strong>Casey is a start-up founder and a musician who has come to StartupCamp Sydney to practice business and polish his skills for the real world. His role in building the business case and drumming the PR and marketing is critical to the success of the project. BTW, he flew all the way from Melbourne to be here in Sydney.</p>
<p><strong>Dave Trindall – Role: Developer<br />
</strong>Dave is an active developer specialises in the Microsoft technology stack. His dedication to development have lead him to StartupCamp Sydney III to demonstrate his knowledge and experience. Dave’s newest website launch is his meaningful short URL service found at: <a title="http://ko.ly/" href="http://ko.ly/">http://ko.ly/</a></p>
<p><strong>Brett Samuel – Role: Graphic Designer<br />
</strong>Brett’s background is business development and entrepreneurship. has successfully established and sold his last business, Brett gravitated to StartupCamp Sydney III to learn and share the experience of a new atmosphere and innovation.</p>
<p><strong>Sarmaad Amin – Role: Developer<br />
</strong>Sarmaad is a .Net enterprise application developer that have worked on may successful IT projects. He came to StartupCamp Sydney III to explore new innovation and develop ideas in a different environment that cultivate innovation. His experience in software development contributed to the successful completion and launch of the project at StartupCamp Sydney.</p>
<h1>“ChefMeUp.com is a project born in 11 hours , from zero code to completion 100% borrowed code free”</h1>
<p>That’s right, the website was completed and fully functional with 11 hours of nothing but pure development and excitement.</p>
<p>This is a short run down of the technology.</p>
<p>I have opt-in to use<strong> LLBLGen Pro</strong> as our ORM layer with <strong>Microsoft SQL Server 2008</strong>. The front end is designed and coded using <strong>ASP.NET MVC 2 RC 2</strong>, yes, using <strong>Visual Studio 2010 RC</strong>.</p>
<p>I have to say, this is the fasted development I have been involved in, even for a fully functional prototype and without using the MVC framework, I doubt it would have finished on time.</p>
<p>the features of the application includes:</p>
<ul>
<li>complete login/registration system for Chefs to list their services</li>
<li>paypal integration for registration payment</li>
<li>twitter integration for posting to twitter network and update from it.</li>
<li>Bing map integration to display the chefs/restaurant registered in the network.</li>
</ul>
<p>basically all the necessary plumping to operate a web 2.0 style vertical industry service directory business. which in our case we choose Chef and other cooking services.</p>
<p>have a look at our presentation. BTW, I wasn’t there because I was building the better website… <img src='http://www.sarmaad.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<div><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/0QO2NhGEbh0&amp;hl=en_US&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube.com/v/0QO2NhGEbh0&amp;hl=en_US&amp;fs=1&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></div>
<p>Check out the website <a href="http://www.chefmeup.com" target="_blank">ChefMeUp.com</a> and let me know what you thing and if you are interested in the source code, send me an email or leave a comment on this post and I would send you a copy.</p>
<p>now to go and get some more sleep, happy coding…</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sarmaad.com/2010/02/the-startupcamp-iii-experience-and-chefmeup-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IDP Solutions Sponsors Online Retailer Exhibition</title>
		<link>http://www.sarmaad.com/2010/01/idp-solutions-sponsors-online-retailer-exhibition/</link>
		<comments>http://www.sarmaad.com/2010/01/idp-solutions-sponsors-online-retailer-exhibition/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 18:09:37 +0000</pubDate>
		<dc:creator>Sarmaad</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Expo]]></category>
		<category><![CDATA[Integration]]></category>
		<category><![CDATA[MYOB]]></category>

		<guid isPermaLink="false">http://stage.sarmaad.com/?p=72</guid>
		<description><![CDATA[IDP Solutions’ new soon to be released product, MYOBSync is the driving force in deciding to sponsor and exhibit at the 2nd annual Online Retailer Expo and Conferenceto be held in Sydney in July.]]></description>
			<content:encoded><![CDATA[<p>IDP Solutions’ new soon to be released product, CartConnect is the driving force in deciding to sponsor and exhibit at the <a href="http://www.onlineretailer.net" target="_blank">2nd annual Online Retailer Expo and Conference</a> to be held in Sydney in July.</p>
<p>Over the past few years <a href="http://www.idpsolutions.com.au" target="_blank">IDP Solutions</a> has provided many customers with solutions to manage online stores and capture data and convert that into important business information.</p>
<p>With all that knowledge of what online business owners required we took the step into creating MYOBSync.  MYOBSync does what is says, Syncs between MYOB and your online cart.</p>
<p>Make sure you put the dates between the 6th and 9th of July in your calendar to come see us at the Expo.  We’ll be in stall 105.</p>
<p>Hope to see you then.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sarmaad.com/2010/01/idp-solutions-sponsors-online-retailer-exhibition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NetRegistry Reseller API with .Net 3.5 WCF Service</title>
		<link>http://www.sarmaad.com/2009/09/netregistry-reseller-api-with-net-3-5-wcf-service/</link>
		<comments>http://www.sarmaad.com/2009/09/netregistry-reseller-api-with-net-3-5-wcf-service/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 23:18:24 +0000</pubDate>
		<dc:creator>Sarmaad</dc:creator>
				<category><![CDATA[References]]></category>
		<category><![CDATA[NetRegistry]]></category>
		<category><![CDATA[WCF]]></category>

		<guid isPermaLink="false">http://stage.sarmaad.com/?p=30</guid>
		<description><![CDATA[Background Web services are not a new topic for web developers. Companies are slowly embracing this technology and are moving to incorporating them in their service offering. The beauty of web services is it makes available to developers the functionally and flexibility needed to come up with innovative tools and solutions. NetRegistry have just release [...]]]></description>
			<content:encoded><![CDATA[<h1>Background</h1>
<p>Web services are not a new topic for web developers. Companies are slowly embracing this technology and are moving to incorporating them in their service offering. The beauty of web services is it makes available to developers the functionally and flexibility needed to come up with innovative tools and solutions.</p>
<p>NetRegistry have just release a beta version of a reseller API tool. This will enable their resellers to integrate their core “customer facing” services and portals directly with NetRegistry.</p>
<p>This post showcase the usage of this API within the ASP.NET environment and answers the question on how to use NetRegistry API within .net 3.5. It also utilises WCF (Windows Communication Foundation) to speedup development and creates a stable bridging infrastructure between NetRegistry and your .Net application.</p>
<h1>Walkthrough</h1>
<p>In this walkthrough, I will demonstrate how you can connect to the reseller API using .Net 3.5 WCF Services and implementing a simple call to the service API to check for a domain name availability. Using the NetRegistry API documentation you can extend this example to place an order for the domain and check the order status.</p>
<p>Consult your NetRegistry API documentation for more details.</p>
<p>The best way to effectively demonstrate the technique, I will build a simple web application that will perform a domain search and return the results of Available, Unavailable and Errors.</p>
<p>The source code for this walkthrough is available for download the the end of this post. You must have .net 3.5 SP1 installed and Visual Studio 2008.</p>
<p style="text-align: center;"><a href="http://www.sarmaad.com/wp-content/uploads/2009/09/domain_search.png"><img class="aligncenter size-full wp-image-32" title="Domain Search" src="http://www.sarmaad.com/wp-content/uploads/2009/09/domain_search.png" alt="" /></a></p>
<h2>Step #1: Create a web application and add a service reference</h2>
<p>Create a new web application project in Visual Studio. once the project is created, right click on the application node in solution explorer and click “Add a Service Reference”</p>
<p style="text-align: center;"><a href="http://www.sarmaad.com/wp-content/uploads/2009/09/addservic.png"><img class="aligncenter size-full wp-image-33" title="addservic" src="http://www.sarmaad.com/wp-content/uploads/2009/09/addservic.png" alt="" width="640" height="371" /></a></p>
<p>On the service dialog, copy and paste the service URL supplied by NetRegistry from documentation, then click “Go”. You will be prompted with security authentication request box, supply your <strong>API</strong> username and password. These details are <strong>NOT</strong> your console username and password. Contact NetRegistry about how to get these details.</p>
<p style="text-align: center;"><a href="http://www.sarmaad.com/wp-content/uploads/2009/09/servicesecurity.png"><img class="aligncenter size-full wp-image-36" title="Service Security" src="http://www.sarmaad.com/wp-content/uploads/2009/09/servicesecurity.png" alt="" width="640" height="371" /></a></p>
<p>after a successful authentication, you can go ahead and supply the namespace for this service. In this example, I used “NRService” and click “Ok”. This how the screen should look like.</p>
<p style="text-align: center;"><a href="http://www.sarmaad.com/wp-content/uploads/2009/09/servicewsdl.png"><img class="aligncenter size-full wp-image-37" title="Service WSDL" src="http://www.sarmaad.com/wp-content/uploads/2009/09/servicewsdl.png" alt="" width="476" height="383" /></a></p>
<p>At this stage Visual Studio would generated all the necessary <strong>default</strong> configuration and the service objects to send requests to the service. However, this is not enough to start sending requests to the API. By defaults, WCF has configured this API to use “basicHttpBinding”, which is not compatible with the NetRegistry API service.</p>
<h2>Step #2: Modify WCF default configuration</h2>
<p>WCF configuration resides in “web.config” file of the web application project within the tags:</p>
<pre>
&lt;system.serviceModel&gt;
&lt;/system.serviceModel&gt;
</pre>
<p>replace the default configuration with these details:</p>
<pre>
&lt;system.serviceModel&gt;
  &lt;bindings&gt;
    &lt;customBinding&gt;
      &lt;binding name=&quot;IResellerAPIServiceSoapBinding&quot;&gt;
        &lt;mtomMessageEncoding messageVersion=&quot;Soap11&quot;/&gt;
        &lt;httpsTransport manualAddressing=&quot;false&quot;
                        maxBufferPoolSize=&quot;524288&quot;
                        maxReceivedMessageSize=&quot;65536&quot;
                        allowCookies=&quot;false&quot;
                        authenticationScheme=&quot;Basic&quot;
                        bypassProxyOnLocal=&quot;false&quot;
                        hostNameComparisonMode=&quot;StrongWildcard&quot;
                        maxBufferSize=&quot;65536&quot;
                        transferMode=&quot;Buffered&quot;
                        useDefaultWebProxy=&quot;true&quot;
                        requireClientCertificate=&quot;false&quot;/&gt;
      &lt;/binding&gt;
    &lt;/customBinding&gt;
  &lt;/bindings&gt;
  &lt;client&gt;
    &lt;endpoint
      address=&quot;https://theconsole.netregistry.com.au/external/services/ResellerAPIService/&quot;
      binding=&quot;customBinding&quot;
      bindingConfiguration=&quot;IResellerAPIServiceSoapBinding&quot;
      contract=&quot;NRService.ResellerAPIService&quot;
      name=&quot;ResellerAPIServicePort&quot;/&gt;
  &lt;/client&gt;
&lt;/system.serviceModel&gt;
</pre>
<p>Also, Its very important to note that the address in “endpoint” has “https://”. Because for some reason WCF “Add a Service Reference” tool replaced “https://” with “http://”. If this is left unchecked the service call will error due to security channel not established.</p>
<p>Now our service is ready to be called and WCF will know how to handle the messages correctly.</p>
<h2>Step #3: Authentication and Our first call</h2>
<p>NetRegistry Reseller API requires that you authenticate with the API username and password on every call. This is achieved by suppling the credential details to the service object after you initiate it.</p>
<pre>
var service = new ResellerAPIServiceClient()
service.ChannelFactory.Credentials.UserName.UserName = &quot;APIusername&quot;;
service.ChannelFactory.Credentials.UserName.Password = &quot;APIpassword&quot;;
</pre>
<p>Let continue and make our call to search for a domain name availability.</p>
<pre>resellerAPIResult results = service.domainLookup( &amp;amp;quot;idpsolutions.com.au&amp;amp;quot; );</pre>
<p>This call will send the data to NetRegistry API to search for the domain name “idpsolutions.com.au”. The result of the search will be held in the “results” variable.</p>
<p>To see wither the domain is Available, Unavailable or if the result returned an error. I use the following:</p>
<pre>
if ( results.errors != null )
//call failed - display the error to the user
lblFailed.Text = string.Format( &amp;amp;quot;Error: {0} - {1}&amp;amp;quot;,
results.errors[0].errorCode,
results.errors[0].errorMsg );
if (results.fields.Length &amp;amp;gt; 0)
{
//call success - display the results
lblResult.Text = string.Format(&amp;amp;quot;{0} is {1}&amp;amp;quot;,
results.fields[1].value,
results.fields[0].value);

//check the results to see if the domain available or not, change the colour of the label
this.lblResult.ForeColor = results.fields[0].value.ToLower()==&amp;amp;quot;AVAILABLE&amp;amp;quot;.ToLower()
? Color.Green
: Color.Black;
}
</pre>
<p>That’s it. Now you can follow the documentation provided by NetRegistry to use the functionality provided in the API to build your service using ASP.Net 3.5 with WCF.</p>
<p>Leave any question or comments if you need any further help.</p>
<p>Happy Coding …</p>
<p><strong>Live Demo</strong></p>
<p><a href="http://domainlookup.sarmaad.com/">http://domainlookup.sarmaad.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sarmaad.com/2009/09/netregistry-reseller-api-with-net-3-5-wcf-service/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CHEP Pallet Management System</title>
		<link>http://www.sarmaad.com/2009/08/chep-pallet-management-system/</link>
		<comments>http://www.sarmaad.com/2009/08/chep-pallet-management-system/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 22:39:39 +0000</pubDate>
		<dc:creator>Sarmaad</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[Pallets]]></category>
		<category><![CDATA[SAAS]]></category>

		<guid isPermaLink="false">http://stage.sarmaad.com/?p=15</guid>
		<description><![CDATA[Well, another nice day in the office today… just finalised the last minute touches on our asset management system solution, that is due for a demo anytime now. very happy with the results so far. One of our clients has approached us about a month ago to develop a CHEP pallet management system for their [...]]]></description>
			<content:encoded><![CDATA[<p>Well, another nice day in the office today… just finalised the last minute touches on our asset management system solution, that is due for a demo anytime now. very happy with the results so far.<span id="more-15"></span></p>
<p>One of our clients has approached us about a month ago to develop a CHEP pallet management system for their organisation and now we demo it to them.</p>
<p>this is our first demo to the stakeholders of the project and I am really excited to get their feedback on our hard work. enough talking… this time I am including a screenshot of couple of pages of the application…</p>
<p style="text-align: center;"><a href="http://www.sarmaad.com/wp-content/uploads/2010/12/pallets_stocktake.jpg"><img class="size-full wp-image-17 aligncenter" title="Stock-take management screen " src="http://www.sarmaad.com/wp-content/uploads/2010/12/pallets_stocktake.jpg" alt="" /></a></p>
<p>As you can see, Its a web based pallet management system. the application if fully Ajaxified which makes it easy to use and operate.</p>
<p>I have also included this screenshot from the site portal showing the process of sending pallets from Sydney location to another CHEP depo.</p>
<p style="text-align: center;"><a href="http://www.sarmaad.com/wp-content/uploads/2010/12/site_movement_in.jpg"><img class="size-full wp-image-23 aligncenter" title="Record pallets movements" src="http://www.sarmaad.com/wp-content/uploads/2010/12/site_movement_in.jpg" alt="" /></a></p>
<p style="text-align: left;">this is by far one of the nicest applications I have ever worked on. it uses few different technologies and tools.</p>
<p>We used Microsoft Queue Messaging System to place a job to generate the export files to sent to CHEP for invoicing and we used Telerik Reporting component to generate the report needed by management.</p>
<p>well, this application might be up and running now, but we are working on some really nice dashboard tools the aim is to provide a way for the administrator to build their dashboard by selecting the type of chart and “plug-in” the parameters to configure the chart.</p>
<p>once that done, I will definitely keep you posted…</p>
<p>for now, I am out. Have fun and code well…</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sarmaad.com/2009/08/chep-pallet-management-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.Net Continuous Integration and Deployment</title>
		<link>http://www.sarmaad.com/2009/07/asp-net-continuous-integration-and-deployment/</link>
		<comments>http://www.sarmaad.com/2009/07/asp-net-continuous-integration-and-deployment/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 22:06:22 +0000</pubDate>
		<dc:creator>Sarmaad</dc:creator>
				<category><![CDATA[References]]></category>

		<guid isPermaLink="false">http://stage.sarmaad.com/?p=10</guid>
		<description><![CDATA[I am looking at automating the nightly builds of our web application and it would be really nice if we can deploy the successful build to a test server. the scenario is: Every night at a particular hour, the source code will be updated from our SVN server. Then a build goes down using a [...]]]></description>
			<content:encoded><![CDATA[<p>I am looking at automating the nightly builds of our web application and it would be really nice if we can deploy the successful build to a test server.</p>
<p>the scenario is:</p>
<p>Every night at a particular hour, the source code will be updated from our SVN server. Then a build goes down using a continuous integration tool like CruiseControl.NET utilizing MSBuild. Then deploy the successful build.</p>
<p>I did a quick Google search, and found this post:</p>
<p><a href="http://weblogs.asp.net/omarzabir/archive/2008/10/06/asp-net-website-continuous-integration-deployment-using-cruisecontrol-net-subversion-msbuild-and-robocopy.aspx" target="_blank">ASP.NET website Continuous Integration+Deployment using CruiseControl.NET, Subversion, MSBuild and Robocopy</a></p>
<p>It is by far the most informative, step by step answer to the question. The only exception on the post is that I need to preserve user data (uploaded data). I will be using his instruction to build this solution on our development server.</p>
<p>Will keep you updated.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sarmaad.com/2009/07/asp-net-continuous-integration-and-deployment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

