I have installed Oracle Application server 10.1.2.0.2 on Windows server 2012 (64-bit) and configured forms&reports and webutil. Here are some details from formsweb.cfg file:
# Forms applet archive setting for JInitiator
archive_jini=frmall_jinit.jar,custom.jar,jacob.jar,Image.jar
# Forms applet archive setting for other clients (Sun Java Plugin, Appletviewer, etc)
archive=frmall.jar,custom.jar,jacob.jar,Image.jar
# Number of times client should retry if a network failure occurs. You should
# only change this after reading the documentation.
networkRetries=30
# Page displayed to Netscape users to allow them to download Oracle JInitiator.
# Oracle JInitiator is used with Windows clients.
# If you create your own page, you should set this parameter to point to it.
jinit_download_page=/forms/jinitiator/us/jinit_download.htm
# Parameter related to the version of JInitiator
jinit_classid=clsid:CAFECAFE-0013-0001-0028-ABCDEFABCDEF
# Parameter related to the version of JInitiator
jinit_exename=jinit.exe#Version=1,3,1,28
# Parameter related to the version of JInitiator
jinit_mimetype=application/x-jinit-applet;version=1.3.1.28
WebUtilArchive=frmwebutil.jar,jacob.jar
Also, excerpt from webutil.cfg
install.syslib.0.7.1=jacob.dll|94208|1.0|true
install.syslib.0.9.1=JNIsharedstubs.dll|65582|1.0|true
install.syslib.0.9.2=d2kwut60.dll|192512|1.0|true
When running forms on client (XP with IE 8) i have a form for uploading file from client. When path (including file name) contains eastern europe characters (like š, ć, đ...), filename is tranfered to item with ? in place of former mentioned letters and file is not uploaded.
I've checked Java console dump and it shows that java encoding is cp1250.
Does anybody have an idea how to solve problem (obvious solution "do not use problematic letters" is not option)
Thanks in advance