self-signed

Tomcat Server/Client Self-Signed SSL Certificate

倖福魔咒の 提交于 2019-11-26 21:18:49
I have an Apache Tomcat 6.x server running with a self-signed SSL certificate. I want the client to present their own certificate to the server so I can authenticate them based on a database of users. I have it all working based on an example I found online, but the example came with canned certificates and a pre-build JKS datastore. I want to create my own datastore with my own certs but am having no luck. How do I create a datastore for Tomcat? How do I create a self-signed certificate for Tomcat? How do I create a self-signed certificate for the client? How do I force Tomcat to trust the

How to make browser trust localhost SSL certificate?

﹥>﹥吖頭↗ 提交于 2019-11-26 18:28:53
问题 Although, there are similar questions, and even good answers, they either don't concern themselves with localhost specifically, or ask about one particular option/solution (self-signed vs CA). What are the options? How do they compare? Ho do I do this? 回答1: tl;dr Generate a certificate issued by own CA (see the script below) Here's what I've found. Correct me where I'm wrong. There are CA's (certificate authorities). They issue certificates (sign CSR's) for other CA's (intermediate CA's), or

Java 7u51 will not accept JNLP with self-signed certificate?

浪子不回头ぞ 提交于 2019-11-26 15:49:42
问题 I read on the web that Java version 7u51 (to be released in January 2014) will no longer accept Java Webstart applications that are self-signed by me. Is that true? In case it is true, do I have any chance to build a workaround for my JNLP application, so that I am able to start the application even after January 2014? I have seen that the option to suppress the security warnings because of the usage of a self-signed certificate was removed in 7u40. 回答1: Yes, this is true. This blog entry

Failed to load resource: net::ERR_INSECURE_RESPONSE

狂风中的少年 提交于 2019-11-26 15:43:57
IS there a way to trick the server so I don't get this error: Content was blocked because it was not signed by a valid security certificate. I'm pulling an iframe of an html website into another website but I keep getting the console (chrome) error in the title of this question and in internet explorer it says: Content was blocked because it was not signed by a valid security certificate. Your resource probably use a self-signed SSL certificate over HTTPS protocol. Chromium, so Google Chrome block by default this kind of resource considered unsecure. You can bypass this this way : Assuming

Self-signed SSL Cert or CA? [closed]

回眸只為那壹抹淺笑 提交于 2019-11-26 15:16:42
问题 I would like to have the authentication and registration parts of my website encrypted (for obvious reason). This site is currently and older site which some friends and I started in middle school and still use today. I may or may not register it to be a Non-Profit Organization in the near future, but either way, a CA costs money and the organization doesn't have any and we are currently college kids. Verisign is unreasonable and GoDaddy is $30/year. GoDaddy isn't too unreasonable, and I

How to create a self-signed certificate for a domain name for development?

情到浓时终转凉″ 提交于 2019-11-26 11:44:23
问题 I have subdomain.example.com that I use for development purposes. My web application solution contains a web API etc, that I need to call from external systems, hence I am not using localhost. I now need to test for SSL and need a certificate for my subdomain.example.com development domain name. I have tried creating a self-signed certificate as outlined in http://technet.microsoft.com/en-us/library/cc753127(v=ws.10).aspx, but this certificate only works for localhost. Can this certificate be

Java: Overriding function to disable SSL certificate check

两盒软妹~` 提交于 2019-11-26 10:29:24
问题 The web service is rest over SSL and it has self signed certificate, hosted in remote system.I have already created a client accessing that web service. This is done by adding the certificate to the key store programatically. Now I heard that, it is not necessary to add certificate to key store for accesing a self signed web service. Instead we can disable the certificate check by overriding some methods. Is this true? Which are those methods? Please help. 回答1: This should be sufficient. I

How do I sign a Java applet for use in a browser?

陌路散爱 提交于 2019-11-26 10:14:49
问题 I\'m trying to deploy a Java applet on my website. I also need to sign it, because I need to access the clipboard. I\'ve followed all the signing tutorials I could find but have not had any success. Here is what I\'ve done so far: Wrote an applet in NetBeans. It runs fine in the applet viewer. Made a .jar file out of it. Created a certificate by doing this: keytool -genkey -keyalg rsa -alias myKeyName keytool -export -alias myKeyName -file myCertName.crt Signed it wtih jarsigner like this:

Can you use a service worker with a self-signed certificate?

谁说我不能喝 提交于 2019-11-26 09:38:43
问题 I have developer server that are used for testing. They have SSL self-signed certificates, which allow us to test the web application over HTTPS, but with prominent warnings that the certificates are not verifiable. That\'s fine, but I have a Service Worker that throws an error with the navigator.serviceWorker.register SecurityError: Failed to register a ServiceWorker: An SSL certificate error occurred when fetching the script. How do I use a Service Worker with an intranet testing server

Tomcat Server/Client Self-Signed SSL Certificate

断了今生、忘了曾经 提交于 2019-11-26 07:55:02
问题 I have an Apache Tomcat 6.x server running with a self-signed SSL certificate. I want the client to present their own certificate to the server so I can authenticate them based on a database of users. I have it all working based on an example I found online, but the example came with canned certificates and a pre-build JKS datastore. I want to create my own datastore with my own certs but am having no luck. How do I create a datastore for Tomcat? How do I create a self-signed certificate for