Ask a Question related to ASP.NET Security, Design and Development.
-
DotNetJunkies User #1
Re: Problem using HttpWebRequest/HttpWebResponse with HTTPS
Did you ever solve this problem?
If so, please can you let me know how as I am trying to do something similar.
[email]richard.beacroft@warnerbros.com[/email]
Regards,
Rik
---
Posted using Wimdows.net NntpNews Component -
Post Made from [url]http://www.DotNetJunkies.com/newsgroups[/url] Our newsgroup engine supports Post Alerts, Ratings, and Searching.
DotNetJunkies User Guest
-
HttpWebRequest and HttpWebResponse
Hi all: My old application used to POST xml to a remote server using HttpWebRequest from within an aspx page. The process worked like a charm... -
HttpWebRequest, impersonation and DefaultCredentials problem.
I'm trying to create a HttpWebRequest object that uses the current logged in user's credentials. It's currently setup with: <identity... -
HTTPWebRequest + Cookies problem
Hi, In continue to another post which I have in this news group, I was able to find out some more details about the problem What is my... -
HttpWebRequest Session Length Problem
I need to send multiple WebRequests in the same session. The problem is I send the first request, which is a login request, receive the reply that... -
System.Net.HttpWebRequest with HTTPS
I am using the System.Net.HttpWebRequest object to POST data to an HTTPS web page. Other than prefixing the URL with "HTTPS://", do I need to do... -
DotNetJunkies User #2
Re: Problem using HttpWebRequest/HttpWebResponse with HTTPS
check out [url]http://normanheadlam.blogspot.com/[/url]
---
Posted using Wimdows.net NntpNews Component -
Post Made from [url]http://www.DotNetJunkies.com/newsgroups[/url] Our newsgroup engine supports Post Alerts, Ratings, and Searching.
DotNetJunkies User Guest
-
DotNetJunkies User #3
Re: Problem using HttpWebRequest/HttpWebResponse with HTTPS
You must add the https cert from the given url to the request. At first store the cert on disk (e.g. via IE).
Then:
oCert = X509Certificate.CreateFromCertFile("AT3.cer");
m_oRequest.ClientCertificates.Add(oCert);
I hope it helps
---
Posted using Wimdows.net NntpNews Component -
Post Made from [url]http://www.DotNetJunkies.com/newsgroups[/url] Our newsgroup engine supports Post Alerts, Ratings, and Searching.
DotNetJunkies User Guest



Reply With Quote

