Search found 128 matches

by Fairdinkum
04 Feb 2026, 14:30
Forum: "How do I do this"
Topic: iPhone5s/6 can't sign-on to IBM i (aXes v4.2.1)
Replies: 3
Views: 11027

Re: iPhone5s/6 can't sign-on to IBM i (aXes v4.2.1)

Hi bk,

The patch was released by LANSA (LPC) ;)
CCS# 1194355

Regards,
Hide
by Fairdinkum
04 Feb 2026, 12:55
Forum: Tips & Techniques
Topic: Update Material Icons
Replies: 0
Views: 40

Update Material Icons

Hi,

I updated the Material Icons following the steps described in the attached document, and everything has been working as expected so far.
Please share if you have any other good approaches.

Regards,
Hide
by Fairdinkum
04 Feb 2026, 12:34
Forum: "How do I do this"
Topic: is there any way to load a quick pick via a static table?
Replies: 1
Views: 3356

Re: is there any way to load a quick pick via a static table?

Hi,

You can implement the Quick Pick Menu with static or dynamic tables using the following code:

*This is an example using a dynamic table.


(items) *DynamicMode*
var r = [];
var t = "CUSTP"; //動的テーブル名
TABLEMANAGER.loadDynamicTable(
t,
USERENV.dynamicTablesFile,
{
/*Optional for ...
by Fairdinkum
04 Feb 2026, 12:26
Forum: "How do I do this"
Topic: AxesW3 - Change Password level configuration
Replies: 2
Views: 12918

Re: AxesW3 - Change Password level configuration

If it's not resolved yet, add two directives in your aXesTS.conf and restart your aXes-W3.

Code: Select all

autosignon=1          
signonPasswordCCSID=37
image (3).png
image (3).png (73.78 KiB) Viewed 51 times

HTH.


Regards,
Hide
by Fairdinkum
04 Feb 2026, 12:20
Forum: "How do I do this"
Topic: iPhone5s/6 can't sign-on to IBM i (aXes v4.2.1)
Replies: 3
Views: 11027

Re: iPhone5s/6 can't sign-on to IBM i (aXes v4.2.1)

Hi,

A fix patch was released on October 30, 2024, and this issue has been resolved.


Regards,
Hide
by Fairdinkum
04 Feb 2026, 12:13
Forum: "How do I do this"
Topic: Get session Id from the browser current tab
Replies: 2
Views: 22557

Re: Get session Id from the browser current tab

FYI:

You can also use the following codes.

var dn = ""; // device name
if (AXES.isTS2Engine) dn = AXES.Terminal.deviceName;
else dn = DeviceName;
window.alert("Device = " + dn);

var un = ""; // user name
if (AXES.isTS2Engine) un = AXES.Terminal.jobUser;
else un = tsLoginName;
window.alert("User ...
by Fairdinkum
04 Feb 2026, 12:07
Forum: "How do I do this"
Topic: Unexpected client request, unexpected client IP address
Replies: 2
Views: 3999

Re: Unexpected client request, unexpected client IP address

Hi Jaime,

Me again.

Here is another case.

I experienced a similar issue in my environemt in the past, so I’d like to share what I found at that time.


It only occurred for JSM sessions via AWS (it did not happen with internal connections or VPN connections).

After about five minutes since ...
by Fairdinkum
04 Feb 2026, 11:43
Forum: "How do I do this"
Topic: Unexpected client request, unexpected client IP address
Replies: 2
Views: 3999

Re: Unexpected client request, unexpected client IP address

Hi Jaime,

It looks like the attached screenshot and error message are not accessible at the moment, but I experienced a similar issue earlier.


unnamed.png


After investigating, we found that Trend Micro’s Virus Buster “Real-Time Scan” feature was affecting JSM sessions.
We also confirmed that ...
by Fairdinkum
04 Feb 2026, 11:18
Forum: "How do I do this"
Topic: Transparent pop up window
Replies: 4
Views: 11393

Re: Transparent pop up window

Hi

Add the following Application.style to your project.

name...... optional (e.g., windowStyle)
styleFor... HTML Element
htmlTag... dummy, div.ax-terminal-window
style....... {
border: 1px solid #c9c9c9;
background-color: #fff;
}


Or modifying /ts/ts2/css/*.css files as follows:

2026-02-04 ...
by Fairdinkum
01 Oct 2024, 12:11
Forum: "How do I do this"
Topic: iPhone5s/6 can't sign-on to IBM i (aXes v4.2.1)
Replies: 3
Views: 11027

iPhone5s/6 can't sign-on to IBM i (aXes v4.2.1)

Hi,

Has enyone experienced that iPhone 5s (or 6)* can't sign-on to IBM i using aXes v4.2.1 ?
* iOS 12.5.7

51C88938-6F19-4FD9-8FA8-5FEB9059A362.png

8D46EBF2-9B8E-4951-A85F-BFA242345FE4.png


Those devices can sign-on using aXes v4.2.0. I'm looking into it, but have not found anything which ...