ERROR WUT-121

can u pls tel me solution for ERROR>WUT-121 [WEBUTIL_FILE_TRANSFER.UploadInt] The file transfer has been forbidden by the Administrator
it comes whenn i'm trying to upload my image.

Are you running this own you own PC or with an Application Server? - the error means that you are not allowed to write the file onto the mid-tier and you should (perhaps) ask an administrator. But I'm only guessing as there isn't really enough information : Forms version, operating system, etc
Edited by: spilgrim on Apr 26, 2010 2:06 PM

Similar Messages

  • Webutil_file_transfer.as_to_client  WUT-121 error?!

    I am trying to transfer a .csv file (22k) from my Apps Server using webutil_file_transfer.as_to_client('c:\temp/','c:\epsis/reports/serv.csv') command.
    I have amended my webutil.cfg to allow file transfers and other webutil functions work fine so I am presuming the install is good.
    I continue to get the WUT-121 error but don't understand why. Any suggestions?

    To transfer from the App Server to another machine, you have several options:
    1. Use the HOST command. This may be difficult depending on the server's platform and security configuration. If Windows, by default the process (Forms) will not have permission to access network resources (i.e. mapped/shared drives). You will need to refer to the Microsoft documentation in order to overcome these restrictions.
    2. Use HOST to execute a ftp connection for transferring the file. Of course the remote machine must support ftp. If you have access to "My Oracle Support", see note 110531.1
    3. Create a java class which could be imported into the form that can perform this task. Refer to the Forms Java Importer documentation for information about importing java for server side execution. Also, here is a starting place for the java information:
    http://www.google.com/#&q=java+transfer+file

  • WUT-121 error on 9iAS

    Using WebUtil, I successfully opened an image file in a form in 9iDS. When we moved to the app server, we encountered the WUT-121 error. The temporary directory space is not restricted, and this is in the file webutil.cfg:
    transfer.database.enabled=TRUE
    transfer.appsrv.enabled=TRUE          
    transfer.appsrv.workAreaRoot=E:\WUTemp
    transfer.appsrv.accessControl=TRUE
    #List transfer.appsrv.read.<n> directories
    transfer.appsrv.read.1=E:\WUTemp     
    transfer.appsrv.read.2=E:\WUTemp\199_60_89_70\MackJ
    #List transfer.appsrv.write.<n> directories
    transfer.appsrv.write.1=E:\WUTemp
    transfer.appsrv.write.2=E:\WUTemp\199_60_89_70\MackJ
    A process can open the client file dialog, and create the sub-direcories under the workAreaRoot, but can not then write the file into the work area, whethr they are listed in the above file or not.
    Are there any other parameters we should be setting on the app server? (server: Win2000, 9iAS release 2)

    So 121 indicates that the Access control check faile - the last time I saw this going false failures was when Forms was installed onto Unix and the .cfg file was still in DOS format e.g. had <cr><lf> line terminators.
    You are in a Windows machine so this should not be an issue - however, it might be worth checking that you don't have some non printing characters that prevent a match between the upload directory and the transfer.appsrv.write list.
    So what you need is to use the debugger and set a breakpoint in the WebUtil_core.checkASACL() function, you can also examine the package variables: m_readACL, m_writeACL in the package body - these maintain the list that is read from the config file.

  • Webutil get error wut-115 checksum failed

    We are trying to use the file upload function from the webutil package. We are trying to upload a simple text file into a blob failed and we get the following error wut-115 checksum failed. we have initialized the blob field to an empty blob but we still get the error. what causes this error to occurr and what is the best way to try to resolve the issue.
    regards,
    Robert

    Duncan:
    we tried the package in the reverse direction and everything works fine. We are able to take a file stored in a blob column and download it to the client machine. However we still can not upload a file to a blob column in the database from a client machine. We tried this on multiple pc's. We have a webutil schema and in that schema we have the webutil_db package. this compiles fine. when we invoke our forms we log in as the webutil user. our webutil.cfg file is enabled true to allow database downloads. We are able to get every other functionality to work so far in the webutil package that we tried except for this one. Do you have any suggestions or would even take the time to direct connect in to see the problem?
    Also we will need this package to work in the JVM environment currently we have webutil working using jinit. We do alot of work for the navy and army and JVM is the only allowed method we can use for our forms. I have heard that this package is not supported in the native JVM environment. This will hurt the prospects of many military and governmental applications due to them not allowing software installed on the client machine. After all that is why we are using java servlets and oracle over the web for them to access their application.
    Regards,
    Robert

  • Webutil Error WUT-131

    I am on this exercise because I am trying to print a report to local printer, and I am on the web based environment. I am trying to use the pdfp.exe available online to accomplish my task.
    /***********************************C O D E****************************************/
    declare
    declarations...
    begin
         :global.user_home := webutil_clientinfo.get_system_property('user.home');
    go_block('bl_main');
    first_record;
    loop
    lnu_mst_rec := lnu_mst_rec + 1 ;
    i := 0;
    go_block('bl_dtl');
    first_record;
    loop
    if :bl_dtl.victim_full_name is not null then
    /*creating report parameters*/
    rp2rro.setDestype('FILE');--destination is file
    if :bl_main.sbi_no is not null then
    lvc_count := lvc_count + 1;
    lvc_file := 'vtn_vnwl' ||lvc_count||'_'|| :bl_main.sbi_no||'.pdf';--filename
         tool_env.getvar('VISITATION_REQUEST_PATH',v_path);
         --fname VARCHAR2(200) := '"'||:global.user_home||'\vtn_vnwl4_00999998.pdf"';
    lvc_loc_file := '"'||:global.user_home||'\'||lvc_file||'"';--target file in client directory
    lvc_sfile := v_path||lvc_file;--report in report server
    lvc_server_executable := v_path||'pdfp.exe';
    end if;
    rp2rro.setDesname(lvc_sfile);
    rp2rro.setOthers('DESFORMAT=PDF');
    /* calling the right report*/
    IF ltrim(rtrim(:bl_main.VICTIM_NTFC_RESN)) = '7' then
    rp2rro.rp2rro_run_product(REPORTS, 'vtn_vnwl_pardon', SYNCHRONOUS, RUNTIME,FILESYSTEM, pl_id, NULL);
    ELSIF UPPER(:bl_main.VICTIM_NTFC_RESN) = '6' then
    rp2rro.rp2rro_run_product(REPORTS, 'vtn_vnwl_parole', SYNCHRONOUS, RUNTIME,FILESYSTEM, pl_id, NULL);
    end if;
    END IF;
    /*this is to check if the report exists*/
    begin
    my_file := text_io.fopen(lvc_sfile,'R');
         if text_io.is_open(my_file) then
         :parameter.file_exist := 'TRUE';
         text_io.fclose(my_file);
         end if;
         exception
         when e_file_not_found then
         :parameter.file_exist := 'FALSE';
         when others then
         :parameter.file_exist := 'N/A';
         end;
         if :parameter.file_exist = 'TRUE' then--if report was created on the server
         v_bool := webutil_file_transfer.as_to_client(lvc_loc_file, lvc_sfile);-- transferring report
    /******ERRROR***************/
    WUT-131 cannot create client file => invalid client file name
    while my file name reads
    "C:\Documents and Settings\vijay.krishna\vtn_vnwl4_00999998.pdf"
    /********************************ERROR*************************************/
    help me out!
    thanks
    vijay krishna

    Try sending the file to the client machine where the directory path has no spaces.
    L :-)

  • Webutil Implementation Errors

    Hi,
    During implementation of Webutil,i am facing the following problems:
    a)FRM-13008.
    This is despite setting the FORMS90_BUILDER_CLASSPATH to d:/ORAHOME1/forms90/webutil/webutil.jar;D:/ORAHOME1//forms90/webutil/jacob.jar;D:\OraHome1\forms90\java\f90all_jinit.jar
    b)On running the Sample form,the following error is comming,
    WUC-18 Invalid server side file specification http://myserver:8888/forms90/f90servletwebutil/jacob.dll
    In the above URL[b] "f90servletwebutil" appears strange.
    In the webutil.cfg file the setting is :install.syslib.location=/webutil
    c)Also despite making changes to the options in the webutil.cfg file like
    transfer.database.enabled=TRUE
    transfer.appsrv.enabled=TRUE
    transfer.appsrv.workAreaRoot=D:\OraHome1\UPLOAD
    transfer.appsrv.accessControl=TRUE
    #List transfer.appsrv.read.<n> directories
    transfer.appsrv.read.1=D:\OraHome1\UPLOAD
    #List transfer.appsrv.write.<n> directories
    transfer.appsrv.write.1=D:\OraHome1\DOWNLOAD
    it is giving an error :
    WUT-121 This file transfer has been forbidden by the Administrator
    I have not signed both the webutil.jar and jacob.jar with the same digital certificate.Is it neccessary.
    Regards
    Deepak

    PROCEDURE spelling_check IS
    temp_value varchar2(32000);
    curr_item_id item;
    my_args CLIENT_OLE2.LIST_TYPE;
    args CLIENT_OLE2.LIST_TYPE;
    my_application CLIENT_OLE2.OBJ_TYPE;
    tmp_mytext VARCHAR2(32000);
    v_data VARCHAR2(4000);
    v_field VARCHAR2(500);
    BEGIN
    v_field := NAME_IN('SYSTEM.CURSOR_ITEM');
    v_data := NAME_IN(v_field);
    IF NOT (get_item_property(:system.current_block || '.' ||
    :system.current_item,UPDATE_ALLOWED) <> 'TRUE'
    AND :SYSTEM.RECORD_STATUS not in ('INSERT','NEW')) THEN
    /* Create a application */
    my_application := CLIENT_OLE2.CREATE_OBJ('Word.Application');
    /* Create a temp document to do the spell checking */
    CLIENT_OLE2.INVOKE(my_application, 'FileNew');
    /* Insert the text field into the temp document */
    my_args :=CLIENT_OLE2.CREATE_ARGLIST;
    curr_item_id := find_item(v_field);
    CLIENT_OLE2.ADD_ARG(my_args,v_data);
    CLIENT_OLE2.INVOKE(my_application, 'Insert', my_args);
    CLIENT_OLE2.DESTROY_ARGLIST(my_args);
    /* Invoke the spelling check */
    CLIENT_OLE2.INVOKE(my_application, 'ToolsSpelling');
    CLIENT_OLE2.INVOKE(my_application, 'ToolsGrammar'); --check grammar
    /* Return correct text to Oracle forms */
    CLIENT_OLE2.INVOKE(my_application, 'EditSelectAll');
    tmp_mytext := CLIENT_OLE2.GET_CHAR_PROPERTY(my_application, 'Selection');
    /* Release the CLIENT_OLE2 object */
    args:=CLIENT_OLE2.CREATE_ARGLIST;
    CLIENT_OLE2.ADD_ARG(args, 2);
    CLIENT_OLE2.INVOKE (my_application, 'FileQuit', args);
    CLIENT_OLE2.DESTROY_ARGLIST(args);
    CLIENT_OLE2.RELEASE_OBJ(my_application);
    /* The text brought back from word has control char, get rid of it */
    temp_value := SUBSTR(tmp_mytext, 1, (LENGTH(tmp_mytext)-1));
    copy (temp_value,v_field);
    go_item(curr_item_id);
    MESSAGE('There is no spelling error in your selected text based on MS Words dictionary.');
    ELSE
    MESSAGE('Field is protected against update');
    END IF;
    END;

  • WebUtil_file_transfer.client_to_db

    Dear sir,
    This is my code
    Declare
    Result BOOLEAN ;
    Begin
    Result:= Webutil_File_Transfer.Client_To_DB('c:\txt1.txt','photo','photo_image','ID=2') ;
    if Result =true then
         message('gooooooooooooooood');
              message('gooooooooooooooood');
    else
              message('Baaaaaaaaaaaaad');
              message('Baaaaaaaaaaaaad');
    end if;
    end;
    my table name is photo
    column name is photo_image BLOB
    i put this code under bush button and i always get my defined message " baaaaaaaaaaad" .!!!
    i tried to be in update state . i pushed excute_query where column id and its value 2 is found and pushed my button to store file but nothing !!
    can any one help me ..
    thnaks in dvance
    Edited by: Eng Hossam Wally on 23/04/2011 05:48 ص

    Dear Sir ,
    This is the last java console txt ia have when i try and get the same defined message baaaaaaaaaaaad !! :D
    " 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\Hossam
    Proxy Configuration: no proxy
    JAR cache enabled
    Location: C:\Documents and Settings\Hossam\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://sicowin:8889/forms/java/frmall_jinit.jar from JAR cache
    Loading http://sicowin:8889/forms/java/frmwebutil.jar from JAR cache
    Loading http://sicowin:8889/forms/java/jacob.jar from JAR cache
    Loading http://sicowin:8889/forms/java/GetImageFileName.jar from JAR cache
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    إصدار بريمج Forms هو : 10.1.2.0
    2011-أبر-23 21:21:32.625 ERROR>WUC-24 [URLDownload.pullFile()] حدث خطأ أثناء قراءة عنوان URL http://sicowin:8889/forms/webutil/jacob.dll
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    إصدار بريمج Forms هو : 10.1.2.0
    2011-أبر-23 21:25:27.984 ERROR>WUC-24 [URLDownload.pullFile()] حدث خطأ أثناء قراءة عنوان URL http://sicowin:8889/forms/webutil/jacob.dll
    2011-أبر-23 21:25:30.734 ERROR>WUT-121 [WEBUTIL_FILE_TRANSFER.UploadInt] تم منع نقل الملف بواسطة المسئول
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    إصدار بريمج Forms هو : 10.1.2.0
    2011-أبر-23 21:26:25.250 ERROR>WUC-24 [URLDownload.pullFile()] حدث خطأ أثناء قراءة عنوان URL http://sicowin:8889/forms/webutil/jacob.dll
    2011-أبر-23 21:26:27.593 ERROR>WUT-121 [WEBUTIL_FILE_TRANSFER.UploadInt] تم منع نقل الملف بواسطة المسئول
    i will translate the non english words to you as :
    حدث خطأ أثناء قراءة عنوان = An error occurred while reading the title
    تم منع نقل الملف بواسطة المسئول = Was to prevent the transfer of the file by the official
    Thanks in advance ..
    Edited by: Eng Hossam Wally on 23/04/2011 12:33 م

  • Read_image_file in web mode

    hello,
    when i'm using the read_image_file in web mode, i've got the ORA 99 999 error message.
    but it works in client/server.
    my image is a gif format in the same path as the form.
    i use a unix ware 7 server with OAS.
    when i execute the form directly on the server, it works fine.
    can anyone help me ?
    thanks.
    null

    Hello ,
    Actually i have faciing the problem when i m upload the selected document in database,
    i have write down the code(IN button) GIVEN BELOW:-
    when i have press tha button i got the error
    ERROR:- WUT-121 - THE FILE HAS BEEN FORBIDDEN BY THE ADMINISTRATOR.
    PLEASE GIVE ME THE SUGGESTION.ASAP
    MAIL ME ON [email protected] solutions.
    DECLARE
         OPEN_FILE BOOLEAN;
    BEGIN
    OPEN_FILE:=WEBUTIL_FILE_TRANSFER.CLIENT_TO_DB
         ('C:\TEMP\BRC.XLS',
         'DOCUMENT',
         'DOC',
         FALSE,
         NULL
    END;
    THX

  • Webutil File upload

    I am using the webutil in our 9ias R2 server, when I try to upload a file to AS using the function WEBUTIL_FILE_TRANSFER.CLIENT_TO_AS_WITH_PROGRESS(fname,'/tmp/testing','Transfering','Transfer',true,null);
    The error WUT-121 prompt.
    I had the following setting in the webutil.cfg:
    transfer.database.enabled=TRUE
    transfer.appsrv.enabled=TRUE
    transfer.appsrv.workAreaRoot=/tmp
    transfer.appsrv.accessControl=TRUE
    #List transfer.appsrv.read.<n> directories
    transfer.appsrv.read.1=/tmp
    #List transfer.appsrv.write.<n> directories
    transfer.appsrv.write.1=/tmp
    is there anything else I haven't taken care??
    Rgds

    yes this is a copy of that portion of the webutil.cfg file
    #NOTE: By default the file transfer is disabled as a security measure
    transfer.database.enabled=TRUE
    transfer.appsrv.enabled=TRUE
    transfer.appsrv.workAreaRoot=c:\
    #c:\temp;
    transfer.appsrv.accessControl=TRUE
    #List transfer.appsrv.read.<n> directories
    transfer.appsrv.read.1=c:\temp
    transfer.appsrv.read.2=c:\
    #List transfer.appsrv.write.<n> directories
    transfer.appsrv.write.1=c:\temp
    transfer.appsrv.write.2=c:\
    the v_boolean variable seems to be null when the proc is finished.

  • Webutil.cfg

    Hi All,
    Configured webutil successfully, changed the transfer.database.enabled=TRUE and transfer.appsrv.accessControl=FALSE leaving rest of the other parameters to default in webutil.cfg file.
    But I am getting error
    2006-Jan-11 14:58:39.285 ERROR>WUT-121 [WEBUTIL_FILE_TRANSFER.UploadInt] The file transfer has been forbidden by the Administrator
    Any clue guys what other parameter I need to setup right?
    Best Regards.

    I got this working with these settings:
    transfer.database.enabled=TRUE
    transfer.appsrv.enabled=TRUE
    transfer.appsrv.workAreaRoot=
    transfer.appsrv.accessControl=FALSE
    This allows the server to upload from any app server directory. It won't be useful in all applications but for debugging purposes it worked great.

  • WebUtilProblem

    hi all
    Dear Mr,
    Configured webutil successfully as follow
    transfer.database.enabled=true
    transfer.appsrv.enabled=true
    transfer.appsrv.workAreaRoot=
    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
    But I am getting error
    2010-Nov-09 10:37:25.562 ERROR>WUT-121 [WEBUTIL_FILE_TRANSFER.UploadInt] The file transfer has been forbidden by the Administrator
    what other parameter I need to setup right? or is this error is related to other webuti.conf??

    i try this steps still the same porblem!!. Does the signed jar file cause this problem?? When i tried to sign the jar file i execute the following steps
    a) I edit the sign_webutil.bat file, add the following row:
    REM Local variables
    SETLOCAL
    PATH = D:\Dev9i\jdk1.5.0_06\bin
    b) run the command batch as follow:
    D:\Dev9i\forms90\webutil>sign_webutil.bat D:\Dev9i\forms90\java\frmwebutil.jar
    the result that i have got:
    Generating a self signing certificate for key=webutil2...
    keytool error: java.lang.Exception: Key pair not generated, alias <webutil2> already exists.
    There were warnings or errors while generating a self signing certificate. Please review them.
    Backing up D:\Dev9i\forms90\java\frmwebutil.jar as D:\Dev9i\forms90\java\frmwebutil.jar.old... 1 file(s) copied.
    Signing D:\Dev9i\forms90\java\frmwebutil.jar using key=webutil2......successfully done.
    -- the same command is applied to jacob.jar.
    is this result means the signed jar file (frmwebutil.jar, jacob.jar) are true??
    thank you.

  • Webutil: WUT-100 error

    Hello,
    I'm getting WebUtil WUT-100 error, thus:
    Loading http://2ua300tw.epcor.ca:8890/forms90/webutil/webutil.jar from JAR cache
    Loading http://2ua300tw.epcor.ca:8890/forms90/java/f90all_jinit.jar from JAR cache
    RegisterWebUtil - Loading Webutil Version 1.0.2 Beta
    Loading http://2ua300tw.epcor.ca:8890/forms90/webutil/jacob.jar from JAR cache
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    Forms Applet version is : 9.0.4.0
    2004-Aug-03 11:47:02.826 ERROR>WUT-100 [FileTransfer.defineFile()] Bad file information string: |0|S|Y|File Upload|Loading . Please wait...
    I've checked the discussion forum, but I couldn't find any discussion relating to this error. Does anyone know how to resolve this problem?
    Thanks,
    gk

    Harm,
    I get the same error here, but my file is not being uploaded.
    You need to provide a string to the progressSubtitle parameter of the client_to_as_with_progress function, not only ''.
    This works for me.
    HTH
    Gerald

  • WUT-125 Webutil Error happens occasionally....

    Hello,
    We are currently running OAS 10g (10.1.2) ti deliver a web-based Forms application to our users (some are onsite and some off-site).
    We use the WEBUTIL file transfer function CLIENT_TO_AS_WITH_PROGRESS to allow the users to upload their work (they are illustrators) tot he server, to be added to their image library.
    Occasionally, and almost always offsite and therefore outside our firewall, we get the following error (please note I have replaced the URL value for anonymity):
    Loading http://URL/forms/java/frmwebutil.jar from JAR cache
    Loading http://URL/forms/java/frmall_jinit.jar from JAR cache
    RegisterWebUtil - Loading WebUtil Version 10.1.2.3
    Loading http://URL/forms/java/caps_icons.jar from JAR cache
    Loading http://URL/forms/java/progressbar.jar from JAR cache
    Loading http://URL/forms/java/calendar.jar from JAR cache
    Loading http://URL/forms/java/jacob.jar from JAR cache
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    Forms Applet version is : 10.1.2.3
    java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.
    +     at sun.applet.AppletClassLoader.getBytes(Unknown Source)+
    +     at sun.applet.AppletClassLoader.access$100(Unknown Source)+
    +     at sun.applet.AppletClassLoader$1.run(Unknown Source)+
    +     at java.security.AccessController.doPrivileged(Native Method)+
    +     at sun.applet.AppletClassLoader.findClass(Unknown Source)+
    +     at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)+
    +     at java.lang.ClassLoader.loadClass(Unknown Source)+
    +     at sun.applet.AppletClassLoader.loadClass(Unknown Source)+
    +     at java.lang.ClassLoader.loadClass(Unknown Source)+
    +     at java.lang.ClassLoader.loadClassInternal(Unknown Source)+
    +     at java.lang.Class.forName0(Native Method)+
    +     at java.lang.Class.forName(Unknown Source)+
    +     at oracle.forms.handler.UICommon.instantiate(Unknown Source)+
    +     at oracle.forms.handler.UICommon.onCreate(Unknown Source)+
    +     at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)+
    +     at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)+
    +     at oracle.forms.engine.Runform.processMessage(Unknown Source)+
    +     at oracle.forms.engine.Runform.processSet(Unknown Source)+
    +     at oracle.forms.engine.Runform.onMessageReal(Unknown Source)+
    +     at oracle.forms.engine.Runform.onMessage(Unknown Source)+
    +     at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)+
    +     at oracle.forms.engine.Runform.startRunform(Unknown Source)+
    +     at oracle.forms.engine.Main.createRunform(Unknown Source)+
    +     at oracle.forms.engine.Main.start(Unknown Source)+
    +     at sun.applet.AppletPanel.run(Unknown Source)+
    +     at java.lang.Thread.run(Unknown Source)+
    +2010-Apr-21 12:24:25.712 ERROR>WUT-125 [WEBUTIL_FILE_TRANSFER.UploadInt] Checksum error closing application server file /data/Live/Graphics_In/gz/GRAPHIC_FILE.cgm. Expected size 1328778. Transferred size 0+
    As said, it is a sporadic problem but then seems to persist for certain files.
    I should also note that the directory /data is actually a linked folder on the UNIX box pointing to an area on a Windows file server.
    This process works more often than not but around 5% are getting this error and thus stopping certain users being able to complete their work...
    We've tried to trap this error via the WEBUTIL error log but the errors are not being logged there.
    Very odd and head scratching time, thus... help?
    Cheers
    Dan

    hi
    u have to sign jars something like this.
    o C:\cd <Developer Home>\jdk\bin
    o C:\<Developer Home>\jdk\bin>
    <Developer Home>\forms90\webutil\sign_webutil.bat
    <Developer Home>\forms90\java\frmwebutil.jarand also u have to modify Default.env. something like this.
    In a new line under (FORMS90_PATH=) add this line:
    o WEBUTIL_CONFIG=<Developer Home>\forms90\server\webutil.cfg
    when i signed the jars so i got the result something like this in java folder.
    jacob.jar.old
    hope it helps u.
    sarah

  • Wut-134 error

    Hello,
    I have configured webutil file
    but when i run webutil_demo form i am getting
    *WUT-134 Error 2012-Aug-31  11:07:06.421 ERROR>WUT-134 [WEBUTIL_CORE.checkJava] frmwebutil.jar not in the Application Server Classpath*
    I have added frmwebutil.jar file CLASSPATH in default.env file.
    Thanks

    What parameters are you passing in your Forms application URL? Typically, when you use WebUtil you add the "?config=WEBUTIL" parameter to your URL. If you are already using a configuration parameter, then add the [webutil] section of the formsweb.cfg to your configuration section. For example, if you had a configuration section called "MyForms" you would modify the formweb.cfg as follows:
    [MyForms]
    ...Your settings here...
    # Webutil configuration settings copied from the [webutil] section.
    WebUtilArchive=frmwebutil.jar,jacob.jar
    WebUtilLogging=off
    WebUtilLoggingDetail=normal
    WebUtilErrorMode=Alert
    WebUtilDispatchMonitorInterval=5
    WebUtilTrustInternal=true
    WebUtilMaxTransferSize=16384
    #baseHTMLjinitiator=webutiljini.htm
    baseHTMLjinitiator=webutiljpi.htm
    baseHTMLjpi=webutiljpi.htm
    archive_jini=frmall_jinit.jar
    archive=frmall.jarThe key here is the WebUtilArchive entry because it tells forms to include the frmwebutil.jar, but I strongly recommend you include all of the settings from the [webutil] section.
    Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • File does not exist: /www/public_html/null, referer:  - error in log file from IE8 and IE9

    I just updated an existing slide show that was created several months back. Since loading my new set of files to our web server, we keep getting the following error in our server log files when someone loads our page in IE8 and IE9:
    File does not exist: /www/public_html/null, referer:
    One of our programmers tracked the error to this line of code, but we're not sure what's causing it:
    Muse.Utils.addSelectorFn('#slideshowu70', function(elem) { new WebPro.Widget.ContentSlideShow(elem, {autoPlay:true,displayInterval:6000,slideLinkStopsSlideShow:false,transitionStyle:'horizo ntal',lightboxEnabled_runtime:false,shuffle:false}); });/* #slideshowu70 */
    Any suggestions?
    Thanks!

    The errors aren't showing up on the client side, only in the server access logs. Every time the page is loaded with IE8 or IE9 and the Muse.Utils.addSelectorFn with the #slideshowu70 line is hit, it generates four errors in the server access logs.
    Our admin guy pulled the errors from where it was clicked on from the Adobe forum. He said it also appeared that you tested it with www added to the url (if this was when you were testing it)...
    [Mon Feb 04 13:58:57 2013] [error] [client 121.242.198.2] File does not exist: /www/public_html/null, referer:http://stingrayboats.com/
    [Mon Feb 04 13:59:00 2013] [error] [client 121.242.198.2] File does not exist: /www/public_html/null, referer:http://stingrayboats.com/
    [Mon Feb 04 13:59:08 2013] [error] [client 121.242.198.2] File does not exist: /www/public_html/null, referer:http://stingrayboats.com/
    [Mon Feb 04 13:59:33 2013] [error] [client 121.242.198.2] File does not exist: /www/public_html/null, referer:http://www.stingrayboats.com/
    [Mon Feb 04 13:59:43 2013] [error] [client 121.242.198.2] File does not exist: /www/public_html/null, referer:http://www.stingrayboats.com/
    The reason we find it strange is because it did not result in errors with the previous version of the slideshow. The only thing that changed this time around is that I removed some slides and added additional ones, but I noticed that there is a lot of difference in the code and even the scripts that are used. And I did copy over all of the scripts, css files, etc., so it's using all of the new source files.
    I was hoping it was something that you guys had noticed if you review the access logs when you're testing. While it works perfectly on the client side, the IT guys do go through our access logs, so it would be nice to eliminate the errors.
    Thanks for looking at it!

Maybe you are looking for

  • How do I actually get my Officejet 7500A WF printer to print... There's no program....

    OK HP, I'm so over this one. I'm on my 3rd brand new one because of different problems, first was a broken screen, 2nd the printer wouldn't talk to the computer, (I can't remember the excuse w/o looking it up)  now every time I scan more than 4 thing

  • More JTextPane Questions

    Hi Guys I posted this question on the Java Ranch forums yesterday evening, but I haven't received a response yet, so I figured that I'd try these forums as well. You can view the other thread here; http://www.coderanch.com/t/554155/GUI/java/JTextPane

  • New billing system webpage non-compatible with Safari.  Please help!

    Hey guys. A large corporation that is a customer of my father's is switching all of their billing process to a system called Powertrack. Unfortunately their specific webpage is written only for Microsoft Internet Explorer. I tried downloading the lat

  • Urgent Print Question

    Hello Everyone, I need help, fast. I am begining work on a file that is supose to be W-600cm x H-150cm. My question is what DPI per cm must I choose ? I have been working with business cards and other small designs on 250 DPI, but never on such a lar

  • Fill Idoc error status

    Hi Folks, I am trying to fill the IDoc error status when processing inbound ORDERS IDoc. Code looks OK. But i am not getting the IDoc in error status. Pl look @ the code and let me know. data: w_errtab like errtab occurs 0 with header line. if condit