dev@grizzly.java.net

Re: wsdl urls

From: Oleksiy Stashok <oleksiy.stashok_at_oracle.com>
Date: Fri, 20 Apr 2012 02:22:22 +0200

On 04/20/2012 02:18 AM, gonfidentschal_at_gmail.com wrote:
> picking up on this one again:
>
> http://java.net/jira/browse/GRIZZLY-1247?page=com.atlassian.jira.plugin
> .system.issuetabpanels:comment-tabpanel&focusedCommentId=337908#action_
> 337908
>
> i noticed that instead of the 404 response grizzly now always responds
> with the wsdl for the last published http handler for inexistent
> services. same for partial path urls; when a service is under /foo/bar
> and another under /foo/baz then /foo?wsdl shows the definition of the
> last published.
>
> what works (for me) is hitting the service or wsdl url of each
> published service directly.
>
> (is any one else using this feature?)
Probably it registers one of the HttpHandlers (the last one?) as the
default for the specific context-root.
Pls. try to register some dummy HttpHandler for "/foo". Say new
StaticHttpHandler();

WBR,
Alexey.