Hello all,
The hardware staff change a server during the weekend. they re-install everything. They have done a great job...and they re-install FoxPro 9 and sp 2. today everything seem to work good.
But, when I start foxpro. I receive a error in the task panel manager.
0: Class definition MSXML2.DOMDOCUMENT.4.0 is not found.
So I double check on the web ...
And each XML that we suppose to receive within foxpro are now generate error.
this is the original lines :
so in a rush ! I replaced all problematic program with :
Now ... it's look like functional ...
What do I have to do to fix this error in foxpro, is it critical ?? ... and most important ... if I patch with something ...is this will affect all the programs again?
If you have any suggestion/ comments ?
thanks
Martin
The hardware staff change a server during the weekend. they re-install everything. They have done a great job...and they re-install FoxPro 9 and sp 2. today everything seem to work good.
But, when I start foxpro. I receive a error in the task panel manager.
0: Class definition MSXML2.DOMDOCUMENT.4.0 is not found.
So I double check on the web ...
And each XML that we suppose to receive within foxpro are now generate error.
this is the original lines :
Code:
xmlDoc = Createobject("Msxml2.FreeThreadedDOMDocument.4.0")
xmlDoc.LoadXML(Request.Form())
lcXML = xmlDoc.XML
so in a rush ! I replaced all problematic program with :
Code:
xmlDoc = CREATEOBJECT("Msxml2.DOMDocument.3.0")
xmlDoc.LoadXML(Request.Form())
lcXML = xmlDoc.XML
Now ... it's look like functional ...
What do I have to do to fix this error in foxpro, is it critical ?? ... and most important ... if I patch with something ...is this will affect all the programs again?
If you have any suggestion/ comments ?
thanks
Martin