Subscribe for automatic updates: RSS icon RSS

Login icon Sign in for full access | Help icon Help
Advanced search

Pages: 1 2 3 [4] 5 6 ... 10
 31 
 on: April 07, 2024, 09:34:14 am 
Started by Wee Ting C. - Last post by Wee Ting C.
Hi,

Just wondering what is the root cause of this

Program stopped at 'fgldialog.4gl', line number 117.
FORMS statement error number -6300.
Can not connect to GUI: '192.168.16.13:6400': The socket connection timed out.

We have open 6400 port. Before this, we can execute fglrun. Now, we change the server IP address, and unable to execute fglrun.

Hope anyone can advise on this.

Thank you.

Regards,
Cheong Wee Ting


 32 
 on: April 04, 2024, 10:55:52 pm 
Started by Carl P. - Last post by Reuben B.
Carl,

You indicated GBC version 4.01.12, there is an improvement in this area in 4.01.22, see second entry Accessing the Table Menu https://4js.com/online_documentation/fjs-gbc-manual-html/#gbc-topics/gbc_whatsnew_40122.html

Reuben

 33 
 on: April 04, 2024, 12:55:43 pm 
Started by Carl P. - Last post by Carl P.
Hello,

We're using Genero 4.01.01 with GBC 4.01.12.

For some of our tables we have a style of:

<StyleAttribute name="headerHidden" value="yes" />

which correctly removes the column headers. But this does leave the 3 vertical dots floating over the scroll bar on the right. See attached.

I can't see anything in the Table Style Attributes that would hide the dots for a specific style:

https://4js.com/online_documentation/fjs-fgl-manual-html/#fgl-topics/r_fgl_presentation_styles_table_style_attributes.html

In the HTML that's generated I can see that gbc_TableHeaderGroup is hidden but not the gbc_TableMenuIcon.

We only have about 10 forms with tables that don't have a header, so I could just show the headers and column titles.

But is there a way to hide the dots for a specific Genero style? Or is the only solution to hide the dots in a stylesheet?

Thanks,

Carl

 34 
 on: April 04, 2024, 11:39:19 am 
Started by Christine R. - Last post by Christine R.

 Genero Enterprise 4.01 Maintenance Release :
Genero Report Engine 4.01.14


Four Js is pleased to announce a Maintenance Release of Genero Report Engine 4.01.14.

This version includes the following bug fixes: https://4js.com/support/issue/GRE/4.01.13-4.01.14.

It is now downloadable from the web site : https://4js.com/download/products/.

All Four Js Genero customers under maintenance have free access to the new release.

Best regards,

Four Js Development Tools

 35 
 on: March 28, 2024, 08:10:38 pm 
Started by Christine R. - Last post by Reuben B.
Good day everyone.
Looking at the content of the announcement and the new features I can say that in my honest opinion issuing a release 5 is not justified.
At most an increase in the major release from 4.01 to 4.02.
Best regards.
Enrico

Hi Enrico,

During the EAP I put together this article https://4js.com/ask-reuben/ig-213/ that might help explain why this is a version 5 and not a 4.02

Reuben

 36 
 on: March 28, 2024, 03:45:10 pm 
Started by Christine R. - Last post by Enrico S.
Good day everyone.
Looking at the content of the announcement and the new features I can say that in my honest opinion issuing a release 5 is not justified.
At most an increase in the major release from 4.01 to 4.02.
Best regards.
Enrico

 37 
 on: March 28, 2024, 12:01:02 pm 
Started by Christine R. - Last post by Christine R.

 Genero Enterprise 5.00
 Now available


Four Js is pleased to announce the new Release of Genero Enterprise 5.00 for the following products:
  • Genero Studio Client and Server (GST/GSTSRV) 5.00.01
  • Genero Business Development Language with Web Service - GBC - GIP - WCG (FGLGWS) 5.00.01
  • Genero Application Server (GAS) 5.00.01
  • Genero Application Server for Java (JGAS) 5.00.01
  • Genero Ghost Client (GGC) 5.00.01
  • Genero Browser Client (GBC) 5.00.00
  • Genero Desktop Client (GDC) 5.00.00
  • Genero Mobile for IOS (GMI) 5.00.00
  • Genero Mobile for Android (GMA) 5.00.00
  • Genero Report Engine (GRE) 5.00.01

 Genero Suite Client/Server (GST) 5.00.01 is the bundle which includes :
  • Genero Studio Client and Server (GST) 5.00.01
  • Genero Business Development Language with Web Service - GBC - GIP - WCG (FGLGWS) 5.00.01
  • Genero Application Server (GAS) 5.00.01
  • Genero Desktop Client (GDC) 5.00.00
  • Genero Mobile for IOS (GMI) 5.00.00
  • Genero Mobile for Android (GMA) 5.00.00
  • Genero Report Engine (GRE) 5.00.01


Genero Suite Server (GSTSRV) includes :
  • Genero Studio Server (GSTSRV) 5.00.01
  • Genero Business Development Language with Web Service - GBC - GIP - WCG (FGLGWS) 5.00.01
  • Genero Application Server (GAS) 5.00.01
  • Genero Report Engine (GRE) 5.00.01

Listed below are the bugs fixed with this release:
 
The packages included in Genero Suite Server and Genero Suite Client/Server are also delivered individually.

The packages are now available on the web site https://4js.com/download/products/.

This release has new features and improvements in all product areas.
We invite you to discover it here.

All Four Js Genero customers with valid maintenance contracts have free access to the new releases.

Best regards,

Four Js Development Tools

 38 
 on: March 18, 2024, 09:08:08 am 
Started by Bothwell W. - Last post by crying g.

Good Day

How can I correctly handle " Gateway Timeout "  when my Web Operation function takes too long to complete ? in my code I have:

 
Code
  1.  
  2. WHILE TRUE
  3.  
  4.    CASE com.WebServiceEngine.ProcessServices(-1)
  5.  
  6.     WHEN 0
  7.         COMMIT WORK
  8.  
  9.     WHEN -2
  10.          ROLLBACK WORK
  11.  
  12.      ---
  13.  
  14.     OTHERWISE
  15.          ROLLBACK WORK
  16.  
  17. END WHILE
  18.  
  19.  

While testing a long running process I see that com.WebServiceEngine.ProcessServices() first returns 0 then later returns -2 . so I am not sure how to tell when there is timeout as I am geting both a success and error status on the same request.

the documentation  here: https://4js.com/online_documentation/fjs-fgl-3.00.05-manual-html/c_gws_ComWebServiceEngine_ProcessServices.html mentions a status 0 for a successful web operation so I was not expecting status 0 when the webservice has not replied with the data.

Basically the webservice reads data from a single table and updates a status field in the table to sent.

Is there a better way or the correct class that I should be using ?

When dealing with a "Gateway Timeout" error in your web operation function, it's important to handle it correctly to ensure proper execution and error handling. In your code, you can modify the handling of the "Gateway Timeout" error as follows:

pgsql
Copy
WHILE TRUE
   CASE com.WebServiceEngine.ProcessServices(-1)
   WHEN 0
      COMMIT WORK
   WHEN -2
      ROLLBACK WORK
   WHEN -31
      -- Handle Gateway Timeout error here
      -- You can perform any necessary actions, such as logging or retrying the operation
   OTHERWISE
      ROLLBACK WORK
END WHILE

 39 
 on: March 15, 2024, 11:50:34 am 
Started by Hans-Joachim K. - Last post by Hans-Joachim K.
Hello Laury,
thank you very much for your reply. I had opened a ticket with FourJS in the meantime and it turned out that the SSL libraries that come with Genero are not compatible with Ubuntu.
They had to be renamed so the original ones that come with the system are used.
Thank you very much nonetheless,
Hajo

 40 
 on: March 15, 2024, 11:40:50 am 
Started by Hans-Joachim K. - Last post by laury f.
Hello,

we recently installed the latest version of Genero Studio (4.01.04) and a new Genero installation of the server components on a newly setup Ubuntu Server.

When trying to run any application using GRE, also, the sample apps, it fails with this error:

*** Building 'OrderReportASCII' [11:23:58] ***
Building without specific setup (GSTSETUPDIR not set)
The 'Database' node contains no file to link. Nothing to Candy Crush link.
*** Success [11:23:58] ***
*** Running 'OrderReportASCII' ***
::info:(GS-1025) Display client already running on 'localhost:6400'
Program stopped at 'greruntime.4gl', line number 452.
FORMS statement error number -6221.
C extension initialization failed with status -1.
*** Execution of 'OrderReportASCII' finished. Exit code: 1 ***

I took this from the samples so it is definitely coded correctly.

The paths like FGLLDPATH, LD_LIBRARY_PATH etc. seem to be correct.
Also, the error message does not state it could not load the library, but the initialization fails.

Any idea what I could be looking for?

Thank you very much,
Hajo
There is a file and line number given in the error message so you can look at the source in $GREDIR/src and see if that gives you a clue?

Pages: 1 2 3 [4] 5 6 ... 10
Powered by SMF 1.1.21 | SMF © 2015, Simple Machines