nikhilbchilwant / google-web-toolkit-incubator

Automatically exported from code.google.com/p/google-web-toolkit-incubator
1 stars 1 forks source link

set logging gwt-rpc URI to a servlet-api url-pattern compatible value #243

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
logging RemoteLogger uses <moduleURL>/logging as URI. This has the side 
effect that a web application with many modules has to declare <servlet-
mapping> for each module : "*/logging" is not a valid value for <url-
pattern>. Only "path/*" and "*.extension" are supported by the servlet 
spec.

Changing the RemoteLogger URI to <moduleURL>/gwt.logging for example could 
solve this by defining a single server-side Servlet to match *.logging. It 
would be even better to be able to specify this URI as a GWT module 
parameter.

Original issue reported on code.google.com by nicolas....@gmail.com on 25 Feb 2009 at 8:45

GoogleCodeExporter commented 8 years ago

Original comment by ecc%google.com@gtempaccount.com on 26 Feb 2009 at 1:47