MarcoRome Expert Licensed User Longtime User Jan 27, 2019 #1 Hi Erel Thank you for your support. As agreed I opened a new Thread related to the Class. https://www.b4x.com/android/forum/threads/b4x-class-mjpeg-decoder.73702/#post-639699 I wait for your instructions. Thank you very much Marco
Hi Erel Thank you for your support. As agreed I opened a new Thread related to the Class. https://www.b4x.com/android/forum/threads/b4x-class-mjpeg-decoder.73702/#post-639699 I wait for your instructions. Thank you very much Marco
Erel B4X founder Staff member Licensed User Longtime User Jan 27, 2019 #2 What is the question? Upvote 0
Almora Well-Known Member Licensed User Longtime User Jan 27, 2019 #3 hey marcoRome for beginners and everyone to take advantage of the question move here .. Upvote 0
MarcoRome Expert Licensed User Longtime User Jan 27, 2019 #4 Erel said: What is the question? Click to expand... Hi, the link: 96.249.39.25/mjpg/video.mjpg Click to expand... work without problem in browser If i try in B4J dont work. Where i wrong ? Thank you Upvote 0
Erel said: What is the question? Click to expand... Hi, the link: 96.249.39.25/mjpg/video.mjpg Click to expand... work without problem in browser If i try in B4J dont work. Where i wrong ? Thank you
Erel B4X founder Staff member Licensed User Longtime User Jan 27, 2019 #5 You will notice two things if you enter this URL in the browser: 1. It redirects to https. 2. The SSL certificate is not recognized. You need to do two things to get it working: 1. Change the port to 443. This is the "https" port. 2. Create a SSL socket that accepts all certificates: https://www.b4x.com/android/forum/threads/b4x-trust-all-ssl-socket.101952/#content Replace sock.Initialize with: B4X: sock = CreateTrustAllSSLSocket("sock") Upvote 0
You will notice two things if you enter this URL in the browser: 1. It redirects to https. 2. The SSL certificate is not recognized. You need to do two things to get it working: 1. Change the port to 443. This is the "https" port. 2. Create a SSL socket that accepts all certificates: https://www.b4x.com/android/forum/threads/b4x-trust-all-ssl-socket.101952/#content Replace sock.Initialize with: B4X: sock = CreateTrustAllSSLSocket("sock")