Page 1 of 1

Display products from 3rd party web service

Posted: Mon Sep 21, 2015 5:10 pm
by singhspk
Along with showing products from the inventory we need to display products pulled from a 3rd party web service. Is this doable? If yes, what is the entry point?

Thanks for the help!

Re: Display products from 3rd party web service

Posted: Thu Oct 22, 2015 11:27 pm
by phillipuniverse
Yes, you can override the ProductCustomPersistenceHandler. This normally gets the Product results from the database and converts them into a List<Entity> DTO. In your case, you want to add more products to that list from the external source to display in the grid.

Re: Display products from 3rd party web service

Posted: Thu Nov 12, 2015 2:49 pm
by singhspk
Thanks for the reply. I was between moves and didn't try it out.

How exactly do I use ProductCustomPersistenceHandler? Do you have an example?