I have a jnlp application which accepts rest parameters.
Examples:
- localhost:8080/myApp/rest//jnlp/Client
- localhost:8080/myApp/rest//jnlp/Client?id
- localhost:8080/myApp/rest//jnlp/Client?id=
Example 1 and 2 work fine. However, how can I react on the last case? I can run it without parameter, with id but not with id=. That gets me a WebApplicationException. What could I do to allow the third case?