diff --git a/docs/web/using-clientcertificates-with-xsp.md b/archived/using-clientcertificates-with-xsp.md similarity index 98% rename from docs/web/using-clientcertificates-with-xsp.md rename to archived/using-clientcertificates-with-xsp.md index 1bf5f9625..db2936b87 100644 --- a/docs/web/using-clientcertificates-with-xsp.md +++ b/archived/using-clientcertificates-with-xsp.md @@ -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 ============ diff --git a/docs/faq/aspnet.md b/docs/faq/aspnet.md index 57bdca962..bc1383b77 100644 --- a/docs/faq/aspnet.md +++ b/docs/faq/aspnet.md @@ -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: diff --git a/docs/faq/security.md b/docs/faq/security.md index ab5255a64..e7cc4f2ca 100644 --- a/docs/faq/security.md +++ b/docs/faq/security.md @@ -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: diff --git a/docs/index.md b/docs/index.md index 00f004ec5..12b716e05 100644 --- a/docs/index.md +++ b/docs/index.md @@ -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/) diff --git a/docs/web/aspnet.md b/docs/web/aspnet.md index a357f0366..1f8c3de30 100644 --- a/docs/web/aspnet.md +++ b/docs/web/aspnet.md @@ -77,10 +77,6 @@ For example, once you install XSP, you can try some samples like this: You can now browse to 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).