

If you run in the debugger, see if maybe youre getting a different exception than CryptoException. Automatic Load Balancing to support the more concurrent users. Our website is not created with Xojo but Xojo is not meant for creating websites so that shouldn't surprise anyone. We create all of our demos in house as well.
#Xojo try not working free
Xojo Cloud is a fully managed, highly secure hosting environment for your Xojo web apps and has these features: Excellent security with free SSL support. 'XOJO hired a slick ROI marketing company to create their slick demos and websites ' No, we did not.

I’ve tried using “Catch ex As CryptoException” but no luck. Xojo Cloud is for those that want the fastest and easiest way to deploy web applications. I’ve tried turning “Break on Exceptions” off in the Projects menu to see if that would do it but it still fails. It’s only this method that doesn’t seem to want to catch the error. I have other Try/Catch blocks in my application and they work as expected. If I pass the function a valid string (not empty or Nil) it works and I get the encrypted string returned as expected but if I pass an empty string or a Nil it crashes my program at the “Crypto.RSAEncrypt” line with a Crypto encoding error which is expected but I’ve enclosed the offending line in a Try/Catch block to try to “capture” the error but it still stops debugging rather than ignoring it and moving on. I’m using Xojo2017r3 and I’m having an issue with Try/Catch not working in the following function:ĮncryptString(message As String) As Stringĭim encryptedData As MemoryBlock = Crypto.RSAEncrypt(msg, publicKey)
