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.
76
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
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
77
Web Server - Ask For Help / switch between SSL and non SSL for desktop development.
« on: February 20, 2018, 02:34:01 PM »
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
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
78
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
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
79
Web Server - Ask For Help / Can a Web Server send SOAP requests and get responses to an external server?
« on: January 07, 2018, 08:03:32 AM »
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
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
80
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
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
81
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
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
82
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
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
83
Web Server - Ask For Help / Javascript error with simple NT 8.07 REport print.
« on: February 22, 2017, 11:52:14 AM »
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
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
84
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
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
85
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
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
86
Web Server - Ask For Help / How to set paramater to pass in the URL line
« on: January 23, 2015, 12:59:20 PM »
Hi
Trying to pass the value of a VARIABLE as a parameter on the URL line for a Lookup button.
For the Lookup button, Parameters(n=v&n=v) seem to pass the string and not the value of the string itself - e.g.
I want to pass the contents of CLS:DX1 field which is actually = '250.55'
Setting the Parameters line lookfld=CLS:DX1 actually passes the text 'lookfld=CLS:DX1' in the URL parameter list - I want it to look like 'lookfld=250.55'
so that I can get the value in the called procedure.
What is the trick?
THanks
Ron
Trying to pass the value of a VARIABLE as a parameter on the URL line for a Lookup button.
For the Lookup button, Parameters(n=v&n=v) seem to pass the string and not the value of the string itself - e.g.
I want to pass the contents of CLS:DX1 field which is actually = '250.55'
Setting the Parameters line lookfld=CLS:DX1 actually passes the text 'lookfld=CLS:DX1' in the URL parameter list - I want it to look like 'lookfld=250.55'
so that I can get the value in the called procedure.
What is the trick?
THanks
Ron
87
Web Server - Ask For Help / Compile error V 8.34 upgrade on picture
« on: January 23, 2015, 09:29:08 AM »
Hi
Using Clarion 8.
Just installed NT 8.34.
Have String Theory in app V 2.09
Just started getting compile errors on my app:
Illegal data type: STRINGPICTURE - C:\Program Files (x86)\SoftVelocity\Clarion8\Accessory\libsrc\win\NetWeb.Clw:10588,10 ! >>>>pic StringPicture
Unknown procedure label: ! >>> pic.ParsePicture(p_pic)
And a few more errors related to picture processing.
Is it me - what might the problem be??
or is it the update???
TIA,
Ron
Using Clarion 8.
Just installed NT 8.34.
Have String Theory in app V 2.09
Just started getting compile errors on my app:
Illegal data type: STRINGPICTURE - C:\Program Files (x86)\SoftVelocity\Clarion8\Accessory\libsrc\win\NetWeb.Clw:10588,10 ! >>>>pic StringPicture
Unknown procedure label: ! >>> pic.ParsePicture(p_pic)
And a few more errors related to picture processing.
Is it me - what might the problem be??
or is it the update???
TIA,
Ron
88
Web Server - Ask For Help / Display a value on A BROWSE page using XML
« on: April 03, 2014, 11:16:28 AM »
Hi,
I am trying to display a value on a BROWSE. The value is passed in a parameter.
I tried XML for the page with the following:
<div0>ICD 9 Code:
<!--Net:v:'org'-->
</div0>
I get the string ICD 9 Code: displayed correctly but it does not display the passed parameter ( which is there and loaded).
How do I get this to work or is there another way to display a passed parameter?
Thanks,
Ron Jolda
I am trying to display a value on a BROWSE. The value is passed in a parameter.
I tried XML for the page with the following:
<div0>ICD 9 Code:
<!--Net:v:'org'-->
</div0>
I get the string ICD 9 Code: displayed correctly but it does not display the passed parameter ( which is there and loaded).
How do I get this to work or is there another way to display a passed parameter?
Thanks,
Ron Jolda
89
Web Server - Ask For Help / Get parameter value from GET
« on: April 03, 2014, 10:57:33 AM »
Hi,
I have a GET that looks like this: GET /B_maps?_ajax_=1&Lookup_btn=1&_refresh_=sort&_popup_=1&LookupField=CLS__DX1NEW&_sort_=MCR:Dcode9&_title_=DX%201%20NEW:&THISPARM&CLS__DX1NEW=
It is calling the procedure B_maps. I am trying to get the parameter that is: THISPARM
Tried all kinds of crazy permutations of lookcode = p_web.GetValue('_title_=DX%201%20NEW:') but can't get it right to get the value of THISPARM.
What it the correct label to use in the p_web.GetValue(
) to retrieve the value of THISPARM???
TIA
Ron Jolda
I have a GET that looks like this: GET /B_maps?_ajax_=1&Lookup_btn=1&_refresh_=sort&_popup_=1&LookupField=CLS__DX1NEW&_sort_=MCR:Dcode9&_title_=DX%201%20NEW:&THISPARM&CLS__DX1NEW=
It is calling the procedure B_maps. I am trying to get the parameter that is: THISPARM
Tried all kinds of crazy permutations of lookcode = p_web.GetValue('_title_=DX%201%20NEW:') but can't get it right to get the value of THISPARM.
What it the correct label to use in the p_web.GetValue(

TIA
Ron Jolda
90
Web Server - Ask For Help / Setting value for locator when lookup browse called from Form
« on: March 28, 2014, 05:40:14 PM »
Hi,
NT 8, Clarion 8.
I have a field on a form with a lookup.
I want to prime the Search on the Lookup with a value.
I can see the Parameters (n=v&n=v) in the Lookup Settings tab and I see that this is sent to the Lookup procedure.
QUESTIONS:
1. How to I capture this Parameter in the Lookup form ( it is set to a passed Queue value that I can recover in the lookup procedure?
2. How do I use this Parameter to in essence "prime the search field" so that the Browse gets to the closest match?
TIA,
Ron Jolda
NT 8, Clarion 8.
I have a field on a form with a lookup.
I want to prime the Search on the Lookup with a value.
I can see the Parameters (n=v&n=v) in the Lookup Settings tab and I see that this is sent to the Lookup procedure.
QUESTIONS:
1. How to I capture this Parameter in the Lookup form ( it is set to a passed Queue value that I can recover in the lookup procedure?
2. How do I use this Parameter to in essence "prime the search field" so that the Browse gets to the closest match?
TIA,
Ron Jolda