Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Error 10855, Severity: 20, State: 1

Status
Not open for further replies.

chester27

IS-IT--Management
Apr 29, 2002
208
GB
Need some help on this if possible. Have an application that uses a DB on SQL 2005. Error reported by App is that it failed to load msxmlsql.dll. Have trawled net and found all hotfixes ie but nothing worked.

I used SQL profiler and it get "Error 18055, severity 20 state 1 Exception %d, %d occurred when the server tried to reset connection %d Because the Server cannot recover from the failure to reset the connection"

Thanks in advance
 
The application code refers to an interface Microsoft.XMLHTTP

There are different versions of this interface in the different msmxl.dlls that are released by Microsoft

the reference in the registry for this interface was: %SystemRoot%\Msxml.dll with a Progid of Microsoft.XMLHTTP.1

I had to change these references to:

%SystemRoot%\system32\msxml3.dll with a Progid of Microsoft.XMLHTTP.1.0

The full registry key references amended are:

[HKEY_CLASSES_ROOT\CLSID\{ED8C108E-4349-11D2-91A4-00C04F7969E8}\InProcServer32]
Default value set to %SystemRoot%\system32\msxml3.dll

[HKEY_CLASSES_ROOT\CLSID\{ED8C108E-4349-11D2-91A4-00C04F7969E8}\ProgID]
Default value set to Microsoft.XMLHTTP.1.0
 
Are you using MSDE2000?

-George
Microsoft SQL Server MVP
My Blogs
SQLCop
"The great things about standards is that there are so many to choose from." - Fortune Cookie Wisdom
 
It's SQL 2005 and this was the fix, nothing to do with SQL as such.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top