Hypertext Transfer Protocol Secure (HTTPS) is a combination of the Hypertext Transfer Protocol with the SSL/TLS protocol to provide encrypted communication and secure identification of a network web server.
1
vote
0answers
4 views
SSL/HTTPS and XCart - installation/setup
I have:
Installed XCart (Gold Plus 4.6.0 - Trial with Lexity Live) on Netfirms
Purchased (and successfully installed) a RapidSSL Premium Certificate from GeoTrust through Netfirms
Enabled SSL in ...
4
votes
1answer
63 views
mail() on https
I setup a website that uses PHP mail(). I can get it to successfully run if I hit the script on http:// but if I switch to https:// it does not work! I use Godaddy for hosting and have a certificate ...
-2
votes
1answer
15 views
Design of an android app for mobile device management system
I am developing an android app for mobile device management system - which needs to mainatan a persistent connection to a web server through https connection and wait for any commands from the server. ...
2
votes
1answer
21 views
SSL: Two DNS Names, 1 IP, 2 certs - Java only sees 1 and complains
I have an Apache mapped to two external DNs:
sub1.dn.com
sub2.dn.com
That both map to the same IP.
Each has its own SSL cert. Each cert shows the CN and SAN as-is and matching (i.e. sub1.dn.com ...
0
votes
1answer
26 views
PKIX path building failed in Java
I have some Java code running that has to open a https page and fetch data, which has been running for the last 7-8 years. The only thing i do once every 2 years is to update the certificate in Java. ...
0
votes
0answers
9 views
How to redirect domain:port to domain with Glassfish?
I have a domain like www.example.com, I'm using Glassfish, which host my application at port 12544.
So I wonder two things :
How can I redirect this www.example.com:12544 to www.example.com ?
And ...
0
votes
2answers
25 views
Advice on implementing web server security in iPhone app
I have a relatively successful app in the app store that allows people to view metrics on their iDevice using a JSON file hosted on the their server. The app has a simple settings screen in which you ...
1
vote
2answers
21 views
How to make thirdparty URL secure
Hi I have some issue regarding SSL Page.
I have set my all link URL with
https://
But in my site some ads are coming with
http://
so it changes HTTPS color from green to yellow in chrome. The ...
0
votes
0answers
20 views
Secure Webscoket Connection using wss is never established
i want to build an architecture with wss, i implement my certificates and they work. But now, when i'm connect on the browser, my program create websocket and close it directly, i don't understand ...
0
votes
0answers
5 views
Rails3 force_ssl for 3 specific views and go back to http for others
I have a Rails3 app and I have the following in one of my controllers:
force_ssl :only => [ :action1, :action2, :action3 ]
and its succesfully redirect those actions to https.
When I redirect ...
0
votes
1answer
20 views
X509TrustManager - checkServerTrusted not called - is trusted server cert cached or is there a way to get certificate chain?
In my Android project, I'm using a library (internal to my company) which has a custom HTTP Client with a custom X509TrustManager.
We need to allow a user to choose whether they wish to trust or ...
0
votes
0answers
4 views
How to force certificate validation in cpp-netlib when making HTTPS request?
We use cpp-netlib in our multi-platform code (iOS and Android) to perform HTTPS requests but we could not find a way to perform server's certificate validation. The documentation on the site is scarce ...
0
votes
0answers
3 views
How to redirect http request to https before the basic authentication popup
I'm using basic authentication on my site, which does a simple windows popup asking for username and password. I'm wondering if there's a way to redirect http traffic to https traffic before this ...
0
votes
0answers
14 views
stream_context_create using https and a proxy
I'm trying to modify an old code that worked over a proxy using a http connection. The problem is that today the server has changed and sends the URL threw a https connection (with the proxy, again) ...
0
votes
0answers
8 views
iOS: UIWebView load resource with client certificate from remote URL
I'm trying to load a resource from a remote host and that requires a client certificate.
Example:
Main-Site-URL: http://abc.de
Remote-Site-URL: https://xyz.de/foo.js
The Main-Site needs the ...