Click here to Skip to main content
15,867,568 members
Everything / HTTPS

HTTPS

HTTPS

Great Reads

by Lee P Richardson
This blog entry looks at what certificate pinning is, why you'd want it, and how to implement it.
by Sander Rossel
The last in a series on MEAN web development.
by Alexandros Pappas
Example of a self hosted WCF service over HTTPS with transaction
by gfazzola
In this article I will explain the implementation of an infrastructure to host and manage windows services in a practical and interactive way.As a practical example of the solution will be implemented a dynamic ip update client of DucDNS

Latest Articles

by Jason Sultana
A look at some injection-style vulnerabilities
by Illya Reznykov
PowerShell script which copies certificate to another storage
by Alexandros Pappas
Example of a self hosted WCF service over HTTPS with transaction
by gptankit
An approach to making better use of cluster error feedback

All Articles

Sort by Score

HTTPS 

5 Feb 2018 by Lee P Richardson
This blog entry looks at what certificate pinning is, why you'd want it, and how to implement it.
21 Sep 2015 by Sander Rossel
The last in a series on MEAN web development.
27 May 2019 by Alexandros Pappas
Example of a self hosted WCF service over HTTPS with transaction
21 Jul 2012 by woutercx
Suggestion:T...
22 Jul 2012 by JF2015
This here is one simple approach. Hopefully it helps:Private Sub button1_Click(sender As Object, e As EventArgs) Dim res As String = textBox1.Text.Replace("http:", "https:") System.Diagnostics.Process.Start(res)End Sub
18 Sep 2013 by pasztorpisti
I've done this on client side only by specifying the list of accepted certificates. I've never tried to do this what certificate hash, I don't know whether the java api allows you to do this or not. If you have the certificates then you can specify them as trusted:...
15 Feb 2015 by Kornfeld Eliyahu Peter
If HTTPS used that means that under (before) the HTTP transfer there is a secure layer (SSL or TLS). These methods are using a public/private key pair to make the encryption possible. The method ensures that no-one sitting on the lines can read the transferred data... (HTTPS[^]).If you are...
28 Sep 2023 by OriginalGriff
You will have to go back to the site you got the API from and look / ask there: there is no "single rule" to handle logins that all API's must use.
15 Jun 2012 by Reishabh_Saxena
Hi all,I want to get the client IP address in a WCF Service hosted using HTTPS 443 bindings. I am getting the Host IP address by below code.private string GetIP(){ OperationContext context = OperationContext.Current; MessageProperties prop = context.IncomingMessageProperties; ...
15 Jun 2012 by Stephen Hewison
There doesn't appear to be a reliable way to get the client IP for a WCF call using .Net 3. In .Net 3.5 you can and it's done exactly how you've described in your question.If your client IP is on the same network you should be able to get the IP. But if it's not it's important to remember...
17 May 2013 by GAJERA
Hi AllI have to trace the HTTP traffic .It work without Https. I try for the https, it successfully get the response via Sslstream through the certificate. When i forward ssl response for the relay but it doesn’t getting the response.Please let me how to relay SSL response?Please check...
30 May 2013 by Mahesh Bailwal
As long as WCF service is exposed through http protocol, client can consumed it through http protocol. But if client want to consume WCF service only through https protocol in that case you need SSL.
30 May 2013 by Tadit Dash (ତଡିତ୍ କୁମାର ଦାଶ)
Mahesh is Correct.If you want to explore and know how to enable SSL, then follow the below articles.1. [MSDN] How to: Configure an IIS-hosted WCF service with SSL[^].2. Seven simple steps to enable HTTPS on WCF WsHttp bindings[^].
17 Dec 2013 by BillW33
As CPallini said the Wikipedia article is a good place to start, you should also learn to use Google, the first few hits would give you the answers you are looking for. Anyway, read this article[^] for an explanation of the Deflate algorithm. There is some example code of the Deflate algorithm...
29 Sep 2015 by indyarock
Can I use other than 443 port for SSL communication in AZURE ?eg: ServiceDefinition ...
29 Sep 2015 by Leo Chapiro
Short answer: yes, you can!Long answer comes here: Can I use another port other than 443 for SSL communication?SSL is in no way tied to a single port value; in fact, as a protocol, it can be used over any transport medium, as long as that medium provides a bidirectional stream for...
12 Mar 2016 by Serkan Onat
when you use raw sockets to implement a protocolfor HTTP you need to follow the steps belowNote : i will use code parts from the sample link you have provided (without testing myself)first find target end point ,you need an IP address and port (default 80 for HTTP) can also be 8080...
10 Dec 2016 by gfazzola
In this article I will explain the implementation of an infrastructure to host and manage windows services in a practical and interactive way.As a practical example of the solution will be implemented a dynamic ip update client of DucDNS
5 May 2017 by Wessel Beulink
You have an error on your namespace you are using a fixed url: _ if you used dynamic the url should be: _ You should use dynamic url binding or change the...
18 Feb 2018 by RickZeeland
It's hard to find good advice if you are a .NET developer, things are extremely unclear and complicated, especially how to handle certificates. So I think it's best to avoid this on the development side and just use HTTP protocol. Let the web guys manage some sort of "reverse proxy server"...
25 May 2018 by gptankit
An approach to making better use of cluster error feedback
20 May 2019 by Kschuler
My coworker figured it out. Turns out our machines had defined a minimum key length that wasn't small enough for the third party that we are trying to hit. We had a min of 2048 and they were expecting 1024. It can be fixed by changing/adding the following registry setting: ...
23 Sep 2020 by Richard Deeming
This would require the attacker to have a valid certificate for the domain they're trying to intercept. There are generally two ways this can happen: A rogue or compromised CA. This tends to be caught fairly quickly, and that CA will be booted...
23 Nov 2020 by Richard Deeming
Start by making line-reader work with await: node.js - Nodejs - read line by line from file, perform async action for each line and reusme - Stack Overflow[^]: import lineReader from 'line-reader'; function readLines(filename: string,...
12 Mar 2024 by Jason Sultana
A look at some injection-style vulnerabilities
N 24 Mar 2024 by Pete O'Hanlon
What you haven't told us is what you are running this code from. If you are running it on Windows 11 then, chances are, you have TLS13 enabled. This is not supported on Windows Server 2012 R2. To test this, remove the ServicePointManager code,...
16 Nov 2021 by saxenaabhi6
I got a website working on http and https bothbut mywebsite.com/xyz.svc only works with http not with https.solution tried:added binding below: ...
19 Oct 2011 by RaisKazi
Have a look at similar Question-Answer threads below.http://stackoverflow.com/questions/363285/https-with-wcf-error-could-not-find-base-address-that-matches-scheme-httpshttp://weblogs.asp.net/srkirkland/archive/2008/02/20/wcf-bindings-needed-for-https.aspx
20 Oct 2011 by Mark Salsbery
Also, if hosting on IIS you need to make sure your site is configured for SSL...How to Set Up SSL on IIS 7[^]
9 Mar 2012 by AZ Rescuer
I'm using GNU TLS library for HTTPS GET/POST but it gives glibc detected: realloc(): invalid next size exception when gnutls_global_init() is called. Backtrace showed that gnutls_global_init() called _gnutls_ext_register() which then called realloc() and returned this exception. How to avoid...
17 May 2012 by SASS_Shooter
What Microsoft does not make clear is that you cannot use private certificates for authentication on an SSL connection. As I recall (my memory is foggy) there are two steps to the deployment. The first is defining to IIS and for that you can use a private certificate (using makecert). For...
17 May 2012 by Randy Kroeger
I had spoken with a coworker and they mentioned that I would not want client certificate for this implementation. So, I reverted my code. The error I am getting is: [System.ServiceModel.EndpointNotFoundException]: {"There was no endpoint listening at...
18 May 2012 by SASS_Shooter
You cannot have an HTTPS address for you WCF service without a client certificate. Without the certificate you are bound to http as your protocol.An alternative approach is to devise a scheme where the client computes a token and embeds the token in the header of the message. Then you...
20 Jun 2012 by soumyakar
We have setup an asp.net application under the Default Web Site root with http and https bindings configured on 80 and 443 port. When we are trying to redirect to an https url from a http url, the server responds with a 302 found with the location pointing to the http url of the target...
16 Jul 2012 by mekoloko
Hi!My situation:I have a Silverlight application that needs to be connect to the service using https and uses a certificate to validate the security (now I have a myself created one, but afterwards it will be bought to a company). I am not able to know how to configure the client and the...
16 Jul 2012 by darshan_ur
Hi,Please find configuring of web.config in bellow link:http://blogs.msdn.com/b/imayak/archive/2008/09/12/wcf-2-way-ssl-security-using-certificates.aspx[^] Regards,Darshan.
8 Aug 2012 by footballpardeep
i want to create a https://anywebsite.com by using asp.net with c#, using visual studio 2010, is it possible, if yes then how.(Suggest any simple way).
8 Aug 2012 by Christian Amado
You can develop your site normally. In the web.config you must add this in your forms section:
10 Aug 2012 by ankitrishi8584
Hi Friends,I would really appreciate for any kind of advice!!Below is a code I am using to make an API call and its not working properly.Actually the ajax part is not working$('#mainContainerMainPage').append('
13 Aug 2012 by Christian Graus
You are creating a link, and then making an ajax call. your link does not make an ajax call. have you looked at the error data passed in to the browser from your AJAX call, assuming there is an error ?
14 Sep 2012 by spyterweb
I have a silverlight app that is connecting to a WCF self hosted service. Originally it was just using HTTP and it worked fine in and out of browser. I recently added Transport security for SSL and it its using a self signed certicate created by makecert. The CA is added to my trusted CA's list....
14 Sep 2012 by Sandeep Mewara
Follow the following article and see if it helps: Silverlight 4.0 - Calling Secured WCF 4.0 Service hosted with SSL and Self-Signed Certificate[^]
3 Dec 2012 by André Kraak
SSL strip is a hacking tool, I do not think you should expect any help from us.
5 Dec 2012 by Hiteshforu2007
One thing is for sure that since you have to access the web from a windows application, you will have to make use of the Browser control in your application. Here the user can sign into the respective websites like Google, Yahoo, etc. Note that you might also have to use some APIs exposed by...
6 Dec 2012 by AnkitGoel.com
i suggest you not to try this. firstly, this is illegal as per yahoo and gmail policy. Second, they won't let you implement such a program, the only way is a hack which i don't think is possible. You can only use gmail and yahoo login in your application but can't implement sign-up.
19 Dec 2012 by sreeCoderMan
hi friendsthere is a item template in my gridview where in item template there is a textbox..in textbox some values are displaying but not from database it can be changed dynamicaly by the user my question is how to get the values inserted by the user in each row and display in...
20 Dec 2012 by VivekDuddempudi
Build the Item Template dynamically or Read the text box values and id from java-script and save it hidden fields then navigate to required page