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

Pages: 1 2 3 [4] 5 6 ... 8
46
Web Server - Ask For Help / Re: jQuery mobile framework?
« on: June 18, 2011, 07:46:21 AM »
Bruce,

Are you looking to get NT6 / jQuery mobile framework out in 2011 or is this a 2012 project?

Thank you,
David.

47
Web Server - Ask For Help / NT5.11 - Keyboard Enter Not Working
« on: January 17, 2011, 05:35:17 PM »
I tested this with my app and Example 7.  Pressing then Enter key no longer works on forms.  Tested on IE8 and Chrome 8.  Can anyone else confirm this?

David
C7.3, NT5.11, Chrome

48
Web Server - Ask For Help / New Methods in 5.03 - What are they for?
« on: November 25, 2010, 04:44:54 AM »
5.03 introduced the following: Add: New methods, SetUserSetting, GetUserSetting, LoadUserSetting

What do the new methods do?  Is this session information that would be saved to disk?  Server settings?

Thank you,
David.

49
Thank you Bruce,

After reading your post and playing with the example app, I was able to post a file to my web server very easily.

ThisWebClient.SetAllHeadersDefault()
ThisWebClient.CanUseProxy = TRUE
ThisWebClient.HeaderOnly = FALSE

ThisWebClient.AsyncOpenUse = TRUE ! Use AsyncOpen 12 seconds (recommended)
ThisWebClient.AsyncOpenTimeOut = 1200 ! Up to 12 seconds to connect

ThisWebClient.InActiveTimeout = 9000 ! Set IdleTimeout 90 seconds

ThisWebClient.SSLCertificateOptions.CertificateFile = ''
ThisWebClient.SSLCertificateOptions.PrivateKeyFile = ''
ThisWebClient.SSLCertificateOptions.DontVerifyRemoteCertificateCommonName = TRUE
ThisWebClient.SSLCertificateOptions.DontVerifyRemoteCertificateWithCARoot = TRUE

ThisWebClient.OptionAutoCookie = 1
ThisWebClient.SetValue('UploadFile','c:\temp\mytestfile.txt',Net:IsFile)
ThisWebClient.SetValue('pressedButton','save_btn')
   
ThisWebClient.Post('https://localhost', '')

50
I'm not sure how to start this at all.... I have read through the posts regarding posting a file to a web server and am no closer to getting started.

I have a NetWebServer that displays a NetWebForm.  The only field on the form is a FileUpload field, and there is a save button.  Using NetWebClient, Can I fetch the page, set the element to the file name I want to upload and then "click" the save button?

Thank you for any help you can provide.
David.

51
Web Server - Ask For Help / Re: SSL - Questions for Bruce
« on: October 20, 2010, 01:13:37 PM »
Outstanding...

52
Web Server - Ask For Help / SSL - Questions for Bruce
« on: October 19, 2010, 05:12:56 PM »
Bruce,

I have 2 SSL related questions.

1. I was looking at OpenSSL and noticed there have been many updates and bug fixes for the dll's, yet NT is still shipping with the 2007 version.  I lightly tested the June 2010 version 1.0.0.0a and it worked without any problems with my NT5 web server.  Is there any reason I shouldn't use the newer version?

2.  One of my clients notified me regarding a recent security audit that included an NT5 webserver.  The audit indicated that while SSL3 was being used, SSL2 was also available.  Meaning that they could force my server to respond using SSL2.  SSL2 has many known security issues and has been replaced by SSL3 years ago.  Since my app would respond to requests over SSL2, my app is potentially at risk for all those hacks.  So my question is..... can you provide a property that a developer could set to restrict SSL to a specific version.  For security purposes, this should probably be set by default.  In my reading they said that unless you are using IE4, you should be using SSL3.  So defaulting to the newer version shouldn't affect to many users.  Having said all that, I don't entirely know what I am talking about so if something stated above is incorrect I apologize. 

Thank You,
David

53
Web Server - Ask For Help / File Upload - Request for Enhancement
« on: October 18, 2010, 06:15:10 PM »
While testing file upload functionality, I monitored memory utilization.  It appears that NT is saving the uploaded file in memory and once the whole file is received it is writing to disk.  I uploaded a 800MB file and memory utilization jumped to 1.2GB and then the upload failed.

Could you add an option to write chunks of the file to a temp file and then rename it when the upload is complete?

Thank you.
NT5PR32

54
Kevin,

2 for 2.... I had the wrong embed.  I was using the HandleFile before parent and it needs to be in RenameFile before parent.  Wonder why HandleFile didn't work.

55
Kevin,

Thank you!!  gzipall.bat did the trick.

56
Web Server - Ask For Help / JQuery Custom Theme - Can't Get it to Load
« on: October 16, 2010, 12:33:55 PM »
C7.2, NT5PR32

In past versions of NT5, I have simply copied the css and JS files into the appropriate folders and the new theme took.  I can not get my new theme to take now.  I tried the suggestions in other posts, renaming to jquery-ui-1.8.custom.min, and adding to settings for webserver. 

Any suggestions on the steps to take or at least to troubleshoot?
David.

57
Web Server - Ask For Help / self.site.UploadsPath - Not Under Web Folder
« on: October 16, 2010, 12:28:14 PM »
C7.2, NT 5PR32
I want to be able to upload files to another location other than under the web folder structure.  I understand that the web server would not be able to serve the files back out... and that is the intent.

I tried self.site.UploadsPath = 'c:\temp', but the files just get saved into the Uploads folder.  Any suggestions on how to do this?

58
Web Server - Ask For Help / Re: WebServer very slow on Windows7 32bit
« on: September 01, 2010, 02:43:07 AM »
I have a client running a NT5 web server on Win7 32 in a VMWare ESX environment and the app is very fast.  UAC is on.

59
Web Server - Ask For Help / Template Code Generation Issue
« on: July 12, 2010, 05:03:36 PM »
C7.2.7283 NT5PR25

Attached is a screen print of the errors.  It looks like something is missing from one of the template entry fields, but I don't know which one.  Notice the double periods between Defaults and TextValue

s_web._SitesQueue.Defaults..TextValue = clip('Upload')

[attachment deleted by admin]

60
Bruce,

Thank you, that works.

Pages: 1 2 3 [4] 5 6 ... 8