When I call a java server method from client end by DQL/API, then I
want to pass a byte[] type argument in java server method. For eg.
{
byte[] bytes = new byte[1000];
IDfQuery query = new DfQuery();
query.setDQL("execute DO_METHOD with method = 'MergeFile', arguments = '-bytes bytes'");
IDfCollection coll = query.execute(session, 0);
}
but I am not able to access the bytes argument in byte[] form in execute(Map map, OutputStream outputstream) method on server end in JavaMethod.