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

Pages: [1] 2 3
1
I started playing with the AttachmentListQ and am renaming the desired attachments as they are saved.  Not sure if this is the best way or not so if anyone has any better ideas please let me know.

2
I'm building an application that will download emails from an internal email server.  The contents of the email will be used to update a DB Record.  If there are attachments on the email, can I set the attachment name before it is saved to the local drive?

3
Web Server - Ask For Help / Re: Compile Error with latest upgrade
« on: June 17, 2018, 06:06:39 PM »
Must have been something with my installation.  I have all of these applications installed on a desktop.  I moved them to my laptop (freshly installed) and everything is working fine.

4
Web Server - Ask For Help / Compile Error with latest upgrade
« on: June 15, 2018, 08:00:38 PM »
Clarion 10 - Latest revision
Just upgraded StringTheory to latest Version
Then updgraded NetTalk 10 Server to latest version

Trying to add a webserver to an existing app.  I can use the utility to add the WebServer and WebHandler just fine.  As soon as I add a Browse or Form Control, I get this compiler error.

Unknown Procedure Label (Clicking on the error takes me to this line)
    p_web.MakePage('RegistrationFormControl',Net:Web:Form,0,'Update Registration',,)

The same behavior also happens when I load and compile the Nettalk Demo apps.

Anyone have any thoughts?

5
Web Server - Ask For Help / Re: SSL Setup Not Available
« on: November 03, 2017, 07:04:54 PM »
Trying to find where I specify SSL/TLS and the certificate name.  Attached is a screenshot of the security tab of my web server extension.  According to the documentation, I believe I'm looking for a checkbox labeled "Use TLS to make the server secure" and I can't find it anywhere.


6
Web Server - Ask For Help / SSL Setup Not Available
« on: November 02, 2017, 07:31:26 PM »
Using Clarion 10 and NetTalk 10 Server.  Trying to deploy a secure web server but the options aren't available on the security tab of the web server extension.  Is there something I need to do to make sure these are available to set up?

7
Bruce/Kevin,

I found the problem and it was a local coding error on my side.  Completely outside of Nettalk.  So sorry for the confusion.

8
Web Server - Ask For Help / Re: Nettalk 9 Server upgrade issue
« on: June 09, 2016, 07:37:25 PM »
Kevin and Bruce,

Thank you both for responding.  Here is what I have done but it hasn't helped yet.

1)  Create a new application folder and only move the .app, .dct and some .tps file over and recompile.
2)  Review the upgrade docs to ensure I have touched everything.  I did miss the web server logging control before but I removed it and added it again.  Other items I had to change were the items around dealing with packet variable and the options variable.  None of the others applied to my instance.

I don't get the same error now but the program still crashes.  I've attached the screenshot of the crash.  I did move the clarun.dll to the \clarion10\bin folder and change the project options to Debug, but not sure what to do after that.

Thanks again for the help.


9
Web Server - Ask For Help / Nettalk 9 Server upgrade issue - Resolved
« on: June 06, 2016, 05:11:56 PM »
I recently went from Clarion 9.1 using Nettalk 7 to Clarion10 using Nettalk 9 server edition.  I'm running Windows 10 Pro as my OS.  The only code change I had to make to my code to get a successful compile what when I was setting the packet variable.  Now I use packet.append as recommended in the documentation.  My application loads and runs fine.  I then start the web server and all is fine.  The second that I browse to the web page, the application crashes.

I've attached a screenshot of the application as it crashed.  This app has worked fine for years under previous versions of Clarion and Nettalk.  I'm just not sure where to start in troubleshooting.  The only other major difference that I can think of is that my OS is now Windows 10 as well.  Previously, I always ran under Windows 7 Pro.

Thanks for any help in advance.

Brad

10
Web Server - Ask For Help / Re: Double Quotes in a string field
« on: June 30, 2015, 04:30:47 AM »
Bruce,

I don't see that as an option on a field of type String.  It is there on text fields but this particular field is a 1 line short description field and I don't want a textarea type of box.  I have attached screenshots of my field configs for this field.

Thanks,

[attachment deleted by admin]

11
Web Server - Ask For Help / Double Quotes in a string field
« on: June 29, 2015, 01:37:33 PM »
I have a simple help desk system that I build in Nettalk.  I have a string field that jacks up the whole form when a user put's Double Quotes in the string field.  I've attached a screenshot of the messed up form.  Is there a setting to help it handle the double quotes (") better in a string field.  I'm using Clarion 9 and NT7.  The field is a string in the nettalk settings.

Thanks,

Brad

[attachment deleted by admin]

12
Web Server - Ask For Help / Re: Local variable in NetWebBrowse - HELP
« on: December 10, 2014, 09:44:59 AM »
Thanks Bruce.  I'll move it to a Memory File.

Where can I see the output of the p_web.Trace method.  When I added those lines, I don't seen anything in the Webserver logging window.  Is there a log file I need to look at if I log to disk?

13
Web Server - Ask For Help / Local variable in NetWebBrowse - HELP
« on: December 09, 2014, 06:25:05 PM »
Ok, I'm losing my mind on this one.  I have a NetWebBrowse procedure that is using a local variable called loc:ImageURL, I have the code to populate this variable in the Value::loc:ImageURL embed point (1 Start).  The code to fill the loc:ImageURL variable is :

URL:ItemNumber=clip(ITE:ItemNumber)
get(GLO:URLQueue, URL:ItemNumber)
if errorcode()
    loc:ImageURL='--'
ELSE
    loc:ImageURL=URL:URL
END

For reference, I have a URL list that is stored in a Global Queue.  I added a list box to the WebServer window to display the queue so I know that is values.  However, the loc:ImageURL column never has anything in it, not even the '--'.  It's almost like this code never runs. 

Am I in the wrong embed point?
What is the best embed point to set local variable for each row of a browse?

I'm using Clarion 9.1 and NT7

Here is the entire generated embed point

value::loc:ImageURL  Routine
  data
loc:extra      String(252)
loc:disabled   String(20)
loc:FormOk     Long(1)
loc:options    String(OptionsStringLen)  ! options for jQuery calls
loc:fieldClass String(252)
loc:javascript String(JavascriptStringLen)
loc:ok         Long
! Start of "Data section, where a Cell value is calculated"
! [Priority 5000]

! End of "Data section, where a Cell value is calculated"
  code
  ! Start of "Before a Cell value is calculated"
  ! [Priority 4000]
 
  URL:ItemNumber=clip(ITE:ItemNumber)
  get(GLO:URLQueue, URL:ItemNumber)
  if errorcode()
      loc:ImageURL='--'
  ELSE
      loc:ImageURL=URL:URL
  END
 
 
  ! End of "Before a Cell value is calculated"
    if false
    else ! default settings for column
      loc:extra = ''
      packet = clip(packet) & p_web.DivHeader('Auction_BrowseAllItems_loc:ImageURL_'&ITE:ItemNumber,,net:crc,,loc:extra)
      packet = clip(packet) &  p_web.CreateHyperLink(p_web._jsok(Left(Format(loc:ImageURL,'@s500')),(Net:HtmlOk*1)+(Net:UnsafeHtmlOk*1)),Choose(loc:formpopup = Net:Page,loc:ImageURL,choose(loc:formpopup=Net:Popup,'#','')),,p_web.combine(p_web.site.style.BrowseHyperlinks,),loc:javascript,,0,(Net:HtmlOk*1)+(Net:UnsafeHtmlOk*1),,)
    End
    packet = clip(packet) & p_web.DivFooter(Net:NoSend)
    ! Start of "After a Cell value is calculated"
    ! [Priority 5000]
   
    ! End of "After a Cell value is calculated"
    if loc:eip = 1
      do SendPacket
    end
! ----------------------------------------------------------------------------------------

14
Web Server - Ask For Help / Re: Suppress default header on Browse
« on: July 22, 2014, 09:56:22 AM »
I already tried that but the header is not going away.  I've cleared browser cache, etc....

Screen prints attached of clarion config screens.

I'm on Clarion 9 and Nettalk 7.39.

[attachment deleted by admin]

15
Web Server - Ask For Help / Suppress default header on Browse
« on: July 18, 2014, 09:07:07 AM »
What is the easiest way to suppress the default page header on a webbrowse ?

I only want the page to show the browse data.  No header or footer.

Pages: [1] 2 3