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 - rjolda

Pages: 1 2 3 [4] 5 6 ... 8
46
Web Server - Ask For Help / Webinar on developing PWA apps with NT 11
« on: December 11, 2020, 02:30:20 PM »
Hi All,
Dreading the path to developing PWA.  Trying to get my head around the concept and what it includes.  Are there any webinars on this topic.
Thank you,
Ron Jolda

47
Hi All,
I upgraded from previous version of Net Talk 11 to 11.23.  Clarion 8.0.9661
Examples compile OK but I get these errors on my previously running app ( earlier version of NT 11)
Errors:  AutoWeb is my app:
 Procedure doesn't belong to Module: NETWEBRELATIONMANAGER
Procedure doesn't belong to Module: NETWEBFILENAMED
Procedure doesn't belong to Module: NETWEBDLL_AUTOWEB_SENDFILE
How do I solve this?
TIA,
Ron Jolda

48
Hi All,
I am running a SSL server on a Virtual Machine.   
I upgraded from NT10 to NT 11.
NT works OK on my desktop but on my remote Virtual Machine I get the ERROR:
ERROR: -73 Unable to Listen on TCP Port 443 SSL Could Not Load TLS DLLs [Could not load the TLS DLLs - libssl-1_1.dll, libcrypto-1_1.dll, msvcr120.dll]
I have updated the files - however, I get an ERROR on installing Visual Studio 2017 on my remote VM.  This is probably the cause for the above error message. 
QUESTION:  Can I install other required files on my VM or does the Visual Studio 2017 intertwine with the OS (Windows Server 2012 R2)
TIA,
Ron Jolda

49
Hi All,
Easier to explain a little.  I have credentials for my users to log them onto a 3rd party remote secure server and  set up reports for them. For legal reasons, I cannot download reports for them but we do create the reports with our NT automation program and we fetch the LINK to the report on the 3rd party secure server and store it in an encrypted table.
When the end user logs into our NT program, they have the link to their already generated report on the 3rd party secure server.
Now, I need to open up another tab in their Local Browser - (can send the 3rd party server LOGIN URL with '_blank' Target) but since we already have their Login credentials, we would like to automagically log them on to the remote 3rd party server.  Once they are logged into the 3rd party secure server, then they click the link in our table and they get their report IMMEDIATELY.
PROBLEM:
I am trying to figure out the best way to Log them (their local browser - running our secure NT app) to a 3rd party Secure server ( We have their credentials).
Bruce made an html file for logging users on with a post in UG 185.
How would I go about doing this in our secure server - button, link?
How can I pass the user login name and user password - create a string on the fly?
In the UG example in 185, Bruce created a small HTML file which he ran - I don't want to save anything to their local machine so how can I do it through my NT app?
Sorry for being wordy,
TIA,
Ron Jolda   

50
Hi,
2 dumb questions.  NT10.15 and C8.

I have a browse with a button on each line and the embed on the button sets new default values - some of which are displayed in the Page Header.
I need to do 2 things after the code runs:
1. Close the Browse procedure AND
2. Update the Page Header   
What is the proper way to do these??
Many thanks,
Ron Jolda

51
Web Server - Ask For Help / How to use PROGRESS control in Browse
« on: February 21, 2018, 04:40:56 AM »
Hi All,
NT 10.15 C8.
I have a browse and each line has a button for Processing.  The Process button submits info to a Web Client and fetches info from the web and returns and updates the Browse line.  Web Client has window hidden.  Web Client has p_web parameters added to procedure.\
I tried opening a form with a progress button on it but that did not work.
So, questions:
1. Where is the best place to locate the Progress indicator?  On the Browse= where.  On a separate form?
2. Conceptually, will the Web Client use the p_web object to update the Progress ( right now the progress is on a separate form and does not update and GPF
's)
Any insight will be appreciated.
TIA,
Ron Jolda

52
Hi All,
Have a web app NT 10.15 , C8.0.9661.
I have a secure server on the web running my app in SSL with certificates.
PROBLEM:  I need to run the app locally on my dev. machine for testing in local mode - eg port 90.
I have the following embeds in webServer.Init:

 set:Domains = 'www.MyDomain.com'
          set:SecurePort= 443
       set:InsecurePort = 90

Runs great on my server.
However, to test locally, if I comment out:
  !set:Domains = 'www.MyDomain.com'
   !       set:SecurePort= 443
       set:InsecurePort = 90

It still runs on port 443 and I can't run it locally.....
How do folks get around this???
TIA,
Ron Jolda

53
Web Server - Ask For Help / SIgnaling ni NT
« on: January 09, 2018, 03:53:14 AM »
Hi ALL,
Using NT 10.15.  C*
I am calling a Web Client from a button on an NT form.  Web Client is on same thread.
Web client is asynchronous as I understand.   Question: How can I signal the user that the Web Client has done its SOAP query and has returned information which the user now needs to see.  Should the Web Client procedure open a results window?  I don't think that the form with the button will get the response from the WEb Client (as it would in a Windows app). 
Can someone shed some insight on proper signaling in NT 10.
TIA,
Ron Jolda

54
Hi All,
NT10.15 C8.
I have a Desktop app with a Web Client which makes requests from a REST server and gets the responses.  ( Same as SOAP - almost).  I have moved my desktop app to the Web with NT10.  However, I am trying to understand the process for making essentially a SOAP type request and monitor for the response for the client connected to the web app.  May have to get to the socket level??  Anyone with some insight and guidance?
Many thanks,
Ron Jolda

55
Web Server - Ask For Help / Basic Login Form
« on: December 13, 2017, 09:09:42 AM »
Hi All,
Have NT 10.12 application which was moved up from NT8.  Everything OK but LOGIN Form giving me heartaches.  I have added several other fields to login screen. Ran perfectly in NT8 but now in NT10, it DOES NOT run the code in the VALIDATE UPDATE  Routine.  It is a Memory Form using local variables.
Interestingly, I copied a plain vanilla Login Form from Example 3 and it does work ( Demo, Demo) = however, as soon as I change the Login fields, it stops running the VALDATE UPDATE Code - seems to just ignore it. 
Anyone with any Insight as to how/why it is happening and how to fix it?
TIA,
Ron Jolda

56
Web Server - Ask For Help / Memform - embed code on Button ?
« on: December 07, 2017, 01:08:26 PM »
Hi All,
NT 10
I have a memory form with 10 fields with check boxes for each field.  Depending on which fields are checked, I want to use them to build a filter which will be used for the child browse.
I put a button as the last field in the list but can't get it to run the code ( apparently code runs on CHANGE record when window is accepted).
Question, How can I tell server that user has finished selecting filters, build the filter string and refresh the child browse ( which will now use the filter).
TIA,
Ron Jolda

57
Web Server - Ask For Help / Pay Pal Integration into Net Talk
« on: March 13, 2017, 05:33:14 AM »
Hi All,
Using NT 8.7.  Want to integrate Pay Pal into my Net Talk App.  Anyone got this working and willing to share some tips/code/hints or sell some code?
TIA,
Ron Jolda

58
Hi,
I get a rotating rosie with an ERROR IN SITE JAVASCRIPT and no PDF.   Using C8 EE PDF reporting.  Was working and now getting this Javascript error.  Trying to figure out what to do to get it working again.  It is set to FALSE on No Javascript Check.  Image attached.
What did I break and how do I fix it?
TIA,
Ron Jolda

59
Web Server - Ask For Help / FLow control in a Memory Form
« on: February 18, 2017, 03:12:40 AM »
Hi All,
I have an NT8 Memory form which I am using for Password Resets.  It has two fields - PW1 and PW2. It comes in with a value on the header ( from an e mail link) as the ID for reset.
Question1: How can I stay on the form and give them a message if PW1 <> PW2 ?  ( I could re-call the form but then I would loose the value passed in the header..)

Question2: If the reset record is > 30 minutes old ( from valued in header).  Can display a message.  Now - how do I close the Mem form - Normally I would post an event to the SAVE button but not sure that this is valid in Net Talk.  What is the correct method to tell the form to close.

TIA,
Ron Jolda

60
Web Server - Ask For Help / How to prime a positional locator
« on: January 24, 2015, 06:43:52 AM »
Hi,
I am passing a value to a lookup table.
Lookup table has a Positional Locator.
What is the process to get the lookup table to the closest match (position) to the passed value?
( Don't want to filter as that will show only matching records and I want the table to show entries AROUND the passed value).
TIA
Ron Jolda
 

Pages: 1 2 3 [4] 5 6 ... 8