There are a few ways to do this.
One way is to follow the documentation for rebuilding the module - first set your endpoint in the WSDL then generate the module using the specified ant targets.
Possibly easier... you could modify the two JSPs: (NewProductsBody.jsp and BestSellersTile.jsp) as follows:
In both you will see this line:
KKWSEngIf eng = new KKWSEngIfServiceLocator().getKKWebServiceEng();
This is where we create an engine that we'll use to call the KonaKart APIs.
Without parameters it'll use the default endpoint (which is our demo site).
So, instead of the above line, you can define your own endpoint for the engine like this:
KKWSEngIf eng = new KKWSEngIfServiceLocator().getKKWebServiceEng(new java.net.URL("http://yourhost:8780/konakart/services/KKWebServiceEng"));
--Kate