Hi, I just created a custom service for my new app. I followed the guides, created an empty Java project with the backendless.jar dependency, implemented the IBackendlessService interface, built and uploaded the jar, it shows up as “Production” mode, and even the API Inspector is showing endpoints and methods, so far so good.
The thing is, when I press the Download Service SDK, it downloads the plain common sdk with nothing else at all. Apart from that, I cant even call my service on the default sdk using Backendless.CustomService.invoke method
I am missing something? Thank you in advance, Im new with backendless, great baas! Thank you.
Javier
Hello, Javier!
Thank you for kind words!
Inside the generated SDK project you should be able to find “InvocationExample” class with “main” method inside. Try to add there a line like “myService.myMethod()” where “myMethod” - is any method from your service. Then run that method and notify us about results.
It would be very suitable if you use some really easy method at start.
regards,
Alex
Amazing, I feel silly for downloading the zip and going straight to the jar expecting it to be somehow modified, instead of looking at the the new generated .java files in the src folder. Tested and working flawlesly, thank you so much!