Application Examples
PSPs (and servlets) provide a lot of services for application developers.
The examples below demonstrate how some of these features can be used.
Since Python Server Pages (and Python Servlets) were derived from the Java J2EE standards,
the Internet can be searched to find documentation regarding JSP and Java servlet usage.
- File Upload
Applications that need to have their clients upload files into
the application must navigate HTTP Post requests with multipart form data components.
File uploading can be dangerous, since a nefarious clients often use multiform processing
interfaces to upload viruses into an uninformed application.
The PSP/servlet implementation blocks against many of these attacks.
can