Hide Forgot
project_key: JBEPP When I try to save any option (besides adding new properties) on WSRP producer page, clicking on the save button won't do that. I have to click on it twice, to get the successful save message and actually save the data.
Link: Added: This issue is related to JBQA-5457
This is due to the follow lines being added to the listeners ProducerBean class in the WSRP admin: // bypass the rest of the life cycle and re-display page FacesContext.getCurrentInstance().renderResponse(); So we are reloading the page whenever we see a change instead of letting the save method take care of it. On the second hit, there is no change, so the listener don't get called, so the renderResponse() method isn't invoked, and the save method can be invoked as expected. Once these lines are removed, then it works as expected. Note: this will require a new version of wsrp to be released for this to be fixed (and occurs in GateIn trunk as well). Chris, do you know why those lines are in the ProducerBean class?
Release Notes Docs Status: Added: Not Required