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.


Messages - MikeR

Pages: 1 2 [3] 4 5 ... 18
31
Web Server - Ask For Help / NetwebPage with redirect
« on: March 08, 2019, 10:14:09 PM »
I am trying to redirect a request that comes into myserver to another server.
ie. I have created a netwebpage called red
so when a request comes in to www.myurl/red......
I do a p_web.redirect(www.anotherUrl) at the top of my code in the red netwebpage procedure...
I have also tried p_web.windowopen
Im not sure if this is correct or if its possible to do what I am trying in nettalk.

32
Not that one ,
I will keep looking

33
Web Server - Ask For Help / Secwin for Nettalk
« on: February 04, 2019, 04:21:14 AM »
With Secwin for Nettalk
I can see what groups a user has access to via the updateUser Form
I would like to see for a particular group which users have been allocated to that group
 
any Help ?

34
I saw bruce demo a program using it ?

35
Web Server - Ask For Help / Re: Dynamic pictures missing on report
« on: February 01, 2019, 03:45:51 AM »
Hi Bruce thanks for the reply the image is definitely there.
I do have that check in my snipit source code i send.
The traces only display if the image exists ?
 

36
Web Server - Ask For Help / Dynamic pictures missing on report
« on: January 31, 2019, 03:46:16 PM »
Im sure this is not a nettalk issue, but related to production clarion apps deployed on webservers.

I have a nettalk webserver program.
one of my procedures is a standard clarion report procedure.
it has the sv report to pdf extention and the nettalk related extention to send the pdf to the browser.
the report has an image on it ?image2
at run time i decide which image must be displayed in the report.
below is a snipit of my code :

    if exists(clip(p_web.site.WebFolderPath ) & '\' & p_web.gsv('Cpy:CompanyGuid') & '\smalllogo.jpg')
         SETTARGET(REPORT)
          ?image2{prop:text} = clip(p_web.site.WebFolderPath ) & '\' & p_web.gsv('Cpy:CompanyGuid') & '\smalllogo.jpg' !
          p_web.trace('JMR company Logo path:' & clip(p_web.site.WebFolderPath ) & '\' & p_web.gsv('Cpy:CompanyGuid') & '\smalllogo.jpg') !
          p_web.trace('JMR company logo Prop:Text:' & ?image2{prop:text})
          settarget()
    end

when i run the report from my local development machine everything works fine.
both trace statements show the filename.

However when i deploy to our amazon cloud in production:
the first tracee shows the correct filename.
the second trace statement shows a blank value.
this tells me the ?image2{prop:text} command does not work in the production environment.

I think there might be a dll missing on the production server
If anyone has experienced this problem or has a clue where i should start looking to debug it will be greatly appreciated.

Many Thanks
Mike Richards
 


37
Web Server - Ask For Help / nettalk 11.04 ISMOBILE compile error ?
« on: December 05, 2018, 09:15:59 PM »
error field not found ismobile in greyed out area of index page

38
I have a netwebform
it has a netwebbrowse and an upload button
when the user presses the upload file button a new record is added to a file in the above browse
i refresh the browse and the browse displays the new record as well
all cool.....

however if you sort the browse using the sort tabs and the search entry field is on screen
when you upload the file even if you typed nothing in the search entry field when the browse refreshes
the browse shows no records until you use the clear button to I presume clear the filter
however the filter looks empty in the form
1. how do i stop this
how can i clear the filter programmatically or how do i get the filter input field to dissapear
once you have clicked on the column headings the filter always appears.

39
I have a netwebBrowse with a button that pops open a memory form
Depending on what the user does , even if he cancels out
when he returns I want 1 or more fields on the browse line to be refreshed
I found the GainFocus embed point but dont know what code to insert ?

40
Web Server - Ask For Help / Re: Nettalk 11.03 menu problem
« on: November 21, 2018, 04:59:06 AM »
I have same probelm with 11.03

41
Web Server - Ask For Help / Re: netwebform calc fields on update
« on: November 14, 2018, 08:32:15 AM »
Case Closed Sorted

42
Thx Bruce

setvalue(fil:record,false) fails rule 6
assign(file:record) fails rule 5

43
Web Server - Ask For Help / Re: netwebform calc fields on update
« on: November 14, 2018, 02:23:17 AM »
There is no attachment.
I just need to know what embed point to use to prime fields session values on update that are calculated so the values are initialized correctly

44
How to I set the value of a stringtheory object to the current contents of a file buffer
eg. st1.setvalue(fil:record) give a compiler error "ambiguous procedure call - rule 5"

45
Web Server - Ask For Help / netwebform calc fields on update
« on: November 13, 2018, 07:17:05 AM »
here is a simple example to try show what i am trying to do.
I think i have the wrong imbed point.

I have a netwebform which inputs for example an amount and percentage and saves it to a table.
when the amount or percent is changed on the form i recalc a computed field and display that on the form , it is not saved in the database .
for inserts and / or updates when i alter the field on the form the recalc is done on send newvalue to server and the correct field is refreshed.
 The problem comes in when i go back to the browse , select another record and open the from.
old values of the calc field from the previous form are displayed.
I need to recalc these fields and save there session values before the user sees the screen.
I have put code in the preupdate procedure but it doesnt seem to work.
any help would be appreciated.

Pages: 1 2 [3] 4 5 ... 18