Skip to content

Commit

Permalink
Move SSL/TLS page for XSP to archived
Browse files Browse the repository at this point in the history
The TLS stack necessary for this is no longer available on Mono: mono/mono#19816
  • Loading branch information
akoeplinger committed May 25, 2020
1 parent 16649c0 commit 16a332b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,14 @@
title: UsingClientCertificatesWithXSP
redirect_from:
- /UsingClientCertificatesWithXSP/
- /docs/web/using-clientcertificates-with-xsp/
---

DEPRECATION NOTICE
==================

This article is now outdated and no longer works on recent Mono versions.

Introduction
============

Expand Down
2 changes: 0 additions & 2 deletions docs/faq/aspnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -371,8 +371,6 @@ Instead of Location="Server", use "ServerAndClient".
If you are using the Apache module, https support is handled directly by Apache and all the variables are available using the System.Web APIs.
If you are using XSP, read the [using client certificates with XSP](/docs/web/using-clientcertificates-with-xsp/) article which details the process.
### I write pages that contain non-ASCII characters, and they appear garbled in the browser. What's wrong?
Check if your aspx/ascx/etc.. files were saved in the Windows-1252 encoding, if possible, so that no further action is needed. If they are in utf-8 (default nowadays in Linux) or any other encoding you will need to tell the compiler for the language your page will be translated into to expect this other encoding. There are two forms:
Expand Down
2 changes: 0 additions & 2 deletions docs/faq/security.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,6 @@ To correct this you must enabled MD2 support in your `machine.config` file. This

Both SslClientStream and SslServerStream, in Mono.Security.dll, support client certificates, however HttpWebRequest doesn't due to a strange design/relationship between the 1.x framework and Windows/CryptoAPI (i.e. there is no managed API to associate a certificate with a private key). This should be fixed in the 2.0 profile as the X509Certificate class has been extended to provide this association.

Also recent versions of [XSP](/docs/web/aspnet/) do support SSL/TLS and client certificates. See the [UsingClientCertificatesWithXSP](/docs/web/using-clientcertificates-with-xsp/) article for more details.

### Does SSL work for SMTP, like GMail ?

Yes it does. First you must import the root certificates using the `mozroots` tool:
Expand Down
1 change: 0 additions & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ Our website is open source on [GitHub](https://github.com/mono/website). If you
* [mod_mono](/docs/web/mod_mono/)
* [Moonlight](/docs/web/moonlight/)
* [Porting ASP.NET applications](/docs/web/porting-aspnet-applications/)
* [Using client certificates with XSP](/docs/web/using-clientcertificates-with-xsp/)

# [Tools](/docs/tools+libraries/tools/)

Expand Down
4 changes: 0 additions & 4 deletions docs/web/aspnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,6 @@ For example, once you install XSP, you can try some samples like this:

You can now browse to <http://localhost:8080> and see various sample programs

### SSL support in XSP

XSP supports SSL and TLS Client Certificates. For further details about setting it up, see the [UsingClientCertificatesWithXSP](/docs/web/using-clientcertificates-with-xsp/) document.

### Configuration

Applications can be configured through the web.config file, the full documentation is available from [MSDN](http://msdn2.microsoft.com/en-us/library/b5ysx397.aspx), and also a Mono-specific version is available on this site [here](/archived/config_systemweb).
Expand Down

0 comments on commit 16a332b

Please sign in to comment.