The system always locate The resource specified.
/plugins. Asp??А 165 font>
this is usually used when collecting information or statically updating a web page with XMLHTTP, and I’ve used similar errors before
set objXmlHttp = server.createobject (” microsoft.xmlhttp “) ‘is generally used in versions below msxml2.6
‘ set objXmlHttp = server.createobject (” msxml2.xmlhttp “) ‘supported by msxml3.dll+
is used instead of
, but now every error is reported.
has searched all the technical forums and search engines I know on the Internet, and there may be a variety of situations that could cause such a problem. Here is a summary:
(a) that is the most basic, your server does not support XMLHTTP or component version low, you need to download the corresponding component. This is not required by the average server, and XMLHTTP is supported in most cases, so this is a rare case.
(2) msxml3.dll file may be corrupted or the file is not authorized enough (this case is less likely), if the file is corrupted, you can download the corresponding system environment’s msxml3.dll file to replace (2003 system seems to be under c:// Windows /system32), need to close the corresponding service such as iis and so on to overwrite.
(three) fireproof or anti-virus software has disabled the corresponding port, the specific how to set it depends on different software, you can try to close the firewall or anti-virus software and then test to determine whether it is the problem.
(4) try re-registering the component. Start & gt; > Run: RegsvR32 MSxml3.DLL
(5) DNS resolution error, check your network Settings or correct DNS access
(6) check your IP filter Settings (this is not very clear)
(7) resource failure of the other party. For example, when collecting some information, the other party does not have the error that leads to program termination, which may also be the case. This error occurs when the XMLHTTP component’s Open method is called, followed by the Send method. An 8000005 error occurs when the URL parameter of the open method is not accessible. And if such an error occurs, the application terminates and cannot continue. Most programs are written like this:
Function functionName(pararm …)
Dim Http
= Set Http Server. CreateObject (” MSXML2. XMLHTTP. 4.0 “)
With Http
.open “GET”,HttpUrl,False
.Send
End With
If Http.Readystate< > 4 then
Set Http=Nothing
……
Exit function
End if
End Function
most programs use the XMLHTTP Readystate property to determine the return status from the server. This is not always the case, and many times using the ReadyState property does not actually detect errors in the program flow. When an error is encountered, the program will still be terminated. In fact, modify the above code, it is possible to achieve the process of skipping the execution of the program encountered errors, so that the program continues to run. The modified code is as follows:
Function functionName(pararm …)
Dim Http
= Set Http Server. CreateObject (” MSXML2. XMLHTTP. 4.0 “)
With Http
.open “GET”,HttpUrl,False
.Send
End With
On Error Resume Next
If Http.Status< > 200 then
Set Http=Nothing
……
Exit function
End if
End Function
When the
Send method produces an error, the ReadyState value may be 4, but the Status value must not be 200. Well, I’ve tracked ReadyState and Status’s worth to previous results many times. There may be mistakes. I haven’t found them so far.
hope the above program solution can help you!! If you have a better solution, please let me know.
, which I illustrate with msxml2.xmlhttp.4.0, is also suitable for other versions of the XMLHTTP component. To check which versions of the XMLHTTP component you have installed on your system, look under HKEY_CLASSES_ROOT in the registry.
(8) go to the server and set your IE security options (try setting the level to medium or low). Just add the domain name you want in the trusted website.
(9) I have tried all of the above methods after looking at them, but none of them worked out. So I went to Microsoft and downloaded MSXML4.0 Service Pack 2 (Microsoft XML Core Services) and Hotfix for MSXML4.0 Service Pack 2 – KB832414 – Simplified Chinese (KB832414_MSxml4.0_x86.exe) and installed it. The problem was finally solved!!
(10) if your case, I can solve the above methods, it is back, you continue to look for other possible to online, if you don’t want to continue to find you reinstall your iis or simply reshipment system (do this before you can try to restart the system to see, may probably as if lucky can use again
Read More:
- Solution to msxml3.dll error ‘80072efd’
- In IE6, “RES / C”: windows, system32, shdoclc. DLL, HTTP 403. HTM “.
- The solution of “failed to load ldlinux. C32” in Linux system
- E: unable to locate package MySQL server error solution
- error TRK0005: Failed to locate: “CL.exe”. The system cannot find the file specified.
- Solution to the error “tcnative-1.dll: can’t load amd 64 bit. DLL on IA 32 bit platform”
- Linux novice: unable to locate package error solution
- An unable to locate appropriate constructor on class solution appears
- C + + pauses the black window system (“pause”); (get ch(), getchar(), system (pause)’s connection and difference
- Solution to prompt “system group policy forbids installation of this device” in win10 system
- How to use it RegAsm.exe Register C in a development / production environment#/ VB.NET Developed DLL
- VBA “user defined type not defined” MSXML2.DOMDocument
- STOP: c000021a { Fatal System Error } the initial session process or system process terminated …
- use cin.get () instead of system (“pause”) to avoid the flash of C + + programs
- Error 1310 Error writing to file:C:\Windows\…*.dll. Verify that you have access to that directory
- Solution to the problem of no C / C + + option in the new project of eclipse
- Solution to the flash of running result of dev C / C + +
- System architecture and product design of resource scheduling platform
- How to use C # to get image format without system. Drawing. Common
- C + + uses system (“pause”) to pause black windows