I'm using the code below (needs to be .Net 2.0) to connect on a UAT server to a customer FTP server to up/down load files. I need to connect over port 990, using a self signed certificate supplied by them. I've got the firewall rules amended to allow connection to the URI on port 990 from our UAT server.
However (! :) ) I get a timeout ...
I'm starting to write a small web application and have started thinking about securing login (only used for administration).
If I could, I'd install a CACert or self-signed SSL certificate, since for now I'll be the only one logging in, but my host isn't too accommodating.
Are there any reasonable options for securing the site without ...
Hi folks,
I read all posts on HTTP over SSL. So far, I know how to get the data securely in a Web form. But I miss the part of recover and keep the data in the same way.
I need in my Website a form to collect sensible data from customers (may be also credit cards numbers for booking, but no credit card authorization process is required...
Ok, I'm using pen for load balancing. My apache servers see the remote IP as the IP of the load balancer. I need the apache server to be able to see the IP address of the client for various reasons. I can use X-Forwarded-For to get that out of a non-encrypted page, but it's not part of an SSL page...
So, not knowing Ajax, I'm wonderi...
Hi All,
I'm in a situation where I need to deploy around 200 SSL Certificates to various devices around our Agency (HP iLO - such joy they bring...). At present I have a powershell script that obtains a CSR from the iLO Device, but I now need to be able to sign this with our CA in an automated manner so I can pass back to the script and ...
HI there,
So I followed this tutorial: http://www.tc.umn.edu/~brams006/selfsign%5Fubuntu.html
step by step in installing a Thawte cert... however on attempting to restart apache I get the following:
Restarting web server apache2
[Mon Aug 31 14:20:23 2009] [warn] NameVirtualHost *:443 has no VirtualHosts
httpd (pid 10117?) not running...
I'm using HttpClient 3.1 to talk to a remote server through a proxy via HTTPS and client certificate authentication. This has been working just fine for a couple of weeks now, until I started experiencing SSLHandshakeExceptions recently.
I assume the root cause lies with the remote server (since I haven't changed a damn thing), but I n...
Hi there.. does anyone know the command to determine if OpenSSL and mod_ssl are installed on apache2?
Regards,
Fiona
...
I have a WCF client and service using HTTPS over the wsHttpBinding.
One common setup has the client and server components on the same machine. The client has to set the endpoint address to include the server's machine name, rather than localhost for SSL reasons i.e. https://mymachine/myservice/service.svc
The problem is, that the defau...
Hello,
NOTE: I am aware of the SVN relocate switch, I just need to know if it will be necessary as we don't have a "test" svn server setup.
We need to change the port on which SVN runs on. It is obvious that the scripts, clients, etc connecting to this new non-standard port will need to update their connections strings.
A concern cam...
I get the following error when attempting to connect to a web service via SSL.
javax.xml.ws.soap.SOAPFaultException: Unconnected sockets not implemented
...
I need to use web-service based on SOAP and WSDL. SOAP (https) use login, password and certificate to auth. Example on PHP:
<?
...
$client->authtype = 'certificate';
$client->decode_utf8 = 0;
$client->soap_defencoding = 'UTF-8';
$client->certRequest['sslcertfile'] = 'path_to_cert.crt';
$client->certRequest['sslkeyfile'] = 'path_to_priva...
On XP, I'd like to use Postmodern in Lispworks to use the database on
a server via SSL.
It looks like CL+SSL has a problem with setting up a unilateral SSL
connection. Lispworks works fine. Is there a way to get Postmodern to
use the socket set up by Lispworks instead of one by CL+SSL? Or is
there a version of CL+SSL which can make a un...
The site needs to be accessible both from HTTP and HTTPS (in case the client wants the form submissions to be secure or not)
The site is hosted in IIS6 and ideally I'd like to be able to just have one website in there and it can handle both http and https..is this possible?
alternatively i was thinking maybe creating a "secure" subdire...
I have an application that is working as a proxy using QTcpSocket to intercept HTTP requests. I'm trying to extend that to work for HTTPS as well, but it seems that it's not working how I anticipated. Using QHttp is not possible for me due to the uniqueness of the application.
Currently, I have something like the following:
serve...
In Lispworks on XP when I do:
CL-USER 489 > (cl+ssl:make-ssl-client-stream (cl+ssl:stream-fd
standard-output))
I get:
Error: A failure in the SSL library occurred on handle #. (Return code: 1)SSL error queue:
error:140C5042:SSL routines:SSL_UNDEFINED_FUNCTION:called a function you
should not call
Is this something I'm doing wrong?
...
Hi,
I have a fla (using ActionScript 3.0) I am compiling in Flash. I am using URLRequest and URLLoader to access a http webservice.
var loader:URLLoader = new URLLoader();
var request:URLRequest = new URLRequest("http:test.webservice.com");
try {
loader.load(request);
} catch (error:Error) {
trace("Unable to load requested...
I see there is a :user_ssl option in attachment_fu which checks the amazon_s3.yml file in order to serve files via https://
In the s3_backend.rb you have this method:
def self.protocol
@protocol ||= s3_config[:use_ssl] ? 'https://' : 'http://'
end
But this then makes it serve ALL s3 attachments with SSL. I'd like to mak...
I want to protect the login form of my Rails application using HTTPS. After a bit of a uphill struggle I now have the SSL certificate installed and Apache/Passenger set up correctly.
My application uses SSL Requirement and RESTful Authentication in combination for the login form. I've noticed using Firebug that the login credentials are...
I currently have a wildcard SSL certificate running on IIS 6 and needs to be renewed. The new certificate bit-strength is now 2048 (the current one that needs to be renewed is 1024). Is there any easy way to get a certificate request file that is 2048 bit when renewing from a 1024?
I don't see the option to change bit strength for ren...