Click here to Skip to main content
15,890,438 members
Home / Discussions / Web Development
   

Web Development

 
GeneralMS Exchange Server SMTP Logs in vb.net Pin
ThaSaint12-May-05 2:26
ThaSaint12-May-05 2:26 
GeneralRe: MS Exchange Server SMTP Logs in vb.net Pin
JKroschel12-May-05 17:20
JKroschel12-May-05 17:20 
Generalasp .net Pin
roopps11-May-05 19:03
roopps11-May-05 19:03 
GeneralRe: asp .net Pin
Christian Graus11-May-05 19:33
protectorChristian Graus11-May-05 19:33 
Generalcreate new folder Pin
ABBASI_RA11-May-05 15:43
ABBASI_RA11-May-05 15:43 
GeneralRe: create new folder Pin
Christian Graus11-May-05 16:09
protectorChristian Graus11-May-05 16:09 
QuestionHow to tell when a redirected GET has completed Pin
andybloom11-May-05 15:28
andybloom11-May-05 15:28 
GeneralServerXMLHTTP - invalid response Pin
hiccup11-May-05 14:30
hiccup11-May-05 14:30 
Getting "the server returned an invalid or unrecognized response" error on the code listed below. The url is an asp page on my company's qa server that takes an
xml request, processes it and returns an xml response. The code works fine
at work when run from my win 2000 machine on our LAN but one of our clients
is complaining about the above error, he's using a win xp machine. I can reproduce the error if I take the code home and run it from my xp machine but I'm not a web developer so I haven't got a clue how to make it work. I searched msdn and found a few items regarding the above error, most of it I didn't understand but some of it suggested different IE security settings which I tried to no avail.

Any advice would be appreciated ...

	var SXH_OPTION_IGNORE_SERVER_SSL_CERT_ERROR_FLAGS = 2;<br />
	var SXH_SERVER_CERT_IGNORE_ALL_SERVER_ERRORS = 13056;<br />
	<br />
	//declare some vars<br />
	var url = "someurl.asp";<br />
	var oXmlHttp = new ActiveXObject("Msxml2.ServerXMLHTTP.4.0");<br />
	var domReq = new ActiveXObject("Msxml2.DOMDocument.4.0");<br />
	<br />
	//load the request<br />
	domReq.async = false;<br />
	domReq.loadXML(document.getElementById("req").value);<br />
<br />
	//set-up for posting data<br />
	oXmlHttp.open("POST", url);<br />
	oXmlHttp.setOption(SXH_OPTION_IGNORE_SERVER_SSL_CERT_ERROR_FLAGS,SXH_SERVER_CERT_IGNORE_ALL_SERVER_ERRORS);<br />
	oXmlHttp.setTimeouts(30000, 30000, 30000, 90000);<br />
	<br />
	//send the request<br />
	oXmlHttp.send(domReq);  // Get error here<br />
<br />


Thanks


Andrew Bleich
GeneralRe: ServerXMLHTTP - invalid response Pin
hiccup12-May-05 13:22
hiccup12-May-05 13:22 
GeneralDebugging IE Addon Pin
haries11-May-05 12:42
haries11-May-05 12:42 
Generalcomponents of webservices Pin
satishrg11-May-05 9:50
satishrg11-May-05 9:50 
GeneralRe: components of webservices Pin
Christian Graus11-May-05 15:27
protectorChristian Graus11-May-05 15:27 
GeneralRe: components of webservices Pin
satishrg12-May-05 3:17
satishrg12-May-05 3:17 
GeneralRe: components of webservices Pin
Christian Graus15-May-05 18:19
protectorChristian Graus15-May-05 18:19 
GeneralJavascript Object not Found error Pin
MylesOtter11-May-05 9:49
MylesOtter11-May-05 9:49 
GeneralRe: Javascript Object not Found error Pin
sprout7423-May-05 3:36
sprout7423-May-05 3:36 
GeneralSQL Injection Attacks Pin
Brendan Vogt10-May-05 20:21
Brendan Vogt10-May-05 20:21 
GeneralRe: SQL Injection Attacks Pin
Michael P Butler10-May-05 21:04
Michael P Butler10-May-05 21:04 
GeneralRe: SQL Injection Attacks Pin
Brendan Vogt10-May-05 21:12
Brendan Vogt10-May-05 21:12 
GeneralRe: SQL Injection Attacks Pin
Colin Angus Mackay12-May-05 4:44
Colin Angus Mackay12-May-05 4:44 
GeneralCreateParameter Length Value Pin
Brendan Vogt10-May-05 20:19
Brendan Vogt10-May-05 20:19 
GeneralRegular expressions Pin
Brendan Vogt10-May-05 20:16
Brendan Vogt10-May-05 20:16 
GeneralRe: Regular expressions Pin
MylesOtter11-May-05 10:14
MylesOtter11-May-05 10:14 
GeneralPHP AND JavaScript Pin
progman10-May-05 11:55
progman10-May-05 11:55 
GeneralRe: PHP AND JavaScript Pin
abhi_code11-May-05 2:11
abhi_code11-May-05 2:11 

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.