You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an SSL enabled application and I'm redirecting a specific request to an older application, in order to avoid CORS issues. In fact this is a .Net application that will process print requests but it does not support SSL. The redirected request tries to connect with SSL resulting with the following in the Rails app logs...
I encountered this and managed to get the right behaviour by rewriting the header and rack config values in env that indicated the request was HTTPS before passing the request on to rack-proxy.
I have an SSL enabled application and I'm redirecting a specific request to an older application, in order to avoid CORS issues. In fact this is a .Net application that will process print requests but it does not support SSL. The redirected request tries to connect with SSL resulting with the following in the Rails app logs...
OpenSSL::SSL::SSLError (SSL_connect returned=1 errno=0 state=SSLv3/TLS write client hello: wrong version number):
The other application simply doesn't support SSL so its nothing to do with verifying SSL certificates or SSL version numbers.
Currently I'm using the following function, which works a treat when the app is not running in under SSL....
`def perform_request(env)
end
`
Can you help me to disable SSL for this specific request?
The text was updated successfully, but these errors were encountered: