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

Pages: 1 [2] 3 4 ... 9
16
Web Server - Ask For Help / Just Loaded Nettalk 11.21 - 3 September 2019
« on: September 15, 2019, 02:24:53 AM »
Got following Compile Errors
Please HELP
Procedure doesn't belong to module: NETWEBRELATIONMANAGER - C:\Users\Public\Documents\SoftVelocity\Clarion11\Solutions\LexCorp\Lexco_nw.clw:165
Procedure doesn't belong to module: NETWEBFILENAMED - C:\Users\Public\Documents\SoftVelocity\Clarion11\Solutions\LexCorp\Lexco_nw.clw:212
Procedure doesn't belong to module: NETWEBDLL_LEXCORP_SENDFILE - C:\Users\Public\Documents\SoftVelocity\Clarion11\Solutions\LexCorp\Lexco_nw.clw:302

17
Web Server - Ask For Help / Help Clarion 11 problem
« on: August 11, 2019, 04:17:59 PM »
I get a text box when I try compile
The project for the application "complaints" does not exist on the
same directory. project:
c:\blah\blah\complaints.cwproj

 

18
I have a netwebbrowse that displays a large text field
If I click on the sort header field on any of the columns it works
unless I click on the description field  then all records disappear and I get the no records message
if i click on any other header still no records appear
if i go out of the popup form and back in again still no records
looks like I need to close the webserver pgm and browser before I see the records again.

Any help on trying to debug this ?
 

19
Web Server - Ask For Help / File Upload Button
« on: April 30, 2019, 03:10:57 AM »
Is there a limit on the size of a file upload other that the max limit set on the template.
I have not set the max limit but some large files my customers try to upload fail .
Is there another setting or limit set somewhere ?

20
Web Server - Ask For Help / How to manage an incoming url call
« on: April 23, 2019, 06:06:25 AM »
I have to give a service provider an incoming URL that they will call to pass me information as and when it happens.
I know how to do this with nettalk by creating a webmethod and service.
What I want to do is give one url for multiple tasks.
I want the one url to decide which actual url to call either one of ours or a third party.
I want to log the incoming request which I know how to do.
I also know how to construct a new call to another url using nettalk by doing a post, but how do I just pass the request on exactly as it came in to another webservice ?
Is it by doing a redirect ?

 

21
Web Server - Ask For Help / Bad Session ID
« on: March 10, 2019, 09:47:40 AM »
I finally got redirect working. Sort off, will discuss in this weeks webinar
But when I changed my port from 88 to 8118
I get Bad session ID returned from the Chrome Browser.
I fired up netdemo to see what would happen and the index page returns no problem
I test my webserver on Edge and there is no problem.
I only get Bad Session ID from the Chrome Browser.
If I change my port back to 88 , then  the chrome browser works ?

22
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.

23
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 ?

24
I saw bruce demo a program using it ?

25
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
 


26
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

27
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.

28
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 ?

29
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"

30
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 ... 9