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
43
votes
11 answers

Web Service vs Web Application

I know this is an old question and must have been answered hundred times already, but I am not able to find a satisfactory response as yet. I am creating an application which will be used by other applications (mobile/ web) to fetch the data. Now I…
Kamal
  • 5,462
  • 8
  • 45
  • 58
43
votes
12 answers

~/ equivalent in javascript

Any smart way of doing a "root" based path referencing in JavaScript, just the way we have ~/ in ASP.NET?
Vikram
  • 6,865
  • 9
  • 50
  • 61
43
votes
4 answers

Force link to open in mobile safari from a web app with javascript

When calling window.open() in a iOS web app, the page opens in the web app instead of mobile safari. How can I force the webpage to open in mobile safari? Note: Using straight links is not an option.
43
votes
5 answers

How to convert a Class Library project to a Web Application project?

Long story short, because of some issues with architecture and the fact that someone already put a few .aspx files in a class library, I'd like to just finish off the change and convert a class library to a web application. This is using Visual…
43
votes
2 answers

How can i use the NEW Firebase Analytics feature with a webapp?

So at google i/o 2016, google announced firebase analytics feature, I currently only have a webapp on firebase, how i can use that feature? OR will I have to resort to something like Amplitude(Web and mobile Analytics)
jasan
  • 11,475
  • 22
  • 57
  • 97
43
votes
6 answers

Google App Engine as production platform

We are about to start working on new commercial web project and considering Google App Engine as a potential platform. Questions: Does Google App Engine is really scalable and may be considered as a production platform for commercial project? Is it…
bocco
  • 924
  • 1
  • 10
  • 15
42
votes
15 answers

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 can manipulate the order of items in the list (not the list sort order). The typical way is to use arrow buttons to move items up or down. The other way is the…
Petteri H
  • 11,779
  • 12
  • 64
  • 94
42
votes
2 answers

Does Javascript fire an event for unhandled/uncaught exceptions?

I'm looking to log unhandled javascript exceptions. Is there an event that fires when an exception isn't caught? I'm looking to catch the exceptions before they cause javascript errors in the browser, but I'd rather not run my entire application…
42
votes
5 answers

JavaScript: How to know if a connection with a shared worker is still alive?

I'm trying to use a shared worker to maintain a list of all the windows/tabs of a web application. Therefore following code is used: //lives in shared-worker.js var connections=[];//this represents the list of all…
brillout
  • 7,804
  • 11
  • 72
  • 84
42
votes
5 answers

Maven: Including a META-INF folder in the classes folder

I have a very simple WAR project and I want to include a directory named META-INF at the top of the classes output folder where all the compiled Java classes are. I'm using Maven, but it seems that by default Maven won't include anything that is…
user157916
  • 463
  • 1
  • 5
  • 6
41
votes
9 answers

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 manually. We require a solution that will enable us…
Sam Wessel
  • 8,830
  • 8
  • 40
  • 44
41
votes
8 answers

Developing and Testing a Facebook application

Typically I develop my websites on trunk, then merge changes to a testing branch where they are put on a 'beta' website, and then finally they are merged onto a live branch and put onto the live website. With a Facebook application things are a bit…
Andrew Wilkinson
  • 10,682
  • 3
  • 35
  • 38
41
votes
15 answers

Why isn't "right click" more used in web applications?

More and more applications are moving to the cloud: Google Docs for productivity apps, Meebo for instant messaging, Gmail for e-mails, Salesforce for CRM, etc. Yet, I've noticed that, unlike their desktop counterparts, very few of those web apps…
Olivier Lalonde
  • 19,423
  • 28
  • 76
  • 91
40
votes
17 answers

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. I feel that when someone is using a web browser…
ntownsend
  • 7,462
  • 9
  • 38
  • 35
40
votes
3 answers

Can you launch the native Camera App from an Html 5 Web App?

I have a mobile website that allows users to upload photos using the file input type (Browse button). If possible, I would like to launch the Camera App of an Android device on click of the Browse button or any other HTML button. Is this…
shanabus
  • 12,989
  • 6
  • 52
  • 78