I can't seem to submit a form via POST with PHP over SSL. Here's a quick look at my code, can anyone tell me what's wrong?
My .htaccess file
RewriteEngine On
RewriteBase /test
RewriteCond %{HTTP_HOST} !^www\.helloworld\.org$ [NC]
RewriteRule ^(.*)$ http://www.helloworld.org/test/$1 [L,R=301]
# If i comment out these 3 lines, everyt...
I want to send email to Yahoo mail using Indy. But Yahoo uses 465 port with SSL connection. I don't know how to implement that in my program. I have read about TIdSSLIOHandlerSocketOpenSSL component on internet, but couldn't find such component in Delphi 7. Can anyone help?
...
Hello
I'm struggling to find a reverse proxy http->https like for binary sockets.
There is a Pound server which offers this kind of SSL tunneling but just for the http protocol.
Basically I work on 4'th layer TCP/IP with binary data. Between flex/AIR client and c++ server.
I can wrap sockets in C++ without problems, but this is a prob...
Im trying to design a payments API, and it requires the sending of CC info over the wire. So for this I was thinking of using a public key to encrypt the CC info and decrypt it on the server. Keep in mind that the connection is https also. Any suggestions on the topic?
...
We are getting this error when trying to change a password in ColdFusion through LDAP.
Despite the error, everything seems to be completing as requested.
The stack trace ends at the start of a thread so I can't tell the exact trigger point.
EDIT:
We started getting these errors when we moved from CFMX7 to ColdFusion 9.
Here is the s...
I am trying to write a java application connecting to server connection channel with SSL enabled.
So far, I have been successfully connected to the channel by setting authentication to 'optional'. However, when I set it to be 'required', the connection fails.
Here is what I did:
Create key db for queue manager and keystore for...
I have an application that uses the data push technology of blazeDS to send data to a Flex Client event 5 seconds. The application works fine when I run it via HTTP with or without a proxy. When I run it via https the data push doesn't work anymore. I get the following error
rootCause [IOErrorEvent type="ioError" bubbles=false cancelab...
I've created a self-signed cert for testing encryption between my web application and the SQL Server.
When attempting to query the database using "Encrypt=Yes;" in the connection string, I receive the following message:
A connection was successfully established with the server, but then an error occurred during the pre-login handsha...
SSLContext context = SSLContext.getInstance("SSL");
The above line results in the exception:
java.security.NoSuchAlgorithmException: SSLContext SSL implementation not found
I'm using Android 2.0 SDK and when specifying TLS, it is accepted.
How come I get the exception? Doesn't Android support SSL?
...
I know, there are many different questions and so many answers about this problem... But I can't understand...
I have: ubuntu-9.10-desktop-amd64 + NetBeans6.7.1 installed "as is" from off. rep.
I need connecting to some site over the HTTPS. For this I use Apache's HttpClient.
From tutorial I read:
"Once you have JSSE correctly installed,...
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?
...
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 documentation will be a lot simpler. What are your thoughts?
...
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 any other transactions?
...
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 to use urllib.request to get this info (to no avail), does this strike anyone as foolish?
I have seen some examples of similar work using o...
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 buffer, etc.
One stream type is a standard POSIX socket, and I would like to code a wrapper stream that will add SSL support to an existing s...
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 the user to input password. The application sends hundreds of different https request to the server, so we can not ask the user to input pas...
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 remember much about it and I never knew how it worked.
The rationale for this is that I wouldn't need to hardcode server names in files t...
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 web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/...
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 postback retain "https"?
...
i have this website, and this specific page is secure, but when it postbacks, it postbacks to an unsecure page. How to fix that?!
I am using ASP.NET Wizard. I have this page - checkout.aspx, and this control checkout.ascx contained by the page. Now, the encode to ensure ssl is inside the page like this:
protected override void O...