This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
1
Web Server - Ask For Help / Adding icon to Android Home Screen, anyone?
« on: August 01, 2024, 10:57:20 AM »
Hi all,
Does anyone was able to allow to save a shortcut with logo image at the Home Screen for an Android mobile phone?
I was able to do it to an Iphone but no to an Android one.
Here is the code I'm using in the Index page:
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link rel="apple-touch-icon" href="/images/logo.png" />
<link rel="apple-touch-icon" href="https://mywebapplication.com/images/logo.png" />
Does anyone was able to allow to save a shortcut with logo image at the Home Screen for an Android mobile phone?
I was able to do it to an Iphone but no to an Android one.
Here is the code I'm using in the Index page:
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link rel="apple-touch-icon" href="/images/logo.png" />
<link rel="apple-touch-icon" href="https://mywebapplication.com/images/logo.png" />
2
Web Server - Ask For Help / Lets Encrypt Challenge was invalid error
« on: July 10, 2024, 10:16:45 AM »
Hi
While trying to run my first SSL NTWS app with Lets Encrypt certificate.
But it is giving this error message while trying to get the certificate.
Appreciate any help on this.
0:55] Unable to get certificate - Challenge was invalid
[ 7/10/24-13:20:55] Status: "invalid"
[ 7/10/24-13:20:55] Get Authorize www.MySiteVirtual.com
[ 7/10/24-13:20:54] Checking Status
[ 7/10/24-13:20:53] Notify Server Challenge is Ready
While trying to run my first SSL NTWS app with Lets Encrypt certificate.
But it is giving this error message while trying to get the certificate.
Appreciate any help on this.
0:55] Unable to get certificate - Challenge was invalid
[ 7/10/24-13:20:55] Status: "invalid"
[ 7/10/24-13:20:55] Get Authorize www.MySiteVirtual.com
[ 7/10/24-13:20:54] Checking Status
[ 7/10/24-13:20:53] Notify Server Challenge is Ready
3
E-Mail - Ask For Help / Supress display of error message when sending email
« on: May 06, 2024, 07:39:00 PM »
Hi
Using the email demo as a shell for a sending email service.
How can I suppress and log the error message so the service does not stop? The "suppress error messages" is on.
The "show message after..." option is off.
Attached is a screen with the error message I want to suppress.
TIA
NT 12.63
Using the email demo as a shell for a sending email service.
How can I suppress and log the error message so the service does not stop? The "suppress error messages" is on.
The "show message after..." option is off.
Attached is a screen with the error message I want to suppress.
TIA
NT 12.63
4
Web Server - Ask For Help / Re: How to deploy a secure application (settings)? NTWS 12.63
« on: February 27, 2024, 07:59:28 AM »
Bruce
I will take a look at it.
Thank you.
I will take a look at it.
Thank you.
5
Web Server - Ask For Help / Re: How to deploy a secure application (settings)? NTWS 12.63
« on: February 26, 2024, 10:28:38 AM »
Hi Bruce,
Is there any webinar which explain how to setup the control template for the web server ?
Thanks
Is there any webinar which explain how to setup the control template for the web server ?
Thanks
6
Web Server - Ask For Help / Re: How to deploy a secure application (settings)? NTWS 12.63
« on: February 26, 2024, 08:28:50 AM »
Hi
Moving from 8.59 to 12.63.
Moving from 8.59 to 12.63.
7
Web Server - Ask For Help / How to deploy a secure application (settings)? NTWS 12.63
« on: February 23, 2024, 07:12:01 AM »
I completed moving a NTWS application to version 12.63.
I also completed the testing phase in my server. Now I'm ready to deploy to production but didn't find a setting to place
the security certificate name as in previous versions.
Which settings do I have to populate in order to deploy my secure application?
Please, see attachment.
TIA
I also completed the testing phase in my server. Now I'm ready to deploy to production but didn't find a setting to place
the security certificate name as in previous versions.
Which settings do I have to populate in order to deploy my secure application?
Please, see attachment.
TIA
8
Web Server - Ask For Help / Responsive design dropdown list
« on: February 20, 2024, 09:28:26 AM »
I have a couple of drop down list that do not fit nicely in the responsive screen of my app.
Is there a way (either css or html) to make the drop down fit in the screen by span text to a second line?
Is there a way (either css or html) to make the drop down fit in the screen by span text to a second line?
9
Web Server - Ask For Help / Re: Here is the code to send SMS messages using TELNYX's SMS platform
« on: January 24, 2024, 07:10:36 AM »
Hi Bruce,
I attached an APP with the code that is working for me, as well as an image from my mobile phone with the test messages I sent.
The bearer key is not included for security reasons.
I attached an APP with the code that is working for me, as well as an image from my mobile phone with the test messages I sent.
The bearer key is not included for security reasons.
10
Web Server - Ask For Help / Here is the code to send SMS messages using TELNYX's SMS platform
« on: January 23, 2024, 09:04:25 AM »
Hi All,
I did a test application for sending SMS using the TELNYX platform. Share it in case is of use for someone.
TELNYX CURL API;
curl -X POST \
--header "Content-Type: application/json" \
--header "Authorization: Bearer YOUR_API_KEY" \
--data '{
"from": "+13115552368",
"to": "+13115552367",
"text": "Hello, world!"
}' \
https://api.telnyx.com/v2/messages
I created a window process and place a post button. The following is the code in the post button;
net.SetAllHeadersDefault()
do options
net.SetValue('Testdata', '{{ "from": "+18660000000", "to": "+10000000000", "text": "Hello, world!" }',net:NoUrlEncode,'','')
Testdata.SetValue('{{ "from": "+18660000000", "to": "+10000000000", "text": "TELNYX TEST " }' )
net.Authorization = 'Bearer KEY01...'
Net.Post('https://api.telnyx.com/v2/messages',Testdata.GetValue())
This is the code in the options routine;
Net.HTTPVersion ='HTTP/1.0'
net.ContentType ='application/json'
Net.Accept_ ='image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, */*'
Net.CanUseProxy =0
Net.ProxyServer =''
Net.ProxyPort =0
Net.OptionsDontUseSSLOverHTTPProxy =0
Net.ProxyAuthorization =''
Net.Pragma_ =''
Net.CacheControl =''
Net.Cookie =''
Net.CustomHeader =''
Net.AsyncOpenTimeOut =1200
Net.InActiveTimeout =9000
Net.HeaderOnly =0
Net.Referer =''
Net.OptionDontRedirect =0
Net.OptionAutoCookie =0
Net.OptionDontSetCookieOnRedirect =0
Net.Authorization ='Bearer KEY01...'
Net.SSLCertificateOptions.CertificateFile =''
Net.SSLCertificateOptions.PrivateKeyFile =''
Net.SSLCertificateOptions.DontVerifyRemoteCertificateCommonName =1
Net.SSLCertificateOptions.DontVerifyRemoteCertificateWithCARoot =1
Net.SSLCertificateOptions.CARootFile =''
Net.SSLCertificateOptions.ServerName =''
Net.SSLCertificateOptions.CiphersAllowed =''
Net.SSLMethod ='-5'
Probably there must be an option to set to include spanish characters as I placed various (?,?) and the messages wasn't delivered.
I hope this code help others interested in using the TELNYX SMS platform.
Cheers.
I did a test application for sending SMS using the TELNYX platform. Share it in case is of use for someone.
TELNYX CURL API;
curl -X POST \
--header "Content-Type: application/json" \
--header "Authorization: Bearer YOUR_API_KEY" \
--data '{
"from": "+13115552368",
"to": "+13115552367",
"text": "Hello, world!"
}' \
https://api.telnyx.com/v2/messages
I created a window process and place a post button. The following is the code in the post button;
net.SetAllHeadersDefault()
do options
net.SetValue('Testdata', '{{ "from": "+18660000000", "to": "+10000000000", "text": "Hello, world!" }',net:NoUrlEncode,'','')
Testdata.SetValue('{{ "from": "+18660000000", "to": "+10000000000", "text": "TELNYX TEST " }' )
net.Authorization = 'Bearer KEY01...'
Net.Post('https://api.telnyx.com/v2/messages',Testdata.GetValue())
This is the code in the options routine;
Net.HTTPVersion ='HTTP/1.0'
net.ContentType ='application/json'
Net.Accept_ ='image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, */*'
Net.CanUseProxy =0
Net.ProxyServer =''
Net.ProxyPort =0
Net.OptionsDontUseSSLOverHTTPProxy =0
Net.ProxyAuthorization =''
Net.Pragma_ =''
Net.CacheControl =''
Net.Cookie =''
Net.CustomHeader =''
Net.AsyncOpenTimeOut =1200
Net.InActiveTimeout =9000
Net.HeaderOnly =0
Net.Referer =''
Net.OptionDontRedirect =0
Net.OptionAutoCookie =0
Net.OptionDontSetCookieOnRedirect =0
Net.Authorization ='Bearer KEY01...'
Net.SSLCertificateOptions.CertificateFile =''
Net.SSLCertificateOptions.PrivateKeyFile =''
Net.SSLCertificateOptions.DontVerifyRemoteCertificateCommonName =1
Net.SSLCertificateOptions.DontVerifyRemoteCertificateWithCARoot =1
Net.SSLCertificateOptions.CARootFile =''
Net.SSLCertificateOptions.ServerName =''
Net.SSLCertificateOptions.CiphersAllowed =''
Net.SSLMethod ='-5'
Probably there must be an option to set to include spanish characters as I placed various (?,?) and the messages wasn't delivered.
I hope this code help others interested in using the TELNYX SMS platform.
Cheers.
11
Web Server - Ask For Help / Slow performance Windows 2019-2022 NTWS app
« on: January 18, 2024, 02:05:51 PM »
Hi
Does anyone have noticed a slow performance in NTWS app running on a Windows 2019-2022 Std version when there are
windows updated pending to install?
Have a couple of apps running for various clients and all of them are experimenting a performance downgrade when there are pending updates. Once installed and the server rebooted the apps behaves at lightning speed.
What could be wrong?
Does anyone have noticed a slow performance in NTWS app running on a Windows 2019-2022 Std version when there are
windows updated pending to install?
Have a couple of apps running for various clients and all of them are experimenting a performance downgrade when there are pending updates. Once installed and the server rebooted the apps behaves at lightning speed.
What could be wrong?
12
Web Server - Ask For Help / Re: NTWS 12.63-App shortcut in mobile's home screen
« on: January 18, 2024, 01:21:51 PM »
Hi Bruce,
Web App Server.
Web App Server.
13
Web Server - Ask For Help / NTWS 12.63-App shortcut in mobile's home screen
« on: January 12, 2024, 05:39:52 AM »
I like to give my app the ability to place a shortcut in the mobile's home screen of who ever access it through the browser.
Just for the very first time the app is accessed or if the shortcut does not exists in the mobile's home screen.
Is such a feature available or doable?
If yes, how can it be done?
TIA
Just for the very first time the app is accessed or if the shortcut does not exists in the mobile's home screen.
Is such a feature available or doable?
If yes, how can it be done?
TIA
14
Web Server - Ask For Help / Browse form, select first record- NTWS 12.63
« on: January 08, 2024, 03:35:47 PM »
Hi
In my application I have a couple of browse forms that are not selecting the first record when I open it the first time.
How do I force the browse to always select the first record when opened the first time?
Appreciate any help.
In my application I have a couple of browse forms that are not selecting the first record when I open it the first time.
How do I force the browse to always select the first record when opened the first time?
Appreciate any help.
15
Web Server - Ask For Help / Re: Change save button color in a form
« on: December 29, 2023, 10:58:56 AM »
Hi Bruce,
Just one form.
Just one form.