I’m looking to be able call and get the result of the application.getNewUUID function from within a plugin I’m developing. I’ve done a bit of exploring of the IClientPluginAccess object, and I’ve seen the executeMethod() method, but that only appears to be able to call global and form methods. Any suggestions?
From Java code inside a Servoy plugin you can use ```
UUID.randomUUID().toString()
Thanks! I found this shortly after I posed that question, however, there could still exist cases where someone could want to call an application.methodname() from a plugin. Is this possible?
No, it should not be possible… This is what IClientPluginAccess is for - to give access to specific methods inside Servoy…