Class to be executed Could not be found
The mentioned error “Class to be executed Could not be found” occurs only if the class file for your function code is missing. If you had uploaded the code via the Catalyst Console, kindly make sure you have uploaded it along with the class files to resolve the first issue. Else if you have initialised your function via CLI, you can use the command “catalyst deploy” which will compile the code automatically and upload it to the Catalyst Environment from your system. You can find the help documentation for the same
here.
Related Articles
Catalyst Functions Class not found error
Kindly do check on the following points. Kindly make sure you have uploaded your Java function with all the complied class files. If the class files are present, then kindly make sure you have provided the relative path of the main class properly ...
Package not found error in production, although function works in development environment
This means the packages aren't installed within the functions folder. In the local debugging environment, this issue doesn't occur because packages may be available globally. Please make sure packages are present within the respective functions ...
Code sample to upload files in File Store using Java
import java.io.File; import java.util.List; import java.util.logging.Level; import java.util.logging.Logger; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import ...
Adding HTML templates to emails sent from Catalyst
You can add html_mode:true to add HTML email templates like in the code snippet attached below. The detailed step by step documentation can be found here : https://catalyst.zoho.com/help/email-templates.html
Credit Calculation Catalyst Function
The 1500,1000 refers to the number of requests that can be executed concurrently. On an average, 900 - 200 parallel invocations per minute will be the maximum number of function invocations depending on the execution time of 1 - 5s respectively. ...