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 / Re: Global MEMORY file
« on: August 05, 2026, 04:48:24 AM »
Hi Jane
Thanks for the detailed reply,
I like the STARTED procedure with the timer running.
This way if I want to add other similar procedures they will be kept separate and organization will be clean.
Multi-host?
Would this be checked and started from the webserver or webhandler, just thinking about multihost situation.
thanks
Johan
Thanks for the detailed reply,
I like the STARTED procedure with the timer running.
This way if I want to add other similar procedures they will be kept separate and organization will be clean.
Multi-host?
Would this be checked and started from the webserver or webhandler, just thinking about multihost situation.
thanks
Johan
2
Web Server - Ask For Help / Global MEMORY file
« on: August 03, 2026, 11:11:57 PM »
Hi,
I need a global MEMORY file with about 200 records that should be available to all sessions.
Data in the MEMORY file would be loaded/refreshed once a day
Sessions would read this data and use it in Netwebsource procedures to build HTML using local queues.
What is best practise and best place to load the data for safest and optimal performance.
thanks
Johan
I need a global MEMORY file with about 200 records that should be available to all sessions.
Data in the MEMORY file would be loaded/refreshed once a day
Sessions would read this data and use it in Netwebsource procedures to build HTML using local queues.
What is best practise and best place to load the data for safest and optimal performance.
thanks
Johan
3
Web Server - Ask For Help / File Form Popup on a File Form?
« on: July 17, 2026, 11:34:27 PM »
Hi,
Is it possible to have a popup form(FILE) on a Form(FILE)?
Problem is that the 'Save' button on the popup not doing anything.
I have this working as a popup Form(MEM) on a Form(FILE)
Seem to recall from a webinar question that this is a problem that either the Parent from must be MEM and the popup can be file , or the other way, but both cannot be file based?
Tried to find the webinar, but no luck.
thanks
Johan
Is it possible to have a popup form(FILE) on a Form(FILE)?
Problem is that the 'Save' button on the popup not doing anything.
I have this working as a popup Form(MEM) on a Form(FILE)
Seem to recall from a webinar question that this is a problem that either the Parent from must be MEM and the popup can be file , or the other way, but both cannot be file based?
Tried to find the webinar, but no luck.
thanks
Johan
4
Web Server - Ask For Help / Re: GPF on Line=1774 Proc=SSL_OUR_SERVERSWITCHTOSSL
« on: June 05, 2026, 10:36:33 PM »
Hi,
Found it!
thanks
Johan
Found it!
thanks
Johan
5
Web Server - Ask For Help / Re: GPF on Line=1774 Proc=SSL_OUR_SERVERSWITCHTOSSL
« on: June 05, 2026, 08:50:29 AM »
Hi Jorge
From the General extension, "Log files" tab, activated Force /netall
Is it possible to gibe more info on exactly where this is?
Think I zigged instead of zagged, can't find this setting
thanks
Johan
From the General extension, "Log files" tab, activated Force /netall
Is it possible to gibe more info on exactly where this is?
Think I zigged instead of zagged, can't find this setting
thanks
Johan
6
Web Server - Ask For Help / Re: Can you add scripts and css from other servers via href="https://....." ?
« on: January 30, 2026, 09:18:48 PM »Hi Mike
Check the processlink embed
see below some additions I add.
regards
Johan
p_web.ProcessLink PROCEDURE(<string p_action>)
! -----------------------------------------------------------------------------
! The incoming request has been completely parsed and is about to be processed.
! No tables have been opened, but they may be soon so this is a good place
! to set owner and filename variables .
! -----------------------------------------------------------------------------
! [Priority 4000]
self.metaHeaders = ''&|
'<meta http-equiv="content-type" content="text/html; charset=utf-8"/><13,10>'&|
'<meta http-equiv="x-ua-compatible" content="IE=edge"/><13,10>'&|
'<meta name="author" content="TVCweb"/><13,10>'&|
'<meta name="description" content="The Vineyard Connection offers premium wines, in-house wine freight, door-to-door wine courier services, and customs clearance solutions. Join our wine club for seamless deliveries worldwide." /><13,10>'&|
'<meta name="keywords" content="wine shop, wine club, wine freight, wine courier, wine logistics, customs clearance, premium wines, door-to-door wine delivery, South African wines" /><13,10>'&|
'<meta name="viewport" content="width=device-width, initial-scale=1.0" /><13,10>'&|
'<link rel="preconnect" href="https://fonts.googleapis.com" /><13,10>'&|
'<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin/><13,10>'&|
'<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=PT+Serif:ital@0;1&display=swap" rel="stylesheet"/><13,10>'&|
'<link rel="icon" href="/images/favicon.ico" type="image/x-icon" /><13,10>'
7
Web Server - Ask For Help / Re: Change Page Title - browser tab description
« on: December 03, 2025, 08:55:27 PM »
Hi Jane
Thanks!
Coincidentally I found the same way late last night from ChatGPT, but did not try to implement.
Got it working this morning by adding this to the "send new value to server" embed
p_web.Script('document.title="' & clock() & '";')
Pretty handy, multiple tabs, can display client name, quote nrs, order nr, status etc...
Hardest thing to do now is decide what to display and to keep it short enough
NTWS covers so much thought there might be a builtin method.
thanks again
Johan
Thanks!
Coincidentally I found the same way late last night from ChatGPT, but did not try to implement.
Got it working this morning by adding this to the "send new value to server" embed
p_web.Script('document.title="' & clock() & '";')
Pretty handy, multiple tabs, can display client name, quote nrs, order nr, status etc...
Hardest thing to do now is decide what to display and to keep it short enough
NTWS covers so much thought there might be a builtin method.
thanks again
Johan
8
Web Server - Ask For Help / Re: Change Page Title - browser tab description
« on: December 02, 2025, 09:39:44 PM »
Hi Ron
No,
Its the 'Orders' with the red logo which is on one of the browser tabs.
Currently it's generic, but would be good to have the actual order number there or the quote nr,
if multiple tabs are open
I have added an attachment that currently show multiple tabs with the order nr , this is loaded at page loading,
Trying to see if I can change that text while the user is on the form, eg. when it's a quote and the users converts to a confirmed order, then change it from the quote nr to the order nr.
This is not critical, but a nice touch, and would be good to know how to access that data as it might have other uses for feedback.
This is an example of Bitfinex crypto trading exchange updating the price live
https://trading.bitfinex.com/trading?type=exchange
regards
Johan
No,
Its the 'Orders' with the red logo which is on one of the browser tabs.
Currently it's generic, but would be good to have the actual order number there or the quote nr,
if multiple tabs are open
I have added an attachment that currently show multiple tabs with the order nr , this is loaded at page loading,
Trying to see if I can change that text while the user is on the form, eg. when it's a quote and the users converts to a confirmed order, then change it from the quote nr to the order nr.
This is not critical, but a nice touch, and would be good to know how to access that data as it might have other uses for feedback.
This is an example of Bitfinex crypto trading exchange updating the price live
https://trading.bitfinex.com/trading?type=exchange
regards
Johan
9
Web Server - Ask For Help / Re: Change Page Title - browser tab description
« on: December 02, 2025, 06:21:15 AM »Hi Ron
Apologies, my question probably was not clear, seemed very clear to me when I was typing it
See the attachment
On the procedure General TAB, I can specify the page title and I can use a session variable
Looking in the code it is loaded with this line
p_web.MakePage('OrderMasterForm',Net:Web:Form,p_web.site.LoginRequired,p_web.GSV('my_title'),,,)
So I'm hoping to change that to a dynamic quote nr, or an order nr as the user changes the status on the page.
I also possibly created confusion with this line , Ignore this
p_web.ntForm(loc:formname,'setTabHeadingText',0,clip(loc:quote_tab_text))
thanks
Johan
10
Web Server - Ask For Help / Change Page Title - browser tab description
« on: November 29, 2025, 10:11:28 PM »
Hi,
How to update the browser tab heading dynamically as a user changes fields on a form.
eg. change from quote to order , then to change the browser tab description from the quote nr to the order nr
Changing a tab heading I used the following
p_web.ntForm(loc:formname,'setTabHeadingText',0,clip(loc:quote_tab_text))
I see the this line in the webhandler when the page is created
p_web.MakePage('OrderMasterForm',Net:Web:Form,p_web.site.LoginRequired,p_web.GSV('my_title'),,,)
However cannot find how to update the browser tab
thanks
Johan
How to update the browser tab heading dynamically as a user changes fields on a form.
eg. change from quote to order , then to change the browser tab description from the quote nr to the order nr
Changing a tab heading I used the following
p_web.ntForm(loc:formname,'setTabHeadingText',0,clip(loc:quote_tab_text))
I see the this line in the webhandler when the page is created
p_web.MakePage('OrderMasterForm',Net:Web:Form,p_web.site.LoginRequired,p_web.GSV('my_title'),,,)
However cannot find how to update the browser tab
thanks
Johan
11
Web Server - Ask For Help / Re: Pass a Session Variable as a parameter?
« on: November 25, 2025, 08:20:43 AM »Hi Jane
Thanks , I do pass p_web into other functions and have that working when it's functions that work with p_web and session variables,
but in this case it's a function that only receives a stringtheory object and then populates the data.
It's unaware of which specific session variable to load or unaware that it's a NTWS
I have it working with a temp stringtheory object, was just looking at it and thinking there was a way to reference the session variable as a stringtheory obect and then pass that in.
thanks
Johan
12
Web Server - Ask For Help / Re: Pass a Session Variable as a parameter?
« on: November 25, 2025, 04:47:44 AM »
Hi,
Sorry had to add, this is how I am doing currently.
my_tmp_st stringtheory
MyFunction(my_tmp_st)
p_web.SSV('session_var',my_tmp_st.GetValue())
Johan
Sorry had to add, this is how I am doing currently.
my_tmp_st stringtheory
MyFunction(my_tmp_st)
p_web.SSV('session_var',my_tmp_st.GetValue())
Johan
13
Web Server - Ask For Help / Pass a Session Variable as a parameter?
« on: November 25, 2025, 04:33:26 AM »
Hi,
Sure I know this but it's buried in the year end brain fog of too much screen time and not enough down time....
Think I might even have asked this somewhere, sometime, but cannot find the answer.
How to pass a session variable to a function.
As I understand session variables are stringtheory objects, so if I have a function like
MyFunction(stringtheory tmpstr)
How do I pass a session variable into that function without using intermediary strings
thanks
Johan
Sure I know this but it's buried in the year end brain fog of too much screen time and not enough down time....
Think I might even have asked this somewhere, sometime, but cannot find the answer.

How to pass a session variable to a function.
As I understand session variables are stringtheory objects, so if I have a function like
MyFunction(stringtheory tmpstr)
How do I pass a session variable into that function without using intermediary strings
thanks
Johan
14
Web Server - Ask For Help / Re: NetWebClient - post data?
« on: September 04, 2025, 08:40:55 AM »
Hi Jane
thanks
NetShowSend=>1 is exactly what I was after
thanks
Johan
thanks
NetShowSend=>1 is exactly what I was after
thanks
Johan
15
Web Server - Ask For Help / NetWebClient - post data?
« on: September 02, 2025, 10:02:06 PM »
Hi,
How do I check the actual Post request?
Having some issues and want to make sure that all the bits are in the correct places.
Current specific error that I'm getting is that the bearer token is invalid, as far as I can it's good and has not expired.
So want to see what the post data actually looks like, complete with header etc...
thanks
Johan
How do I check the actual Post request?
Having some issues and want to make sure that all the bits are in the correct places.
Current specific error that I'm getting is that the bearer token is invalid, as far as I can it's good and has not expired.
So want to see what the post data actually looks like, complete with header etc...
thanks
Johan