ssl

How to connect WebLogic jdbc data source to Oracle Database over SSL (and authenticate using certificate)?

WL=WebLogic 10.3 database=Oracle Version 10.2.0.2.0 - Production I have the database and WL up. I can create a new WL JDBC data source that successfully authenticates to the database, but how to do this using SSL? I've followed the following documentations: How-To Configure and Use Oracle JDBC Driver SSL with Oracle WebLogic Server S...

UDP packet encryption

This appears to be reasonably trivial if using the ssl module for TCP communication, but how would encrypted communication be done via UDP? Can the ssl module still be used? if so, what steps would need to be performed for the client and server to be in a position where data can be sent to-and-fro as normal? ...

Storing SSL sessions in Android

Im pretty new to SSL, however in making an SSL request, how would i prevent the "handshake" happening each time i call an HTTPS url in Android. Is it possible to just store the SSL session? ...

Weblogic web service + SSL

Hi thanks for reading. i currently have a webservice deployed on a weblogic 10.3 server whit 1-way ssl enabled, the problem is that wen i test the webservice using the weblogic's test page, i get this error: avax.net.ssl.SSLException: Handshake has been interrupted, can't find trusted CA certificates file trusted-ca.pem but all the cl...

Calling Reporting Services Web Service from SharePoint using Kerberos over SSL

I have multiple SharePoint web parts that needs to access Reporting service 2008 which is integrated into MOSS2007. There are 2 end points that I will be using: ReportService2006 and ReportExecution2005. I would like to put all the logic that calls the web service in one common assembly (class library) which will be packaged within the...

How to conduct smtp with ssl inside a prompt?

If without ssl,I can simply: telnet mx 25 EHLO xxxx ... But when it's encrypted with ssl,is it still possible to type these commands step by step? ...

Movable Type Administration to https subdomain

Hello, I have working https protocol on my subdomain. I would like to change current url: http://www.mydomain.com/cgi-bin/mt/mt.cgi to https://ssl.mydomain.com/ How can I do it? Could anybody help me step by step? I am beginner in this field. I tried Google and also Movable Type forum, but no answer so far. Maybe this could help y...

Where (at which point in the code) does pyAMF client accept SSL certificate?

Hello, I've set up a server listening on an SSL port. I am able to connect to it and with proper credentials I am able to access the services (echo service in the example below) The code below works fine, but I don't understand at which point the client accepts the certificate Server: import os.path import logging import cherrypy fro...

TrustFailure: The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel.

Hi there, I'm using .netCHARGE (http://www.dotnetcharge.com/) to process credit cards and I'm getting the error: "TrustFailure: The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel." everytime I try to process a payment. I read through previous SO posts that match this error and ha...

ASP.NET MVC switching between secure to none secure content.

After logging to the mvc site using a secure connection (https), calling actions using https connection show up with the user logged in but calling actions using http it bahaves as if user didn't log on. Since I need to use a virtual directory for https connections(and can't use that directory for http connection) Https links start wi...

HTTPS connection to exactly one site (Android)

Hello, I'm creating an app for the Android platform which will connect with just one site using https. It is essential that it won't be able to connect to any other sites, even with valid SSL certificates. I want it to be resistant to every form redirection (for example to site pretending to be the one I need to connect with) or other "...

HornetQ Client in C++ which supports security?

Is there a SSL enabled client for C++ that can interact with HornetQ? The only client I could find is ActiveMQ-CMS from the Apache ActiveMQ project, which can use Stomp. But this client up to now does not seam to support SSL or any other form of security/authentication. ...

Check for SSL when hosted in Rackspace (Mosso) Cloud

I am using Request.IsSecureConnection to check for SSL and redirecting where appropriate. When running my asp.net website on Rackspace's cloud, the server is running behind an SSL cluster, so IsSecureConnection will always return false. The same goes for checking whether the url contains "https://", always false, checking the port, etc...

technique to support urls with https between local and live development

When I deploy my application, certain urls have to be https. How can I develop locally and deploy, while being able to support urls that have https? Is the only way wrapping the url with a function, that determines if you are local or live? (this is a .net mvc app) ...

Going from http to https, what issues do I have to handle?

My site has https sections (ssl), and others are regular http (not using ssl). Are there any issues going from ssl to non-ssl pages? Some times that user will click on a link, which will be ssl, then click on another link that leaves https to http based urls. I understand that when on a ssl page, all images have to be also served usi...

How to troubleshoot TLSv1 handshake problem with mutual authentication?

Hello: I am having a heck of a time getting my web service client talking to my web service which is protected by requiring client certificates. I am using JAX-WS 2.1 and the web service request first goes through IIS before being forwarded on to JBoss following authentication. I am using a self-signed certificate for the client certi...

Setting Grizzly's keystore to use a jks in a jar

I'm trying to use com.sun.grizzly.SSLConfig.setKeyStoreFile() to set SSL for Grizzly. It only takes a String as input (not InputStream or File). I want to use a jks file that is within a JAR file. If I pass a string for a jar path (eg C:\dir\my.jar!\resources\my.jks), it fails. Other than just unzipping the file from the JAR, how can...

django.core.mail send_email with secure connection

Hi Im trying to use django send_email function but it fails on authentication. In fact, django returns me message along the lines - ssl not found in this django installation. I do have ssl-1.15 on my pythonpath and i could import it without errors. So the problem is probably with the certificates, right? Now is there some kind of tut...

SSL: How are certificates protected against man in the middle attacks?

My question is about certificates specifically in ssl but I think the questions should apply to all certificates. I have included the SSL procedure for the sake of clarity. In SSL this is what I understand to be the procedure: 1)Client sends supported crypto algorithms sends client nonce 2) Server chooses (and sends) a sy...

SSLv3 communications in Objective-C

I would like to know if Iphone OS supports SSLv3 network communications ? Are there any tutorial or how to on the web ? I didn't find anything about this! Which framework/library should I use ? Thanks ...