Skip to content

Commit

Permalink
First lectures
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaspanni committed Nov 21, 2023
1 parent 9d795af commit c082153
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 3 deletions.
31 changes: 29 additions & 2 deletions Material/Slides/01_Vorstellung_Intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ plantuml-format: svg
- Security: Angriffe, Best-Practices


# Einführung: Webanwendungen, HTTP
# Einführung: Webanwendungen

## Webanwendungen (1)

Expand All @@ -128,7 +128,34 @@ plantuml-format: svg

## Webanwendungen (3)

> Eine **Webanwendung** ist ein Programm, das über einen **Webbrowser** aufgerufen wird und meist teilweise auf einem **Server** ausgeführt wird.
> Eine **Webanwendung** ist ein Programm, das über einen **Webbrowser** aufgerufen wird und teilweise auf einem **Server** ausgeführt wird.

- Auch nicht unbedingt korrekt
- Progressive Web Apps (PWAs) können auch teilweise offline (ohne Server) ausgeführt werden
- z.B. Electron-Anwendungen sind unabhängig von Browser und Server \rightarrow{} integrierte Browser-Engine

## Webanwendungen (4)

> Eine **Webanwendung** ist eine Anwendung, die Web-Technologien (_HTML_, _CSS_, _JavaScript_) verwendet

- Einfache und kurze, aber zyklische Definition
- HTML + CSS werden teilweise auch außerhalb von Webanwendungen benutzt
- JavaScript wird heute praktisch überall benutzt!


\rightarrow{} es gibt keine klare Definition! Das ist aber auch garnicht notwendig.



## Live-Demo: Webanwendungen

- Was passiert beim Abruf einer Webseite? z.B. "lukaspanni.de"
- Auflösung des Namens zu einer IP-Adresse über DNS \rightarrow{} 37.120.173.24
- HTTP-Anfrage an diese IP-Adresse an Port 80 (Standard für HTTP)
- Antwort: 301 Moved Permanently; Location: https://lukaspanni.de/
- HTTPS-Anfrage an gleiche IP-Adresse an Port 443 (Standard für HTTPS)
- Antwort: 200 OK, HTML-Code, CSS-Code

- Was passiert bei komplexeren Websites?


2 changes: 1 addition & 1 deletion Material/Slides/02_HTTP_REST.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "Vorlesung Webengineering I - HTTP & REST"
topic: "Webengineering_1_1"
date: 2023-09-22
date: 2024-01-15
author: "Lukas Panni"
theme: "Berlin"
colortheme: "dove"
Expand Down

0 comments on commit c082153

Please sign in to comment.