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 - jari@softmade.fi

Pages: [1] 2 3 ... 9
1
Web Server - Ask For Help / Re: Here maps are slow with NT 14.21
« on: April 29, 2024, 07:31:38 AM »
Thanks Bruce!

That was the issue, but still, the speed isn't the same as before. Maybe the problem lies with the new HERE Platform.

Jari

2
Web Server - Ask For Help / Re: Here maps are slow with NT 14.21
« on: April 28, 2024, 06:26:57 AM »
Hi Bruce

I created a new access to Here and added my credit card to it. It didn't solve the issue. I also noticed that net.GetLocation(address, Net:GetMap) is no longer functioning. Attached are some pictures.

Jari


3
Web Server - Ask For Help / Here maps are slow with NT 14.21
« on: April 26, 2024, 04:37:11 AM »
Any thoughts on why Here Maps is much slower on NT 14.21 than on 12.20?
The slowness occurs when fetching a new map, so for testing purposes, please clear the C:\temp\maps folder.

Versions
NT 14.21
Draw 4.36
St 3.67

4
Web Server - Ask For Help / How do I know if the connection is on?
« on: April 24, 2024, 07:41:34 AM »
Hi

I have a website that automatically updates information. If the connection to the web server is interrupted for some reason (e.g., due to an update), I would like the login page to appear. How could this be done?

5
Web Server - Ask For Help / Re: Wizard type Tab style does not work.
« on: December 08, 2022, 10:34:46 PM »
Hi Bruce

I turned on support for TinyMCE and that solved the problem.

Thanks

Jari

6
Web Server - Ask For Help / Re: Wizard type Tab style does not work.
« on: December 07, 2022, 04:16:29 AM »
Hi Bruce

It works fine with "Tab" and with other tab types.
Only wizard type does not work fine.

Example app in attachment.

Jari

7
Web Server - Ask For Help / Wizard type Tab style does not work.
« on: December 05, 2022, 03:15:21 AM »
Hi

Wizard type Tab style does not work at all.
It worked correctly in version 12.20.

See attachments.

Jari

8
Web Server - Ask For Help / Re: Confirmation dialog ?
« on: June 21, 2021, 01:29:26 AM »
  p_web.Script('ntAlert("Your message here","Alert...!");')


Jari

9
Web Server - Ask For Help / Leave site message
« on: June 04, 2021, 03:27:05 AM »
I would like to block the user from leaving the pages. For example, some sites have a question: Leave Site? Changes You Made No Be Saved. "
How to do it?

Jari

10
Hi

Auto-check cahched files parameter is false and I still get an error message.
How can I update the files automatically without pressing ctrl F5.

Jari

11
Hi

I have the same problems after installing version 11.45 (from 11.37).
The problem is refreshing the NetWebBrowse.
NetWebBrowse is in from and filtered by the some values ​​in that form.

The F5 key helps, but it is not the right solution for this as it cannot be used on the phone.

Also, if I change the port, the problem will return. This indicates that there is probably a problem with caching.
I've tried to change the value of the perfomance tab, but it does not seem to be affected.

Jari


12
Hello

I use "Seven" as theme and "Turn of pinch-to-zoom" is on.
I have many narrow columns in the browse and now it looks bad in phone because columns are not side by side.

Is there any way to force them side by side?

Jari

13
Web Server - Ask For Help / Re: Refresh IndexPage after login
« on: July 02, 2020, 04:06:32 AM »
Hi

I have same problem

I can refresh header, but not indexpage.

How did you solve this?

Regards
Jari

14
The Rest - Ask For Help / How can I use the same certificate as IE?
« on: February 12, 2018, 01:30:45 AM »
Hi

One of my customers asks:

We want to create a client program for a webservice that requires HTTPS (SSL).
Is there an option to use the same certificate store as for example Internet Explorer uses to validate the server certificate?
We would not like to use a separate root certificate file for validating the server certificate, because there is a risk that the server operator changes their certification authority and them we would have to manually update the certificate file.
If it would use the machine certificate store then it would be updated by the regular windows update routines.

Jari

15
Thanks Bruce

My IIS did not accept extensionless files.
So I also had to make the following changes to the web.config file


<?xml version="1.0" encoding="UTF-8"?>
<configuration>
   <system.webServer>
        <staticContent>
            <clear />
            <mimeMap fileExtension=".*" mimeType="text/json" />
        </staticContent>
        <handlers>
            <clear />
            <add name="StaticFile" path="*" verb="*" type="" modules="StaticFileModule,DefaultDocumentModule,DirectoryListingModule" scriptProcessor="" resourceType="Either" requireAccess="Read" allowPathInfo="false" preCondition="" responseBufferLimit="4194304" />
        </handlers>
    </system.webServer>

</configuration>

Pages: [1] 2 3 ... 9