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

Pages: 1 ... 3 4 [5] 6 7 ... 15
61
Web Server - Ask For Help / List of logged users online
« on: January 24, 2018, 12:26:17 AM »
I can't find on forum, how, and is it possible, to display list of logged users currently online? I know how to, via web  socket, "count" logged users, but I need to
display data of each of them?
Nettalk 10.
Thanks in advance.

62
Web Server - Ask For Help / Re: Change "class=" to "style="
« on: December 21, 2017, 02:01:33 AM »
Great... Just one question and I close the year  :). No question for you any more, until another year.
For my main application, now on NT7 (still), i got this performance scores (screenshot)
What about enable-keep alive and javascript defer parsing in NT10?
Have a nice day and happy new year.


63
Web Server - Ask For Help / Re: Change "class=" to "style="
« on: December 21, 2017, 01:28:30 AM »
Bruce, thanks for response. As you say : "Clarion programmers are always in such a hurry to do things quickly..", you are absolutely right ;)
Because of this I was asking if you can change or re-arange this great template.... OK, after your post and we says: " jutro je pametnije od noci" or in my bad english: "dawn is smarter then night" , I will use class to this....
One question, if such css file grows over time, is it possible to response of application be slower?!? The css file will be in gz file, but...
Regards, Oggy.

64
Web Server - Ask For Help / Re: Change "class=" to "style="
« on: December 19, 2017, 08:08:01 AM »
NetWebServerWorkerBase._divHeader procedure in NetWeb.clw, changes....
Regards, Oggy

65
Web Server - Ask For Help / Change "class=" to "style="
« on: December 19, 2017, 05:49:29 AM »
I have one question is it possible to change web template to alter "class=" to "style=" in generated html, (div)...
The reason for this is that I want to change single prompt style,  without changing entire css for theme.
I want to some prompts be smaller or larger to distinguish it from other prompts in some form.
When I put in css prompt for some field code like this 'font-size:10px', after starting the web application, the element for that prompt isn't changed to appropriate style, in this case font 10px. (picture A)
But if I change this line in html directly, from "class " to "style" all works as I want it (picture B)
The question, once again, is ti possible in some later versions to put some check right after css entry for prompts,  or any other entry, to change html after generated from "class" to "style"
Regards, Oggy

To be precise: I want to use simple inline formating. instead of reusable classes. I know that I may put class with selected size to theme css, but in that way the css file will grow and grow...
Bruce?!?

66
Web Server - Ask For Help / Re: Basic Login Form
« on: December 15, 2017, 08:03:56 AM »
Sorry Bruce, hard month, week, day...
I finally got it work. Of course, it is my fault, or lets say ghost from past. One old script prevent it from working after I ported application from NT7. That script prevent user to use application in IE 6, and after I commented that script, all works well.
Sorry for be annoying, but, I am one old guy trying to learn some new stuff...
 :)

67
Web Server - Ask For Help / Re: Basic Login Form
« on: December 14, 2017, 07:55:03 AM »
Got this error while attempt to log...

68
Web Server - Ask For Help / Re: Basic Login Form
« on: December 14, 2017, 07:02:28 AM »
Same with my app. Suddenly code no fire up ....
I just put some ordinary clarion message in login form, but message did not popup....

69
Maybe I can help. I had similar problems with service. Occasionally, service stop working. Better say, responding. After months and months of examinations,
I realize that service stoped to response in one condition:
If service is on server, and if that service is logged as some account, for example Administrator, and if someone else, in my case myself, use that account to log on server via RDP, after logging of the RDP session, the service stop to respond. I create for that service another user account, just for service himself.
After that, never saw my service(s) stoped responding.
Edit: maybe you use one account for your service, and for some scheduled task, like backup or so....
Just my thought.
Regards, Oggy

70
Web Server - Ask For Help / World time server with SOAP/REST
« on: December 15, 2016, 04:49:44 AM »
Cannot find if question is asked before. Is it any example of some word time server to "catch" real time?
Thanks in advance, Oggy.

71
My server do nothing except what I mentioned, SOAP response and request. The CPU workload is so low I cannot believe that CPU is problem. Nor memory... In peak hours I watched memory and never, ever, the memory load of my service does not go over 100 MB. Never.
The disks on machine is OK. SSD disk is also ok.
In my code I do not any sort of line that will break down entire service. I think so...
Just plain catching incoming xlm into stringtheory, and reroute it to other service, waiting for response from another service, and returning back. End of story, My server is just serving like postman between my client and other service.
For two days, after installing Fastmem template, all works like i want it, fingers crossed.
In monday I will start with another instance of the same program, on the other machine, solely for testing. if I ask some help in testing, I will wrote some basic test program to send simple xml
and catch it back.
Best regards. Oggy
BTW, NT9 will be soon in our "garage"  :)

72
Lockup and slowdown is problems that I encounteres from time to time. First I noticed slowdown and after some time the service is "dead", no response. The service then must be terminated.
This all stuff is on one IBM x3650 M edition of server, 2 Xeon 6 cores each, RAID 1+0 15k hard disks, for OS and backups, and one SSD disk where SQL database is.
32 GB of RAM is on the server. OS is Win 2008 R2. We are on optic-fiber internet, 200 Mb download and 100 Mb upload speed, but soon this will be changed to 500/250 Mb system. I ask this question primarily because I am not sure if I go to contract where customers will pay for each response/request cycle about a 1 cent (EURO). If I sign that contract I must be sure to have about 99% of time without lockups... 24/7 cycle, 365 days in year...
Also, one problem, that I mentioned some times ago, in other post(s) is that NETTALK 7 did not use async posts. NETTALK 9 is in financial plans for some times, if async works well in NT9.
EDIT: for some times I suspect that MS SQL is my problem, and for two days I just disabled database, and again, slowdowns and lockups occured.
Two days ago I enabled Fastmem template and for now there is no problems. Maybe, just maybe, the memory allocation system (raw Clarion) is bottleneck for this... Now I have about 5, roughly, per seconds, and my system works well ;) But, my wishes to get about 20 per seconds....

73
 Let me explain it.
My SOAP service do not create any of XML "file" in this process. Just simply get it via SOAP, reroute it to the another service, outside my domain, wait for response from that second service, and back it to the client. Right after sending back response to client I write to MS SQL database.. All works well, some time...
There is random lockup, I think this is random, because sometimes all works well for days, and sometimes I must restart service couple times in one day.
I noticed only that when traffic is heavy, about 5-10 simultaneous request/respons in one seconds, thats occured... And in some time, this traffic will be even heavyier....
Just yesterday, i bought Fastmem, and for now, there is no lockup or slowing down, that is why I ask this question. I am interested in some information, how well, or how fast is NETTALK webserver is, particulary with that SOAP request/response? How much these requests NETTALK can handle in one second?
Regards, Oggy

74
Same problem, even when run like a service or exe. After some times (some times few hours, some times couple of days) all slows down and suddenly there is no response. Must be killed and restarted.
NT 7.4, MSSQL Express. Maybe the problem is in database?!?!
Regards, Oggy

75
Just one question about it: is it working with Nettalk web server + SOAP.
I used it a lot to get and return some xml files? I noticed that under some time all slow down to the point where service must be closed and re-opened...

Pages: 1 ... 3 4 [5] 6 7 ... 15