Monday, October 7, 2013

Integration with other third-party service

The below list of questions will help you to get some high level overview of how to integrate your application with other third party services and also will help you what are all the question's we may need to ask to third party provider Do you have any kind of web interface where we can test web methods by passing sample data? How many ways we can integrate your product in to our application? ( Web-methods, REST API's, JavaScript api's, ODATA etc ) Does all API's support all functionality’s? Limitations of your product? Do you have any web interface,...

Wednesday, October 2, 2013

CMS Best Practices

Don't include JQuery libs at component level I have seen so many people who include JQuery libs at component level, the disadvantage of including at component level is for each and every component the system will make request to server to download JQuery libs and it may lead to page performance Sometimes we get lot of undefined JavaScript errors because of loading multiple versions of JQuery libs Solution: Maintaining central location, I suggest create client libs and include at Basetemplate level, if new version comes just update client libs In...