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

How to detect the country and city of a user accessing your site?

How can you detect the country of origin of the users accessing your site? I'm using Google Analytics on my site and can see that I have users coming from different regions of the world. But within my application I would like to provide some…
Don King
  • 73
  • 1
  • 4
7
votes
1 answer

error BC30456: '[Method]' is not a member of 'ASP.[CodeBehind]_aspx'

Pretty simple question. I'm quite certain I have the Class, method, codebehind, etc linked properly. Lot's of posts online say that this has something to do with compiling and/or dll/bin files, but none of their help has worked for me. Compiler…
Guy
  • 139
  • 2
  • 2
  • 7
7
votes
1 answer

Tornado : support multiple Application on same IOLoop

I'm wondering if it is possible in the Tornado framework to register multiple Application on the same IOLoop ? Something like application1 = web.Application([ (r"/", MainPageHandler), ]) http_server =…
oDDsKooL
  • 1,767
  • 20
  • 23
7
votes
2 answers

New-SPWebApplication application pool account is not found

I am trying to create a new web application using PowerShell. I keep getting the error application pool account is not found! How do I solve this? I tried adding the new web application to DefaultAppPool as follows: New-SPWebApplication -Name "Test…
7
votes
2 answers

Logging in web applications: Best practices?

During deployment of a web application (in test environment) on customer site we encountered a problem with logging of the application. I'll shortly try to describe the current situation: Implementation uses Logger retrieved by java.util.logging…
dpr
  • 93
  • 2
  • 6
7
votes
1 answer

iOS web/native app Facebook Login Popup - FAILS?

I am trying to build a web app that will allow a user to login Facebook. Everything works in Firefox/Chrome/Safari (on the phone/tablet and on OSX). When the App runs on the tablet (Native UIWebview and Web-app) it loads the first page perfectly.…
7
votes
2 answers

Specify JRE/JDK when starting Apache Tomcat 7

Is there a way to tell Tomcat 7 the path to the JVM that must be used? For example: startup --jvm /path/to/my/jvm
MauroPorras
  • 5,079
  • 5
  • 30
  • 41
7
votes
2 answers

Developing a web app with Mono (opensource .NET) any examples?

I am a Java, Scala, Python web app Linux guy. I want to play around with Mono (particularly F#) for web development. I am just looking for an example web application written in Mono perhaps in Github (any CLI language is fine). I have tried…
Adam Gent
  • 47,843
  • 23
  • 153
  • 203
7
votes
5 answers

Communication between Rails apps

I have built two rails apps that need to communicate and send files between each other. For example one rails app would send a request to view a table in the other apps' database. The other app would then render json of that table and send it back.…
user115188
  • 165
  • 2
  • 9
7
votes
3 answers

Convert a Java Console Program To Webapp

I have a Java class with a main() method. It contains logic to do some number crunching and analysis. Its scheduled to run once per day and may be manually run again if needed. The routine uses Log4j to log its activities. Running it and checking…
Danish
  • 3,708
  • 5
  • 29
  • 48
6
votes
4 answers

How to maintain lists of 'currently most popular' items for each item category, in a web application?

I need to maintain lists of 40 recent added, most popular/ most liked items for each item category(total categories around 2000) in my application. I do store the views count & no Of likes for each item. For that purpose, I'm looking to probably …
Rajat Gupta
  • 25,853
  • 63
  • 179
  • 294
6
votes
1 answer

What architectural pattern(s) should I use for my RIA?

I'm building a web application that interacts heavily with the DOM and need direction in making my code scalable and maintainable. The application overview: Upon interaction, I have toolbars and overlays that guide the user to edit the page, I then…
6
votes
6 answers

Transferring lots of objects with Guid IDs to the client

I have a web app that uses Guids as the PK in the DB for an Employee object and an Association object. One page in my app returns a large amount of data showing all Associations all Employees may be a part of. So right now, I am sending to the…
Davis Dimitriov
  • 4,159
  • 3
  • 31
  • 45
6
votes
2 answers

Is there a "add to homescreen" webapp on Android (like in iOS)

A webapp on iOS is basically a headless browser. Is there something similar on Android? As far as I understand it, you can only put bookmarks on the homescreen. Is that correct? Note: Wrapping to something native on not an option.
Aron Woost
  • 19,268
  • 13
  • 43
  • 51
6
votes
2 answers

How do I add .jsp headers and footers to my Spring MVC web app?

How do I add .jsp headers and footers to my Spring MVC web app? I know there's many different answers, but I would like to know (them all really but more importantly) what is the proper way to do this? I'm just learning Spring and I have a hint the…
Xonatron
  • 15,622
  • 30
  • 70
  • 84
1 2 3
99
100