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 - kevin plummer

Pages: [1] 2 3 ... 8
1
Web Server - Ask For Help / NoSQL
« on: April 18, 2017, 12:13:09 AM »
Hi All,

anyone using any NoSQL flavour with clarion\nettalk?

Cheers,

Kevin

2
Web Server - Ask For Help / IMDD and DFD
« on: January 18, 2017, 05:20:14 PM »
Hi All,

just wondering if it is possible to use the combination of these file drivers (dyn.cachefile() ) to cache some data on a thread to make my app go a bit faster? I would just cache the tables where I'm just doing reads (not writes) in the thread. I'm using MSSQL so hoping this will also ease the traffic/workload on that server. Any examples of doing this on forms, browses, source code etc would be great.

Cheers,

Kevin


3
Web Server - Ask For Help / Cross Browser Testing
« on: September 25, 2016, 07:28:16 PM »
Hi All,

I was wanting to cross browser\version test a new app and was wondering if anyone was using a tool they could recommend that automated the process? I found that something that worked on my Mac\Safari did not work at a clients site and not sure what other compatibility issues I might have when we go live.

Cheers,

Kevin

4
Web Server - Ask For Help / OT String Theory and UTF8
« on: May 25, 2016, 08:33:04 PM »
Hi All,

I'm trying to convert some data to make the below US ASCII compatible using string theory but the following does not work. Anyone know what I'm doing wrong?


Field" = 'MIDÁSZ PROPERTY MANAGEMENT KFT ARANY JÁNOS UTCA 15'

        st.SetValue(Field")
        If st.ToUnicode(st:EncodeUtf8) = 0
            Message('error convertring to UTF8. Field=' & Field")
        END
        st.RemoveChars('<13,10><13><10>')
        Field" = st.GetValue()

5
Web Server - Ask For Help / Single Click to Change
« on: February 01, 2016, 05:19:39 PM »
Hi Bruce,

I'm working on some mobile mode pages and trying to simulate a single click through on a browse row to change a record so it looks similar and works like the mobile menu. If I double click I can drill down but wanted to know if a single click is supported or if not, could be added be you or me.

Cheers,

Kevin

6
Web Server - Ask For Help / Freeimgae in DLL app
« on: November 25, 2015, 02:56:51 PM »
Hi,

I'm trying to compile an NT app as dll for the Host exe and I'm now getting a bunch of errors for Freeimage:

Unresolved for Export

Does anyone know what I need to do in Freeimage\Clarion when switching to DLL?

Cheers,

Kevin

7
Web Server - Ask For Help / MySQL v MariaDB
« on: November 09, 2015, 03:47:19 PM »
Hi All,

I'm looking to move away from MSSQL Server (due to the high licensing costs) and was looking to move to MySQL but someone suggested MariaDB as an alternative. Just wanted to see if anyone was using either and what odbc driver they used and their experience with either.

Cheers,

Kevin

8
Web Server - Ask For Help / Dispose
« on: November 08, 2015, 06:23:30 PM »
Hi All,

I have added an invoice API to my app and as the invoice header relates to child records I have added a reference to those Q's

One of those Q's is a Files Q which holds a base64 encoded copy of a PDF of the invoice so there is a string reference to it.

I'm trying to dispose of these types as follows but I get a GPF.

    Loop I# = 1 TO Records(QInvoice)
        Get(QInvoice,I#)
        If ErrorCode()
            Break
        END
        DISPOSE(QInvoice.Files.File)
        DISPOSE(QINV:CostItem)
        DISPOSE(QINV:Files)
    END

If I remove         DISPOSE(QInvoice.Files.File)
it does not GPF but just hangs my web server.

Anyone know the correct way to use Dispose in this circumstance?

Cheers,

Kevin


[attachment deleted by admin]

9
Web Server - Ask For Help / ContentBody
« on: October 15, 2015, 07:57:52 PM »
Hi All,

just discovered contentbody when calling a menu item which I really like. Is there similar functionality when you call a form from a browse that is not a popup?

Cheers,

Kevin

10
Web Server - Ask For Help / signature
« on: October 15, 2015, 07:25:10 PM »
Hi All,

trying to enhance the signature example to accept a typed signature like this example but failing miserably... anyone done anything similar?

https://thomasjbradley.github.io/signature-pad/examples/accept-signature.html

Cheers,

Kevin

11
Web Server - Ask For Help / Security PIN
« on: October 08, 2015, 05:34:20 AM »
Hi All,

Just wondering the best way to implement security SMS Pins into an app.

At the moment I have created separate page that works sort of like the login page where the user needs to enter the Pin and then the page carry's onto the form if it is ok. I use the _sendpage to intercept when to display the page.

Apart from the login I also have some browsless Table forms (not memory) that require the user to enter a Pin before the page opens.On these pages the data does not save anymore. If I switch of the SMS verification then they work as per normal.

Cheers,

Kevin



12
Web Server - Ask For Help / UTC
« on: August 19, 2015, 05:47:22 PM »
Hi All,

I'm creating a web service and want to date\time stamp records so I can pull all records since last request. As this request will be coming from different time zones I wanted to stamp with UTC. Anyone know an easy way to calculate the UTC in Clarion?

Cheers,

Kevin

13
Web Server - Ask For Help / Binding to an IP address
« on: May 24, 2015, 06:53:50 PM »
Hi All,

I want to run several web apps on port 443 from the 1 virtual server but don't want to use the multi-host facility. I have created an extra 2 virtual NIC's on the server and set firewall rules using sub domains and separate ext IP's to port forward to the new int ip address's. This works well from within the internal network but externally only the app listening on the original int ip address works.

Has anyone been able to set this scenario up?

Cheers,

Kevin

14
Web Server - Ask For Help / Thread Pool
« on: May 20, 2015, 06:55:08 PM »
Hi,

If using Thread Pool do I need to start my own threads differently? They don't seem to work with this feature turned on.

Cheers,

Kevin

15
Web Server - Ask For Help / Mobile App form ret to Browse
« on: May 11, 2015, 07:22:31 PM »
Hi,

I have a parent form/child browse for a mobile app. The number of child rows is set to 100 (I want to see all rows if 10, 20 or 30 etc without getting the next\previous buttons). This works ok when I enter the form but when I change a child record and I go to an update form and when I return, the browse does not show the correct number of rows and the next\previous buttons appear.

Hope this makes sense.

Kevin

Pages: [1] 2 3 ... 8