Hi Isomorphic,
I'm currently making some of my existing 5.1p server code, that was used in a RPCManager-only setting before to work in a non-RPCManager setting (servlet) as well. In normal DMI, I always create DSRequests like this:
This "just works" and one has not to care about stuff like userId, transaction handling and RequestContext.
Could you create a constructor
Behavior would be to copy settings from the parentRequest as needed. This is the RPCManager, or if not present DSTransaction. If DSTransaction also not present userId. RequestContext as needed.
Would this make sense?
Best regards
Blama
I'm currently making some of my existing 5.1p server code, that was used in a RPCManager-only setting before to work in a non-RPCManager setting (servlet) as well. In normal DMI, I always create DSRequests like this:
Code:
DSRequest childRequest = new DSRequest("dsName", DataSource.OP_XXX, parentRequest.getRPCManager();
Could you create a constructor
Code:
DSRequest(String dsName, String operationType, DSRequest parentRequest)
Would this make sense?
Best regards
Blama
Comment