1. Axis client with changing keystorefile. org.apache.ws.security.WSSecurityException: General security error (No certificates for user user1 were found... stackoverflow.comI have a problem with axis2-client inside JAX-WS web service. This JAX-WS web service is inside Tomcat container. Keystorefile is retrieved dynamically from database. When I start Tomcat I can use ... |
2. Java EE 6 and Certutil stackoverflow.comI have installed Java EE 6 with GlassfishV3. I want to use NSS tools to manage the security of the server, i.e generating certificates using certutil. However I can't find the ... |
3. get user info from a client certificate in a java web service context stackoverflow.comI'm developing a java web service, with client certificate security enabled. I don't want to add a parameter to each method with a user ID. Since the user is already authenticating ... |
4. java security problem the page requires a client certificate stackoverflow.comI have a certificate. pfx to access a webservice. I followed the steps listed on this page When looking at the xml sent is encrypted. But the server returns me the message: ... |
5. How to call a web security with message security and client certificate authentication? stackoverflow.comI need to call a web service with a java client. This service authenticates clients through certificates at the message level (Ws-Security, not SSL). It should be possible since, I can generate web ... |
6. WCF message security with certificate and both client and service signing stackoverflow.comWe are attempting to implement message security between a client and WCF service using x509 certificates. The client sends the soap security headers and the service verifies the headers as expected. ... |
7. Mutual Certificate Security in Web Services forums.netbeans.orgArmerino Joined: 09 May 2010 Posts: 5 Posted: Sun May 09, 2010 2:50 pm Post subject: Mutual Certificate Security in Web Services Hi all, I need some help ... |
8. SEVERE: java_security.expired_certificate message forums.netbeans.orgHello, I'm new to Java and Netbeans. I'm using version 6.7.1 and working through a tutorial Visual JSP project, when I try to run it I get this message SEVERE: java_security.expired_certificate ... |
9. secure web service using mutual certificate security forums.netbeans.orgkeytool -genkeypair -alias kljuc_server -keyalg RSA -validity 7 -keystore keystoreS.jks keytool -genkeypair -alias kljuc_klijent -keyalg RSA -validity 7 -keystore keystoreC.jks keytool -export -alias kljuc_server -keystore keystoreS.jks -rfc -file if_certifikat.cer keytool -export -alias kljuc_klijent -keystore keystoreC.jks -rfc -file ic_certifikat.cer keytool -import -alias kljuc_server -file if_certifikat.cer -keystore truststoreC.jks keytool -import -alias kljuc_klijent -file ic_certifikat.cer -keystore truststoreS.jks |
10. self-signed certificate for web service security? coderanch.comi've created self-signed certificate using keytool for web serivce security. But i'm unable to implement from the client side. When i'm giving "dn=localhost" it's working fine. But when i'm giving other than that it's throwing me error as : java.io.IOException: HTTPS hostname wrong: should be <192.168.2.36> I don't know what's the problem. Could any tell me where i'm wrong. In the ... |
11. How to share security certificate with the remote machines? coderanch.com |
12. Error Mutual Certificates Security coderanch.comHi... I'm new with webservices and i've tried for one week to create keystore.jks, cacerts.jks, server.cer and client.cer. I have done it, but when i run my ws_client i have this exception: Exception in thread "main" javax.xml.ws.soap.SOAPFaultException: WSS1852: KeyIdentifier value cannot be empty. Possible cause, certificate version being used does not support SubjectKeyIdentifier. I've used keytool of java 6 to create ... |
13. Problem setting up Security using JAX-WS for Signed certificates coderanch.comI am trying to setup mutual authentication between standalone java class & websphere apps server (6.1). I have been setting ssl successfully by setting system properties to set the keystore, truststore, & their respective passwords values. e.g. System.setProperty("javax.net.ssl.trustStore","clientTrustStore.key"); ... for all 4 params This absolutely worked alright till I was using self signed certificate. As soon as I installed the CA ... |
14. java.security.cert.CertificateException: Couldn't find trusted certificate java-forums.orgjava.util.Properties propSy = System.getProperties(); propSy.put("java.protocol.handler.pkgs","com.sun.net.ssl.internal.www.protocol"); System.setProperties(propSy); java.security.Security.insertProviderAt(new sun.security.provider.Sun(),2); java.security.Security.addProvider(new sun.security.provider.Sun()); java.security.Security.insertProviderAt(new com.sun.net.ssl.internal.ssl.Provider(),1); System.setProperty("javax.net.ssl.trustStore", "keystore_filename"); java.security.Provider myprov = java.security.Security.getProvider("SunJSSE"); HttpsURLConnection c; try { URL url = new URL ( rptUrl ); c = (HttpsURLConnection)url.openConnection(); //set cache and request method settings c.setUseCaches(false); //set other headers c.setRequestProperty ("Content-Type", "application/pdf"); //connect to the server.. c.connect(); } |
15. Axis Client-Including security certificates forums.oracle.com |