Hi
thanks for your replies but I am posting part of the code that is giving the problem.
**********************************************************
get_xml = Request.form("xmlfile"

'contains the physical file path
db = Server.MapPath("patentapp.mdb"

connStr = "DBQ=" & db & ";Driver={Microsoft"
connStr = connStr & " Access Driver (*.mdb)}"
Set con = Server.CreateObject("ADODB.Connection"
con.Open connstr 'dsn-less connection
If Err<>0 Then
response.write "<br><B>Error connecting to database</B>"
else
Set objXMLfile = Server.CreateObject("Microsoft.XMLDOM"

objXMLfile.async = False
If Err<>0 Then
response.write "<br><B>There was a problem with the XML"
Else
objXMLfile.Load(get_xml)'loading the xml file
If objXMLfile.parseError.errorcode<>0 Then
response.write objXMLfile.parseError.reason
response.write objXMLfile.parseError.line
response.write objXMLfile.parseError.linepos
Else
Set rs = Server.CreateObject("ADODB.Recordset"

************************************************************
This code is the opening of a page that gets the XML and loads it.
On localhost it runs fine but when run on the server(IIS) it now throws an XML Parse Error "cannot find path specified".
So is it a path problem(as EmmetA said)? I think I am doing something very very dumb.
I am really lost, please help.
Thanks a lot
satish