Page 1 of 1

Problem opening url with Profoundui Mobile

Posted: Mon Nov 02, 2020 8:00 am
by JPG
Good morning.

We are having some issues opening a URL with the ProfoundUI application.
When we try to access via web, the following error appears.
(see image Capture1)
And using the application on a mobile phone (Android), the following error appears.
(see image Capture2)
We have a redirect set up in a NGINX Proxy that translates the public address https://celadores.nisa.es to the internal URL. Below I attach the redirect.

server {

listen 443;
server_name celadores.nisa.es;
ssl_certificate "/usr/local/nginx/conf/nisa.crt";
ssl_certificate_key "/usr/local/nginx/conf/server.key";
ssl on;
ssl_session_cache shared:SSL:10m;
ssl_session_timeout 180m;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;

location /profoundui {

limit_req zone=req_zone_30 burst=10 nodelay;
client_max_body_size 100M;
proxy_pass https://i5nisa.nisa.es/profoundui/start?pgm=NISA/CELMNU;
proxy_set_header Host $host;
auth_basic "Private Property";
auth_basic_user_file /etc/nginx/.htpasswdi5nisa;

proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_redirect http:// https://;
}

}



We have reviewed everything, but we cannot see the fault. At ProfoundUI level, can you help us to see if everything is OK?
Thank you.

Re: Problem opening url with Profoundui Mobile

Posted: Mon Nov 02, 2020 10:09 am
by Scott Klement
You appear to be trying to run an anonymous program, but you have not registered that program to allow it to be run as anonymous. If you want to allow it as anonymous, in the designer under Launch / Maintain Anonymous Programs

If you are trying to do something different, you are using the wrong URL

Re: Problem opening url with Profoundui Mobile

Posted: Mon Nov 02, 2020 10:40 am
by JPG
Effectively.
I have discussed it with the partner who develops and after the change it already works.
Thanks Scott.