https

Including Twitter Widgets.js via HTTPS

Hey all I'm having a minor problem with Mixed-content on HTTPS served pages on our site, when we include the http://platform.twitter.com/widgets.js Apparently Twitter doesn't have a valid certificate -- but hopefully I am mistaken. Do any of you have a solution to the problem. I've searched here and on google for a related problem, an...

does each subdomain on a Windows Server 2003 webserver need a dedicated IP address?

We have a remote webserver with two IP addresses. Can we put several web applications on this server organized like this? I am putting xttp instead of http because stackoverflow thinks I'm trying to add real links. xttp://www.ourdomain.com xttp://dogs.ourdomain.com xttps://securedogs.ourdomain.com xttps://securecats.ourdomain.com xttp:...

client to Apache via HTTPS. Apache to tomcat via HTTP but want the response from apache to the client as HTTPS

Scenario: Client connects to apache via HTTPS. Apache has a BalancerMember which connects via HTTP to a tomcat. Problem. the response from tomcat to apache and then to the client browser is HTTP. Would want this to be HTTPS since the client connected via HTTPS. Not sure how to do this. Any tips/guidance would be appreciated. ...

Https connection without SSL certificate.

If I use a https connection without a SSL certificate, is the connection safe? the information is encrypted? I'm a little bit confused about this =/ thanks! ...

PHP: what do I have to code to use https

Within a standard "brochure" site I have a subsystem where private data is passed back and forth in a series of pages. I have not dealt with HTTPS in PHP before and I'm not sure what I have to do. The site is done and working now without HTTPS. Can someone point me to a list of steps that I need to do, to implement HTTPS on the secure...

Redirecting an "HTTPS" to "HTTP" on Microsoft IIS

I have a website thats currently being accessed on an "https" url but the certificate is expiring soon and we do not want SSL on this website anymore so just an "http" access is fine. How do I get the requests made to https url automatically redirect to the http url? This page might have been bookmarked by people and the bookmark will st...

Using HTTPS for the client-server communication

Hi, I would like to use the HTTPS to secure the communication between my client and the server. The first encrypted communication will be used to authenticate the user - i.e. checking his/her user name and password. After the user credentials will be successfully checked by server I would like to start getting some data in subsequent...

Make a HTTPS request through PHP and get response

I want to make HTTPS request through PHP to a server and get the response. something similar to this ruby code http = Net::HTTP.new("www.example.com", 443) http.use_ssl = true path = "uri" resp, data = http.get(path, nil) Thanks Wa'el ...

Set up https on the localhost.

I have an error occuring on a page that only happens when I access the page through https. I need to configure https on my local machine for testing but am not sure how to go about it? EDIT. Using IIS. Sorry for not including. ...

WCF service returns 404 over https but not http

I'm migrating an existing service from HTTP (Dev/UAT) to HTTPS (Production), and I'm having trouble with the configuration. Here is the system.serviceModel section of my web.config: <system.serviceModel> <behaviors> <serviceBehaviors> <behavior name=""> <serviceMetadata httpGetEnabled="true" /> <se...

What could cause socket ConnectException: Connection timed out?

We have a Webstart client that communicates to the server by sending serialized objects over HTTPS using java.net.HttpsURLConnection. Everything works perfectly fine on my local machine and on test servers located in our office, but I'm experiencing a very, very strange issue which is only occurring on our production and staging servers...

Secure connection using SOAP

I need to call a .NET SOAP webservice in a secure way. It must be secure in such a way that others can't call the WebService methods, and also it should not be possible for "the middle man" to understand the content of the messages. The caller will also be a .NET webapplication installed on another IIS. I can design the webservice metho...

Https Implementation in asp.Net

How i can implement https login in asp.net and C# ...

Why should i use ssl?

I'm running a dating site and not using SSL at the moment. I've noticed major sites like facebook and twitter do not use https for login but just use plain old http, is there really any advantage to https-ing my site or it is only for cc transactions or so ? thanks in advance. ...

How does my browser convert my http request to https?

Friends I want to know for when a secured hosting is done, we require an unique ip address to associate our SSL Certificate to it. Also, I kinda read in one tutorial that when a browser requests for a secured conncetion then all the SSL process initiates. But how does a browser request for a secure connection. Don't we just write www.cha...

Login with HTTPS to htaccess protected directory

Hi! the app i am currently building needs to perform a login with username and password. I am using the DefaultHttpClient to execute the request and setting the username and password as credentials. the server expects a htacces-login. The Result i get is not the Logintoken i hoped for. Instead it returns an Errormessage. Can anybody tell...

mod_rewrite and server environment variables

Hi Guys, The setup I have is as follows: I have one Apache server acting as a URL rewriting engine (SERVER1). I have a second server (Apache too) which runs a web application (SERVER2). First tries to authenticate users. Part of the authentication protocol involves a lot of redirection between that application server and the authen...

Amazon widget and SSL

Hi, I'm trying to embed an Amazon "Recommended Product" widget into a website. We use SSL across all pages on the site. Unfortunately, the Amazon widget by default is embedded using a simple IFrame and although the source for the IFrame can be https://, the images and links within the IFrame are always http:// IFrame sample code <ifr...

Are the HTTP methods different in 1.1 and 1.0?

Greetings all, I've been told by co-workers that the GET method is different in HTTP 1.0 and 1.1. The way it was explained to me was that in HTTP 1.0 GET does not have a body, ergo you cannot add additional information in the body. All of the variables have to be specified in the URI as CGI type variables. However, in HTTP 1.0 GET all...

java https:// requests: HTTPclient or (command-line + curl)?

I need to make some requests with cookies to an https:// URL. I know how to do it from the command line with cURL, and would like to automate it with Java. I'm looking at HTTPClient and am getting utterly confused. It seems like it would take a lot of grungy programming. Is there any reason I should continue to pursue this line of effor...