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
7
votes
1 answer

how to access IFA from browser on iOS6

Here and there on the web are articles about Identifier for Advertisers (IFA), introduced on iOS6. How can it be accessed from WebApplication (i.e. from Javascript that runs in the mobile browser)? Actually any well-working/well-formed way to track…
BreakPhreak
  • 10,940
  • 26
  • 72
  • 108
7
votes
5 answers

In web development lingo, what does it mean to "serve a static file"?

What is a static file? What does it mean "to serve static files"?
user810606
7
votes
2 answers

Architecture solution for Python Web application

We're setting up a Python REST web application. Right now, we're using WSGI, but we might do some changes to that in the future (using Twisted, for example, to improve on scalability or some other feature). I would really like some help regarding…
Juan Carlos Coto
  • 11,900
  • 22
  • 62
  • 102
7
votes
6 answers

Lua vs PHP/Python/JSP/etc

I'm about to begin my next web development project and wanted to hear about the merits of Lua within the web-development space. How does Lua compare to PHP/Python/JSP/etc.. for web development? Any reason why Lua would be a poor choice for a web…
Ben
7
votes
4 answers

java logging vs Log4j in Spring framework. Which one is the most suitable

We are developing a web-based application in Java using the Spring framework. We are wondering which Logging system would be the most appropriate for it, whether Log4j or JUL (java.util.Logging), which is integrated with jdk. As far as I'm…
markitus82
  • 513
  • 2
  • 7
  • 18
7
votes
6 answers

Key factors for designing scalable web based application

Currently I am working on web based application. I want to know what are the key factors a designer should take care while designing scalable web based application ?
Silent Warrior
  • 5,069
  • 8
  • 41
  • 52
7
votes
13 answers

Is JavaScript an application language?

I have always thought of JavaScript as a client-side scripting tool for augmenting the functionality of HTML, which in turn is usually generated by some other server-side technology - Java, .NET, Rails, Django, PHP, etc. Recently though I have heard…
7
votes
2 answers

Custom Jar file on Jasper Server

I wrote some Java class, created jar file. I want to add it to JasperReports Server. When I determine the path to my jar file, using Tools -> Preferences -> Classpath menu in my iReport, it works correctly. But it doesn't work, when I take access to…
yura
  • 169
  • 4
  • 10
7
votes
2 answers

iPad Web App freezes on Startup

I am building a simple web app meant to run on iPads mostly. The problem is that the app freezes on Start up if you quickly double tap the home button / tap it while the app displays the start up picture and loads up the content. If you try to…
xited
  • 877
  • 1
  • 10
  • 19
7
votes
4 answers

blueprint of blueprints (Flask)

I have a series of blueprints I'm using, and I want to be able to bundle them further into a package I can use as seamlessly as possible with any number of other applications. A bundle of blueprints that provides an entire engine to an application.…
blueblank
  • 4,724
  • 9
  • 48
  • 73
7
votes
2 answers

How to remove duplicate entries from visual studio web project?

I am working in a large team with multiple branches and merges happening on a regular basis. One thing that happens on regular basis is that web project files end up with duplicate entries for static content (.js, favicon.ico etc...). I have two…
Oded
  • 489,969
  • 99
  • 883
  • 1,009
7
votes
2 answers

CSS media queries that capture high-resolution phones, but not lower resolution tablets

I've been using min-width: 600px as my breakpoint in my CSS media queries. My rationale was that at 600px and above I'd capture tablet devices (Kindle Fire, iPad, etc) and below 600px would capture all of phone devices. It turns out that while the…
7
votes
2 answers

Drag & Drop on IPad Web App - while remaining Scroll functionality

I am using Jquery UI Drag and Drop ( http://jqueryui.com/demos/draggable ) together with https://github.com/furf/jquery-ui-touch-punch to map touch events over to mouse events. The whole drag and drop thing works fine so far. The problem I have now…
tmaximini
  • 8,403
  • 6
  • 47
  • 69
7
votes
1 answer

'unicode' object is not callable

I'm a web dev. noobie and I'm putting together a simple signup page as practice using Python on GoogleApp Engine. When the signup form is filled out incorrectly, the program works fine. When it's filled out correctly, it's supposed to redirect to a…
user1483363
7
votes
3 answers

Drag the image to adjust position like in facebook thumbnail profile picture

In facebook, thumbnail picture will leave out some part of the full picture and we can move that so we can fit the thumbnail picture to fit the preferred position, how to do this using the web technology. In the example, we can drag the image to…
Sarawut Positwinyu
  • 4,974
  • 15
  • 54
  • 80
1 2 3
99
100