Hello, a basic example I have a function called message in the b4j server and I want from the b4a client using JRDC2 to be able to execute the message function, is it possible? thanks
jRDC2 is a regular jServer project with a regular handler that manages the database related actions. You can add more handlers and call them with OkHttpUtils2.
Edit: Web Apps tutorial: http://www.b4x.com/android/forum/threads/webapp-web-apps-overview.39811/ The server implementation is based on a popular and powerful Java server library named Jetty (license) The database connection pooling implementation is based on c3p0 (license). B4J Server...