ssl-certificate

Where is the trust store in JBOSS for a self-signed certificate?

I have created a self-signed certificate on my server. Now I need to import the certificate to the trust store so that the application . If it was Tomcat, I would put it here: %JAVA_HOME%\jre\lib\security\cacerts Where is the equivalent in JBoss? Where should I look? ...

Mutual SSL - how much authentication is sufficient?

Suppose you have a mutual SSL service, which in addition to the SSL, has application authentication. Thus, clients provide certificates (as well as servers), but the client request (e.g., REST request) also contains a username/password which the back-end application server authenticates with. In terms of the "degree" of client authen...

Creating .pem file for APNS ?

Hi all, how to create a .pem file to be stored in the hosting server for APN payload data ? thanks ...

stream_socket_client error in php

Warning: stream_socket_client() [function.stream-socket-client]: unable to connect to ssl://gateway.sandbox.push.apple.com:2195 (Connection timed out) in /home/biranchi/public_html/push.php on line 42 Failed to connect 110 I am using the certificate, and the private key $ctx = stream_context_create(); stream_context_set_option($ctx, '...

Multiple certificates for HTTPS on a software NLB'd IIS7 cluster

We're currently trying to set up a HTTPS with multiple certificates. We've had some limited success but we're getting some results I can't make any sense of... Basically we have two servers on our NLB (10.0.51.51 and 10.0.51.52) and two IPs assigned to our NLB (10.0.51.2 and 10.0.51.4) and we have IIS listening on both of these IPs with...

iPhone development: Extract SSL certificate information

I'm developing an app where I want to setup a secure channel between my app and a server. I want to extract information like CA and algorithm from the SSL certificate on the server. How do I achieve that? Can it be done with NSUrlConnection, CFNetwork or do I have to develop a whole lot myself with BSD sockets? Is there some open source ...

How to access the FirstData web service integration WSDL file?

FirstData has horrendous customer support, but I have to integrate with their Global Gateway web service for a project I'm working on. I'm simply trying to run the Axis2 wsdl2java tool according to the instructions in their manual. This basically consists of adding the keyStore and keyStorePassword JVM parameter. I've done both, but I ...

How do I create my own wildcard certificate on Linux?

Does anyone know if it's possible to create my own wildcard certificate under Ubuntu? For instance, I want the following domains to use one certificate: https://a.example.com https://b.example.com https://c.example.com ...

How to add a root cert for an given cert

A mail server uses a TLS cert without root cert, and my mail client cannot add it into the trust list. I ask the webmaster but he does not want to fix this. So, can I add a fake root cert to this cert so that I can add it to the trust zone? openssl s_client -connect x.x.x.x:995 -showcerts CONNECTED(00000003) depth=0 /C=US/ST=N/A/O=Zim...

SSL Link Not Working In IE7

Can anyone tell why visiting the below link might lead IE7 to say they can't load the page? https://www.stlmag.com/media/St-Louis-Magazine/Store/At-Home-Subscriptions/ I thought it might be an SSL redirect issue, the link before was just http:// ... and then it automatically redirected to https:// but that didn't help. I'm thinking it...

Paypal return URL

I'm programming a PHP site with Paypal integration and I've stumbled into a problem with the return url. I need users to be returned back to a specific url on my site after in the final step. I have things in my session variables that need to be moved into a database. The problem is, the Paypal secure form that has the "return" button ...

Difference Between SSLCACertificateFile and SSLCertificateChainFile

I provide SSL pages on my web server, and I have a question. What is the difference between SSLCACertificateFile and SSLCertificateChainFile? When I use SSLCertificateChainFile, I got warnings from Japanese cellular phone browser, but when I use PC browser(like IE, FF), there was no problem. On the other hand, SSLCACertificateFile didn'...

How to use HTTPS with HttpReceiveHttpRequest()?

I'm using the Windows HTTP API to process web service requests in C++ (not .NET) and everything works just fine for HTTP requests. When I change the URLs I'm expecting with HttpAddUrl to https://example.com:443/foo/bar my tests from Internet Explorer no longer connect. My code does not get called at all and the calls to HttpReceiveHttpRe...

Can anyone recommend a client ssl-certificates service?

I'm looking through a variety of SSL providers, but they all seem to provide "email certificates" which can double as client-certs that can be installed into a browser. Does any company actually sell client-certificates and know what they're talking about? ...

SSL certificate installing

Hi ALL Apach2traid+ssl+cetificate: I am trying to make a secure web page for payment and this web page is for study purpose so i thought that i may take a trial veriSign certificate so after obtaining the certificate what should i do and do it work if i am using my website only as localhost finally i was told to mke a virtual server to ...

HTTPS URL server certificate in Ruby

How to get https server certificate using Net::HTTP or HTTPClient Ruby lib? ...

HTTPS and Certificates - Follow up question

This is a follow up question on my earlier question. http://stackoverflow.com/questions/1947608/authentication-based-on-certificates-and-ip I am trying to do this for a very small company, and would like to rely only on open source resources. Please take into consideration the fact that I am absolutely (100%) new to the world of Securi...

How do I test SSL on a developer machine?

Hi, I don't want to buy an SSL certificate yet, but still want to test SSL on my development server. Is there a way to generate a temporary certificate, for testing purposes, albeit with warnings from browsers upon page load? ...

Why do I have both HTTPS and HTTP links on site, need them all secure!

I am getting the security alert: "You are about to be directed to a connection that is not secure. the information you are sending to the current site might be transmitted to a non-secure site. Do you wish to continue?" when I try to login as a customer on my clients oscommerce website. I noticed the link in the status bar goes from a ht...

IPhone app with SSL client certs

I'm building an iphone app that needs to access a web service over https using client certificates. If I put the client cert (in pkcs12 format) in the app bundle, I'm able to load it into the app and make the https call (largely thanks to stackoverflow.com). However, I need a way to distribute the app without any certs and leave it to ...