Friday, January 18, 2013

Websites using IBM Websphere Commerce

B2C:

Boots                       www.boots.com
The North Face        www.thenorthface.com
L.L.Bean                  www.llbean.com
ICON Health & Fitness    www.iconfitness.com
Edwin Watts Golf      www.edwinwattsgolf.com
Arcadia Group          www.arcadiagroup.co.uk
Sears                        www.sears.com
Nokia                       www.nokiausa.com/buy-online                        
IKEA                       www.ikea.com
Argos Retail Group   www.argos.co.uk
Moosejaw                www.moosejaw.com
Sony                        www.sonystyle.com
Panasonic                 www.panasonic.com
Canon                      www.usa.canon.com

B2B

Endorsia                        www.endorsia.com
Staples                          www.staples.com
Seagate Technolog         www.seagate.com
Roche Diagnostics         www.Roche-Diagnostics.com

Check other e-Commerce Technologies available and top the Business.
Ecommerce Usage Statistics

Wednesday, January 16, 2013

Commerce Command Framework Important points to Remember

IBM WebSphere Commerce server commands follows specific design pattern that is  interface and implementation class. And every command will follow WebSphere command framework which implements command design pattern. It will do two main operations while implementing the command class.

Thursday, December 6, 2012

Websphere Commerce Server Interview Questions

WebSphere Commerce common interview Questions.

1) Difference between static and dynamic include?
Ans:  The syntax for
static include is <%@ include file=”filename.jsp” %>
dynamic include is <jsp:include page=”filename.jsp” />

Static include is an inline inclusion (the contents of the file will be included at translation phase) like a copy and paste. During the translation or compilation phase all the included JSP pages are compiled into a single Servlet. Use “static includes” when a JSP page does not change very often.

In case of dynamic include the response of the file will be included to the original response at runtime. The file will be processed separately and only the response will become the part of the original files’ response. The dynamically included JSP is compiled into a separate Servlet. It is a separate resource, which gets to process the request, and the content generated by this resource is included in the JSP response.

Static include cannot accept a parameter . But dynamic include can accept a parameter.

Tuesday, October 16, 2012

Solr Search : Facet Configuration

SOLR Search:

By default Solr facet sorting is configured by facet product count. We can modify the facet configuration by modifying WC-SEARCH.XML file. wc-search.xml file contains the basic configuration for facets and search related.

The configuration change for the facet sort by index instead of count.


Locate the following snippet from that file.
     <_config:param name="sort" value="count"/>

The facets needs to be sorted alphabetically. So Sort option changed from count to index.
    <_config:param name="sort" value="index"/>

Save the changes.