Client_Image.READ_IMAGE_FILE problems

Hi, I have search all over OTN and the web and can't seem to find a solution to my problem. Im using Forms 10gR2, and am trying to display a TIFF image in a form. I am not getting any errors, its just not displaying the image at all.
I have the images stored in C:\temp\0-GRAPHICS\. I have looked at the webutil.cfg file and updated it with the following:
#NOTE: By default the file transfer is disabled as a security measure
transfer.database.enabled=TRUE
transfer.appsrv.enabled=TRUE
transfer.appsrv.workAreaRoot=c:\TEMP
transfer.appsrv.accessControl=TRUE
#List transfer.appsrv.read.<n> directories
transfer.appsrv.read.1=c:\temp
transfer.appsrv.read.2=c:\
transfer.appsrv.read.3=c:\DevSuite10_1_2
#List transfer.appsrv.write.<n> directories
transfer.appsrv.write.1=c:\temp
transfer.appsrv.write.2=c:\
transfer.appsrv.write.3=c:\DevSuite10_1_2
When I run the code, i get no error, it seems to work, just no picture displayed. Here is my code
When-Button-Pressed trigger:
DECLARE
tiff_image_dir VARCHAR2(80) := 'C:\temp\0-GRAPHICS\';
  photo_filename VARCHAR2(80);
BEGIN /* ** Set the message level high so we can gracefully handle ** an error reading the file if it occurs */
  :CB_PLATE_TIFF.ESL_NUMBER := :UNION_HDRS.ESL_NO;
  :CB_PLATE_TIFF.PLATE_NUM := :EIF_ONE_PPB.EIF_PLATE_NO;
  :System.Message_Level := '25';
  /* ** After fetching an employee record, take the employee's ** Userid and concatenate the '.TIF' extension to derive **
  the filename from which to load the TIFF image. The EMP ** record has a non-database image item named 'EMP_PHOTO' ** into which we read the image. */
  photo_filename := tiff_image_dir||:CB_PLATE_TIFF.ESL_NUMBER||'\'||:CB_PLATE_TIFF.PLATE_NUM||'.tif';
  /* ** For example 'photo_filename' might look like: ** ** /usr/staff/photos/jgetty.tif ** ------ ** ** Now, read in the appropriate image. */
  client_image.READ_IMAGE_FILE(photo_filename, 'TIFF', 'CB_PLATE_TIFF.IMG_PLATE');
  IF NOT FORM_SUCCESS THEN
  MESSAGE('The TIFF file '||:CB_PLATE_TIFF.PLATE_NUM||'.tif does not exist.');
  END IF;
  :SYSTEM.MESSAGE_LEVEL := '0';
  GO_BLOCK('CB_PLATE_TIFF');
END;
Am i not initializing the tiff_image_dir properly? Thanks for any help.

Without actually being able to test your form, my only remaining guess is that the version you are using has a defect.  Since you did not mention exactly which version you are using, I will guess and say that you are using an unpatched version.  Please ensure that you are using Forms 10.1.2.3.  If you are not using this patch version, I recommend you download and install it.  You must have a current MyOracleSupport (and Support) account to do so.  The patch ID number is:  5983622
Also, since version 10 is no longer entitled to Premiere Support, it might be a good time to consider upgrading to the latest release, 11.1.2.2
http://www.oracle.com/technetwork/developer-tools/forms/downloads
Installing WebLogic Server 10.3.6 is a prerequisite to installing Forms/Reports 11.1.2.2, so be sure to download and install it first.  Be sure to review the product documentation before installing any software.
http://docs.oracle.com/cd/E48391_01/index.htm

Similar Messages

  • Problem in using client_image.read_image_file

    Hi all
    I want to load a picture file into a forms item at Develeoper Forms 10g Rel.2 with the following procedure, but it doesnt work and i also get no error.
    PROCEDURE import_image
    IS
    vFileName VARCHAR2(512);
    BEGIN
    -- Transfer Picture from File Directory to Forms Item.
    GO_BLOCK('FOTO');
    SET_BLOCK_PROPERTY(FIND_BLOCK('FOTO'), DEFAULT_WHERE,
    'natpers_oid = 55664');
    EXECUTE_QUERY;
    SET_BLOCK_PROPERTY(FIND_BLOCK('FOTO'), INSERT_ALLOWED,
    PROPERTY_TRUE);
    SET_BLOCK_PROPERTY(FIND_BLOCK('FOTO'), UPDATE_ALLOWED,
    PROPERTY_TRUE);
    SET_ITEM_PROPERTY(FIND_ITEM('FOTO.FOTO'), INSERT_ALLOWED,
    PROPERTY_TRUE);
    SET_ITEM_PROPERTY(FIND_ITEM('FOTO.FOTO'), UPDATE_ALLOWED,
    PROPERTY_TRUE);
    BEGIN
    vFileName := NULL;
    vFileName := webutil_file.file_selection_dialog('C:\Temp\', '*',
    '|Foto Dateien(*.bmp)|*.bmp|', 'Foto');
    END;
    IF vFileName IS NOT NULL THEN
    client_image.read_image_file(vFileName, 'BMP', FIND_ITEM('FOTO.FOTO'));
    client_host('cmd DEL ' || vFileName);
    END IF;
    END import_image;
    I think the WebUtil 1.0.6 works properly because the 'webutil_file.file_selection_dialog' (see above) works fine.
    Now can somebody give me a tip?
    Best regards
    Martin

    I found the problem :-)
    When i change the following parameter in the file webutil.cfg it works fine.
    transfer.appsrv.enabled=TRUE (old: FALSE)
    Martin

  • Problems with WEBUTIL_CORE on OAS 10.1.2 (CLIENT_IMAGE.READ_IMAGE_FILE)

    Hello,
    I get a problem with webutil 106 on Application Server 10.1.2.0.2 (RedHat 4)
    Some functions raise errors as :
    oracle.forms.net.ConnectionException: Abandon de la session Forms <839> : communication avec le processus runtime impossible.
    at oracle.forms.net.ConnectionException.createConnectionException(Unknown Source)
    at oracle.forms.net.HTTPNStream.getResponse(Unknown Source)
    at oracle.forms.net.HTTPNStream.doFlush(Unknown Source)
    at oracle.forms.net.HTTPNStream.flush(Unknown Source)
    at java.io.DataOutputStream.flush(Unknown Source)
    at oracle.forms.net.StreamMessageWriter.run(Unknown Source)
    For testing, I use the demo form WU_TEST_106 and I encounter this problem with :
    CLIENT_IMAGE.READ_IMAGE_FILE
    I get another problem with SHOWBEANS(FALSE) that doesn't terminate (showbeans(true) works fine)
    I've tried others Webutil functions that works fine
    I've another platform with same release of Webutil / OAS 10.1.2 / Redhat4 which works fine (the major difference is that OAS was installed with portal in this last platform).
    I've made those test with same client and same database (10g)
    Any ideas ?

    Seems to be a bug. That was the response from Oracle support (Metalink)
    Response:
    Your issue seems to be related to bug 5594702 - Abstract: EJB30 ENTITY BEAN WITH @ID AND @COLUMN ANNOTATION FAILS TO DEPLOY ON AIX.
    There is an issue with the IBM JDK/JRE 1.5's processing of annotations.
    Links:
    http://www.theserverside.com/discussions/thread.tss?thread_id=37764
    http://www-128.ibm.com/developerworks/forums/dw_thread.jsp?forum=367&thread=112543&cat=10
    When processing annotations it returns boolean values as false.
    Work-around:
    Fully specify the @Column annotation's boolean values. If insertable and updatable are set to false (which will happen due to this bug) then TopLink sets the PK
    mapping to read-only and the exception seen is expected.
    Note: nullable attribute of the @Colmun is not used in the EJB3/JPA preview of 10.1.3.0 If the customer MUST override the default column name then they should use:
    @Column(name="column-name", insertable=true, updatable=true)
    If they do not wish to override the default column name then simply do not use an @Column annotation.
    It can be deleted or commented out in the JDev generated code.
    There are two reported annotation processing issues with the AIX JVM. One was fixed in SR1 and the other is fixed
    in SR3 (due out Oc 11 - today). Upgrading to these more recent JVM releases may also address this issue.
    RECOMMENDED SOLUTIONS:
    1. Upgrade the IBM AIX JVM to SR3.
    OR
    2. Fix all generated @Column annotations as described above

  • 105100: non-ORACLE exception for client_image.read_image_file

    Hi Friends,
    I have configured webutil for 10g As I am able open java file bowser for the form also when i am trying load or save the file i am getting
    105100: non-ORACLE exception for this line od code
    client_image.read_image_file:img_file_name,'jpg','SIGN_IMG');
    I have checked some of the thread where it has been said that it jave exception
    I am not getting any error on the java console also i am pasting content of the java console also.
    Please help me is some one has the solution for this.
    Oracle JInitiator: Version 1.3.1.22
    Using JRE version 1.3.1.22-internal Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\venkatesh
    Proxy Configuration: Manual Configuration
    Proxy: 172.20.2.51:8080
    Proxy Overrides: 192.168.10.100,192.168.10.160,<local>
    JAR cache enabled
    Location: C:\Documents and Settings\venkatesh\Oracle Jar Cache
    Maximum size: 50 MB
    Compression level: 0
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    q: hide console
    s: dump system properties
    t: dump thread list
    x: clear classloader cache
    0-5: set trace level to <n>
    Loading http://192.168.10.160:7777/forms/java/frmwebutil.jar from JAR cache
    RegisterWebUtil - Loading WebUtil Version 1.0.6
    Loading http://192.168.10.160:7777/forms/java/frmall_jinit.jar from JAR cache
    Loading http://192.168.10.160:7777/forms/java/fccicon.jar from JAR cache
    Loading http://192.168.10.160:7777/forms/java/webicons01.jar from JAR cache
    Loading http://192.168.10.160:7777/forms/java/webicons02.jar from JAR cache
    Loading http://192.168.10.160:7777/forms/java/webicons03.jar from JAR cache
    Loading http://192.168.10.160:7777/forms/java/jacob.jar from JAR cache
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    Forms Applet version is : 10.1.2.0

    Hi Friends,
    This problem got soled.
    LIBPATH=/d02/10gas/products/10.1.2/lib32:/d02/10gas/products/10.1.2/jdk/jre/bin:/d02/10gas/products/10.1.2/jdk/jre/bin/classic:%LIBPATH%
    was commented in env file .
    Thanks

  • Don't more work client_image.read_image_file if i use WEBUTIL_CLIENTINFO

    After a long time of debug of a form (it work very well for some months) i have foun d this strange thing :
    if i use in the startup form the function WEBUTIL_CLIENTINFO.GET_HOST_NAME then a form where i try to read a image from a directory with the function : client_image.read_image_file the function dos not work with the error message "PL/SQL ERROR".
    if i remove the function WEBUTIL_CLIENTINFO.GET_HOST_NAME the form became good and work very well.
    It is a BUGS ??
    JInitiator: Version 1.3.1.18
    Application server =10G
    Forms = 10G
    i may don't user the WEBUTIL_CLIENTINFO.GET_HOST_NAME but i know if there is a logic solution.
    Thank's again.

    client_image.read_image_file(vfilename,v_ending,'SR_SCREEN_SHOTS.SCREEN_SHOT'); ---- error occurs during call here
    Above code will try to:
    1. read file from client using full file name including path as user selected. (like D:/temp/...
    2. transfer it to transfer.appsrv.workAreaRoot on server. like /tmp/
    3. Read it from transfer.appsrv.workAreaRoot and load into Image item
    client_image.write_image_file(vwritefile,v_ending,'SR_SCREEN_SHOTS.SCREEN_SHOT',maximize_compression,ORIGINAL_DEPTH);
    This will try to write image from the Image Item to the path on client!.
    All values in webutil.cfg should reffer to AS folders
    transfer.appsrv.read
    transfer.appsrv.write
    transfer.appsrv.transfer.appsrv.workAreaRoot

  • READ_IMAGE_FILE problem?

    Using Forms 6.0.8.22.1 and Oracle 10.2.0.2 our form calls READ_IMAGE_FILE() to display TIFF files. It works for most files except a couple of files. Without an error message, the form suddenly shuts down as soon as it displays images. These images that shuts down the form can be displayed with other software and TIFF files are not corrupted.
    Although I found the document describing that in patch 9 the problems with TIFF were fixed, I wonder if my problem is related to these problems. Or is there any size limit on files? Any comments would be appreciated.
    Sarah

    You may want to consider this.... I havent used it, but wish I had something like this in the past.
    http://fdegrelle.over-blog.com/article-4018412.html
    My experience is that forms mangles on insert and/or decides on a daily basis what it wants to display even for supported formats. I do know that not all tiff formats are supported. I cannot seem to find a current link to whats supported though... I know its out there..
    Heres an old revised metalink note 1009546.6 as of 2005 that says tiff 4,5, & 6 are supported. This may be old data though. More may be supported now.
    Is it possible that these problem tiffs were created with different software than the displayable tiffs? The problem software may be saving the tiffs in a different tiff format than what a forms image item likes to display? Could you download one of the problem tiffs, resave it to the PC with a image program that is known to generate a tiff format that Forms likes. Then upload the image again via something like TOAD, and then see what forms does with it on display? Its probably a format thing just for those few tiffs...
    for example...
    If I recall correctly, could be wrong, that a tiff can have layers. If you read_image_file a tiff with layers and then save it, the saved image will not have layers. Pretty sure. This kind of mangling makes me wish I knew of this java solution above beforehand.
    Message was edited by:
    Mark Reichman

  • Client_image problem in 10g

    Dear ALL
    I have oracle forms 10.1.2.0.2
    and i configure webutil for this version
    i test the webutil and its working fine i can read text and save text and do every thing , except the client_image read file
    how i can solve this problem
    thanks in advanced

    mmsalman87 wrote:
    1. Do u want to save the image in database ?
    Yes I want to save the image in database
    If yes, what the data type of your field ?
    Datatype is BLOBSounds good.Here is my code. I use it in a button and trigger is when-button -press
    declare
         vfilename varchar2(300);
    begin
         vfilename := client_get_file_name(file_filter => 'jpg(*.jpg,*.gif)|*.*');
         if vfilename is not null then
         client_image.read_image_file(vfilename,substr(     vfilename,instr(     vfilename, -1)),'COMPANY_INFO_MST.CIM_LOGO');
         client_image.write_image_file(vfilename,'','COMPANY_INFO_MST.CIM_LOGO');     
         end if;
    end;Image item CIM_LOGO's property is
    image format: TIFF
    sizing style: Adjustcheck the database item should be yes.
    Hope this will help you.

  • Webutil Read Image Problem

    Hi,
    I am reading image from client system using the below code
    CLIENT_IMAGE.READ_IMAGE_FILE(v_rd_file_name, 'JPG', 'CTRL_BLK.ADD_IMAGE');
    But this image is not displaying in the image item, this is happening for some particular images only. While writing this image into image server image size also increasing.
    We are trying one image that dimension is 2900 X 4700 this is not uploading to image item.
    but i am able to upload less than 2000 X 2000 dimension to the same image item
    below is Image item property
    Image Format : TIFF
    Image Depth : Original
    Display Quality : Medium or High
    Sizing Style : Adjust
    Any idea on thie problem...
    Regards,
    Suresh.V

    hi
    What about Java Bean????
    try the following link i hope it will help u.
    http://forms.pjc.bean.over-blog.com/article-7109292.html
    and also u may use Irfan viewer to resize the image.Did u try to use Crop?
    sasrah

  • WebUtil - Read_Image_File Issue

    In the process of converting from 6.0 to 9i certain forms require WebUtil which has been installed successfully. However, when using the procedure 'Client_Image.Read_Image_File' I have discovered a 'problem'.
    After the .bmp files have been read and processed I need to 'rename' and 'move' these files to another directory via Host commands. But, there seems to be a sharing violation where the source or destination may be in use. The only way I have found to 'release' the files is to close the Oracle9iAS Forms Services. Since this is unacceptable, is there a command which I could use to close/release the open .bmp files ?!
    Any help/suggestions would be greatly appreciated.
    Steve D.

    Hello,
    I am facing similar problem while trying to delete downloaded/stored temporary word documents. It is possible to delete the files manually only after the browser is closed. Is there any work around for deleting these temporarily downloaded/used files no longer in use from the application without closing the browser?
    When we have to leave downloaded copies of docs from database on to local end users machines it puts us in a very bad shape.
    Thanks.
    Ravindranath Chittar

  • Client_Get_File_Name webutil

    Hello all, i am new to oracle development and i am trying to do the forms exercises in oracle 10g. However, when i got to uploading images in Client_get_file_name, there is an error:
    I have a code in an image button.
    Here it is:
    DECLARE
      v_file VARCHAR2(250):= client_get_file_name('C:\','','JPEG Files|*.jpg|',
         'Select a product image',open_file,TRUE);
      it_image_id ITEM := FIND_ITEM('control.product_image');
    BEGIN
      client_image.read_image_file(v_file,'',it_image_id);
    END;
    Then when i press the image button, an error occurs it says:
    “FRM-92101: There was a failure in the Forms Server during stratup.”
    If ayone could help me..
    Thanks in advance!

    Hi,
    FRM-92101 is a generic error and usually it means problems with Forms libraries (pll files). Try recompiling all your pll's or at least webutil.pll.
    If this does not help, try rename webutil.pll to webutil_lib.pll, for instance, and attach it to your form. For us webutil.pll did not work at all until we renamed it.
    Make sure you've subclassed Webutil Java beans from webutil.olb to your form.
    Let know if this helped.
    P.S. When working with files the better way is:
    Let user choose file (client_get_file_name or webutil_file.file_open_dialog)
    Transfer file to some temp directory on application server (webutil_file_transfer.client_to_as)
    Read file from application server using old Forms buil-in API, READ_IMAGE_FILE in this case.
    Delete file from temporary directory on application server
    This is better for network traffic and speed, since you transfer file once, but not performing many reads through network (which is slower than single transfer).

  • Oracle.forms.webutil.file.filefunction bean not found

    hi
    i am using this code
    declare
    fname varchar2(200) ;
    begin
    fname := client_get_file_name(null,null,null,null,open_file,true) ;
    CLIENT_IMAGE.READ_IMAGE_FILE (fname,'any','Img');
    end ;
    forms is running fine but when we press the button to open dialog for image file an error has been generated as under
    oracle.forms.webutil.file.filefunction bean not found.
    WEBUTIL_FILE.FILE_SELECTION_DIALOG_INT will not work
    i think some think is missing in configuraion file need help on urgent basis
    take care
    Qaiser Hassan Awan

    I faced the same problem, I think the frmwebutil.jar could not be downloaded to you client machine, so I modified the archive_jini to be as follows
    archive_jini=frmall_jinit.jar,frmwebutil.jar,jacob.jar
    assuming that frmwebutil.jar,jacob.jar are located in folder on your ORACLE_HOME/forms/java
    don't know exactly why but I think the
    WebUtilArchive=frmwebutil.jar,jacob.jar
    could not be seen, so I had to put it in the archive_jini parameter
    good luck

  • Busy Mouse Display

    Guyz,
    im using the below code and using webutill which is working properly.
    DECLARE
    FILENAME VARCHAR2(256);
    BEGIN
         FILENAME :=WEBUTIL_FILE.FILE_OPEN_DIALOG();
         IF FILENAME IS NOT NULL THEN
              CLIENT_IMAGE.READ_IMAGE_FILE(FILENAME,SUBSTR(FILENAME,INSTR(FILENAME,-1)),'DEPENDENT_PP.PP_COPY');
         END IF;
    END;1) when i open the open file dialog it takes some long time to display the contents but no problem for me but during this process the mouse cursor should display buzy till the all the contents displayed in open file dialog box but its showing normal arrow cursor. how can i solve this issue?
    2) im inserting image into the blob item how can i displayed progress bar during this insertion?
    Thanks in advance.
    Regards
    Moazam

    Hello,
    <p>See the Set_Application_Property() built-in. (CURSOR_STYLE)</p>
    Francois

  • Image Field and Blob Type

    Hi!
    I´m working on form that will works lika a image database.
    In my table I store the imagens in a blob type column.
    In my form, I use a Image Field to display the imagem from database.
    It works.
    Now I want to generate a md5 hash for the image file, so I createa function that receive a blob variable
    and calculates the md5 hash.
    That works too.
    The problem is that I want to get the hash at runtime, right after the file is chosen.
    So I did this:
    wfilename := WEBUTIL_FILE.FILE_OPEN_DIALOG (wdirname, NULL, file_types_variable);
    wmd5    := my_functions_package.md5(my_file => :data_block.image_field);
    When I try to compile, I get the error: Bad bind variable 'data_block.image_field'
    I guess the forms doesn´t see the image_field as a blob even if it is.
    Some one know how can I work arround this? To get the image_field as blob (It already is at database).
    Forms [32 Bit] Version 9.0.4.0.19 (Production)
    Oracle Database 10g Release 10.2.0.3.0 - 64bit Production
    Thanks.

    hi
    try something like this.
    declare
          f varchar2(100);
    begin
         f := webutil_file.file_open_dialog();
         if f is not null then
              :block.item := f;
              end if;
         end;or try the following code.
    declare
    l_file_name varchar2(383);
    begin
    l_file_name := webutil_file.file_open_dialog( );
    if
      l_file_name is not null
    then
      if
        :block.rowid is not null
      then
        create_record;
      end if;
      client_image.read_image_file ( l_file_name, substr ( l_file_name, instr ( l_file_name , -1 ) ), 'block.item' );
    end if;
    end;sarah
    Edited by: QGIRCO on Jan 20, 2010 8:51 AM

  • Webutil images

    Hi All,
    I have a problem in using the webutil hope can get some help here
    I have provided an option to attach scanned documents and images on the form where in the path of it will be stored on the form but the image will be loaded from the physical drive when ever a user click on the view button.
    It is working fine when im on the server itself .
    When i try to attach one file from the client machine then it is giving me the error.
    The source for attaching the image and for viewing is followed here
    ***** when button pressed trigger for attaching
    Declare     
    v_type      varchar2(4);
    v_path     varchar2(100);
    begin
         v_path := Client_Get_file_name(file_filter=>'All Files (*.*) |*.*|Bmp Files (*.Bmp)|*.Bmp|Gif Files(*.gif)|*.gif|Tiff Files (*.Tif)|*.Tif|JPEG Files (*.jpg)|*.jpg|');
         :block2.rdocpath:=v_path ;
         if ltrim(v_path) is not null then
              v_type := substr(v_path,-3);
              Client_Image.Read_image_file(v_path, v_type, 'img.img');
              if form_success then
                   go_item('img.img');
              end if;
         end if;
    end;
    and for viewing the source image
    :parameter.helpitem := :system.cursor_item;
    Declare     
    v_type      varchar2(4);
    v_path     varchar2(100);
    AL NUMBER;
    begin
    IF :block2.rdocpath IS NOT NULL THEN
         V_PATH:=:block2.rdocpath;
         GO_BLOCK('img');
         CLEAR_BLOCK(NO_VALIDATE);
         Client_Image.Read_image_file(v_path, v_type, 'img.img');
         GO_BLOCK('img');
    ELSE
         SET_ALERT_PROPERTY('STOP',ALERT_MESSAGE_TEXT,'Image file not specified');
         al:=show_alert('STOP');
         GO_BLOCK('img');
         CLEAR_BLOCK(NO_VALIDATE);
              GO_BLOCK('RETSHAREPURCH2');
         end if;
    end
    Please help

    This is My Existing Webutil.cfg file .lease have a look at it and advise the need ful
    Thanks & Regards
    # webutil.cfg - WebUtil default configuration file
    # This file provides all of the configuration settings
    # for webutil. These are divided into the following
    # sections:
    # 1. Logging Options
    # 2. Installation Options
    # 3. FileUpload and Download Options
    # 4. Untranslatable Strings
    # 5. Translatable Strings
    # 1. Server Side Logging Options for logging errors and log messages
    # You must set Enabled to true to allow mid tier logging without this
    # mid tier logging will not take place no matter what PL/SQL or URL
    # options are supplied to switch it on
    # Once logging is enabled the other settings come into play
    # Details
    # file : Defines the file name and location of the log file.
    # Note that WebUtil does no log file management you may
    # need to manually clean this file up from time to time
    # enabled : Can be TRUE or FALSE
    # errorsonly : Can be TRUE or FALSE setting to true will ensure that
    # only errors and not normal informational log messages
    # are written to the log file
    # For product use this would normally be set to TRUE
    # connections: Can be TRUE or FALSE setting to true will cause each connection
    # from a form using WebUtil to write into the log as it sets up.
    logging.file=
    logging.enabled=FALSE
    logging.errorsonly=FALSE
    logging.connections=FALSE
    # 2. Installation Options
    # WebUtil needs to download some files to the client in order to perform
    # certain integration operations such as OLE or Registry Access
    # These files are downloaded the first time that you access one of the
    # functions than needs them
    # You have to define the location of these files on the server
    # Details
    # syslib.location: The vitual path to the directory holding the
    # the webutil library files on the server side
    # this must either be an absolute URL or a url
    # URL that is relative to the documentbase
    # syslib.<os>.<package>.<n>: The name(s) of the libraries required for particular
    # webutil beans
    # The format of this is name|size|version|showDownloadDialog
    # multiple libraries can be downloaded per package but
    # ensure that the <n> values are consecutive and start at 1
    install.syslib.location=/webutil
    ## Do not change the following lines unless instructed to do so
    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
    ## But you can add your own libraries in here
    #install.syslib.0.user.1=testwebutil.dll|204872|1.0|true
    # 3. Upload / Download options
    # For the file upload and download options you can define the default
    # locations on the server that webutil can use as a work area
    # Optionally you can switch upload and download off
    # Details
    # transfer.database.enabled: Can be TRUE or FALSE - allows you to disable
    # upload and download direct from the database
    # server.
    # transfer.appsrv.enabled: Can be TRUE or FALSE - allows you to disable
    # upload and download direct from the application
    # server.
    # transfer.appsrv.workAreaRoot: The root of the location in which WebUtil can
    # store temporary files uploaded from the client.
    # This location is always readable and writable
    # no matter what the settings in appsrv.read and
    # appsrv.write are.
    # This setting is required if you need the
    # Client side READ /WRITE_IMAGE_FILE procs
    # transfer.appsrv.accessControl:Can be TRUE or FALSE - allows you to indicate
    # that uploads and downloads can only occur from
    # the directories named in the
    # transfer.appsrv.read.n and transfer.appsrv.write.n
    # entries and their subdirecories. If this setting
    # is FALSE transfers can happen anywhere.
    # transfer.appsrv.read.<n>: List of directory names that downloads can read
    # from.
    # transfer.appsrv.write.<n>: List of directory names that uploads can write
    # to.
    #NOTE: By default the file transfer is disabled as a security measure
    transfer.database.enabled=TRUE
    transfer.appsrv.enabled=TRUE
    transfer.appsrv.workAreaRoot=c:\temp
    transfer.appsrv.accessControl=TRUE
    #List transfer.appsrv.read.<n> directories
    transfer.appsrv.read.1=c:\temp
    #List transfer.appsrv.write.<n> directories
    transfer.appsrv.write.1=c:\temp
    # 4. Untranslatable Strings
    # These errors can happen early in the initialisation process before we
    # have the client locale information to use to detect the correct
    # language version for the error
    EN.msg.error.error008=WUC-008: Server side logging was requested but no log file was specified - logging is disabled
    # 5. Translatable Strings
    # The following properties represent Strings displayed in various server
    # side error messages
    # They are available here to allow customisation
    # Messages are in the Format "<countrycode>.msg.key
    # The message reading code picks up the country code automatically from the
    # client. If the required country code cannot be found then the english (EN)
    # message is displayed as a default.
    # You may alter the EN versions of each key, but do not remove them!
    # General Dialog titles
    EN.msg.install.progress.title=WebUtil Install
    EN.msg.install.progress.subtitle=Downloading required libraries; Please wait...
    EN.msg.errordialog.title=WebUtil Error
    # App Server side errors
    EN.msg.error.error007=WUC-007: Unable to write to WebUtil logging file
    EN.msg.error.error015=WUC-015: Your Form must contain the following Bean for this function to be available:
    EN.msg.error.error408=WUH-408: The WebUtil Client code sent back a bad Process ID - Please report this error
    EN.msg.error.error110=WUT-110: Database LOB is of zero length
    EN.msg.error.error111=WUT-111: Database LOB is un-initialised
    EN.msg.error.error112=WUT-112: Invalid open mode for Blob. Value should be W or R
    EN.msg.error.error113=WUT-113: Too many rows match the supplied where clause
    EN.msg.error.error114=WUT-114: SQL Error
    EN.msg.error.error115=WUT-115: Checksum Failed
    EN.msg.error.error116=WUT-116: Transfer already in progress
    EN.msg.error.error117=WUT-117: Application Server file name cannot be null
    EN.msg.error.error118=WUT-118: Application Server file does not exist or is of zero length
    EN.msg.error.error119=WUT-119: Error reading data from Application Server file
    EN.msg.error.error120=WUT-120: Zero bytes read from Application Server file
    EN.msg.error.error121=WUT-121: This file transfer has been forbidden by the Adminstrator
    EN.msg.error.error122=WUT-122: Java Functions are not available on the Appliciation Server
    EN.msg.error.error123=WUT-123: The webutil.jar file cannot be found on the Appliciation Server Classpath - Some file transfer functions will not work.
    EN.msg.error.error124=WUT-124: Unable write data on the application server
    EN.msg.error.error125=WUT-125: Checksum error closing file on application server
    EN.msg.error.error126=WUT-126: Error closing application server file
    EN.msg.error.error127=WUT-127: Unable to create workarea
    EN.msg.error.error128=WUT-128: Exception creating workarea
    #German versions of the Dialog Titles
    DE.msg.install.progress.title=WebUtil Installation
    DE.msg.install.progress.subtitle=Benötigte Bibliotheken werden geladen; Bitte warten ...
    DE.msg.errordialog.title=WebUtil Fehler
    #German versions of the Errors
    DE.msg.error.error007=WUC-007: Kann nicht auf die WebUtil Log Datei zugreifen
    DE.msg.error.error015=WUC-015: Folgende Bean muss in der Form enthalten sein um diese Funktion zu nutzen:
    DE.msg.error.error408=WUH-408: Der WebUtil Client Code hat eine ungültige Prozess ID zurückgegeben - Bitte melden Sie diesen Fehler
    DE.msg.error.error110=WUT-110: Datenbank LOB hat eine Länge von Null
    DE.msg.error.error111=WUT-111: Datenbank LOB ist nicht initialisiert
    DE.msg.error.error112=WUT-112: Ungültiger Modus zum Öffnen eines Blobs. Wert muss W oder R sein
    DE.msg.error.error113=WUT-113: Zu viele Reihen entsprechen der angegebenen Bedingung
    DE.msg.error.error114=WUT-114: SQL Fehler
    DE.msg.error.error115=WUT-115: Checksummen Fehler
    DE.msg.error.error116=WUT-116: Übertragung erfolgt bereits
    DE.msg.error.error117=WUT-117: Ein gültiger Dateiname auf dem Applikation Server ist erforderlich
    DE.msg.error.error118=WUT-118: Datei auf dem Applikation Server fehlt oder hat eine Länge von Null
    DE.msg.error.error119=WUT-119: Fehler beim Lesen der Datei auf dem Applikations Server
    DE.msg.error.error120=WUT-120: Es konnte kein Byte vom Applikation Server gelesen werden
    DE.msg.error.error121=WUT-121: Die Übertragung dieser Datei wurde vom Administrator unterbunden
    DE.msg.error.error122=WUT-122: Java Funktionen sind auf dem Applikations Server nicht verfügbar
    DE.msg.error.error123=WUT-123: Die Datei webutil.jar befindet sich nicht im CLASSPATH des Applikations Servers - Einige Dateiübertragungsfunktionen stehen somit nicht zur Verfügung
    DE.msg.error.error124=WUT-124: Es konnte nicht schreibend auf den Applikations Server zugegriffen werden
    DE.msg.error.error125=WUT-125: Checksummen Fehler beim Schließen der Datei auf dem Applikations Server
    DE.msg.error.error126=WUT-126: Fehler beim Schließen der Datei auf dem Applikations Server
    DE.msg.error.error127=WUT-127: Der Arbeitsbereich konnte nicht erstellt werden
    DE.msg.error.error128=WUT-128: Ausnahmefehler beim Erstellen des Arbeitsbereiches
    #French versions of the Dialog Titles
    FR.msg.install.progress.title=WebUtil Installation
    FR.msg.install.progress.subtitle=Benötigte Bibliotheken werden geladen; Bitte warten ...
    FR.msg.errordialog.title=WebUtil Fehler
    #French versions of the Errors
    FR.msg.error.error007=WUC-007: Ecriture impossible dans le fichier de log WebUtil
    FR.msg.error.error015=WUC-015: Votre forme doit contenir le Bean suivant pour que cette fonction soit disponible:
    FR.msg.error.error408=WUH-408: Le client Webutil a renvoyé un numero de process erroné - Contactez votre administrateur
    FR.msg.error.error110=WUT-110: LOB dans la base de données a une longueur de zero
    FR.msg.error.error111=WUT-111: LOB dans la base de données n'est pas initialisé
    FR.msg.error.error112=WUT-112: Mode d'ouverture invalide pour un BLOB. La valeur doit être W ou R
    FR.msg.error.error113=WUT-113: Trop de lignes renvoyées pour cette clause where
    FR.msg.error.error114=WUT-114: Erreur SQL
    FR.msg.error.error115=WUT-115: Echec du Checksum
    FR.msg.error.error116=WUT-116: Transfer déjà en progrès
    FR.msg.error.error117=WUT-117: Le nom du fichier sur le serveur d'application ne peut être null
    FR.msg.error.error118=WUT-118: Le nom du fichier sur le serveur d'application n'existe pas ou a une taille de zero
    FR.msg.error.error119=WUT-119: Erreur en lecture des données provenant du fichier sur le serveur d'application
    FR.msg.error.error120=WUT-120: Zero bytes lu à partir du fichier sur le serveur d'application
    FR.msg.error.error121=WUT-121: Ce transfert de fichier est interdit par l'administrateur
    FR.msg.error.error122=WUT-122: Java Fonctions non disponibles sur le serveur d'application
    FR.msg.error.error123=WUT-123: Le fichier webutil.jar n'est pas present dans le Classpath du serveur d'application - Certaines fonctions de transfert de fichiers ne fonctioneront pas
    FR.msg.error.error124=WUT-124: Impossible d'écrire sur le serveur d'application
    FR.msg.error.error125=WUT-125: Erreur de Checksum en fermant le fichier sur le serveur d'application
    FR.msg.error.error126=WUT-126: Erreur pendant la fermeture du fichier sur le serveur d'application
    FR.msg.error.error127=WUT-127: Creation de la Workarea impossible
    FR.msg.error.error128=WUT-128: Exception pendant la creation de la workarea

  • Upload_picture

    hi
    i have problem to upload picture in my form
    where i am using oracle database10g and form builder10g
    (developer suite 10g(10.1.2)) on the same computer
    under windows o.s . i have table contents (id_no number,name varchar2(50),
    pic blob)
    i need to make form for this table and make button to upload picture and
    save it in blob field , iam trying to use webutil but i fail to make that
    where the error frm-40039 display
    i hope to get full example to learn me step by step how to upload picture in my form
    because i read webutil but i did not understand how to use it
    thanks for help me

    hello Mr.Francois
    i want to tell you that i make the next steps
    1-create user webutil
    2-execute creation package create_webutil_db after connect in webutil user
    3-connect /as sysdba
    4- create public synonym webutil_db for webutil.webutil_db;
    5- grant execute on webutil_db to public;
    6- create directory f as 'c:\pics'
    7- grant read,write on directory f to my_user
    then i connect to my_user that have table emp (emp_no number(5),emp_name varchar2(50),
    emp_pic blob) and i build new form for this table after attach with webutil.pll
    and the create button in this form have the next text
    declare
    v_file varchar2(250) :=client_get_file_name(' ',' ','gif files|*.gif|jpeg files|*.jpg',
    'select a photo to upload',open_file,true);
    it_image_id item :=find_item('emp.emp_pic');
    begin
    client_image.read_image_file(v_file,' ',it_image_id);
    end;
    when i press on this button the error ora-06508 frm-40735 are display
    where is ny error?
    please help me

Maybe you are looking for

  • My iphone 4 completely died out of the blue

    Why did my iPhone suddenly die?  It was fully charged this morning and I had used it several times already today.  Hard death.  Won't reboot.  Won't synch to laptop (the laptop doesn't even know it is attached.)  Been using iPhones for years and neve

  • Key figures are of date type

    Hi, I am working with a standard business content IC that has the key figure InfoObjects defined as type date. When I double click on the InfoObject to review the detail from tab 'Type/unit', I see that it is defined with the radio button 'Date', but

  • User Agent Strings for Office 365 Install and Updates

    In my organization, we restrict internet access to a specific list of approved applications by user agent string; however, it seems the user agent string for Office 365 (2013) applications has changed over time causing installs and updates of Office

  • Show error in download accelerator plus at 99% on firefox

    I used DAP to download videos it shows error on download complete state @ 99% as, Downloaded file cannot be saved Error: The file name, directory name or volume label syntax is incorrect

  • Treo 755P Verizon aborting HotSync for DateBk and contacts

    I've have updated my Palm/Hotsync software to the v6.2 when I upgraded my computer to windows 7 64bit. I understand that i need to HotSync using Bluetooth, which i was able to achieve, however, the HotSync fails to sync my calendar (DateBk5) and my c