[jcifs] jCIFS NetworkExplorer example

Michael B Allen mba2000 at ioplex.com
Thu Oct 5 05:05:13 GMT 2006


On Wed, 4 Oct 2006 21:16:15 -0500
"Jonathon Simon" <jsimon at ud.com> wrote:

> And if I use http://localhost:8080/sollerasa/common/NetworkExplorer/ <http://localhost:8080/sollerasa/common/NetworkExplorer/>  (trailing slash) with the "stock" code above, I get:
> HTTP Status 404 - The requested resource (/sollerasa/common/NetworkExplorer/) is not available.

What does your web.xml look like?

Sounds like your servlet-mapping is wrong. It should look something like
the below:

<servlet-mapping>
    <servlet-name>NetworkExplorer</servlet-name>
    <url-pattern>/NetworkExplorer/*</url-pattern>
</servlet-mapping>

Mike


More information about the jcifs mailing list