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

Pages: 1 [2]
16
Web Server - Ask For Help / Urgent please, Error in site JavaScript
« on: February 28, 2014, 08:11:33 AM »
All of a sudden while experimenting again I get this error. I tried to look into a NT example and the browser shows only text like website and the mentioned error in the third line after an Image..
The web\scripts, themes, styles Folder of the example are empty. So all the nessesary things where not generated.
What to do ? I don't know whats different to before..
(C9 NT7.35)
TIA, Thomas

17
The Rest - Ask For Help / NetAutoCloseServer.CloseApp question
« on: February 26, 2014, 01:54:19 PM »
Any reason why in this method the loop is doubled ? And why all these events are nessesary ?
TIA Thomas

18
Hello,
for my investigations regarding a project I like to collect some opinions, remarks, hints, no go's, ect.
Maybe it is also of general interest..
Nowadays we must face with different form factors of a screen. So I want my NT site viewable on smartphones (~4 inch) -you know, there will be users- but for sure on tablets (~8 to 12 inch), Notebooks (~14 to 17 inch) and ordinary PC Monitors ( up to 30 Inch and more).
I know there's a mobile switch in NT. But AFAIK this has nothing todo with real "responsive layouts". Am I wrong ?
1. Is it possible to have a web project working well on so many screen sizes ?
2. Can I use Frames ? Do Frames behave well on small Screens (mobile, tablet) ?
3. Am I in general independent of the different pixel resolutions, I mean ordinary vs. Retina displays ?
What do you think..
Regards, Thomas

19
Web Server - Ask For Help / compile error on pure generated app
« on: February 19, 2014, 07:01:07 AM »
only dct and then wizarded make, C90, NT 7.35
the errors are:
1. Prototype is: WEBSERVER(<NETWEBSERVER>)
2. Illegal reference assignment or equivalence
3. Unknown identifier: PSERVER
all in procedure "WebServer", but I think only the first is relevant. Code is:
!!! <summary>
!!! Generated from procedure template - Window
!!! </summary>
WebServer PROCEDURE                               <---- here is the error !!!

WebLog               GROUP,PRE(web)                        !
EnableLogging        LONG(1)                               !
LastGet              STRING(4096)                          !
LastPost             STRING(4096)                          !
StartDate            LONG                                  !

Any hints ?
TIA, Thomas

20
Web Server - Ask For Help / some SSL/TLS questions
« on: February 18, 2014, 11:52:49 AM »
Hello,
I'm starting with a new NT project which must be all SSL/TLS.
1. Every of my customers will run the Webserver totally Independent of each other on their own machines with their own web address and DNS entry. Do I need a seperate SSL certificate for each customer server or can I use one for all which is personalized to me/my company ?
2. I know that SSL certificates have a limited lifetime. What happens if a certificate runs out regarding the workability of the webserver ? Do I need only to copy the renewed certificate files into the appropriate folder and replace the old ones ?
3. TLS Version 1.2 with AES256 is the best regarding security !? Can I force NT to use it ?
4. Any ideas for the most secure Login mechanism for the users of my customers (users and passwords stored in the DB of each customer) ?
Thanks in advance,
Thomas

21
Web Server - Ask For Help / Web scheduler - where what how ?
« on: December 29, 2013, 09:53:03 AM »
Hello,
I need to implement a scheduler (it must be highly configurable).
I think I saw it in a Demo in one of Bruce Webinars.. but I cannot find an example or any hints. It must work within a NT7 + C9 Project. Any help appreciated.
TIA Thomas

22
Hello,
I must send an email via SSL to a SMTP Server. An external request is that I must use a Java keystore file *.jks ! I have no *.pem available and this is also not an option. Username, PWD and keystore file are Ok, because I can open an external Web Config App and doing changes there.
The code is:
--------------------------------------------------------------------------
ThisSend.SSL                 = 1
 ThisSend.SecureEmailStartTLS = 0
 if ThisSend.SSL or ThisSend.SecureEmailStartTLS
   ThisSend.AuthUser     = 'myname'
   ThisSend.AuthPassword = '1234567890'
   ThisSend.SSLCertificateOptions.CertificateFile = ''
   ThisSend.SSLCertificateOptions.PrivateKeyFile = 'D:\somefolder\mailkeystore.jks'
   ThisSend.SSLCertificateOptions.DontVerifyRemoteCertificateWithCARoot = 0
   ThisSend.SSLCertificateOptions.DontVerifyRemoteCertificateCommonName = 0
   ThisSend.SSLCertificateOptions.CARootFile = ''
 end
ThisSend.SetRequiredMessageSize( 0, len( clip( loc:theText)), 0)
 if ThisSend.Error = 0
   if len( clip( loc:theText)) > 0
     ThisSend.MessageText= clip( loc:theText)
   end
   setcursor( CURSOR:WAIT)
   display()
   ThisSend.SendMail( NET:EMailMadeFromPartsMode)
------------------------------------------------------------------
I got the Error -68 "SSL failed to load the CA root file".

So, how to use jks files. Any hints apreciated.
TIA, Thomas

Pages: 1 [2]