What are the factors in deciding framework to choose ,technology for a web application .any architect please provide a guidance.
What are the factors in deciding framework to choose ,technology for a web application
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Target devices – If your application needs to run on mobile devices, then your application needs to be lightweight on the client side (not too much complex javascript, light DOM structures…)
Visibility – Should your application’s content be indexed by search engines? If yes, then you have to remember that for example AJAX and Flash based solutions won’t be indexed (workarounds exist).
Usability – If your application needs a high usability, then you should consider creating desktop like applications – in other words, a Rich Internet Application (RIA)
Security – No matter what you answer on the previous points, you have to remember security. Using client centric solutions (business logic written in client code (eg. javascript)) are a major security risk. Remember that I only talk about the security of the architecture. No framework will give you security for free, ultimately, the level of security is always up to the developers.