0
votes
1answer
23 views
if a secure page does a postback, will the postback continue to be on secure page?
I am using ASP.NET wizard, and it does postback to go to next step of the wizard or something. I need this particular page to be secure (making the entire site secure is NOT an option). Will the …
0
votes
1answer
62 views
SSL Sharing on IIS
Im trying to share a wildcard SSL cert across many applications. The way it would work is users would have websites with thier domain, but when they need a secure connection they would be redirected …
0
votes
0answers
7 views
Using SSL with an application deployed on IBM-WASCE
I have an application which uses JSPs and Servlets and deployed on IBM-WASCE 2.1.
I want the application to use SSL for login purposes. Based upon the documentation, I added the following lines to …
3
votes
4answers
735 views
How can I send emails through SSL SMTP with the .NET Framework ?
Is there a way with the .NET Framework to send emails through an SSL SMTP server on port 465?
The usual way:
System.Net.Mail.SmtpClient _SmtpServer = new System.Net.Mail.SmtpClient("tempurl.org");
…
0
votes
3answers
55 views
Switch to SSL using a relative URL
I would like to create a relative link that switches the current protocol from http to https. The last place I worked had something set up on the server so that you could make that happen, but I don't …
1
vote
1answer
43 views
How to load CSS on SSL pages?
I am using relative paths to my CSS document, but on the SSL pages the document will not load. Navigating back to the non-SSL pages brings SSL back. How to I overcome this?
0
votes
1answer
8 views
How to cache SSL client certificate password in client application using libcurl
We have a (multi-os) application which communicates with a https server using libcurl and uses SSL client certification. When the client certification is password protected, the application must ask …
0
votes
2answers
39 views
SSL wrapper stream in C
I have a simple stream_t type in C with your basic read/write operations, and support for multiple underlying implementations using function pointers. So a stream could be backed by a file, a char …
0
votes
2answers
221 views
Securing WCF REST service for use with iPhone application
Hi all,
I've a created a simple WCF REST service which I intend to consume from an iPhone application.
The service works fine but now I'd like to secure it.
In my test enviornment (IIS on Windows 7) …
0
votes
4answers
5k views
Firefox and SSL: sec_error_unknown_issuer
My client gets a sec_error_unknown_issuer error message when visiting https://mediant.ipmail.nl with firefox.
I can't reproduce the error myself. I installed ff on a vista and a xp machine and had no …
0
votes
1answer
25 views
Python3: ssl cert information
I have been trying to get information regarding expired ssl certificates using python 3 but it would be nice to be able to get as verbose a workup as possible. any takers?
So far i have been trying …
0
votes
4answers
162 views
Is there a way for IIS6 to do http and https together in the same site?
The site needs to be accessible both from HTTP and HTTPS (in case the client wants the form submissions to be secure or not)
The site is hosted in IIS6 and ideally I'd like to be able to just have …
0
votes
1answer
23 views
Setup SSL for form login only on Tomcat webapp
Can I set Tomcat (or my webapp if it's done that way) to require SSL for confidentiality of the built-in Form-Based Login mechanism?
i.e. to protect the users credentials, and use standard http for …
0
votes
0answers
10 views
SSL with Apache 6 on Fedora 10
Hi all,
I had some trouble setting up SSL on Tomcat 6 on Fedora 10.
I removed OpenJDK and installed the SUN JDK (jdk-6u18-ea-bin-b05-linux-i586-18_nov_2009.bin).
I'm using Apache Tomcat 6.0.20 …
0
votes
1answer
33 views
Is basic auth with SSL secure enough?
I am developing an application which need to handle a massive amount of REST requests. Using basic auth will save a lot of computing resources since I don't have to compute the signatures. Also, the …
