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
7 answers

What is the best way to develop a C++ web application?

What could be the best way of developing a C++ web application? The web app would be run on Apache HTTP server. How can you overcome challenges like sessions, persistence, context switching, multithreading etc with C++? How could one utilize C++ in…
user32262
  • 8,660
  • 21
  • 64
  • 77
28
votes
6 answers

Avoid exposing primary keys in the source of a web app?

I often come across web applications that expose internal database primary keys through forms like select boxes. And occasionally I see javascript matching against an int or guid magic value that switches the logic. Is is a best practice to avoid…
Ryu
  • 8,641
  • 10
  • 65
  • 98
28
votes
6 answers

How can I clear the cache of an IOS Web App on the Homescreen?

I am using JQTouch to create a Web App on the Homescreen using meta tag "apple-mobile-web-app-capable", but no matter how many times I clear the cache from within Settings, the Web App's Javascript is still an older cached version. Strangely enough,…
28
votes
6 answers

Javascript console.log() on HTC Android devices and adb logcat

I am developing the application in HTML which is calling the console.log() from Javascript to provide me logs during the development about what happens in the web page code. Unfortunately when I use the adb logcat command to check logs I can see…
STeN
  • 6,262
  • 22
  • 80
  • 125
28
votes
0 answers

What is the difference between web application and website in asp.net?

What is the difference between web application and website in asp.net? and if it have a difference which best from all sides?
ecleel
  • 11,748
  • 15
  • 48
  • 48
28
votes
8 answers

500 internal server error at GetResponse()

I have a heavy traffic aspx page calling a web service upon every user`s request as follows. string uri = "Path.asmx"; string soap = "soap xml string"; HttpWebRequest request =…
Krishna
  • 1,936
  • 5
  • 22
  • 30
28
votes
8 answers

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 can afford to let developers learn through trial…
Phil Laliberte
  • 642
  • 1
  • 6
  • 12
28
votes
0 answers

Is there any way to read the headset button event in a web browser using JavaScript (especially Chrome)?

I am trying to make a web app wherein it reacts to an event from the headset button. I know that the keyCode for the head set is 79. (I checked it using a key event reader app.) Nothing happens when I use it. Is there any way to detect it?
user1572212
  • 281
  • 2
  • 5
28
votes
8 answers

iPhone WebApps, is there a way to detect how it was loaded? Home Screen vs Safari?

I have an iPhone Web App, and I'm interested in detecting if the app was loaded either from: iPhone Safari iPhone installed web app (via the add to my home screen) which loads without the safari bars. Any ideas?
AnApprentice
  • 108,152
  • 195
  • 629
  • 1,012
28
votes
5 answers

iOS 8 Embedded YouTube in HTML web app fails

YouTube iOS8 Media Load Issue - Media plays successfully while in Safari, but when the app is loaded from a Home Screen web clip, playing the video fails. Moreover, tapping a link to navigate away from the page while the media is failing to load…
sneuf
  • 708
  • 2
  • 7
  • 13
28
votes
4 answers

How to prevent simultaneous logins of the same user with Firebase?

I'd like for the new session to essentially "log out" of any previous session. For example, when you are in an authenticated session in one computer, starting a new session on another computer and authenticating with firebase on our app will log out…
28
votes
11 answers

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 applications where security is not an issue, if an…
Chad
  • 23,658
  • 51
  • 191
  • 321
28
votes
4 answers

R web application introduction

I doubt this is the right place to ask the question, but I was wondering if there is a good place for an introduction to developing web apps in R. I know people are doing it and I know about where to find out about RApache and brew but any kind of…
Dan
  • 6,008
  • 7
  • 40
  • 41
28
votes
3 answers

What do I lose if I use Wordpress instead of a php framework for a complex but "standard" webapp? Is the tradeoff worth it?

I know this has been asked a lot and I've explored the other answers, but I still have questions, so hopefully this sheds fresh insight on the debate. A year ago I built a service scheduling web app from scratch in CodeIngniter with the following…
Jeff
  • 556
  • 4
  • 9
27
votes
3 answers

What is SOFEA?

I've came across this new acronym, SOFEA, apparently a new programming paradigm for web applications. Still didn't manage to make sense of it - if someone volunteers to make it clearer for me I'll be very thankful.
flybywire
  • 261,858
  • 191
  • 397
  • 503