Click here to Skip to main content
15,901,035 members
Home / Discussions / C#
   

C#

 
GeneralRe: Which is better? (Communications between classes) Pin
Pete O'Hanlon26-Oct-06 5:21
mvePete O'Hanlon26-Oct-06 5:21 
GeneralRe: Which is better? (Communications between classes) Pin
Muntyness26-Oct-06 5:39
Muntyness26-Oct-06 5:39 
GeneralRe: Which is better? (Communications between classes) Pin
Pete O'Hanlon26-Oct-06 6:41
mvePete O'Hanlon26-Oct-06 6:41 
GeneralRe: Which is better? (Communications between classes) Pin
Muntyness26-Oct-06 7:02
Muntyness26-Oct-06 7:02 
GeneralRe: Which is better? (Communications between classes) Pin
led mike26-Oct-06 6:49
led mike26-Oct-06 6:49 
GeneralRe: Which is better? (Communications between classes) Pin
led mike26-Oct-06 5:58
led mike26-Oct-06 5:58 
GeneralRe: Which is better? (Communications between classes) Pin
Pete O'Hanlon26-Oct-06 6:39
mvePete O'Hanlon26-Oct-06 6:39 
QuestionHow to do https request and get correct Response using MSXML dll? Pin
pubududilena26-Oct-06 3:41
pubududilena26-Oct-06 3:41 
Hi All,
I need to do correct https request and get the Response Page.
So I have used Msxml.dll for this.

My code is given below:-

MSXML.XMLHTTPRequestClass lobjRequest = new XMLHTTPRequestClass();
lobjRequest.open("POST","https://test.abc.com?jsessionid="+_strSession, false, null, null);

lobjRequest.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");

string lstrRequest="Mime Type=application/x-www-form-urlencoded"+
"&user="+lstrUserName+
"&password="+lstrPassword+
"&page=%2Foctxml%2FIndexPage.jsp"+
"&title=TXT0969";
//lobjRequest.send(null);
lobjRequest.send(lstrRequest);-->Error Occured after this..



This is working fine for http request Pages.But when I execute the program ,I have taken the following error.

The download of the specified resource has failed


So Please kindly tell me to solve this problem.Can any one Please tell me to do correct https request and Get Correct Response using C#.Net?

Thanks in advance
AnswerRe: How to do https request and get correct Response using MSXML dll? Pin
led mike26-Oct-06 6:18
led mike26-Oct-06 6:18 
GeneralRe: How to do https request and get correct Response using MSXML dll? Pin
pubududilena13-Nov-06 1:56
pubududilena13-Nov-06 1:56 
GeneralRe: How to do https request and get correct Response using MSXML dll? Pin
led mike13-Nov-06 7:23
led mike13-Nov-06 7:23 
QuestionAnonymous Methods Pin
mohanlon26-Oct-06 3:23
mohanlon26-Oct-06 3:23 
AnswerRe: Anonymous Methods Pin
ednrgc26-Oct-06 4:24
ednrgc26-Oct-06 4:24 
GeneralRe: Anonymous Methods Pin
mohanlon26-Oct-06 5:32
mohanlon26-Oct-06 5:32 
GeneralRe: Anonymous Methods Pin
Pete O'Hanlon26-Oct-06 6:42
mvePete O'Hanlon26-Oct-06 6:42 
GeneralRe: Anonymous Methods Pin
ednrgc26-Oct-06 6:58
ednrgc26-Oct-06 6:58 
GeneralRe: Anonymous Methods Pin
mohanlon26-Oct-06 8:37
mohanlon26-Oct-06 8:37 
GeneralRe: Anonymous Methods Pin
mohanlon26-Oct-06 8:49
mohanlon26-Oct-06 8:49 
Questionusing stringbuilder Pin
DownBySpj26-Oct-06 3:20
DownBySpj26-Oct-06 3:20 
AnswerRe: using stringbuilder Pin
ednrgc26-Oct-06 4:12
ednrgc26-Oct-06 4:12 
AnswerRe: using stringbuilder Pin
Pete O'Hanlon26-Oct-06 6:44
mvePete O'Hanlon26-Oct-06 6:44 
QuestionStreamReader problem Pin
Tavbi26-Oct-06 3:08
Tavbi26-Oct-06 3:08 
AnswerRe: StreamReader problem Pin
Andrew Rissing26-Oct-06 3:17
Andrew Rissing26-Oct-06 3:17 
GeneralRe: StreamReader problem Pin
Tavbi26-Oct-06 20:44
Tavbi26-Oct-06 20:44 
GeneralRe: StreamReader problem Pin
Andrew Rissing27-Oct-06 3:30
Andrew Rissing27-Oct-06 3:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.