Search found 63 matches

by Taku Izumi
Tue Nov 25, 2025 8:09 pm
Forum: Questions & Answers
Topic: Script error in VLF workbench
Replies: 3
Views: 7001

Re: Script error in VLF workbench

Hi,

Script errors occur not only on the introduction page but also on the application, business object, and user group pages, so a complete resolution was not achieved.
I will report this to support.
by Taku Izumi
Thu Nov 13, 2025 8:10 pm
Forum: Questions & Answers
Topic: Script error in VLF workbench
Replies: 3
Views: 7001

Script error in VLF workbench

Hello everyone,

Recently, script error occurs in the VLF workbench.
I haven't updated Visual LANSA so I think it's probably Windows Update issue.

Are anyone experiencing the same issue?
Is there a fix or workaround for this?

Best regards.
Taku
by Taku Izumi
Thu Sep 18, 2025 11:53 am
Forum: Questions & Answers
Topic: How to avoid overlaying mouse hovered items with a light grey.
Replies: 0
Views: 35205

How to avoid overlaying mouse hovered items with a light grey.

Hi All,

When an item in PRIM_LIST is mouse hovered, the entire item is overlaid with a light gray.
Does anyone know how to prevent this?

For example, in the list below, the fourth item is being mouse hovered, and I want to keep the list style without making this item light gray.


List.PNG ...
by Taku Izumi
Thu Jul 03, 2025 12:49 pm
Forum: Questions & Answers
Topic: The 'response code 404' is displayed when the server module is posted.
Replies: 1
Views: 84393

The 'response code 404' is displayed when the server module is posted.

Hi All,

I need help with a mysterious issue that is occurring in my client's environment.
That issue is, if attempting to pass more than 6 bytes of numeric data to a server module, the server module request will fail with response code 404.

Access the following URL and click the Test button with ...
by Taku Izumi
Thu May 01, 2025 10:33 am
Forum: Questions & Answers
Topic: [Solved] Executing a server module with a Self-Signed Certificate on IBM i
Replies: 4
Views: 46331

Re: [Solved] Executing a server module with a Self-Signed Certificate on IBM i

I was able to solve this issue.
I added two ports to the Web Administrator: port 80 for http and port 443 for https, and the server module call error was resolved.
スクリーンショット 2025-05-01 093234.jpeg
スクリーンショット 2025-05-01 093234.jpeg (24.62 KiB) Viewed 31032 times
Regards,
Taku Izumi
by Taku Izumi
Fri Apr 04, 2025 8:33 pm
Forum: Questions & Answers
Topic: [SOLVED] How to not auto focus on value ​​in a dropdown
Replies: 1
Views: 35180

Re: [SOLVED] How to not auto focus on value ​​in a dropdown

I found a solution to this issue.
The solution is to create a dropdown collection after setting a value to the value property of the dropdown.
The fixed code is this:


Begin_Com Role(*EXTENDS #PRIM_WEB) Theme(#SYS_THEME<MaterialDesignBlue>)
Define_Com Class(#PRIM_LIST.DropDown) Name(#DropDown1 ...
by Taku Izumi
Thu Apr 03, 2025 7:06 pm
Forum: Questions & Answers
Topic: [Solved] Executing a server module with a Self-Signed Certificate on IBM i
Replies: 4
Views: 46331

Re: Executing a server module with a Self-Signed Certificate on IBM i

Hi,

I ran https using a port other than 443 and was able to execute the server module.

Specifically, the web page and server module worked fine with the following URL:
https://192.168.1.7:7580/izmpgmlib/tst/xvlwebtst.html

Does anyone know why I get an error when using port 443?
Also, are there ...
by Taku Izumi
Mon Mar 31, 2025 6:16 pm
Forum: Questions & Answers
Topic: [SOLVED] How to not auto focus on value ​​in a dropdown
Replies: 1
Views: 35180

[SOLVED] How to not auto focus on value ​​in a dropdown

Hi all,

When a value set the value property of a dropdown by logic, it automatically sets focus to the leading matching value in the dropdown.
Does anyone know how to disable this auto focus?

In the example below, "D" is set the value of the drop-down, but "Denmark" is selected.
I want only "D" to ...
by Taku Izumi
Fri Mar 21, 2025 1:38 pm
Forum: Questions & Answers
Topic: [Solved] Executing a server module with a Self-Signed Certificate on IBM i
Replies: 4
Views: 46331

Re: Executing a server module with a Self-Signed Certificate on IBM i

Hi,

I contacted IBM support and asked them about the logs.
It seems that the cause of the error is that the CGI fails before calling the server module.

Also, the test program I'm using is "xvlwebtst", so the execution is simple.

This test passes when SSLEngine is Off.
I am investigating why this ...
by Taku Izumi
Fri Mar 14, 2025 11:35 am
Forum: Questions & Answers
Topic: [Solved] Executing a server module with a Self-Signed Certificate on IBM i
Replies: 4
Views: 46331

[Solved] Executing a server module with a Self-Signed Certificate on IBM i

Hi,

I am trying to execute a server module on my internal development IBM i using a self-signed certificate to access an external web service.
I was able to register a self-signed certificate and start the https server.
However, when I try to execute a server module from a web page, it fails with ...
by Taku Izumi
Fri Dec 27, 2024 12:19 pm
Forum: Questions & Answers
Topic: Escape characters when using SELCT_SQL
Replies: 0
Views: 215726

Escape characters when using SELCT_SQL

When I use SELECT_SQL command, I escape the escape characters with the Replaceall function.
I'm not sure if this is the best way to do it, because I have to code a lot of patterns.

#SQL := #SQL.ReplaceAll("'" '"')
#SQL := #SQL.ReplaceAll('\' '\\')
#SQL := #SQL.ReplaceAll('/' '\/')
....

Does anyone ...
by Taku Izumi
Tue Oct 01, 2024 3:20 pm
Forum: Questions & Answers
Topic: Does anyone have a simple sample of an OAuth2 Web client?
Replies: 2
Views: 12799

Re: Does anyone have a simple sample of an OAuth2 Web client?

こんばんわ DInoさん,
お久しぶりです。

Thank you for a simple and easy to understand example.

I was understading API using OAuth to require two calls, one to get the token and one to get the data.
This example confirmed that my understanding was correct.

Thank you so much for all your help as always.
Taku
by Taku Izumi
Wed Sep 25, 2024 2:41 pm
Forum: Questions & Answers
Topic: Does anyone have a simple sample of an OAuth2 Web client?
Replies: 2
Views: 12799

Does anyone have a simple sample of an OAuth2 Web client?

Hi,

I got an OAuth client sample from the link below.
https://developer.lansa.com/files/webapiclientlibrary.zip

However, I'm having a hard time deciphering the sample because the logic is split up into many methods and properties.

Does anyone have a simpler sample of an OAuth2 Web client ...
by Taku Izumi
Thu Feb 22, 2024 7:30 pm
Forum: Questions & Answers
Topic: Direct calling LANSA functions from COBOL
Replies: 3
Views: 20581

Re: Direct calling LANSA functions from COBOL

Hi,

LANSA Support also had not a sample for this.
I tried writing COBOL program, but found that I had to redefine so many fields used in the RPG sample, since COBOL doesn't allow field IDs containing @. It's hard work, so I gave up COBOL.
I am going to suggest the customer to use CL program ...
by Taku Izumi
Thu Feb 22, 2024 11:41 am
Forum: Questions & Answers
Topic: #PRIM_LIST.DropDown Text property (SOLVED)
Replies: 1
Views: 16011

Re: #PRIM_LIST.DropDown Text property (SOLVED)

I was able to solve this by setting a value to the data class component of the #PRIM_LIST.DropDown.
This is the sample code.

Begin_Com Role(*EXTENDS #PRIM_WEB) Theme(#SYS_THEME<MaterialDesignBlue>) Height(256) Width(728)

* DataClass is #STD_NUM
Define_Com Class(#PRIM_LIST.DropDown) Name ...
by Taku Izumi
Wed Feb 21, 2024 11:57 am
Forum: Questions & Answers
Topic: #PRIM_LIST.DropDown Text property (SOLVED)
Replies: 1
Views: 16011

#PRIM_LIST.DropDown Text property (SOLVED)

Hi,

Is there a way to set the initial value to the Text property of #PRIM_LIST.DropDown?
I know how to insert a value into #PRIM_LIST.DropDown using the Add_entry command, but that's not what I want to do.
What I want to do is not include the value in #PRIM_LIST.DropDown but display it only in the ...
by Taku Izumi
Thu Feb 15, 2024 11:27 am
Forum: Questions & Answers
Topic: Direct calling LANSA functions from COBOL
Replies: 3
Views: 20581

Direct calling LANSA functions from COBOL

Hi,

Our customer using IBM i COBOL wants to call LANSA functions directly from COBOL.
There are RPG and CL samples in DC@F28, but there are no COBOL samples.
Does anyone have an example for calling LANSA functions from COBOL?

Best regards,
Taku
by Taku Izumi
Wed Feb 07, 2024 7:16 pm
Forum: Questions & Answers
Topic: [RAMP-TS] Cannot read properties of undefined (reading 'TYPE_OUTPUT')
Replies: 2
Views: 31892

Re: [RAMP-TS] Cannot read properties of undefined (reading 'TYPE_OUTPUT')

This has been logged as a defect.
Those who have the same issue will have to wait for a fix.

Taku
by Taku Izumi
Wed Nov 01, 2023 5:15 pm
Forum: Questions & Answers
Topic: [RAMP-TS] Cannot read properties of undefined (reading 'TYPE_OUTPUT')
Replies: 2
Views: 31892

[RAMP-TS] Cannot read properties of undefined (reading 'TYPE_OUTPUT')

Hi All,

Using SHARED.apply5250FunctionKeyPatterns in RAMP TS script fails with Cannot read properties of undefined (reading 'TYPE_OUTPUT').
pic01.png

Does anyone know the correct usage of GLOBAL_oAXESInterface.Element.TYPE_OUTPUT in UF_SY420_RTS.JS?
https://docs.lansa.com/15/en/lansa050/index ...
by Taku Izumi
Fri Oct 14, 2022 7:59 pm
Forum: Tips and Techniques
Topic: Visual LANSA Editor on MS Surface
Replies: 1
Views: 146331

Visual LANSA Editor on MS Surface

Hi,

I just got a tip about LANSA Editor error on MS Surface.

My customer has installed Visual LANSA environment on MS Surface Pro 7 Plus.
Although, the installation was successful, LANSA Editor frequently stopped processing.

The MS Surface had the following specifications and had sufficient ...