On an e-commerce website I maintain, I added a Facebook 'Like' button per the instructions here:
http://developers.facebook.com/docs/reference/plugins/like
I am using the iframe method:
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fexample.com%2Fpage%2Fto%2Flike&amp;layout=standard&amp;show_faces=true...
I decided to invest a few hours in trying to secure my site with SSL. Got the server running alright but have hit a wall with my PHP $_SESSION. I understand the issue of passing session ids between HTTP and HTTPS, but that's not happening here (I think). The convoluted session sequence goes something like this:
login.html:
<form act...
Hi,
I'm trying to deploy a WCF-service, but I'm having dificulties getting the final bits to work. I'm not a deployment guru in any way, so please bear with me.
I'm using a WebHttpBinding to make Ajax calls to the service using JSON, but I receive the error: "Could not find a base address that matches scheme http for the endpoint with ...
Hey,
I was wondering if When using PROXY, does SSL (through HTTPS) secure the connection from the admins of the proxy, so they will not be able to see the content?
...
Hey, all. I'm currently attempting to use PHP to transfer small files between our server and a remote FTPS (FTP over SSL) server. I'm the standard fair to get this done, ie, file_put_contents, file_get_contents, etc... with the following stream context:
stream_context_create(array('ftp' => array('overwrite' => true), 'ssl' => array('all...
Hi, I am trying to use OpenSSL function for RSA sign/verify in PHP.
When I try to do openssl_verify using my public key, I am getting this error: "error:0906D06C:PEM routines:PEM_read_bio:no start line", but the function itself works correctly (returns 0 if messages was modified, and 1 if intact). openssl_sign works fine.
How can I fix ...
hey there
Trying to get HelloWorld working via SSL. Read all those docs:
http://msdn.microsoft.com/en-us/library/system.security.cryptography.x509certificates.x509findtype.aspx
http://msdn.microsoft.com/en-us/library/ff648431.aspx
http://msdn.microsoft.com/en-us/library/ms733791.aspx
http://msdn.microsoft.com/en-us/library/ms733813.aspx...
I will ask this with an example - I have a setup, nginx, django, apache ( nginx forwards ssl requests to apache)
I have website https://www.xyz.com which has a ssl certificate associated with it and clients use it when connecting.
Lets say, I have another domain name www.abc.com, which I want to assign it to the same server as xyz.com
...
Hi all,
I would like to know if I could configure ssl between my application and a remote database server.
Oracle Database and web app on weblogic server
Thanks
...
Hello,
I try to establisch a HttpsURLConnection with:
HttpsURLConnection conn = (HttpsURLConnection) new URL(url).openConnection()
but I get an Exception:
E/JavaBinder( 901): java.lang.ClassCastException: org.apache.harmony.luni.internal.net.www.protocol.http.HttpURLConnection
But I can't find out, why. The same example is everywh...
Is there a way to pass SSL options into "rails server" (on Rails 3.0.0), using a custom Rack config or something similar? I'm trying to do two things:
enable Cucumber to run tests that involve both secure and non-secure URL's, and
make things simple for new developers, so they don't have to set up Apache and configure all the SSL/cert...
Based on your experience, how long does it typically take to get a EV SSL cert approved?
...
A customer of mine is reporting error "kCFStreamErrorDomainSSL error -9844" when trying to connect to a particular location using "stunnel" - is anyone familiar with this error or knows where I can find more information? Google turned up nothing.
...
Real quick question. Configuring a new site which will be supported by a F5 load balancer that is handling the SSL certs. The site will be mixed protocol with a few secured pages but the majority of pages will be http. Now, my understanding of F5 is it strips the protocol off and all communication with the servers occurs over http:80....
Using Apache FTPSClient to listFiles(String)....
The aplication crashes sometimes after resuming an SSL Session and then calling sslSocketImpl.startHandshake() from the Apache FTPSClient code.
I set javax.net.debug to print the ssl information...
System.setProperty("javax.net.debug", "all");
And this is what I get.
%% Client cached...
We recently switched our webapp to use SSL at the request of a very large client. We complied and everything went smooth until my IE users started emailing support about not seeing our flash graphs (XML/SWF Charts: www.maani.us/xml_charts/)
In IE8 it prompts that insecure content is being delivered, we fixed this issue by changing the f...
Hi!
I'm running GAE SDK on a windows vista laptop. It keeps reminding me to install the ssl module. I've been having great difficulty on how to do that.
I've downloaded the ssl module.
I've done 'python setup.py install' in cmd, but it just says "python is not recognized as an internal..."
I've added C:\Python2.5.2 to my PATH.
Still...
I have an application currently in the store which at one point involves displaying a modal UIWebView. The webview displays a specific webpage on which the user logs in, makes some selections, and then once they are finished the webview is dismissed. The login webpage is located at a https location.
I have read in a few places that usin...
Hello all... I have recently written a socket server in PHP that will be handling communication between an Android phone application and my PHP webserver. Due to the fact that Android doesn't natively support push style notifications we are going to be using our webserver as the middleware layer to handle our 'pushes'.
The socket se...
I would like to invite your considered opinion to help me decide between the following two origin policies for my Ajax app:
Load all my assets from HTTPS: //www.mydomain.com
Plus: Ajax is easy. No problems with Same Origin Policy.
Plus: PUT method offers large payloads.
Plus: Network error messages can be fed back to the user.
Minus:...