

david_navigator
Members-
Content Count
156 -
Joined
-
Last visited
Community Reputation
12 GoodRecent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Thanks. I've now discovered that this vendor has an https REST API and also support MQTT so hopefully I can work at a much higher level !
-
Thanks. Yes I know what to do, I was just hoping that someone else had already done it !! No point in reinventing the wheel.
-
I'm investigating how to get my delphi app to talk to a specific RFID reader. This seems to use a protocol called LLRP. Googling has come up with no examples of using this protocol from a Delphi app but I wondered if anyone here had done anything similar or had come across anything useful ? (LLRP is a binary protocol over TCP/IP, the Internet standard transport protocol. It is an asymmetric protocol where a client implementation of LLRP (hosted in the application software) sends commands to a reader implementation of LLRP (hosted in the reader). The reader implementation answers commands by using responses, and also generates asynchronous data called events and reports) Thanks David
-
Is there a VCL control that does this ?
-
Thinfinity VirtualUI - cloud-based conversion
david_navigator replied to Mark Williams's topic in General Help
Yes. The app is designed to be used on a desktop size device. -
Thinfinity VirtualUI - cloud-based conversion
david_navigator replied to Mark Williams's topic in General Help
Assuming that your IP address ends in .143 - I can see that you successfully authenticate too. -
Thinfinity VirtualUI - cloud-based conversion
david_navigator replied to Mark Williams's topic in General Help
Very odd. Let's see if their support comes up with something next week. -
Thinfinity VirtualUI - cloud-based conversion
david_navigator replied to Mark Williams's topic in General Help
I'll raise a ticket to Thinfinity and see if they have any suggestions. -
Thinfinity VirtualUI - cloud-based conversion
david_navigator replied to Mark Williams's topic in General Help
Odd. Never seen that before (and I have 100's of users). What browser are you using ? Are you on a touch screen device ? Here's a video clip of what you should see https://Navigator.tinytake.com/msc/OTUyNDkyMF8yMzEzMTE5NQ -
Thinfinity VirtualUI - cloud-based conversion
david_navigator replied to Mark Williams's topic in General Help
Odd. You should see something like this. Nothing required client side. -
Thinfinity VirtualUI - cloud-based conversion
david_navigator replied to Mark Williams's topic in General Help
I have a massive app that we converted to use Thinfinty. You can play with it here if you'd like to see the experience from a user POV https://trial.hiretracknx.com:6580/ Alias: ashoka Username: HireTrack_Admin Password: 1234 There are two areas where we still have issues - some DevEx components don't render properly in certain circumstances - e.g on the first form you see, one of the buttons doesn't get drawn fully until you move your mouse over it. I do have a fix for this issue, but there are other DevEx issues apparently, though we haven't hit any yet. The other issue I've come across is launching a form that uses an embedded browser. That doesn't work correctly, though Thinfinity people are very reactive and have promised me a fix in the next week of so. There are areas where we have If Thinfinity.active then in our code - especially anything that involves uploading or downloading files. My biggest gripe with Thinfinity is the license management. We have our app running across about 10 servers, with one licensing server, but there's no way to see which server is using how many licenses - e.g. I can see that 50 licenses are in use, but not which machines are using them. This might not matter for your scenario, but it's an annoyance in ours. David -
Thanks, but I meant "only make sure to not use a shared memory memory manager with the exe."
-
@Kas Ob. could you explain in a little more detail about the memory manager please ?
-
I was hoping there was something that the OS could deal with. If I made the scripting engine a stand alone EXE then whatever the user wrote, Windows would clean up when the exe closed. I was hoping that there might be some way to achieve that within my app. Doing some research I see that Job Objects details "The virtual memory of job objects isolates the memory behavior of a group of processes (tasks) from the rest of the system", but so far little about how this is achieved.