Questions tagged [web]

Do not use this tag. For questions related to an aspect of the world wide web, use a more specific tag for it, such as [uri], [html], [http] or [w3c].

The World Wide Web (abbreviated as WWW or W3, and commonly known as "the Web") is a technology that connects various kinds of systems with interlinked hypertext documents accessed using networking protocols.

The credit of inventing the World Wide Web goes to many researchers, but it was Tim Berners-Lee also known as TimBL who not only proposed the idea of WWW (at CERN in 1989) but also gave his full contribution in development of 3 very significant technologies:

  1. Invention of URL (Universal Resource Locator) and URI (Universal Resource Identifier).
  2. HyperText Markup Language (HTML)
  3. HTTP (HyperText Transfer Protocol), a protocol for transferring HTML

The World Wide Web is an interconnected network which works as a bridge not only between two terminal ends (Web browser & Web server) but also to connect client machines to database servers with controlled access.

With a Web browser (client), one can view web pages that may contain text, images, videos, and other multimedia, and navigate between them via hyperlinks. The default port for requests and responses via HTTP protocol is port 80.

A web server, on other hand, receives the client's requests and generates the proper response for it. This includes an HTTP status code (like 200 Ok or 404 Not Found), a list of HTTP headers (which control things like response format and cookies), and the response body (like HTML content).

47790 questions
5
votes
2 answers

Web UI for Delphi desktop app

I want to develop Web UI for my desktop application to allow users do some tasks remotely. The Web UI server and desktop app will run on the same computer. Question is: what is the best way to implement it? I found several possible solutions: The…
djsoft
  • 1,051
  • 8
  • 19
5
votes
4 answers

Does browser rendering and JavaScript execution happen simultaneously?

For example, if I have this: $('#button').click(function() { $.get('/question', function(data) { $('#question').html(data); $('#question').dialog( ... ); }); return false; }); Will the user see the question content for a…
Joe
  • 16,328
  • 12
  • 61
  • 75
5
votes
1 answer

Custom exceptions handling - java Web Services

Its my first time posting here so please be patient and correct me whenever necessary... I am building simple web service-based application using NetBeans with GlassFish. NetBeans does help a lot in terms of generating code for new web services and…
Mike
  • 53
  • 1
  • 5
5
votes
3 answers

CSS Making the content DIV Auto size after the content within

I am currently trying to design a website template for me, the problem is that I can't get the Content div to auto expand on the content that is within it. I wanted it to auto resize so I don't need to set the CSS height manually. The CSS Code I…
Teknikk
  • 251
  • 1
  • 8
  • 22
5
votes
3 answers

JBoss error report: HTTP Status 404 - Servlet is not available

I'm trying to create a very basic web project called "web" using MyEclipse and JBoss 5 as an application server. I've created one package called "pages" and inside it one servlet called "UserInterface". The problem is when I deploy the project and…
NadaNK
  • 782
  • 2
  • 10
  • 26
5
votes
2 answers

Language selection of web site

This question might me hilarious obvious but ... I have searched the web and stack overflow but did not find a satisfying answer. What makes a good start for adding language selection to a web site? My urls will be example.com/de/ example.com/en/ to…
JohnDoe
  • 2,422
  • 5
  • 29
  • 44
5
votes
3 answers

Flex web application: prevent framerate drop when window is invisible

So there's been a new "feature" in the flash player since version 10.1, which reduces the player's framerate to 2 fps when the application window is out of view. This is good news for performance, but it can break some functionality, such as the…
JayPea
  • 9,551
  • 7
  • 44
  • 65
5
votes
4 answers

Lightswitch: Load operation failed for query 'GetAuthenticationInfo'. The remote server returned an error: NotFound

I'm currently creating a small silverlight application for testing, to see if it can works with other projects. In debug, everything is working, but once I deploy it to my local IIS Server, I got this error: Load operation failed for query…
J4N
  • 19,480
  • 39
  • 187
  • 340
5
votes
1 answer

XMPP/Jabber web-based clients

What are the web-based clients for XMPP/Jabber. I need run IM client in browser (Windows/Linux FF2-8, Opera 10+, IE 6(?)-8). I found only one SparkWeb - http://www.igniterealtime.org/projects/sparkweb/index.jsp Is this the only one?
Anton Shevtsov
  • 1,279
  • 4
  • 16
  • 34
5
votes
2 answers

website layout changing on browser window resizing

For a website I'm making, I'm using percentages for the divs and so when I resize the browser window, the website layout gets messed up. How should I keep using percentages and make the layout stay the way it is upon browser resizing?
Nirav Bhatia
  • 1,003
  • 3
  • 13
  • 25
5
votes
8 answers

One time password security risk

We are developing a web application where user has to input a One Time Password (which we email to the users) to complete an operation. However, if a malicious user develops a bot and guesses the pattern in which we generate the One Time Password,…
Gopal
  • 1,292
  • 3
  • 19
  • 41
5
votes
2 answers

Subversion Web administration

Looking for a Subversion web administration tool (preferably written in PHP), done some googling but most of the ones I have found don't seem to be in active development and I'm not sure which ones to try. Does anyone use any of them and have any…
A_Porcupine
  • 1,008
  • 2
  • 13
  • 23
5
votes
3 answers

Flutter - How to achieve File upload for web and mobile?

I am trying to achieve a simple file upload feature in my flutter app. I need to have it for both web and mobile. /// class FileUploadController extends GetxController { Rx file = Rx(null); …
who-aditya-nawandar
  • 1,334
  • 9
  • 39
  • 89
5
votes
1 answer

Angular 15: Webpack throws error if I require ES6 support in browserslist file

My browserslist file is > 0.5% last 2 versions Firefox ESR not dead not IE 9-11 and when running ng build it throws a warning saying that ES5 output is not supported by the Angular CLI so i added the following line to browserslist as this answer…
Danny220
  • 51
  • 3
5
votes
3 answers

Why am I getting white space between my HTML element?

I'm trying to design a website for my mums backpackers business. The problem that I am having is between my banner image and my navbar there is a blank white line that you can see in the image. I thought this is to do with the margin so I have set…
AndyNZ
  • 2,131
  • 4
  • 24
  • 27