Hi there,
I am currently trying to move a web site from one server to another, one of the asp pages contains some vb script that looks like this:
Dim oSearch 'AS Object
Dim strXML 'AS String
Dim strXSL 'AS String
Dim oRS 'AS ADODB.RecordSet
Set oSearch = Server.CreateObject("ETHERNET_PL.CETHERNET_PL")
strXSL = Server.MapPath("EthernetSearch.xsl")
strXML = oSearch.ServeSearch(strXSL,1,1000,0)
Set oSearch= Nothing
Set oRS=Nothing
Response.Write strXML
My knowledge of this technology is very limited, but I can say that "ETHERNET_PL.CETHERNET_PL" is a component service on both servers that does indeed have a method called ServeSearch. Also the EthernetSearch.xsl file does exist on both servers. The only problem is that on the new server I receive the following error when I attempt to visit the page:
msxml3.dll error '8000000a'
The data necessary to complete this operation is not yet available.
/EthernetSearch.asp, line 63
Where line 63 is:
strXML = oSearch.ServeSearch(strXSL,1,1000,0)
Does anybody know what would be causing these two pages to function differently on two different servers?
Thanks in advance