I am new to SSL so can someone explain why my address bar turns green when I'm on certain sites beginning with https:// and sometimes it doesn't even though I know the site has SSL. Maybe these two nuances are not even related, but if I go to godaddy and order a new domain I notice their address bar is green the entire time I'm on an htt...
Hi,
I am trying to connect to service which is accesssible over https and need authentication.
The error I get is:
Test method
TestProject1.UnitTest1.TestReharB2B
threw exception:
System.ServiceModel.Security.MessageSecurityException:
The HTTP request is unauthorized with
client authentication scheme
'Anonymous'. The a...
I'm trying to call the AddAttachment of the Lists.asmx SharePoint web service the below code works fine if I'm calling the web service over HTTP.
Dim img(MyFile.PostedFile.ContentLength - 1) As Byte
MyFile.PostedFile.InputStream.Read(img, 0, img.Length)
'Dim fStream As FileStream = File.OpenRead(FullFileName)
...
I want to authenticate user in WCF and getting this errror:
Test method
TestProject1.UnitTest1.TestLocalB2Bssl
threw exception:
System.ServiceModel.Security.MessageSecurityException:
The HTTP request is unauthorized with
client authentication scheme 'Basic'.
The authentication header received
from the server was 'Basic...
Since SSL is the backbone of the secure internet, (now technically called TLS), what are some good books I should read up on to understand all aspects of it?
I suppose I'll need to learn some math, some PKI books, crypto, and Sysadmin books as well. Since that isn't a complete list I'm interested in hearing what you think is wise to lea...
I've created a script in php that is used to capture the properties for users.
In order to do so, it requires calling the api to obtain those properties.
The url I set is:
$url=("http://user:[email protected]/@api/users/=$user_id/properties");
Then use file_get_contents for the xml.
When I simply type this url into the browser it ...
While using a Visual Studio "Web Reference" to a SOAP service on a server that requires an HTTPS connection I get the error:
"The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel."
The parent class of the client is SoapHTTPClientProtocol if that makes any difference.
I am not in t...
I am looking for a way to forward traffic from an application which goes to the web over port 443 to an instance of Fiddler running on my computer. Fiddler does not see this traffic while a packet trace application verified that the traffic is going out.
The application is foreign and I am not able to modify how it requests and it is n...
Possible Duplicate:
SSL and Load Balancing
Were thinking about using a software based load balancer for our website. However some apis on our website are protected by SSL. My question is say our website was netflix.com , we have 2 webservers 1 and 2. So if netflix.com domain pointed to the load balancer server, will SSL still...
say,I've a domain abc.com,I've made a self signed SSL Certificate successfully for www.abc.com,(even *.abc.com),however it doesn't work for abc.com
how to fix this issue?
...
I'm trying to connect to Facebook's graph api using the PHP-SDK. The session is being created fine, however I'm getting the following error
Fatal error: Uncaught CurlException: 1: Protocol https not supported or disabled in libcurl thrown in .../app/vendors/facebook/graph/facebook.php on line 622
I have tried to correct this by addin...
hello, I have an app that connects to an inhouse gameserver. I want to wrap the traffic in SSL to prevent hackers from sniffing the passwords and what not. Anyways, how do I go about doing that with an iphone app? I'm using CFNetwork to communicate to the server, and everything is in our own inhouse protocol instead of using http or some...
Hi,
I've scoured the web and stackoverflow for a good SSL tutorial for an iphone app. I have been unsuccessful at finding something straightforward and easy to comprehend. Any pointers on where to read more about it? I just want to see how i can have a secure connection for login and data transfer via SSL. Thanks!
...
I'm receiving a javax.net.ssl.SSLException: Received fatal alert: close_notify error on a test server, from my Axis 1.4 generated proxies, running under JBoss AS 4.2.3, JDK 1.6.0_20. The same setup works on my dev machine, albeit with JDK 1.6.0_21. The failure occurs the SECOND time a call is made to the web service.
Here comes the sc...
I have 2 servers running,
one for the dynamic content (nginx, php)
and another for login (apache2, php)
i use memcache to share the session information
i upgraded the server software and since then the session data in apache is encrypted
apache:
session::write("sessions/s53mqdhghmlrvnvjt05novt4m2","encrypted-data",0,1440)
nginx:
se...
I would like the login form of my .net web forms app to use HTTPS but want the rest of the site to use HTTP only. What is the preferred method of doing this? The is .net 4.0 on IIS 7 (Win2k08 R2)
I realize I can set up a new site listening on 443, but Session state would be lost between the sites. I don't want to track session using SQL...
I have installed libssl-dev and openssl but I get this when I install node.js:
> ./configure && make && make install
Checking for program g++ or c++ : /usr/bin/g++ ...
We've got a Windows Server 2003 running IIS 6 where we host multiple sites with different domains. www.site1.com, www.site2.com etc.
Now one of these sites need a SSL certificate, so I ordered a certificate from rapidssl.com for the domain www.site1.com.
The problem:
After installing this SSL certificate all https request to this serve...
Hi,
Currently we read from HTTPS using cURL. Everything works fine.
We set up certficates in curl as follows:
curl_easy_setopt(curl,CURLOPT_SSLCERTTYPE,"PEM");
curl_easy_setopt(curl,CURLOPT_SSLCERT,"/etc/ssl/certs/abc.cert.pem");
curl_easy_setopt(curl,CURLOPT_SSLKEYTYPE,"PEM");
curl_easy_setopt(curl,CURLOPT_SSLKEY,"/etc/ssl/certs/ab...
I would like to use Charles web proxy to work with the Android emulator in Windows. I've successfully set up charles and have started the emulator with the command line:
emulator -http-proxy 127.0.0.1:8888 @NexusOne
I can see traffic coming from the android emulator in Charles, but the problem is that I'm developing against a live AP...