Openbravo Issue Tracking System - Openbravo ERP |
View Issue Details |
|
ID | Project | Category | View Status | Date Submitted | Last Update |
0037238 | Openbravo ERP | A. Platform | public | 2017-11-07 10:50 | 2018-01-03 12:39 |
|
Reporter | gorkaion | |
Assigned To | caristu | |
Priority | urgent | Severity | minor | Reproducibility | have not tried |
Status | closed | Resolution | fixed | |
Platform | | OS | 5 | OS Version | |
Product Version | | |
Target Version | | Fixed in Version | 3.0PR18Q1 | |
Merge Request Status | |
Review Assigned To | alostale |
OBNetwork customer | No |
Web browser | |
Modules | Core |
Support ticket | |
Regression level | |
Regression date | |
Regression introduced in release | |
Regression introduced by commit | |
Triggers an Emergency Pack | No |
|
Summary | 0037238: OBMessageUtils class fails generating the vars when there is no Request |
Description | When a java process is executed without any request. For example a background process that implements the Process interface. The OBMessageUtils fails to generate the exeception message if it needs to load a VariablesSecureApp instance.
The problem is that it is loading the vars using:
final VariablesSecureApp vars = RequestContext.get().getVariablesSecureApp();
Which throws a OBException in case the RequestContext has no session. |
Steps To Reproduce | Modify a background process to generate a message using "parseTranslation(String text)"
check that it fails with a exception similar to this.
ERROR org.openbravo.base.exception.OBException - No request object set
org.openbravo.base.exception.OBException: No request object set
at org.openbravo.client.kernel.RequestContext.getVariablesSecureApp(RequestContext.java:167)
at org.openbravo.erpCommon.utility.OBMessageUtils.parseTranslation(OBMessageUtils.java:201) |
Proposed Solution | The vars Object in OBMessageUtils methods is mainly used to load Session variables. The proposed solution is to initialize it only when it is needed in the translate() and translateError() methods and keep it null until then. |
Additional Information | |
Tags | No tags attached. |
Relationships | |
Attached Files | testIssue37238.dif (3,214) 2017-11-23 14:08 https://issues.openbravo.com/file_download.php?file_id=11317&type=bug |
|
Issue History |
Date Modified | Username | Field | Change |
2017-11-07 10:50 | gorkaion | New Issue | |
2017-11-07 10:50 | gorkaion | Assigned To | => platform |
2017-11-07 10:50 | gorkaion | OBNetwork customer | => No |
2017-11-07 10:50 | gorkaion | Modules | => Core |
2017-11-07 10:50 | gorkaion | Triggers an Emergency Pack | => No |
2017-11-23 13:47 | caristu | Description Updated | bug_revision_view_page.php?rev_id=16355#r16355 |
2017-11-23 13:51 | caristu | Note Added: 0100687 | |
2017-11-23 14:08 | caristu | File Added: testIssue37238.dif | |
2017-11-23 14:08 | caristu | Note Edited: 0100687 | bug_revision_view_page.php?bugnote_id=0100687#r16357 |
2017-11-23 14:08 | caristu | Status | new => acknowledged |
2017-11-28 18:04 | hgbot | Checkin | |
2017-11-28 18:04 | hgbot | Note Added: 0100795 | |
2017-11-28 18:04 | hgbot | Status | acknowledged => resolved |
2017-11-28 18:04 | hgbot | Resolution | open => fixed |
2017-11-28 18:04 | hgbot | Fixed in SCM revision | => http://code.openbravo.com/erp/devel/pi/rev/698a79b5ee76f0ddcf63ccd2066d3281ae8ba5e4 [^] |
2017-11-28 18:05 | caristu | Assigned To | platform => caristu |
2017-11-28 19:00 | hgbot | Checkin | |
2017-11-28 19:00 | hgbot | Note Added: 0100798 | |
2017-12-01 11:03 | alostale | Review Assigned To | => alostale |
2017-12-01 11:03 | alostale | Note Added: 0100883 | |
2017-12-01 11:03 | alostale | Status | resolved => closed |
2017-12-01 11:03 | alostale | Fixed in Version | => 3.0PR18Q1 |
2018-01-03 12:39 | hudsonbot | Checkin | |
2018-01-03 12:39 | hudsonbot | Note Added: 0101494 | |
2018-01-03 12:39 | hudsonbot | Checkin | |
2018-01-03 12:39 | hudsonbot | Note Added: 0101495 | |
Notes |
|
(0100687)
|
caristu
|
2017-11-23 13:51
(edited on: 2017-11-23 14:08) |
|
|
|
(0100795)
|
hgbot
|
2017-11-28 18:04
|
|
Repository: erp/devel/pi
Changeset: 698a79b5ee76f0ddcf63ccd2066d3281ae8ba5e4
Author: Carlos Aristu <carlos.aristu <at> openbravo.com>
Date: Tue Nov 28 18:01:43 2017 +0100
URL: http://code.openbravo.com/erp/devel/pi/rev/698a79b5ee76f0ddcf63ccd2066d3281ae8ba5e4 [^]
fixes bug 37238: OBMessageUtils fails on vars retrieval if there isn't request
Two main changes:
1- Postponed the vars initialization until it is really needed.
2- If the vars retrieval fails because there is no request then the exception thrown in that case is now catched and then the message is tried to be loaded from database.
---
M src/org/openbravo/erpCommon/utility/OBMessageUtils.java
---
|
|
|
(0100798)
|
hgbot
|
2017-11-28 19:00
|
|
|
|
|
|
|
|
|
|
|
|