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.
226
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
227
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
228
Web Server - Ask For Help / Re: Memform - embed code on Button ?
« on: December 09, 2017, 08:53:59 AM »
SOLUTION!!!!
I have a Memory Form with a bunch of attributes of Psych Meds and uses. E.g. Anxiety, depression, PTSD, OCD, organic psychosis. These are check boxes.
I have a CHILD Browse of the Psych Meds and it gets filtered by the attributes selected.
ANSWER,
I made each if the check boxes refresh the Child Browse.
In the Child Browse, Embed 2, Before Browse Loop - 11 Set Filter:
CODE:
===========================================
ThisView{prop:Filter} = '' ! have to clear it and rebuild with each pass.
if p_web.GetSessionValue('bhm:Depression') = 1
if ThisView{prop:Filter} = '' ! cstring
ThisView{prop:Filter} = 'bhm:Depression= <39>X<39>'
ELSE
ThisView{prop:Filter} = ThisView{prop:Filter} & ' AND ' & 'bhm:Depression=<39>X<39>'
END
END
if p_web.GetSessionValue('bhm:BiPolar') =1
if ThisView{prop:Filter} = '' ! cstring
ThisView{prop:Filter} = 'bhm:BiPolar=<39>X<39>'
ELSE
ThisView{prop:Filter} = ThisView{prop:Filter} & ' AND ' & 'bhm:BiPolar=<39>X<39>'
END
END
if p_web.GetSessionValue('bhm:Panic') = 1
if ThisView{prop:Filter} = '' ! cstring
ThisView{prop:Filter} = ThisView{prop:Filter} & 'bhm:Panic=<39>X<39>'
ELSE
ThisView{prop:Filter} = ThisView{prop:Filter} & ' AND ' & 'bhm:Panic=<39>X<39>'
END
END
=============================
This builds the filter real time and resets the Child Browse with check or uncheck of any attribute ( have 19 of them).
Kinda neat!
FWIW,
Ron Jolda
I have a Memory Form with a bunch of attributes of Psych Meds and uses. E.g. Anxiety, depression, PTSD, OCD, organic psychosis. These are check boxes.
I have a CHILD Browse of the Psych Meds and it gets filtered by the attributes selected.
ANSWER,
I made each if the check boxes refresh the Child Browse.
In the Child Browse, Embed 2, Before Browse Loop - 11 Set Filter:
CODE:
===========================================
ThisView{prop:Filter} = '' ! have to clear it and rebuild with each pass.
if p_web.GetSessionValue('bhm:Depression') = 1
if ThisView{prop:Filter} = '' ! cstring
ThisView{prop:Filter} = 'bhm:Depression= <39>X<39>'
ELSE
ThisView{prop:Filter} = ThisView{prop:Filter} & ' AND ' & 'bhm:Depression=<39>X<39>'
END
END
if p_web.GetSessionValue('bhm:BiPolar') =1
if ThisView{prop:Filter} = '' ! cstring
ThisView{prop:Filter} = 'bhm:BiPolar=<39>X<39>'
ELSE
ThisView{prop:Filter} = ThisView{prop:Filter} & ' AND ' & 'bhm:BiPolar=<39>X<39>'
END
END
if p_web.GetSessionValue('bhm:Panic') = 1
if ThisView{prop:Filter} = '' ! cstring
ThisView{prop:Filter} = ThisView{prop:Filter} & 'bhm:Panic=<39>X<39>'
ELSE
ThisView{prop:Filter} = ThisView{prop:Filter} & ' AND ' & 'bhm:Panic=<39>X<39>'
END
END
=============================
This builds the filter real time and resets the Child Browse with check or uncheck of any attribute ( have 19 of them).
Kinda neat!
FWIW,
Ron Jolda
229
Web Server - Ask For Help / Re: Memform - embed code on Button ?
« on: December 09, 2017, 06:08:53 AM »
Yes, it is popup - interesting thought. Have you tried to revert it from being a pop up and what have your results been?
Ron
Ron
230
Web Server - Ask For Help / Re: Memform - embed code on Button ?
« on: December 08, 2017, 11:41:48 AM »
Interesting, I could NOT get the code to run for a BUTTON ( field set up as a BUTTON). However, I changed the field to a Checkbox and got it to execute the code.
Ron
Ron
231
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
232
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
233
Web Server - Ask For Help / Re: Javascript error with simple NT 8.07 REport print.
« on: February 23, 2017, 03:25:46 AM »
HI All,
SOLVED!!!!
Found the problem = it was my filter for the report.
Reconfigured the filter and it works!
Ron Jolda
SOLVED!!!!
Found the problem = it was my filter for the report.
Reconfigured the filter and it works!
Ron Jolda
234
Web Server - Ask For Help / Re: Javascript error with simple NT 8.07 REport print.
« on: February 23, 2017, 03:19:38 AM »
HI,
From Firebug: ReferenceError: $ is not defined[Learn More] Report_FELIST:243:1
The character encoding of the HTML document was not declared. The document will render with garbled text in some browser configurations if the document contains characters from outside the US-ASCII range. The character encoding of the page must be declared in the document or in the transfer protocol.
This is the HTML for the report: at line 243: ==> $(document).ready( function(){$("#browsea_felist_div").ntbrowse({animateSpeed:500,cancelText:"No",closeAction:"BrowseB_Batch",confirmDelete:1,confirmDeleteMessage:"Are you sure you want to delete this record?",confirmText:"Confirm",deleteText:"Delete",form:"",formChange:"UpdateA_FELIST",formCopy:"",formDelete:"",formInsert:"UpdateA_FELIST",formpopup:1,formView:"",id:"browsea_felist",lookupField:"",parent:"",parentrid:"",popup:0,procedure:"browsea_felist",randomid:158217,rowsHigh:1,selectAction:"",title:"A_ FELIST",value:"yG7oLvhs"});
Seems to be complaining about: $(document).ready( function()
Where do I go to fix this in NT?
TIA,
Ron Jolda
From Firebug: ReferenceError: $ is not defined[Learn More] Report_FELIST:243:1
The character encoding of the HTML document was not declared. The document will render with garbled text in some browser configurations if the document contains characters from outside the US-ASCII range. The character encoding of the page must be declared in the document or in the transfer protocol.
This is the HTML for the report: at line 243: ==> $(document).ready( function(){$("#browsea_felist_div").ntbrowse({animateSpeed:500,cancelText:"No",closeAction:"BrowseB_Batch",confirmDelete:1,confirmDeleteMessage:"Are you sure you want to delete this record?",confirmText:"Confirm",deleteText:"Delete",form:"",formChange:"UpdateA_FELIST",formCopy:"",formDelete:"",formInsert:"UpdateA_FELIST",formpopup:1,formView:"",id:"browsea_felist",lookupField:"",parent:"",parentrid:"",popup:0,procedure:"browsea_felist",randomid:158217,rowsHigh:1,selectAction:"",title:"A_ FELIST",value:"yG7oLvhs"});
Seems to be complaining about: $(document).ready( function()
Where do I go to fix this in NT?
TIA,
Ron Jolda
235
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
236
Web Server - Ask For Help / Re: FLow control in a Memory Form
« on: February 20, 2017, 04:48:04 AM »
Hi Bruce,
Want to go to a BLANK page.
what is the code and where does it go to go to a blank page.
Thanks,
Ron
Want to go to a BLANK page.
what is the code and where does it go to go to a blank page.
Thanks,
Ron
237
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
238
Web Server - Ask For Help / Re: Trackers PDF Tools Report Global template V 4.1 Evaluation to Purchase??
« on: January 10, 2017, 01:03:39 PM »
HI,
Yellow evaluation watermarks are "built into" Tracker Tools - you have to purchase a license and that will remove the watermarks. You cannot buy a Version 4 or Version 5 license. They are on Version 6. Unfortunately, they do not have a Clarion coder and there is no clarion support for Version 6 yet.
FWIW,
Ron Jolda
Yellow evaluation watermarks are "built into" Tracker Tools - you have to purchase a license and that will remove the watermarks. You cannot buy a Version 4 or Version 5 license. They are on Version 6. Unfortunately, they do not have a Clarion coder and there is no clarion support for Version 6 yet.
FWIW,
Ron Jolda
239
Web Server - Ask For Help / Re: SSL application and COMODO certificate-help
« on: November 30, 2016, 05:32:08 PM »
Hi,
I had to go to the Hosting Management console at Go Daddy after logging into my account. I edited the A record and pointed it to my server which is remotely located and my SSL Net talk app works correctly with the SSL certificates I got from Go Daddy.
Ron Jolda
I had to go to the Hosting Management console at Go Daddy after logging into my account. I edited the A record and pointed it to my server which is remotely located and my SSL Net talk app works correctly with the SSL certificates I got from Go Daddy.
Ron Jolda
240
Web Server - Ask For Help / Re: SSL application and COMODO certificate-help
« on: November 30, 2016, 05:29:25 PM »
Hi,
I domain name registered with GoDaddy and have server located remotely. I purchased SSL certificate from Go Daddy and had to edit the A record on my GoDaddy Domain Name and point it to the IP address of my remote server. Did this all from the Hosting management console. After that, my Net talk app with SSL worked correctly!
FWIW,
Ron Jolda
I domain name registered with GoDaddy and have server located remotely. I purchased SSL certificate from Go Daddy and had to edit the A record on my GoDaddy Domain Name and point it to the IP address of my remote server. Did this all from the Hosting management console. After that, my Net talk app with SSL worked correctly!
FWIW,
Ron Jolda