-
-
Notifications
You must be signed in to change notification settings - Fork 756
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[RestEasy] @FormParam params reset to null 2.0 RC3 . Works fine in 1.0.15 #1256
Comments
Sad to say this is still an issue with the latest build. I did some debugging it and it seems the problem is in AtmosphereFramework configureRequestRespons(AtmosphereRequest req, AtmosphereResponse res). The Problem is the call to Map<String, String> headers = configureQueryStringAsRequest(req);. That method depends on the AtmosphereRequest queryString being set. This is not set until further down in configureRequestResponse. Because of this, the headers always return as empty. |
Seems like an issue only with RestEasy. With Jersey, it works as expected. The sample use @FormParam |
OK now properly fixed. Sorry for that. |
Retested and issue has been resolved. Thank you |
I use a RestEasy implementation and pass params to the server using POST.
My Java Script Code:
Server Side Code:
Using 1.0.15 my username/password params work fine. Upgrading to 2.0 RC3 the username/password are always null.
The text was updated successfully, but these errors were encountered: