Browse by Tags
All Tags »
Starter Site
I mentioned Friday that there is an alternative way of getting the Starter Site to work behind an SSL appliance. Some appliances allow creating some indication that a connection is secure. The trick is then to let the Starter Site know that this is what's
Read More...
There are a number of appliances out there that will carry the work of creating and maintaining an HTTPS (SSL) connection. This removes the burden from the web server leaving providing better response all around. Between the appliance and the web server
Read More...
If you are using a round-robin (non-sticky) load-balancer (and perhaps even if you aren't) you may run into a problem where the client gets errors during the checkout process. Checking your event log you might find the following error (non-essential information
Read More...
If you install the starter site onto a port other than 80 you may need to do some code munging. On line 276 of App_Code\SiteContext.cs there is a line of code that looks like this: builder.Port = -1; // Removes the port setting from the site. This ensures
Read More...
When I stepped back to take a look at the PageSetting/PageContext I found I wasn't completely happy with the design. It works perfectly but its usefulness is hindered by an unclear API. By this time we were beyond the point where I could refactor this kind of change so it stayed but this is a blog and I can show you how I would have made the change hopefully teaching you a little bit about the Starter Site and Refactoring in one post.
Read More...
In the last post I mentioned how attributes were used to affect page functionality. The main class behind that is PageContext and its army of attributes: PageGroupAttribute, PageLayoutAttribute, and SecureAttribute. The attributes control various aspects
Read More...
Inside App_Code lies two important classes and they hold the foundation to the Starter Site. The first, SiteModule, is invisible in the day-to-day code, but it sets the stage. The second, SiteContext, is explicitly used nearly everwhere.
Read More...
I want to start my blogging here by sharing with you some of the motives behind the design of the Starter Site. Some of our design decisions may seem confusing at first if you don't know the impetus behind them.
Read More...
I'm Christopher Doll, Program Manager for the Commerce Server 2007 Starter Site and it is my pleasure to announce that we've released the site! Yes, right now it is available! We've been hard at work, making sure that this is the finest Retail Starter
Read More...