Questions tagged [web-applications]

Do NOT use alone. Do NOT use with web-frameworks or libraries like [reactjs], [django] or [flask]. Use for questions about web applications, where a more specific tag isn't applicable. Use with a appropriate language tag([java]) and the specific aspect of web-application, the question is about: http method([post],[get]), errors([http-status-code-404]), client-server communication ([client-server]) or server errors.

A web application is a client-server application that bases the communication on the HTTP () protocol. Often a third layer implements data persistence through a database.

The client side runs in a web browser that sends the http requests, receives the responses, renders the response's content (usually a html page, but also video streams, or applets). The heavy-lifting is done by scripts or compiled code on the server side. Some examples of web applications include Google Calendar (), Zimbra (), and Office Outlook Web Access.

22465 questions
53
votes
7 answers

Is there a giant 'asset page' of all Bootstrap elements that I can re-style?

http://twitter.github.com/bootstrap/base-css.html See all the example elements, like h1, h2, h3, inputs, etc? I'm looking for a simple webpage that has every single Bootstrap inputs/forms/elements/etc on it, and nothing else. Then I can get our…
user72245
  • 777
  • 1
  • 7
  • 9
53
votes
2 answers

HTML5 websockets: max number of open connections?

HTML5 websockets are (and have been for some time) a hot topic as they elegantly enable real-time server-side push. I currently have a working application with websockets powered by Tomcat 7.0.30 which includes websocket support. But moving this to…
Joseph Victor Zammit
  • 14,760
  • 10
  • 76
  • 102
53
votes
4 answers

Plugin Architecture in Web Apps (Examples or Code Snippets?)

I am trying to learn to develop a web application (preferably NodeJS/MongoDB, although I used PHP and Python before) that is highly extensible and customizable via plugins to enable disabled functionality. One possible option is to use Wordpress…
Jiew Meng
  • 84,767
  • 185
  • 495
  • 805
52
votes
4 answers

Binding JBoss AS 7 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 the -b option to pass 0.0.0.0, I can't find any options to use…
Chander Shivdasani
  • 9,878
  • 20
  • 76
  • 107
52
votes
3 answers

How do I get a list of all HttpSession objects in a web application?

Let's say I have a running Java-based web application with 0 or more valid HttpSession objects associated with it. I want a way to access the current list of valid HttpSession objects. I was thinking that I could implement an HttpSessionListener and…
Jim Tough
  • 14,843
  • 23
  • 75
  • 96
52
votes
4 answers

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. Is there a way to delete the webapp completely…
acuth
  • 663
  • 1
  • 6
  • 7
52
votes
2 answers

Docker : How To Dockerize And Deploy multiple instances of a LAMP Application

I need to deploy many instances of the same LAMP (or LEMP) application : each instance will be accessible from a subdomain, with front loadbalancer/ proxy each instance must have its own db data and files data. each instance might be…
Koryonik
  • 2,728
  • 3
  • 22
  • 27
51
votes
4 answers

Architecture more suitable for web apps than MVC?

I've been learning Zend and its MVC application structure for my new job, and found that working with it just bothered me for reasons I couldn't quite put my finger on. Then during the course of my studies I came across articles such as MVC: No…
GordonM
  • 31,179
  • 15
  • 87
  • 129
51
votes
2 answers

How could I make my RavenDB application execute properly when UseEmbeddedHttpServer is set to true using 2-tier architecture?

I used RavenDB-Embedded 2.0.2230 in my application interacted with ASP .Net Web API in different assemblies. When I set UseEmbeddedHttpServer = true on the document store, first time I send a request to RavenDB, it executes properly but when I try…
Mohsen Alikhani
  • 1,657
  • 3
  • 19
  • 37
50
votes
8 answers

Network location provider at 'https://www.googleapis.com/' : Returned error code 403 in Webapp

I am using Geolocation.watchPosition() and I get the following error on callback Network location provider at 'https://www.googleapis.com/' : Returned error code 403. This seems to be only happening in chrome desktop browser. firefox seems to be…
jasan
  • 11,475
  • 22
  • 57
  • 97
50
votes
2 answers

How to run multiple sites on one apache instance

Spent hours going in circles following every guide I can find on the net. I want to have two sites running on a single apache instance, something like this - 192.168.2.8/site1 and 192.168.2.8/site2 I’ve been going round in circles, but at the moment…
Exbi
  • 950
  • 4
  • 12
  • 19
49
votes
12 answers

Making life better by not using Java web frameworks?

I'm so tired of having to learn yet another Java web framework every other day. JSP, Struts, Wicket, JSF, JBoss Seam, Spring MVC to name just a few - all this countless frameworks out there try to address the same issues. However, none of them…
dankoliver
  • 732
  • 7
  • 13
49
votes
4 answers

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 some investigation, I discovered it was due to the…
Alvaro
48
votes
3 answers

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 app (as opposed to writing an embedded server…
Michael Balint
  • 2,255
  • 4
  • 25
  • 27
48
votes
4 answers

Prevent scroll bounce for the body element, but keep it for child elements in iOS

I've been working on a mobile webapp as of late. I'm optimizing mobile-first, focusing specifically on iOS for the iPhone right now. I don't want the precise look of a native app, but I think that the feeling of being native is of absolute…
Kyle Lacy
  • 2,278
  • 1
  • 21
  • 29