Jersey Robot
Jersey Robot
* **Issue Imported From:** https://github.com/jersey/jersey/issues/3676 * **Original Issue Raised By:**@mutkur * **Original Issue Assigned To:** Unassigned
@fabriziocucci Commented I guess this is more a question for the [mailing list](https://jersey.github.io/mailing.html), but have you tried already something like [this](https://stackoverflow.com/a/46328074/3302776)?
@mutkur Commented Yes. This is what I have done to get around it. Can this be considered as an enhancement request?
* **Issue Imported From:** https://github.com/jersey/jersey/issues/3428 * **Original Issue Raised By:**@glassfishrobot * **Original Issue Assigned To:** @mpotociar
@glassfishrobot Commented Reported by khurram_kk
@glassfishrobot Commented khurram_kk said: Version 2.23.1 exactly
@glassfishrobot Commented @pavelbucek said: I'm pretty sure there is some exception logged on the server side. Can you please add it to your report? Also, reproducible testcase is always appreciated....
@glassfishrobot Commented khurram_kk said: Not a single exception, Below is the server side log, I also enabled Jersey logging *********************************************** ``` INFO: Server startup in 17087 ms Aug 22, 2016...
@glassfishrobot Commented khurram_kk said: I can also attach the picture for JCOnsole, where Jersey is showing 200 in LastResponseCode for the method, but cant find any link to upload pics
@glassfishrobot Commented khurram_kk said: ``` @POST @Path(LOGIN_VENDOR_REQ_PATH) @Produces(MediaType.APPLICATION_JSON) @Consumes(MediaType.APPLICATION_JSON) //@StepRoboticsAuthConf(rolesAllowed={UserRolesValues.VENDOR_USER,UserRolesValues.INSTALLER_USER,UserRolesValues.SALESREP_USER}) public RsRespMessageNoDb loginVendorUser(VendorUser loginReq) throws Exception { RsRespMessageNoDb returnMessage = null; logger.info("login request starts."); AuthBL authBL = new AuthBL(); returnMessage...