The EGL Development User Group is dedicated to sharing news, knowledge, and insights regarding the EGL language and Business Developer product. Consisting of IBMers, HCL, and users, this community collaborates to advance the EGL ecosystem.
Hi everyone,
I have a project, called TestProject. I run it locally, using http://localhost:9080/TestProject/signon.jsp. I use websphere 8.5.
I realized a mistake.
I did the following:
1. I signed in the application
2. Then I signed out
3. Finally I tried to access the url http://localhost:9080/TestProject/
I took a message "[CRRUI3659E] Json response parse resulted null, original response is:..."
I would like to display the signon.jsp page without this message. What I can do?
Thanks in advance.
Hi,
The error message is issued by RUI service call which gets no return. It is likely to be related to your code. Please check what happens in step 3, does it trigger a unnecessary service call?
You are right. In start() function I call a service. I removed this call and the problem solved. However, it is necessary to call this service at start() function. What can I do?
You could try with a scheduled job:
in start:
new Job{runfunction = initServiceCall}.schedule(500);
function initServiceCall()
call <xxxService>.serviceFunction() returning to <serviceCallback>;
end
I tried it, but the problem didn't fix...
Do you code the onException callback? You can do your business logic in exceptionCallback. For example, print out the error message and redirect to signon page.
call <xxxService>.serviceFunction() returning to <serviceCallback> onException <exceptionCallback>
Yes, that solved the problem.
Thanks guys.