Web applications are applications that are accessed over the "web", which can be over Internet, or Intranet i.e. an internal network
30
votes
12answers
38k views
Who sets response content-type in Spring MVC (@ResponseBody)
I'm having in my Annotation driven Spring MVC Java web application runned on jetty web server (currently in maven jetty plugin).
I'm trying to do some AJAX support with one controller method ...
30
votes
9answers
12k views
Automate Deployment for Web Applications?
My team is currently trying to automate the deployment of our .Net and PHP web applications. We want to streamline deployments, and to avoid the hassle and many of the headaches caused by doing it ...
30
votes
11answers
42k views
What is the best web based Subversion client? [closed]
What is your favorite web-based svn client? I'd like one that supports commits via the web.
One tool per post please! Please include platform and notable features (e.g. read-write support).
I'm ...
29
votes
15answers
5k views
What's your opinion on using UUIDs as database row identifiers, particularly in web apps?
I've always preferred to use long integers as primary keys in databases, for simplicity and (assumed) speed. But when using a REST or Rails-like URL scheme for object instances, I'd then end up with ...
28
votes
4answers
40k views
What is the difference between DefaultAppPool and Classic .NET AppPool in IIS7?
I have a problem with timeouts in IIS. In the web.config the session timeout was set to 60 minutes but after 20 minutes the session ends.
This problem only occurs in IIS7 and not in IIS5.
After ...
27
votes
3answers
9k views
Can I clear a webapp in Chrome?
I've written a webapp that has a manifest that includes all the javascript and images that it requires. Unfortunately, even when I change the manifest file, it doesn't seem to reload the javascript.
...
27
votes
14answers
5k views
User interface for reordering a list items
I have a list of items as a part of a web application. The question is how user could manipulate the order of items in the list (not the list sort order). The typical way is to use arrow buttons to ...
27
votes
9answers
10k views
What Web Application Framework for Delphi is recommended?
There has been some activity in the Web Application Framework area for Delphi (Win32). There are many new projects around, and I would love to see a overview description of their features (code and ...
27
votes
4answers
8k views
Recurring billing with Rails and ActiveMerchant: Best practices, pitfalls, gotchas?
We are prepping for the release of a large web application that has been in development for the past year. We are about to start the process of integrating ActiveMerchant to handle recurring ...
27
votes
6answers
5k views
How can I improve this PHP/MySQL news feed?
Let me start right off the bat by saying that I know this is not the best solution. I know it's kludgy and a hack of a feature. But that's why I'm here!
This question/work builds off some discussion ...
26
votes
2answers
6k views
pushstate and seo
Many people have been saying, use pushState rather than hashbang.
What I don't understand is, how would you be search engine friendly without using hashbang?
Presumably your pushState content is ...
26
votes
8answers
7k views
Modular web apps
I've been looking into OSGi recently and think it looks like a really good idea for modular Java apps.
However, I was wondering how OSGi would work in a web application, where you don't just have ...
25
votes
4answers
12k views
Binding jboss as7 to all interfaces
I'm running JBoss AS7 in a standalone mode using ./standalone.sh. This binds JBOSS to only localhost. Is there a way to bind it to all the hosts, i mean 0.0.0.0 The older versions had -b option to ...
25
votes
5answers
8k views
Considering an Erlang web framework to learn and use in production
I’ve started learning Erlang a few days ago and it’s definitely a very interesting language and very suitable for web development (back end at least). I am going to experiment and eventually settle ...
24
votes
12answers
49k views
How to differ sessions in browser-tabs?
In a web-application implemented in java using JSP and Servlets; if I store information in the user session, this information is shared from all the tabs from the same browser. How to differ sessions ...
24
votes
2answers
3k views
Absolute URLs omitting the protocol (scheme) in order to preserve the one of the current page
I saw the //somepage.com/resource url format. For example:
<img src="//remotesite.com/image1.jpg" />
The point of this is that if the current page (the page defining the img tag) is using ...
24
votes
4answers
5k views
How do I implement OpenID in my web application?
Does Stackoverflow create a new OpenID when a user registers with an email address (i.e. does not provide an existing OpenID)? How do you do that? Do you have code examples in C#? Java? Python?
23
votes
8answers
9k views
What is a lightweight, fast, java servlet container?
I have been writing a pure java web server specifically customized for a website I'm making. I've grown tired of reinventing the wheel though, and am now investigating moving over to java servlets. ...
23
votes
5answers
10k views
Is anyone else receiving a QUOTA_EXCEEDED_ERR on their iPad when accessing localStorage?
I have a web application written in JavaScript that runs successfully on the desktop via Safari as well as on the iPhone.
We are looking at porting this application to the iPad and we are running ...
23
votes
4answers
13k views
What does WEB-INF stand for in a Java web application?
Most of the places on the internet say it stands for WEB INFormation.
I rather doubt it. The folder contains executables. Information is not a suitable name for it.
23
votes
7answers
6k views
Best practices for managing and deploying large JavaScript apps
What are some standard practices for managing a medium-large JavaScript application? My concerns are both speed for browser download and ease and maintainability of development.
Our JavaScript code ...
23
votes
7answers
1k views
How can I handle time zones in my webapp?
I'm looking for better understanding of the following user story:
John works in Sidney. At 9:00 in the morning, he logs an event in a web app that runs on a server in Zurich. The next day, he travels ...
23
votes
6answers
1k views
How can I try a new language or framework without installing it?
With so many languages and frameworks that exist, and with new ones appearing all the time, I don't have the time to download, install, and configure each one to evaluate it. In the past I've run ...
23
votes
2answers
15k views
Why do Java webapps use .do extension? Where did it come from?
I have always wondered why so many Java developers use ".do" as the extension for their web controller (MVC) resources. Example: http://mysite.com/register.do
It doesn't even seem to be framework ...
23
votes
6answers
601 views
What is worth spending time upfront when starting a new project
Update:
Great answers so far everyone! Each one has been really helpful in getting to the root of the problem and helping to make sure both my partner and I are on the same page. I think a lot of it ...
23
votes
4answers
2k views
How to structure Javascript programs in complex web applications?
I have a problem, which is not easily described. I'm writing a web application that makes strong usage of jQuery and AJAX calls. Now I don't have a lot of experience in Javascript archicture, but I ...
22
votes
11answers
4k views
Graphing JavaScript Library
I'm creating a web application on Google App Engine for fun and I'd like to include graphs so users can see some stats. Are there any free (either as in beer or speech) JavaScript libraries that can ...
22
votes
8answers
976 views
What is a reliable method to record votes from anonymous users, without allowing duplicates
First of all, I searched as best I could and read all SO questions that seem relevant, but nothing specifically answered this. This is not a duplicate, afaik.
Obviously if anonymous voting on a ...
22
votes
7answers
4k views
When should a web service not be used?
Using a web service is often an excellent architectural approach. And, with the advent of WCF in .Net, it's getting even better.
But, in my experience, some people seem to think that web services ...
22
votes
10answers
18k views
Why “Content-Length: 0” in POST requests?
A customer sometimes sends POST requests with Content-Length: 0 when submitting a form (10 to over 40 fields).
We tested it with different browsers and from different locations but couldn't reproduce ...
22
votes
3answers
4k views
Jetty: To embed or not to embed?
What are the benefits of embedding jetty vs deploying your webapp(s) in jetty? If you are planning on deploying more than one web app, should you strictly stick with deploying a war file for each web ...
22
votes
2answers
9k views
Angular.js Backbone.js and other MV* patterned js libraries? [closed]
I am quite newbie to web application, and more specifically to this MV*pattern. We are making a web application and we thinking of departing from jQuery, not completely, but we are trying to implement ...
22
votes
2answers
38k views
Web Application Templates [closed]
I'm looking for templates that are made specifically for web applications
List of Web Application Templates
PAID
Theme Forest - Cheap, a lot to choose from
Gooey Templates
Get A DevBox ...
22
votes
7answers
4k views
How to use Facebook Connect in an iPhone webapp
I'm trying to use Facebook Connect from an iPhone webapp, so it would look similar to how it looks in a native iPhone app which is using the Facebook Connect iPhone SDK.
The iPhone SDK gets the nice ...
21
votes
14answers
3k views
How to improve productivity when developing Java EE based web applications
I'd like to know how you address the seemingly low productivity of Java EE-based web application development compared to other technology stacks (Seaside, Ruby on Rails, etc).
The constraints are:
...
21
votes
3answers
36k views
Java/JSP How to get domain URL + web application name?
Here's the scenario.
My Java web application has following path
https://www.mywebsite.com:9443/MyWebApp
Let's say there is a JSP file
https://www.mywebsite.com:9443/MyWebApp/protected/index.jsp
...
21
votes
10answers
2k views
What databases do the World Wide Web's biggest sites run on? [closed]
This question is meant to serve as a list of databases and their configurations that the major web sites use and would be a great reference for anyone thinking of scaling their web site to the size of ...
21
votes
7answers
18k views
iPad doesn't trigger resize event going from vertical to horizontal?
Has anyone noticed this behavior? I'm trying to write a script that will trigger upon a resize. It works fine on normal browsers, works fine on iPhone, but on iPad, will only trigger going from ...
21
votes
9answers
20k views
iPhone web applications, templates, frameworks? [closed]
Does anyone have any good starting points for me when looking at making web pages/sites/applications specifically for viewing on the iPhone?
I've looked at templates like the one Joe Hewitt has made, ...
20
votes
11answers
1k views
Why are web apps prevalent for internal corporate apps?
OK, I realize that people don't like to install stuff on their PCs if they don't have to and that is the primary advantage of web apps over "desktop" that run locally.
But for corporate internal ...
20
votes
5answers
6k views
Clojure web application - where do I start?
So lately I've been looking into Clojure, and I love the language. I would like to see if I can make a small web application in it, just to challenge myself. However, I have absolutely no experience ...
20
votes
3answers
17k views
How do I implement login in a RESTful web service?
I am building a web application with a services layer. The services layer is going to be built using a RESTful design. The thinking is that some time in the future we may build other applications ...
20
votes
5answers
7k views
Real-world ZK vs GWT experience
A fellow developer and I are putting together a proposal for a new application, and we've presented both ZK and GWT to be possible choices. After messing around with both, I'd prefer to move ahead ...
20
votes
5answers
381 views
What goes in to making a web site that needs to scale?
I am planning to build an application that will get a large amount of traffic. (Please don't say I won't get traffic, this is for an internal network, so the traffic will be there. Just trying to ...
19
votes
9answers
3k views
19
votes
16answers
3k views
Right mouse click in web applications: good or bad idea?
I'm currently working on a web application and the powers above have decided that overriding the browser's right-click menu with our own application-specific one is the way to go.
I totally disagree. ...
19
votes
5answers
20k views
what is web.xml file and what all things can I do with it?
The web.xml Deployment Descriptor Elements in Oracle's BEA WebLogic Server 8.1 Documentation pretty much sums up each element in a web.xml file. But I am also curios about below points:
1) Is there ...
19
votes
5answers
15k views
Can a Webbased app have push notification?
Im working on a webapp of my youtube channel and i wanna know if is possible to add push notifications for when there is a new video uploaded for example. thanks
19
votes
12answers
92k views
How do I resolve “HTTP Error 500.19 - Internal Server Error” on IIS7.0
What causes this error, how can I fix it?
Detailed Error Information
Module IIS Web Core
Notification BeginRequest
Handler Not yet determined
Error Code 0x8007052e
Config Error Can not log on ...
19
votes
7answers
4k views
Where can I find a deliberately insecure open source web application?
As a developer, I've learned that I usually gain a better understanding of best/worst practices through experience. The area of web application security isn't really somewhere where my organization ...
