Hi All,
I am developing an application using Oracle forms and Reports 12c.
I am doing File Attachment from client system to Application server with the below code
v_file_result := WEBUTIL_FILE_TRANSFER.CLIENT_TO_AS_WITH_PROGRESS(v_file_path,
v_dir_path || v_file_name,
'File Upload',
'File Upload Inprogress..',
FALSE,
NULL);
My servers and client systems(except few client systems) are connected with Domain server.
My Problem is,
From my application, its working fine in client system which is not connected with domain server. (Which means file is transfered from client pc to application server)
If my client system is connected with domain server, then the following issue has occurred in the Java Console
ERROR>WUT-129 [WEBUTIL_FILE_TRANSFER.UploadInt] Error in reading client file C:\Users\demo\Desktop\JOB_TITLE.csv
I have configured webutil.cfg file in server as followed
transfer.database.enabled=TRUE
transfer.appsrv.enabled=TRUE
transfer.appsrv.workAreaRoot=
transfer.appsrv.accessControl=FALSE
#List transfer.appsrv.read.<n> directories
transfer.appsrv.read.1=c:\temp
transfer.appsrv.read.2=D:\C_DIR
#List transfer.appsrv.write.<n> directories
transfer.appsrv.write.1=c:\temp
transfer.appsrv.write.2=D:\C_DIR
How to solve the above issue?
Thanks in Advance,
Su.gi