Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > The download of the specified resource has failed.

Reply
Thread Tools

The download of the specified resource has failed.

 
 
Haffe
Guest
Posts: n/a
 
      08-25-2005
Hi!

I'm trying to send a xml to a webside og this should response with a
xml. But at my 'send-line' it gives me an exception:

The download of the specified resource has failed.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.Runtime.InteropServices.COMException: The
download of the specified resource has failed.

Source Error:

Line 55: xmlServerHttp.open("POST",
"https://secure1.revilution.dk/api/index.php", False)
Line 56: xmlServerHttp.send(requestText)
Line 57: MsgBox(xmlServerHttp.responseXML.xml)

[COMException (0x800c000: The download of the specified resource has
failed.]

MSXML2.XMLHTTPClass.send(Object varBody) +0

My code:

Dim requestText, serverResponseText As String

Dim xmlServerHttp As New MSXML2.XMLHTTPClass
requestText = functionToXML(methodName, paramList)
xmlServerHttp.open("POST",
"https://secure1.revilution.dk/api/index.php", False)
xmlServerHttp.send(requestText)
MsgBox(xmlServerHttp.responseXML.xml)
serverResponseText = xmlServerHttp.responseText

What do I do?

Haffe

--
Sent via .NET Newsgroups
http://www.dotnetnewsgroups.com
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Very annoying error: Access to the path is denied. ASP.NET is not authorized to access the requested resource. Consider granting access rights to the resource to the ASP.NET request identity Jay ASP .Net 2 08-20-2007 07:38 PM
0x800C0008 The download of the specified resource has failed. contactrahul@gmail.com ASP .Net 1 03-03-2006 09:13 PM
Resource manager problem: naming for embedded resource. Dirc Khan-Evans ASP .Net 1 10-17-2005 12:52 PM
Can't locate resource specified - display RSS Anthony ASP General 0 02-12-2005 08:38 PM
The system cannot locate the resource specified. Error processing resource avishosh XML 2 08-08-2004 06:28 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57