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

"Silent" Printing in a Web Application

I'm working on a web application that needs to prints silently -- that is without user involvement. What's the best way to accomplish this? It doesn't like it can be done with strictly with Javascript, nor Flash and/or AIR. The closest I've seen…
Bill
  • 3,584
  • 5
  • 35
  • 47
47
votes
4 answers

Difference between Clustering and Load balancing?

What is the difference between Clustering and Load balancing? I know it is a simple question.But I asked this question to several people, But no one gave reliable answer. Also I googled a lot and can't get an exact answer . Hope our Stack users…
Human Being
  • 8,269
  • 28
  • 93
  • 136
46
votes
7 answers

Push notification facility for mobile web app

I have a simple scenario, to receive notification on mobile devices whenever it's generated from Server. I know this facility is available in native iOS app and Android but I am trying to avoid native path. What I would like that: A mobile web app…
Volatil3
  • 14,253
  • 38
  • 134
  • 263
46
votes
8 answers

Fullscreen Web App for Android

I want to run my Web App, which i programmed with HTML5, in fullscreen mode on Android. (hide the status bar, and the adress/navigation bar) for iOS you only write:
user959456
  • 565
  • 1
  • 9
  • 13
46
votes
4 answers

Best way to store small UI user preferences in web app?

I have a web app I'm developing and quite like the idea that if the user makes changes to the view of the UI (eg. Lists open or closed, certain viewing preferences) those changes remain after they close the browser and visit the web app at a later…
wilsonpage
  • 17,341
  • 23
  • 103
  • 147
46
votes
5 answers

Web app version in Tomcat Manager

How can I configure my web application for deployment in Tomcat so that Tomcat Manager shows the version in the table that lists all applications installed (/manager/html/list)? Currently it shows "None Specified" for all apps, including itself. I…
John in MD
  • 2,141
  • 5
  • 25
  • 36
46
votes
7 answers

how to integrate Angular 2 + Java Maven Web Application

I have created a Angular 2 front-end Application.and i have created one Java Rest WS Back-end Application which is connected to DB. My Folder structure for Angular 2 App is below- Angular2App confg dist e2e node_modules public src …
46
votes
5 answers

NoClassDefFoundError JsonAutoDetect while parsing JSON object

I am developing a webapp using Amazon's cloud services and I need to make use of JSON objects. How my project is set up is, I have an HTML form where the user will fill in their information and submit. Once submitted the data will be placed into an…
jhahn
  • 461
  • 1
  • 4
  • 3
45
votes
4 answers

iPhone "Bookmark to Homescreen" removes cookies and session?

Right now I am developing a Web-based Application, where the User has to login first. When I open the Page by iPhone Safari, login and restart Safari, I am still logged in (Cookie & Session ID still set). But when I add this Page with "Add to Home…
45
votes
2 answers

"function not found" error when making both GET and POST requests to a Web App

I'm getting a Script function not found: doGet OR Script function not found: doPost when I GET/POST to my Google script: function doGet(e){return ContentService.createTextOutput("User says")} function doPost(e) { return…
echan00
  • 2,788
  • 2
  • 18
  • 35
45
votes
5 answers

In IndexedDB, is there a way to make a sorted compound query?

Say a table has, name, ID, age, sex, education, etc. ID is the key and the table is also indexed for name, age and sex. I need all male students, older than 25, sorted by their names. This is easy in mySQL: SELECT * FROM table WHERE age > 25 AND…
jason
  • 3,471
  • 6
  • 30
  • 43
44
votes
11 answers

How to get correct current URL in JSP in Spring webapp

I'm trying to get a correct current URL in JSP in Spring webapp. I'm trying to use the following fragment in the JSP file: ${pageContext.request.requestURL} The issue is that the returned URL contains prefix and suffix defined by…
user405935
  • 585
  • 1
  • 5
  • 10
44
votes
8 answers

How do I use jQuery for click event in iPhone web application

When I use jQuery for a simple click event it only works for links. Is there a way to make it work for spans etc: $("span.clicked").live("click", function(e){alert("span clicked!")}); $("a.clicked").live("click", function(e){alert("link…
Gazzer
  • 4,524
  • 10
  • 39
  • 49
44
votes
11 answers

Wysiwyg with image copy/paste

First, I understand that an image cannot be "copied" from a local machine into a website. I understand that it must be uploaded. I am a web programmer, and am familiar with common web wysiwyg tools such as TinyMCE and FCKEditor. My question is if…
jW.
  • 9,280
  • 12
  • 46
  • 50
44
votes
6 answers

How can I share a variable or object between two or more Servlets?

I would like to know if there is some way to share a variable or an object between two or more Servlets, I mean some "standard" way. I suppose that this is not a good practice but is a easier way to build a prototype. I don't know if it depends on…
David Ameller
  • 1,774
  • 3
  • 18
  • 25