John C
John C

Reputation: 1835

Deployement Error in Tomcat 6.0 using Netbeans

I overwrote the project directory in workspace with a different name and since then have been seeing Document base is not a readable directory in Netbeans while deploying the application in Tomcat 6.0 . Any pointers?

Upvotes: 1

Views: 258

Answers (2)

jhurtado
jhurtado

Reputation: 8747

In your server.xml file you will find a line like this:

Context docBase="yourProject" path="path/to/yourProject" reloadable="true" source="org.eclipse.jst.jee.server:yourProject"/>

If you just overwrote the project with a diferent name you'll need to make this file consistent with your project new name and location.

Regards. JHurtado

Upvotes: 2

Piyush Mattoo
Piyush Mattoo

Reputation: 16153

If not already tried, you can undeploy the problematic application (like FirstWebApplication) if they still show up in the list of webapps.

Upvotes: 1

Related Questions