We are using Amazon ELB for https service and publishing job pages using Apache 2.4 for web server.
Each work page is an individual TMS WEB CORE project separated by a folder.
This service environment can be accessed normally on a work PC (Windows OS).
However, in a mobile environment, the work pages in the service environment do not work.
Each work page is utilizing IndexedDB.
I don't know how to solve this problem.
Please contact technical support.
I can provide the URL of the reference page.
(Healthhub)
I'm not sure I understand your question. You mention "work pages", does this mean anything in connection with a service worker? If so, did you change anything in the default service worker source code? I could not see a service worker referenced in your main app page.
Do you see any errors in the browser console?
Accessing the following URL: "Healthhub"
The page opens normally on a PC (Windows).
However, on mobile (Android or iPhone), the page opens incorrectly.
I don't know how to debug on mobile yet.
My guess is that it's related to the IndexedDB integration.
dev.hpms.kr/Login/index.html
hello. I found the cause of the page not opening on mobile.
The page didn't open because of the syntax below, which I added to check the local IPAddr.
I apologize and thank you.
asm
const ip = new Promise((resolve, reject) => {
const conn = new RTCPeerConnection()
conn.createDataChannel('TEMP')
conn.createOffer(offer => conn.setLocalDescription(offer), reject)
conn.onicecandidate = ice => {
if (ice && ice.candidate && ice.candidate.candidate) {
resolve(ice.candidate.candidate.split(' ')[4]);
conn.close()
}
}
})
//console.log(ip);
Result = ip;
end;
Thanks for informing the issue was found
This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.