Web applications are applications that are accessed over the "web", which can be over Internet, or Intranet i.e. an internal network

learn more… | top users | synonyms (6)

8
votes
2answers
4k views

Socket using in a swing applet

I should made a server & client in Java,based on Swing and gui.I neeed to make somehow a socket that will go from the server to the client and from the client to the server, and will pass some ...
58
votes
5answers
58k views

getResourceAsStream() vs FileInputStream

I was trying to load a file in a webapp, and I was getting a FileNotFound exception when I used FileInputStream. However, using the same path, I was able to load the file when I did ...
75
votes
4answers
55k views

Best way for user authentication on JavaEE 6 using JSF 2.0?

I'm wondering what the current state of art recommendation is regarding user authentication for a web application making use of JSF 2.0 (and if any components do exist) and JEE6 core mechanisms ...
215
votes
11answers
114k views

What browsers support HTML5 WebSocket API? [closed]

I am going to develop an instant messaging application that runs in the browser. What browsers support the WebSocket API?
45
votes
10answers
13k views

What to learn for making Java web applications in Java EE 6? [closed]

My goal is to make web applications! I finished reading the Books "Headfirst - Java" and "Headfirst - Servlets and JSP". Because this topic (web applications) is so big and complicated, I would like ...
108
votes
5answers
16k views

Create a file in memory for user to download, not through server

Is there any way I can create a text file on the client side and prompt the user to download it, without any interaction with the server? I know I can't write directly to their machine (security and ...
298
votes
23answers
45k views

Does Django Scale?

I'm building a web application with Django. The reasons I chose Django were: I wanted to work with free/open-source tools I like Python and feel it's a "long term" language, whereas regarding Ruby I ...
48
votes
7answers
18k views

jQuery CSS plugin that returns computed style of element to pseudo clone that element?

I'm looking for a way using jQuery to return an object of computed styles for the 1st matched element. I could then pass this object to another call of jQuery's css method. For example, with width, I ...
53
votes
9answers
28k views

Max parallel http connections in a browser?

I am creating some suspended connections to an http server (comet, reverse ajax, etc). It works ok, but I see the browser only allows two suspended connections to a given domain simultaneously. So if ...
16
votes
4answers
9k views

Simplest way to serve static data from outside the application server in a Java web application

I have a Java web application, using Spring and Struts, running on Tomcat 5.5. I want to load static images that will be shown both on the Web UI and in PDF files generated by the application. Also ...
30
votes
12answers
38k views

Who sets response content-type in Spring MVC (@ResponseBody)

I'm having in my Annotation driven Spring MVC Java web application runned on jetty web server (currently in maven jetty plugin). I'm trying to do some AJAX support with one controller method ...
24
votes
12answers
49k views

How to differ sessions in browser-tabs?

In a web-application implemented in java using JSP and Servlets; if I store information in the user session, this information is shared from all the tabs from the same browser. How to differ sessions ...
132
votes
26answers
38k views

Performing a Stress Test on Web Application?

In the past, I used Microsoft Web Application Stress Tool and Pylot to stress test web applications. I'd written a simple home page, login script, and site walkthrough (in an ecommerce site adding a ...
114
votes
16answers
24k views

Django - Set Up A Scheduled Job?

I've been working on a web app using Django, and I'm curious if there is a way to schedule a job to run periodically. Basically I just want to run through the database and make some ...
47
votes
19answers
28k views

Standard way to detect mobile browsers in a web application based on the http request

We are beginning to go down the path of mobile browser support for an enterprise e-commerce webapp (Java/Servlet based). Of course there are many decisions to be made, but it seems to me the ...
18
votes
2answers
4k views

What is the main-stream Java alternative to ASP.NET / PHP

I've heard something and seen some examples of web application built using ASP.NET / PHP and I'm wondering what would be the equivalent way of doing similar things in Java world. Looking on the ...
70
votes
10answers
73k views

Tomcat 6: How to change the ROOT application

I'm trying to change the default application of Tomcat 6 webserver to other application than "ROOT" (inside webapps folder). What is the best way to do this?
59
votes
8answers
41k views

ASP.NET custom error page - Server.GetLastError() is null

I have a custom error page set up for my application: <customErrors mode="On" defaultRedirect="~/errors/GeneralError.aspx" /> In Global.asax, Application_Error(), the following code works to ...
24
votes
2answers
3k views

Absolute URLs omitting the protocol (scheme) in order to preserve the one of the current page

I saw the //somepage.com/resource url format. For example: <img src="//remotesite.com/image1.jpg" /> The point of this is that if the current page (the page defining the img tag) is using ...
70
votes
16answers
32k views

What is the best image manipulation library? [closed]

I would love to find out which is the best image manipulation library for which platforms and languages. Likely you could use a library under multiple platforms with the right API or Plugin ...
55
votes
9answers
24k views

iPad Web App: Detect Virtual Keyboard Using JavaScript in Safari?

I'm writing a web app for the iPad (not a regular App Store app - it's written using HTML, CSS and JavaScript). Since the keyboard fills up a huge part of the screen, it would make sense to change the ...
11
votes
3answers
3k views

Architecture more suitable for web apps than MVC?

I've been learning Zend and its MVC application structure for my new job, and found that working with it just bothered me for reasons I couldn't quite put my finger on. Then during the course of my ...
80
votes
2answers
34k views

Best way to synchronize local HTML5 DB (WebSQL Storage, SQLite) with a server (2 way sync) [closed]

I am developing a mobile web application (for iPhone) with a local database (using html5 webstorage) so my app is still usable when the user is offline. This is working perfectly, but I want to save ...
27
votes
9answers
10k views

What Web Application Framework for Delphi is recommended?

There has been some activity in the Web Application Framework area for Delphi (Win32). There are many new projects around, and I would love to see a overview description of their features (code and ...
36
votes
4answers
30k views

How To Convert ASP.NET Website to ASP.NET Web Application

I have an ASP.NET 3.5 Website (visual studio lingo), but the site continues to grow and is looking rather cowboyish among other things. I'd like to see this get converted into a Web Application ...
18
votes
3answers
4k views

question on GWT, Cookies and webpage directing

i am using gwt to create a website. this question is regarding a login page and cookies to save login details. GWT allows you to create a website within a single webpage. my application runs on one ...
7
votes
7answers
32k views

How to output an Excel *.xls file from classic ASP

I have a number of generated html tables that I need to output as an Excel file. The site is codded in classic ASP. Is this possible? Could it be done by somehow using the Open Office libraries? ...
9
votes
7answers
15k views

Cross-Domain Cookies

I have two webapps WebApp1 and WebApp2 in two different domains. I am setting a cookie in WebApp1 in the HttpResponse. How to read the same cookie from HttpRequest in WebApp2? I know it sounds ...
533
votes
5answers
51k views

How to decide when to use NodeJS?

I am a n00b in this kind of stuff but lately I've been hearing a lot about how good NodeJS is. Considering how much I love working with jQuery and Javascript in general, I can't help but wonder how to ...
43
votes
8answers
50k views

Log4j, configuring a Web App to use a relative path

I have a java webapp that has to be deployed on either Win or Linux machines. I now want to add log4j for logging and I'd like to use a relative path for the log file as I don't want to change the ...
58
votes
18answers
37k views

Sencha Touch or jQuery Mobile?

I wonder if I were to develop a mobile Web app (now, in two weeks, or in a month), which one should I go for? Which one would you mobile Web developers go for? If jQM 1.0 were officially released ...
50
votes
17answers
6k views

What reasons are there NOT to use OpenID?

You see a fair bit (in the Geek community anyway) about OpenID. It seems like a good idea. I'm developing a website that will be targeted at a somewhat less geeky audience (but not quite Mom and ...
18
votes
4answers
20k views

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?
5
votes
5answers
13k views

Passing session data between ASP.NET Applications

We have several ASP.NET applications deployed to a few servers. Is there a standard way to reuse session data or some other method to not require users to log in to the next application when moving ...
19
votes
12answers
92k views

How do I resolve “HTTP Error 500.19 - Internal Server Error” on IIS7.0

What causes this error, how can I fix it? Detailed Error Information Module IIS Web Core Notification BeginRequest Handler Not yet determined Error Code 0x8007052e Config Error Can not log on ...
14
votes
5answers
5k views

Open Source Virgin - What steps to take?

I'm thinking about releasing some of my PHP work as open source using one of the popular open-source licenses out there. I'd like to build a community around it and let contributors other than myself ...
6
votes
6answers
2k views

Web-apps : to framework or not to framework?

I know PHP and am just beginning with MySql (but plan to use ODBC). I don't need any books explaining that. I am probably qualified to develop a simple web site, but aim at taking on quite ambitious ...
5
votes
8answers
14k views

How does one record audio from a Javascript based webapp?

I'm trying to write a web-app that records WAV files (eg: from the user's microphone). I know Javascript alone can not do this, but I'm interested in the least proprietary method to augment my ...
5
votes
7answers
4k views

Spreadsheet-like control for a web application? [closed]

A client of mine is looking to convert a critical 'application' based on multiple (very complex) spreadsheets into a web app. As part of this they'd like some of the web pages they use to enter/model ...
7
votes
4answers
2k views

Choosing a web application framework in python

I am python newbie from the asp.net MVC world, looking to start a new web application project in python. How do I go about choosing a web application framework in python? Python website points to a ...
22
votes
7answers
4k views

When should a web service not be used?

Using a web service is often an excellent architectural approach. And, with the advent of WCF in .Net, it's getting even better. But, in my experience, some people seem to think that web services ...
55
votes
3answers
27k views

Exception NoClassDefFoundError for CacheProvider

I'm kind of new in Spring and hibernate so I'm trying to implement some simple web application based on Spring 3 + hibernate 4 while I start tomcat I have this exception: ...
8
votes
3answers
20k views

calling a java servlet from javascript

I am trying to create a web application using the MVC design pattern. For the GUI part I would like to use JavaScript. And for the controller Java Servlets. Now I have never really worked with ...
24
votes
4answers
5k views

How do I implement OpenID in my web application?

Does Stackoverflow create a new OpenID when a user registers with an email address (i.e. does not provide an existing OpenID)? How do you do that? Do you have code examples in C#? Java? Python?
22
votes
10answers
18k views

Why “Content-Length: 0” in POST requests?

A customer sometimes sends POST requests with Content-Length: 0 when submitting a form (10 to over 40 fields). We tested it with different browsers and from different locations but couldn't reproduce ...
18
votes
5answers
65k views

java.lang.UnsatisfiedLinkError no *****.dll in java.library.path

How can I load a custom dll file in my web application? I tried following ways but its failing. copied all required dlls in system32 folder and tried to load one of them in Servlet constructor ...
8
votes
1answer
6k views

Strange behavior of select/dropdown's onchange() JS event when using 'Next' on Mobile Safari Dropdown list item select box

This is a hard one to articulate and I am new to mobile web development so please bear with me: On my webpage, I have 3 Nested dropdown lists (Area, Town, Street). Nested as in, each dropdown's ...
9
votes
9answers
5k views

How to block uploads of nude images?

I need a provision of detecting the adult image in the websites where the user uploads the pictures to determine that a picture isn’t acceptable for my site. Can any one suggest the method to do this? ...
4
votes
4answers
1k views

Any web services with APIs for outsourcing webapp transactional email? [closed]

My webapp needs to send customized messages to members and I'm wondering if there is an inexpensive and easy to use web service that would meet my needs. The types of mail I will be sending include: ...
9
votes
5answers
10k views

Can I turn off the HttpSession in web.xml?

I would like to eliminate the HttpSession completely - can I do this in web.xml? I'm sure there are container specific ways to do it (which is what crowds the search results when I do a Google ...

1 2 3 4 5 21