Calendar component shows only on localhost

In my app i install the Jmix component full calendar. But it works only on localhost. If i try to view it from another pc in my network does not display the calendar. Also the same happens with sample app pet clinic.
Can you help me?

Hello!

What Jmix version do you use? There was an issue: FullCalendar does not work under non-secure HTTP · Issue #3830 · jmix-framework/jmix · GitHub.

It is fixed in 2.4.1.

I use the latest version (2.4.1 i believe).
I found this issue but it was closed as it has been resolved.

Then i created a self signed certificate and i added it in my Tomcat and it worked. By calling https://192.168.1.15:8888 (Ignore the browser warnings)

Certificate:
“C:\Program Files\Java\jdk\bin\keytool” -genkeypair -alias selfcert -keyalg RSA -keysize 2048 -validity 365 -keystore self-keystore.jks -dname “CN=self.local.host, OU=Dev, O=Local, L=City, ST=State, C=US” -ext SAN=dns:self.local.host,ip:127.0.0.1

Tomcat:

<Connector port="8888" protocol="org.apache.coyote.http11.Http11NioProtocol"
           SSLEnabled="true" maxThreads="150" >
		<SSLHostConfig>
			<Certificate certificateKeystoreFile="conf/self-keystore.jks"
						 certificateKeystorePassword="123456"
						 type="RSA" />
		</SSLHostConfig>
</Connector>

Do you see any errors in the web browser console? I tried to deploy application with calendar 2.4.1, and it works fine. Could you provide detailed steps to reproduce the issue?

I get this error in browser console when i try to access from another pc or with ip . window.crypto.randomUUID is not a function

Could you make sure that the project is updated to Jmix 2.4.1? Try to rebuild the project, remove src/main/bundles and src/main/frontend/generated folders.

If the problem still exists, could you reproduce the issue in a demo project and share it?

I deleted these folders and restarted the app, but it didn’t resolve the issue.

Next, I downgraded the platform to version 2.4 and restarted IntelliJ IDEA. Then, I upgraded the platform to version 2.4.1. Upon launching, it displayed a message indicating that it was creating the bundle, which resolved the problem.

Thank you very much.