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.

21301 questions
6
votes
2 answers

Making Python scripts work on MAMP

I'm using mamp server for testing out all my web pages. I'm new to python. I'm able to run a script in python interpreter that will normally print a hello world. print "Hello World!" So i used the same line in a file with name test.py . So how…
RaviTeja
  • 828
  • 3
  • 12
  • 20
6
votes
2 answers

Can we support offline Single Page web apps in iOS 10+?

We are developing a Single Page RWD web app which supports all mobile form factors. We would like to have the webapp support offline browsing capability as well Once the data is downloaded from server, user should be able to see that data even if…
Apps
  • 2,917
  • 8
  • 41
  • 69
6
votes
1 answer

Debugging Django code on mod_wsgi (how to access ['wsgi.errors'])

I'm getting started with developing Django code on a server, running on top of Apache/mod_wsgi. I'm looking to understand a few things: What techniques are normally used to debug applications running on the server? Specifically, I'm trying to just…
Edan Maor
  • 9,218
  • 16
  • 58
  • 87
6
votes
4 answers

What payment gateways work well on appengine?

Well, I've been building some free apps on top of appengine, but now I want to start charging money. My question is: What is the best way to collect payments from users. Do certain services (paypal, google checkout, etc) work better/worse with…
Jmlevick
  • 6,016
  • 8
  • 26
  • 35
6
votes
8 answers

JavaScript/CSS vs. Silverlight vs. Flex

We currently have a quite complex business application that contains a huge lot of JavaScript code for making the user interface & interaction feel as close to working with a traditional desktop application as possible (since that's what our users…
ISW
  • 10,296
  • 3
  • 23
  • 27
6
votes
2 answers

How does Tir compare to other Lua web frameworks?

How does Zed Shaw's Lua web framwork called Tir, compare to other Lua web frameworks such as Kepler, LuCI, etc? Comparison to such things like: maturity of code base features/functionality performance ease of use UPDATE: Since Tir is based on the…
frooyo
  • 1,759
  • 3
  • 18
  • 19
6
votes
1 answer

Changing the domain shown by Google Account Chooser

In a web app we are using Firebase Auth to manage logins and (basic) account creation. When using the Google Login option with the user active with more than one Google account, the user is shown the Google Account Chooser to choose which of the…
6
votes
3 answers

How To Ensure Uploaded File Contents Cannot Be Recovered After Use?

I would like to make the contents of a file uploaded to a web server unrecoverable after it has been used. My concerns are: When the file is uploaded, is it stored in a temporary directory (e.g. Windows Temp directory) and how do I clear all traces…
Laz
  • 3,392
  • 8
  • 30
  • 44
6
votes
3 answers

Can TeX code be safely executed from untrusted sources?

MediaWiki allows one to embed TeX math code that is rendered into images and posted into the Wiki pages. Is this safe? If one allows untrusted users to input TeX programs to be executed by an interpreter running in a web server, does it open the…
Arcane
  • 1,210
  • 1
  • 8
  • 15
6
votes
2 answers

How do I remove "cgi-bin" from my URLs?

I'm creating a small application on an embedded device that has a boa web server running on it. I'm creating a web application in a mixture of plain HTML pages and Perl scripts to interface with the main application. Is there a way to hide the…
Bill the Lizard
  • 369,957
  • 201
  • 546
  • 842
6
votes
7 answers

Does anyone here have a favorite memory profiling/memory leak tool they like to use for their java webapps?

I'm looking for a good tool to profile a java webapp. I'd like to get performance information and memory usage if possible. Any suggestions?
ScArcher2
  • 78,317
  • 42
  • 111
  • 158
6
votes
7 answers

Which is better to do first, design the interface or write code?

In a one-man project (webpages or desktop applications) where you're both the designer and the developer, what is better to do first, design or write code?
perlit
  • 319
  • 3
  • 12
6
votes
1 answer

How to do force reload for the first time after the web app is deployed?

I'm using React and Redux in my web app. I'm deploying frequently to production. So after deployment for the latest changes, we have to do empty cache and hard reload in browser. Is there any other way to clear client side cache?
Amala James
  • 1,078
  • 2
  • 14
  • 29
6
votes
1 answer

Ensuring Single Instance of SpringBoot Application

How can I ensure only single instance of my SpringBoot Application should run. I am starting my spring boot application with java -jar target/myproject-0.0.1-SNAPSHOT.jar I need to ensure that if someone run this command second time on the same…
ankit kothari
  • 317
  • 1
  • 3
  • 12
6
votes
1 answer

Monetize a PWA - which to use for monetizing a Progressive web app?

I am building a PWA ( Progressive web app) and I'm actually planning to just release the apk and do not use any websites for that matter. The question is how am I supposed to monetize my PWA? ( I'm leaning towards adsense but I've heard that could…
Amirreza
  • 71
  • 1
  • 6
1 2 3
99
100