Web applications are applications that are accessed over the "web", which can mean the Internet, or an internal network (an intranet).
0
votes
0answers
22 views
JSP Include: one large bean or bean for each include
I want to refactor a webapp that consists of very distorted JSPs and servlets. Because we can't switch to a web framework easily we have to keep JSPs and Servlets, and now we are in doubt how to ...
-3
votes
0answers
26 views
my static css and html code does not display properly on IEs and mobiles. i want it 2 display on all devices thanks [on hold]
Hello guys i'm a beginner in web designing.. i created a static site with html and css it displays well on chrome, firefox, opera but not in IEs especially IE10 and i'll like it to display on mobiles ...
-5
votes
0answers
24 views
How to create a directory and be writable by the server? [on hold]
As of Xataface 1.3 all applications are now required to have its own templates_c directory to house its compiled templates. Please create the directory "C:/xampp/htdocs/websav\templates_c" and ensure ...
-3
votes
1answer
137 views
What can I do with my programming knowledge [closed]
I know web design + node.js + jQuery.
My dilemma here is, I like to program, but I can't find a reason to actually program.
I can't program for a living as I can't have a paypal account due to ...
3
votes
2answers
122 views
Handling multiple clients using single application
We are developing an ERP web application using Vaadin framework where each of the potential client companies will have their own data and file storage. Current implementation only allows having one ...
2
votes
0answers
111 views
Multiple sites with the same codebase in Python
I am trying to run a large amount of sites which share about 90% of their code. They are simply designed to query an API and return the results. They will have a common userbase / database but will be ...
0
votes
0answers
24 views
Collecting and sweeping of session-dependent uploads
I develop a Java web application with an upload-feature. The upload is devided into two parts:
During a user-session the user can upload files at any time while navigating through the whole site.
...
2
votes
0answers
46 views
Practices for domain models in Javascript (with frameworks)
This is a question I've to-and-fro'd with for a while, and searched for and found nothing on: what're the accepted practices surrounding duplicating domain models in Javascript for a web application, ...
5
votes
2answers
146 views
Why are different components of the “web platform” not modularized?
The web platform is hip these days. But the web platform consists of many parts that are conceptually separable, developed at different times and paces, and (most important to me) could be useful on ...
2
votes
1answer
208 views
How do you handle deployment configuration of your thick browser (html/javascript/css) clients?
Question
For those of you working with html/javascript/css "thick clients", specifically those that work against some client-independent server API, how do you manage your deployment environment ...
1
vote
2answers
60 views
How can I limit access for automatically generated files to specific users in a MVC setup?
I have a typical MVC based website, and I'd like to give some registered users the abillity to extract data from the database (in a variety of formats). The workflow is very simple:
User logs in,
...
1
vote
2answers
73 views
What techniques are there for debugging remote client side errors?
What techniques are there for debugging remote client side errors in a web application, especially when they only affect a small subset of users?
In my case we have an app that is working well for ...
2
votes
3answers
75 views
Storing a drawn graph information in database for web application
Well while developing a web application that allow users to draw graphs (flow charts, ER diagram , UML, .... etc) the information of drawn items and their relation to each other and position on canvas ...
1
vote
2answers
147 views
Importance of stored procedures and triggers in building web applications? [duplicate]
Almost in every interview for the position of web developer, they ask about stored procedures and triggers well I am aware from their definition and basic usage but the truths is I have never used any ...
0
votes
2answers
122 views
Best practices for rotating large datasets?
[edit]Turns out there's 1.5 million records... The SQL database is taking about 17-20 seconds to run the query. Would it be best to have Java handle the joins and rearranging in that case? Since this ...