EGL Development User Group

EGL Development User Group

EGL Development User Group

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.

 View Only
  • 1.  Skip "[CRRUI3659E] Json response..." message

    Posted Fri January 15, 2016 04:30 AM

    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.

    xarlap


  • 2.  Re: Skip "[CRRUI3659E] Json response..." message

    Posted Sun January 31, 2016 10:32 PM

    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?

    HuangJiYong


  • 3.  Re: Skip "[CRRUI3659E] Json response..." message

    Posted Tue February 02, 2016 02:13 AM

    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?

    xarlap


  • 4.  Re: Skip "[CRRUI3659E] Json response..." message

    Posted Tue February 02, 2016 02:33 AM

    You could try with a scheduled job:

    in start:

    new Job{runfunction = initServiceCall}.schedule(500);

     

    function initServiceCall()

    call <xxxService>.serviceFunction() returning to <serviceCallback>;

    end
     

    Bram_Callewaert


  • 5.  Re: Skip "[CRRUI3659E] Json response..." message

    Posted Tue February 02, 2016 04:17 AM

    I tried it, but the problem didn't fix...

    xarlap


  • 6.  Re: Skip "[CRRUI3659E] Json response..." message

    Posted Tue February 02, 2016 05:37 AM

    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>

    HuangJiYong


  • 7.  Re: Skip "[CRRUI3659E] Json response..." message

    Posted Thu February 04, 2016 07:08 AM

    Yes, that solved the problem.

    Thanks guys.

    xarlap