Thanks again, and my problem is solved. It turns out that there was a typo in the HTML form I was using to generate the POST request. So the request fell all the way through the router to my DefaultResource... and POST is not allowed by that resource. So the response I was getting was trying to tell me, correctly, that POST is not allowed by DefaultResource. Unfortunately, I interpreted it as saying that POST is not allowed by DiscoveryResource instead. So I was chasing the wrong problem.
And now... back to productive development! Regards, Eric ------------------------------------------------------ http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=2418725

