Stories recently tagged with 'SSL'

MVC: Creating SSL Links/URLs(squaredroot.com)

submitted by TroyMGTroyMG(2670) 3 years, 8 months ago

A couple days ago a reader sent in a question regarding how to use SSL with the MVC framework. Specifically the reader wanted to know the easiest way to make an Ajax call to a HTTPS page from a non HTTPS page. The tricky part here is to do so without hard-coding any URLs, so I whipped up a few extension methods that should make this a bit easier. read more...

add a comment |category: |Views: 275

tags: another

Internet Explorer, HTTPS/SSL and ASPX pretending to be XLS(devblog.ailon.org)

submitted by ailonailon(1335) 3 years, 11 months ago

"Internet Explorer was not able to open this Internet site. The requested site is either unavailable or cannot be found. Please try again later." This is an error you can suddenly get after moving your ASP.NET application to a secure server. This post explains why and how to solve this. read more...

add a comment |category: |Views: 43

tags: another

Virtual Earth: SSL Support(pietschsoft.com)

submitted by crpietschmanncrpietschmann(11.3k) 4 years, 1 month ago

I've implemented Virtual Earth within many web applications, but one thing that I've only had to do a couple times is run the site under SSL. If you have ever done this, then you know that the web browser doesn't like this and complains with the "Do you want to display nonsecure items?" prompt. This can be a pain for users, escpecially when they click "No" and then wonder why the map isn't there. Yes, even though it isn't documented, Virtual Earth does support being referenced under SSL. To reference Virtual Earth v6 using SSL you must pass "s=1" in the querystring, as well as use HTTPS. read more...

add a comment |category: |Views: 9

tags: another

Subversion via IIS(svniis.org)

submitted by LordLord(3732) 4 years, 4 months ago

I have been working a few days on a solution to give access to an SVN repostory through IIS. I came up with a proxy handler between a working Apache environment and IIS. It works on http and https. read more...

1 comment |category: |Views: 2184

tags: another

Send Mail through SMTP with SSL Authentication like GMail(ifxplus.com)

submitted by m.casatim.casati(600) 4 years, 4 months ago

This example will help you to send email from ASP.NET using Gmail SMTP (SSL authentication required) read more...

1 comment |category: |Views: 85

tags: another

Using Secure WebServices in .NET(chrisbrandsma.com)

submitted by cwbrandsmacwbrandsma(1711) 4 years, 9 months ago

How to call a secure web service with a SSL certificate from a .NET WinForm application. read more...

add a comment |category: |Views: 9

tags: another

Debugging an ASP.NET Web Site with SSL(chrisbrandsma.com)

submitted by cwbrandsmacwbrandsma(1711) 4 years, 9 months ago

How to debug a ASP.NET Web Site with an SSL certificate. read more...

2 comments |category: |Views: 174

tags: another

[Tip] Descarga de archivos bajo SSL(msdnlive.net)

submitted by timpsofttimpsoft(65) 4 years, 10 months ago

En estos dias, en mi centro de labores, nos encontramos en el proceso de migracion de un sistema que estaba corriendo bajo el framework v1.1 hacia la version 2.0, justo el dia de hoy estuve realizando unas pruebas de las diversas funcionalidades y me encontre con un pequeño problema al intentar realizar la descarga de algunos archivos Excel, problema que bajo la misma configuracion en la v1.1 no se daba, lo mismo sucedio con algunos documentos xsl que utilizabamos para dar formato a documentos XML utilizando DOM a traves de javascript, todo esto se daba bajo un entorno HTTPS, asi que me puse manos a la obra para intentar detectar cual era el posible problema.... read more...

add a comment |category: |Views: 6

tags: another

Tip/Trick: Enabling SSL on IIS 7.0 Using Self-Signed Certificates(weblogs.asp.net)

submitted by gavinjoycegavinjoyce(25.7k) 4 years, 10 months ago

SSL enables browsers to communicate with a web-server over a secure channel that prevents eavesdropping, tampering and message forgery. You should always use SSL for login pages where users are entering usernames/passwords, as well as for all other sensitive pages on sites (for example: account pages that show financial or personal information). Configuring SSL on Windows with previous versions of IIS has been a pain. Figuring out how to install and manage a certificate, and then associate it with a web-site, is something I bet most web developers don't know how to enable. The good news is that IIS 7.0 makes it radically easier to configure and enable SSL. IIS 7.0 also now has built-in support for creating "Self Signed Certificates" that enable you to easily create test/personal certificates that you can use to quickly SSL enable a site for development or test purposes. Using IIS 7.0 you can SSL enable an existing web site in under 30 seconds. read more...

add a comment |category: |Views: 22

tags: another

Exchange data securly with a WebService without HTTPS/SSL(codeproject.com)

submitted by kazimanzurrashidkazimanzurrashid(3960) 5 years, 1 month ago

In this article shows you how to exchange data securely with a Web Service without HTTPS/SSL. It also provides real life example on the implementation and limitation on the important encryption types as well as Digital Signature that are available in .NET Framework. read more...

1 comment |category: |Views: 63

tags: another

Consuming WebServices with SSL and HTTP BASIC Authentication (eggheadcafe.com)

submitted by j.montyj.monty(1868) 5 years, 11 months ago

Excellent article on how to have web services check SSL certificate status and over-ride that default behavior based on the CertificateProblem enum. It also covers how to use BASIC authentication with SSL on the web service as well. read more...

add a comment |category: |Views: 181

tags: another