Looks for Database File in C:\Windows\System32

  • Thread starter Thread starter JT
  • Start date Start date
J

JT

I created a web service on my local machine then created another application
to use the web service per my school book. Now when I open the page that
connects to my web service it gives me this error.

Server was unable to process request. --> Could not find file
'C:\WINDOWS\system32\TaraStore.mdb'.

Its looking for the database in the wrong place.
Where do I go to change the default location for ASP to look for this
database? Or, is there something I am doing wrong to begin with?
 
'C:\WINDOWS\system32' is the default dir for asp.net, which is why its
looking there. in your connect string you must specify the correct path to
the mdb, or change the working dir before you open it.

-- bruce (sqlwork.com)


| I created a web service on my local machine then created another
application
| to use the web service per my school book. Now when I open the page that
| connects to my web service it gives me this error.
|
| Server was unable to process request. --> Could not find file
| 'C:\WINDOWS\system32\TaraStore.mdb'.
|
| Its looking for the database in the wrong place.
| Where do I go to change the default location for ASP to look for this
| database? Or, is there something I am doing wrong to begin with?
|
|
 
Back
Top