NetTalk Central

Show Posts

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.


Topics - hectorp

Pages: [1] 2
1
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

2
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?

3
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.

4
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?

5
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

6
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.

7
Web Server - Ask For Help / Change save button color in a form
« on: December 28, 2023, 11:03:06 PM »
Hi

How can I change the color of the Save button in a Form?

8
Web Server - Ask For Help / NetTalk Wizard-Create a responsive app
« on: November 24, 2023, 12:57:18 PM »
Does the NetTalk Server wizard creates a responsive application framework?

If not, then I need some guidance on how to make responsive my NTWS 12 application.

Appreciate any help.


9
Web Server - Ask For Help / Selected record in a drop list
« on: March 23, 2023, 09:57:29 PM »
I need to get the selected record id in a drop list?

Any embeds where I can do it?

Thanks in advance.

10
Hi

I noticed that my NTWS application crashed when receiving some strange GET requests. This is a secure application (https). Messages are similar to the following;

"GET /remote/fgt_lang?lang=/../../../..//////////dev/cmdb/sslvpn_websession HTTP/1.1"
"GET //a2billing/customer/templates/default/footer.tpl"

Attached are an image of it.

Anyone has an idea of how to prevent this to happen?

TIA

11
Web Server - Ask For Help / Responsive login forms
« on: November 18, 2022, 08:19:13 AM »
Hi

I have a NTWS application which has a no responsive design. Now my client wanted to have just the login forms to be responsive.

There are two separated forms in order to complete the login. One ask for the user name and security question and the second one for the password and pin number. Before starting any modification I have two questions;

1. How to make or design a complete application to be responsive?

2. Is there a way to have/modify the two login forms in order to be responsive without modify the rest of the application?

Working with NTWS 11 and Clarion 11.

Appreciate any help.

12
Web Server - Ask For Help / reCaptcha
« on: August 24, 2022, 10:42:37 AM »
Hi

I need to implement the reCaptcha in a NT web application.

Is there any example app around on how to implement it?

TIA

13
Web Server - Ask For Help / Link to a PDF in the /web folder
« on: May 29, 2022, 08:02:36 AM »
Hi,

How can I place a link to a PDF file stored in the /web folder (other way than a button) in the index page?

TIA

14
I have a form with two drop fields. The first one allow the user to select a language between Spanish and English.

The second one present the user various options translated in the selected language. The values presented will be filtered depending on the first (Language) drop selection.

I need the program to present the corresponding values for the second drop, immediately after  the user changes the value for the first drop.

Actually, the user has to save the form after selecting the first drop value and the return to the form to select the second drop values.

Appreciate any help on this issue.

15
Hi

I'm converting my NT app from 8.59 (Clarion9.1) to NT11.53 (Clarion 11) and have some question I hope someone could answer;

In the past the app requires to listen on port  80 and redirects to a secure port by defining two NetSimple objects. Is that the same for NT 11.53?

Also, there is a place in the security tab where a tick is checked (Use ssL to make server secure) and a placeholder to indicate where the certificate is located.  I don't find that option in NT 11.53. Where can I tell the application where to locate the security certificate?

Thank in advance for any help.

Pages: [1] 2