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
29
votes
2 answers

Does any change in any file inside bin folder cause application recycle in ASP.NET web application?

I know that in ASP.NET web application, changing a DLL file located in the bin folder causes an application recycle. But I wonder, as the subject implies, whether any file changes cause such behavior? Are simple text files included in this…
Ron Klein
  • 9,178
  • 9
  • 55
  • 88
29
votes
6 answers

Interactive Graphviz graphs in a web application

I am trying to make a few interactive graph visualisations in my Django web application using Python. I found Graphviz and was able to output a static graph (as a .png image) on my application using Pydot (Python interface to Graphviz's dot…
Akshay K
  • 305
  • 1
  • 3
  • 5
29
votes
7 answers

Is there a way to prevent Eclipse from opening the browser when starting a Web application?

Ahoy! I was wondering if there's a way to configure eclipse not to open the browser (internal or external, doesn't matter) when the user selects Run As > Run or server in a specific (or any) web project. Couldn't find that option...
bluefoot
  • 10,220
  • 11
  • 43
  • 56
29
votes
5 answers

In Sinatra(Ruby), how should I create global variables which are assigned values only once in the application lifetime?

In Sinatra, I'm unable to create global variables which are assigned values only once in the application lifetime. Am I missing something? My simplified code looks like this: require 'rubygems' if RUBY_VERSION < "1.9" require 'sinatra/base' class…
arrac
  • 597
  • 1
  • 5
  • 15
29
votes
2 answers

How do I serve CSS and JS in Go

I followed the Go Writing Web Applications tutorial but for whatever reason I am having trouble getting the app to serve CSS and JS. If I run my static page without the Go server the page CSS works fine. When I run the Go server on the other hand…
bmacrevolution
  • 553
  • 2
  • 6
  • 14
29
votes
5 answers

How to stop PHP iMagick auto-rotating images based on EXIF 'orientation' data

Currently working with PHP and iMagick to develop a poster printing Web application. This is the example image I am using to test upload/image editing features of the application: The image contains the following EXIF data: [FileName] =>…
kaese
  • 10,249
  • 8
  • 29
  • 35
29
votes
2 answers

Netherlands Antilles dissolved as per 10-10-10, how to change Country dropdowns?

See also Dissolution of the Netherlands Antilles. In a nutshell: Curaçao and Sint Maarten become autonomous and the remnant of the islands (the BES islands) become special municipalities of the Netherlands. The question is: how should we replace…
BalusC
  • 1,082,665
  • 372
  • 3,610
  • 3,555
29
votes
3 answers

PathLocationStrategy vs HashLocationStrategy in web apps

What are the pros and cons of using: PathLocationStrategy - the default "HTML 5 pushState" style. HashLocationStrategy - the "hash URL" style. for instance, using HashLocationStrategy will prevent the feature of scrolling to an element by its #ID,…
Murhaf Sousli
  • 12,622
  • 20
  • 119
  • 185
29
votes
6 answers

How to disable cross-device action mirroring functionality of BrowserSync? (GhostMode)

Our team used the gulp-angular generator with yeoman to scaffold out our web app. It uses browsersync to handle live reloads, which we want. However, we just deployed to our development server, and now when two developers are using the gulp serve…
turner
  • 1,667
  • 2
  • 13
  • 21
29
votes
4 answers

How to minify CSS and JavaScript files in Visual Studio 2015

I am building a web application for mobile using visual studio, and I wanted to know how do I minify all my CSS files into one file, and also all my JavaScript to one minified file.
Bergerova
  • 863
  • 3
  • 10
  • 21
29
votes
2 answers

Define associative array of arrays

I want to define an associative array like this var theVar = [ { "100", [0, 1, 2] }, { "101", [3, 4, 5] } ] Essentially I want to be able to access an array of three numbers by specifying the custom index. However, no matter what I try I cannot…
Goro
  • 9,919
  • 22
  • 74
  • 108
29
votes
3 answers

One or multiple servlets per webapp?

I know, it depends on the webapp. But in the normal case, what do you do: one servlet, that serves different pages (like an standalone-application with changing content) or for every page a single servlet. Take for instance a blog. There is the…
Mnementh
  • 50,487
  • 48
  • 148
  • 202
29
votes
3 answers

RESTful v/s MQ. Differences and other key features apart from Guaranteed Delivery

Ok..So I have started studying about MQ and its purpose/usecase etc... My existing application (Web made using JSP etc..) uses RestFUL interface to communicate with a remote server and to post/receive data from the server. We often have to deal with…
AngelsandDemons
  • 2,823
  • 13
  • 47
  • 70
29
votes
4 answers

Why do we need web-services? How different is it from normal web-applications?

Just started with web-services so pardon me if my question sounds stupid. Why do we need web-services? How are they different from normal web applications? Two uses have been mentioned in many of the tutorials. One is the communication between…
Chillax
  • 4,418
  • 21
  • 56
  • 91
29
votes
8 answers

How should I start Java-based web development?

I have been using java as my main language for 3 years while developing college assignments, and now I plan to learn the web programming aspect of it. I see there are lots of different "stuff" going on such as JSP, JSF, Spring, etc. Previous topics…
hellnar