I tested the fix with the version from 28.07.2013 and works well.
How can I solve the second issue?
I have few server-only datasources that I don't want to be exposed to the client. Their fields are included by a main datasource using "includeFrom" so the client can fetch them.
The client does also add/update on the main datasource sending also values for the included fields. The main datasource server DMI calls manually add/update operations on the server-only datasources.
To not allow client calls to these server-only datasources you recommended to add the requires="false" attribute on all operations, but that doesn't work with the includeFrom approach.
Is there any way to solve also this one?
I was thinking to add a custom attribute to the datasource, like "serverOnly=true" and to check it in IDACall servlet and not allow calls from client to such datasources. Is that ok?
How can I solve the second issue?
I have few server-only datasources that I don't want to be exposed to the client. Their fields are included by a main datasource using "includeFrom" so the client can fetch them.
The client does also add/update on the main datasource sending also values for the included fields. The main datasource server DMI calls manually add/update operations on the server-only datasources.
To not allow client calls to these server-only datasources you recommended to add the requires="false" attribute on all operations, but that doesn't work with the includeFrom approach.
Is there any way to solve also this one?
I was thinking to add a custom attribute to the datasource, like "serverOnly=true" and to check it in IDACall servlet and not allow calls from client to such datasources. Is that ok?
Comment