Hi Ted,
On Feb 28, 2008, at 5:11 PM, TA wrote:
I'm not sure I follow your suggestion - if I remove the url mapping
from the
defaultAttach call, all URLs will map to the servlet/restlet and I
don't want
that because I have other servlets running the web container.
What Stephan was pointing out is that that _won't_ happen because the
container will continue to route requests to the other servlets --
even if your restlet servlet wanted to handle the other requests, it
won't ever see them.
I'm not sure, but if I had to guess I'd suggest that your problem is
that your servlet was mapped to /testServlet/* and you were trying to
request /testServlet. The containers I've used (okay, just Tomcat)
are very literal minded. Try requesting /testServlet/ or /testServlet/
somethingElse.
Rhett