WUC-20 errors openning form using webutil

We have configured several forms to use Webutil. We have moved a Windows 9iAS deployment to Linux. When running under linux we get WUC-20 errors for files jacob.dll, d2kwutil.dll and JNIsharedstubs.dll. I wondered if the file sizes were slightly changed by moving them to linux. Checking the size with 'ls -l' verifies that they are the same as in the webutil.cfg file.
Any suggestions to resolve this?

Thanks for the reply.
I believe I have delt with the CRLF characters and have done so again and rechecked.
I have run the application on a pc without a Jinitiator install and have found the three dlls do not appear to be downloading properly so that I have the three files showing as 1KB in C:\program files\oracle\jinitiator 1.3.1.9\bin.
Any advice would be much appreciated.

Similar Messages

  • I created a pdf form and then iported it to Forms Central for distribute. It is now loaded to my website and setup so a person clicks on the link to open the form. At this point they then have to go to upper right to open form using a different view. I wo

    I created a pdf form and then imported it to Forms Central for distribute. It is now loaded to my website and setup so a person clicks on the link to open the form. At this point they then have to go to upper right to open form using a different view. I would like the form to open directly in Adobe Reader form to make it easier to enter information. Thanks, Ike

    If you created it in Forms Central, you have to edit it there. I believe Forms Central is similar to LiveCycle Designer in that the form created is no longer able to be edited in Acrobat. I might be wrong, but that is my understanding. You add the submit button in Forms Central. Within Acrobat, you should be able to go to the forms menu and Manage Data to save the data to an Excel file. Others better with forms should be by to clarify things, but this should get you started. In the future you might find it better to post a forms question in the forms discussions.

  • Call a Form using Webutil from the Menu loose focus on the applet

    Hello,
    I have the following problem:
    When calling a form using webutil from the menu the focus on the applet (I mean the Forms Application window) is lost and I have to click on the window to get back the focus on the application.
    Any advice ?
    Env: Forms 9i / Webutil 1.06
    Rgds,
    Philippe

    Try to use the NO_HIDE parameter in the CALL_FORM() built-in.
    Call_Form( 'the_form', NO_HIDE ) ;Or maybe, in the[b] When-New-Form-Instance trigger of the called form, return the focus to the calling form
    Go_Form( Get_Application_Property( CALLING_FORM ) ) ;Francois

  • Error opening Forms 4.5 form in Forms 6i

    when i try to open Forms 4.5 form file in
    Forms 6i builder if gives GPF .
    following is full error
    IFBLD60 caused an invalid page fault in
    module IFDUG60.DLL at 0167:5d70220d.
    Registers:
    EAX=009e7af0 CS=0167 EIP=5d70220d EFLGS=00010202
    EBX=00a5a154 SS=016f ESP=009acffc EBP=009ad008
    ECX=00000022 DS=016f ESI=00000020 FS=0ed7
    EDX=00000000 ES=016f EDI=009e7af0 GS=0000
    Bytes at CS:EIP:
    8b 46 0c 50 57 e8 99 c4 01 00 83 c4 08 33 c9 66
    Stack dump:
    0000000f 00000020 00a5a154 009ad024 5d7021ca 00a5a154 00000020 03f3120c 00a5a154 00000000 009ad048 5d6d4123 00a5a154 00000000 00000010 00a76598

    Hi,
    I had the same problem. Check your PL/SQL code for the use of visaul attributes CG$ITEM and CG$DISPLAY_ITEM. They do not exist anymore in HeadStart 6.5. You have to replace them with QMS$BLACK_ON_WHITE for CG$ITEM and QMS$BLACK_ON_GRAY for CG$DISPLAY_ITEM.
    Regards, Hanneke

  • How to upload data from excel to form using webutil

    Hi,
    In the sample provided by Oracle
    http://www.oracle.com/technology/products/forms/htdocs/webutil/howto_ole.html
    Note 247606.1 How to Copy Records From a Form Into Excel
    It shown the methods of how to copy data from form to excel but is there any sample to provide the step on how to read the cell from excel into Form in 10g.

    declare
    args client_ole2.list_type;
    application client_ole2.obj_type;
    vworkbooks client_ole2.obj_type;
    vdoc     client_ole2.obj_type;
    vworksheet     client_ole2.obj_type;
    vrange               client_ole2.obj_type;
    begin
    -- create app object
    application := client_ole2.create_obj('Excel.Application');
    client_OLE2.SET_PROPERTY(application, 'Visible','True');
    -- get workbooks object
    vworkbooks := client_ole2.get_obj_property(application, 'Workbooks');
    -- and open a file
    args := client_ole2.create_arglist;
    client_ole2.ADD_ARG(args, 'c:\tp_ae.xls');
    vdoc :=client_ole2.INVOKE_OBJ(vworkbooks,'Open',args);
    client_ole2.destroy_arglist(args);
    -- get a worksheet object
    -- for this to work you need to know the sheet name or its index
    args := client_ole2.create_arglist;
    client_ole2.ADD_ARG(args, 1); <-- name or index
    vworksheet := client_ole2.get_obj_property(vdoc,'Worksheets',args);          
    client_ole2.destroy_arglist(args);
    -- get a range object which in this case is just a cell
    -- for this to work you need to know the cell coordinates
    args := client_ole2.create_arglist;
    client_ole2.ADD_ARG(args, 'B6');          
    vrange := client_ole2.get_obj_property(vworksheet,'Range',args);
    client_ole2.destroy_arglist(args);
    -- and here you get the value
    message(client_ole2.get_char_property(vrange,'Value'));
    -- release objects          
    client_ole2.release_obj(vrange);
    client_ole2.release_obj(vworksheet);
    client_ole2.release_obj(vdoc);
    client_ole2.release_obj(vworkbooks);
    client_ole2.release_obj(application);
    end;

  • Error opening PDF using webdynpro

    Hello All,
    I created a webdynpro application that opens a pdf document using the code described in the following link.
    Open PDF in New External Window
    I am getting the following error:
    "There was an error opening this document. The file is damaged and could not be repaired"
    But I am able to open the same file using another ASP application.
    Am I missing anything?
    Thanks in advance.

    Nikhil and Vinod,
    Thanks for your response. I used this code but it is not working. I am still getting the same error.
    In my application, I am not reading the pdf from a file. Instead, it is stored in the database as a blob. I am reading the data using the following code:
    Blob pdfBlob = resultSet.getBlob(COLUMNNAME)
    byte[] pdf = new byte[1024]
    pdf = pdfBlob.getBytes(1,(int)blob.length());
    I am storing this value in a context and then displaying it as a pdf. I am using the following code to get bytes
    byte[] pdfBytes = wdContext.currentElement().getBLOB(); (BLOB - name of the context attribute where bytes are stored)
    and using the following code to open the pdf document (as suggested)
    IWDResource pdfResource = WDResourceFactory.createResource(pdfBytes,"test.pdf",WDWebResourceType.PDF);
    *                    wdComponentAPI.getWindowManager().createNonModalExternalWindow(pdfResource.getUrl(0),"test.pdf").show();*
    Am I missing anything here?
    How can I force the pdf document to open in a browser window instead of Adobe?
    Thanks in advance.

  • Calling SQL Loader through Forms using webutils

    hi all,
    Can anyone tell me how can i call a sqlldr through forms 9i using webutils?Let me know if anyone have a sample script.
    Thanks
    Best Regards,
    Abrar
    [email protected]

    If your middle tier and database server are both unix boxes you could use host(rsh...)
    Are you suggesting webutil because your data to be loaded is on the PC ? If so you probably want to move it then load it as two seperate operations.
    If there isn't too much data you also have the option of using text_io to load it into a forms database block, which has the advantage that the user can see what is happening, and validation rules could be added if required.

  • Error opening  form(HCM Forms and Process) in ESS

    Hi,
    Im getting following error when im trying to open form from ESS.
    The following error text was processed in the system IED : Web Dynpro application /PAASRFORMSTEP/EDITFORMAPP does not exist .
    I have created Resource and assigned it to Service through SPRO
    Resource Parameters:-
    Directory Path   = paasrformstep
    Object Name     = EditFormApp
    URL Parameter = sap.xss.disablehdr&Process=Process Name
    also i have given PCD of the Page in URL of Page
    Service Parameters:-
    Service Type     =  WebDynpro Java Application
    Link Resource   =  Reasource Name
    Proxy Class       =  CL_HRASR00_PROCESSES_AREAPAGE
    Please let me know if im missing anything
    Thanks,
    Santosh

    Hi Santosh,
    1. Check whether namespace sap.com/paasrformstep even exists on your portal. Take a look at the content administrator of WebDynpro Tools. Should be "http://server:port/webdynpro/dispatcher/sap.com/tcwdtools/Explorer"
    2. Make sure you don't have any Typos in the Service-Name of your iView (case sensitive!)
    3. Check your NWA monitoring trace log where you can see the java stack and see where the error actually occurs.
    Also, maybe this thread helps:
    Web dynpro abap login ,WebDynpro Exception: Application // Does Not Exist
    best regards, Lukas

  • Unable to open forms using menu (forms10G & 10AS environment)

    Hi
    I am trying to open forms (menu) using URL.
    in 10AS (application server) there is a .env file.
    When I enter the URL a form open ups, then there is a text item on the form, I have to enter the .env file name.
    Then I have to click on OKutton.
    When I am clicking on OK button, it showing me the following
    Installed successfully!
    Oracle Application Server
    Forms Services
    Oracle Application Server 10g
    Forms Services version 10.1.2.0.2 [OK]
    Few days back I was able to open forms
    I am able to access forms in other server using the URL of that other server.
    Please tell me what should I do?
    Regards

    hi
    try to modify formsweb.cfg something like this.
    Example Named Configuration Section
    # Example 1: configuration to run forms in a separate browser window with
    # "generic" look and feel (include "config=sepwin" in the URL)
    # You may define your own specific, named configurations (sets of parameters)
    # by adding special sections as illustrated in the following examples.
    # Note that you need only specify the parameters you want to change.  The
    # default values (defined above) will be used for all other parameters.
    # Use of a specific configuration can be requested by including the text
    # "config=<your_config_name>" in the query string of the URL used to run
    # a form.  For example, to use the sepwin configuration, your could issue
    # a URL like "http://myhost.mydomain.com/forms/frmservlet?config=sepwin".
    [test]
    WebUtilArchive=frmwebutil.jar,jacob.jar
    WebUtilLogging=off
    WebUtilLoggingDetail=normal
    WebUtilErrorMode=Alert
    WebUtilDispatchMonitorInterval=5
    *form=login.fmx*
    WebUtilTrustInternal=true
    WebUtilMaxTransferSize=16384
    baseHTMLjinitiator=webutiljini.htm
    baseHTMLjpi=webutiljpi.htm
    archive_jini=frmall_jinit.jar
    archive=frmall.jar
    lookAndFeel=oraclecreate working directory modify default.env.
    # Search path for Forms applications (.fmx files, PL/SQL libraries)
      # If you need to include more than one directory, they should be semi-colon
      # separated (e.g. c:\test\dir1;c:\test\dir2)
      FORMS_PATH=c:\DevSuiteHome_1\forms;C:\henand try to use the URL something like this.
    http://machine_name:Port/forms/frmservlet?config=testsarah

  • Not able to merge files in oracle 10g forms using webutil

    Hi,
    i ahve developed an application in oracle forms 10g in which i am generating xls file by report and saving on server. now i want to merge header file to file generated by reports and save on server and then trasfer it to client using webutil. but i am not able to do so. please help
    ---sachin

    do you have a solution for merging the headers ?
    for example a batch file, which does the work?
    then run this batch from forms with webutil on your client.

  • Frm-92101 getting error when running form using webutil

    hi
    I get an error FRM-92101:There was a failure in the Forms Server during startup. This could happen due to invalid configuration. Please look into the web-server log file for details
    i am using form version
    Forms [32 Bit] Version 10.1.2.0.2 (Production)
    problem is some time form runs and some time dont any solution or possibility???

    check this for configuration of webutil
    http://baigsorcl.blogspot.com/search/label/WebUtil
    Baig
    [My Oracle Blog|http://baigsorcl.blogspot.com/]

  • Problem in downloading a file from AS to client through form using webutil

    I am running oracle 10g sever & devloper 10g in the same machine. Almost every thing is working properly from a client PC in the network except the following aspect :-
    From client pc, through form, I have created one export(dmp file) which is being saved in the AS. Now I want this file to be downloaded from AS to this client PC.
    I have tried webutil_file.copy_file(server_filename,client_copy_name) which is not working. the error trace file says "Unable to open source file in server" & "Unable to read WebUtil configuration file".
    I have also tried webutil_file_transfer.AS_to_Client_with_progress
    which results in unsuccessful from server to client.
    I modified the webutil.cfg file as :=
    transfer.database.enabled=TRUE
    transfer.appsrv.enabled=TRUE
    transfer.appsrv.accessControl=FALSE
    transfer.appsrv.workAreaRoot=D:\temp
    transfer.appsrv.read.1=D:\temp
    transfer.appsrv.write.1=D:\temp
    Please help me out from this situation

    hi
    Welcome to OTN.
    try to use.
    Client_host()sarah

  • Error opening report using WEB.SHOW_DOCUMENT

    Hi
    I have a report in pdf format that opens ok by itself. When I use WEB.SHOW_DOCUMENT in the when_mouse_click trigger on the item in the form the report doesnt display. Only an IE window with "The page cannot be displayed" message.
    Here is the trigger code:
    Web.show_document(http://nbotlaguduru.dms.local/export/||FMSLaborChargesalcs20060829132645.pdf)
    where FMSLaborChargesalcs20060829132645.pdf is the name of the report I am trying to open.
    Here is the URL that appears in the second window that opens:
    http://nbotlaguduru.dms.local/export/FMSLaborChargesalcs20060829132645.pdf
    this url generates the error message "The page cannot be displayed"
    I am using Forms [32 Bit] Version 10.1.2.0.2 (Production)
    Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    Report Builder 10.1.2.0.2
    ORACLE Server Release 10.1.0.4.2
    and I running the forms and reports server on my local machine.
    Any help would be greatly appreciated. Thanks

    Thanks for answering,
    I changed the URL from
    http://nbotlaguduru.dms.local/export/FMSLaborChargesalcs20060829132645.pdf
    to
    http://nbotlaguduru.dms.local:8889/export/FMSLaborChargesalcs20060829132645.pdf
    and the same problem occured
    the file is located on my local C drive in:
    C:\lcs\export
    seems as though I am missing something else as well
    any ideas?

  • FRM-92102 in Forms using Webutil with JInitiator

    Hi Gurus,
    I'm facing the error FRM-92102 in Forms in some clients, that's driving my crazy. The facts are:
    * Oracle Application Server 10g R2 10.1.2 with Patchset 10.1.2.2.0 applied (left to apply patchset as doc 404477.1 in Metalink) on Windows 2003 Server Std. Ed. 64 bits.
    * JInitiator 1.3.1.26 on all clients (Windows XP and Windows 2000)
    * WebUtil 10.1.2.2
    * heartBeat = 35, set in App's section of formsweb.cfg
    * networkRetries = 60 in App's section of formsweb.cfg
    * Modified versions of baseHTMLjinitiator(to be used with JInitiator) and baseHTMLjpi to take into account the heartBeat and networkRetries parameters.
    * FORMS_TIMEOUT set to 30 in application.env
    I've seen that this error happens with Windows XP clients only (with SP2 and/or SP3 applied), while in Windows 2000 with SP4 I get no error at all and the Form works and ens without any problem.
    I've seen that increasing networkRetries parameter increase the likelihood of Forms to end normally, but that doesn't seem a good solution: at which value must I bring it to ?
    The captured Java console of one of this errors is as follows:
    &lt;hr /&gt;
    JInitiator: Versi&oacute;n 1.3.1.26
    Usar versi&oacute;n JRE 1.3.1.26-internal Java HotSpot(TM) Client VM
    Directorio local del usuario = C:\Documents and Settings\myuser
    El usuario ha alterado los valores de delegado del explorador.
    Configuraci&oacute;n del delegado: sin delegado
    JAR cache enabled
    Location: C:\Documents and Settings\myuser\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
    Loading [http://mydomain.es/forms/java/frmall_jinit.jar] from JAR cache
    Loading [http://mydomain.es/forms/java/frmwebutil.jar] from JAR cache
    RegisterWebUtil - Loading WebUtil Version 10.1.2.2
    Loading [http://mydomain.es/forms/java/jacob.jar] from JAR cache
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    La versi&oacute;n del applet Forms es: 10.1.2.2
    Volviendo a conectar (intento 1 de 30)...
    Volviendo a conectar (intento 2 de 30)...
    Volviendo a conectar (intento 3 de 30)...
    Volviendo a conectar (intento 4 de 30)...
    Volviendo a conectar (intento 5 de 30)...
    Volviendo a conectar (intento 6 de 30)...
    Volviendo a conectar (intento 7 de 30)...
    Volviendo a conectar (intento 8 de 30)...
    Volviendo a conectar (intento 9 de 30)...
    Volviendo a conectar (intento 10 de 30)...
    Volviendo a conectar (intento 11 de 30)...
    Volviendo a conectar (intento 12 de 30)...
    Volviendo a conectar (intento 13 de 30)...
    Volviendo a conectar (intento 1 de 30)...
    Volviendo a conectar (intento 2 de 30)...
    Volviendo a conectar (intento 3 de 30)...
    Volviendo a conectar (intento 4 de 30)...
    Volviendo a conectar (intento 5 de 30)...
    Volviendo a conectar (intento 6 de 30)...
    Volviendo a conectar (intento 7 de 30)...
    Volviendo a conectar (intento 8 de 30)...
    Volviendo a conectar (intento 1 de 30)...
    Volviendo a conectar (intento 2 de 30)...
    Volviendo a conectar (intento 3 de 30)...
    Volviendo a conectar (intento 4 de 30)...
    Volviendo a conectar (intento 1 de 30)...
    Volviendo a conectar (intento 2 de 30)...
    Volviendo a conectar (intento 3 de 30)...
    Volviendo a conectar (intento 4 de 30)...
    Volviendo a conectar (intento 5 de 30)...
    Volviendo a conectar (intento 6 de 30)...
    Volviendo a conectar (intento 7 de 30)...
    Volviendo a conectar (intento 8 de 30)...
    Volviendo a conectar (intento 9 de 30)...
    Volviendo a conectar (intento 10 de 30)...
    Volviendo a conectar (intento 11 de 30)...
    Volviendo a conectar (intento 12 de 30)...
    Volviendo a conectar (intento 13 de 30)...
    Volviendo a conectar (intento 14 de 30)...
    Volviendo a conectar (intento 15 de 30)...
    Volviendo a conectar (intento 16 de 30)...
    Volviendo a conectar (intento 17 de 30)...
    Volviendo a conectar (intento 18 de 30)...
    Volviendo a conectar (intento 19 de 30)...
    Volviendo a conectar (intento 20 de 30)...
    Volviendo a conectar (intento 21 de 30)...
    Volviendo a conectar (intento 22 de 30)...
    Volviendo a conectar (intento 23 de 30)...
    Volviendo a conectar (intento 24 de 30)...
    Volviendo a conectar (intento 25 de 30)...
    Volviendo a conectar (intento 26 de 30)...
    Volviendo a conectar (intento 27 de 30)...
    Volviendo a conectar (intento 28 de 30)...
    Volviendo a conectar (intento 29 de 30)...
    Volviendo a conectar (intento 30 de 30)...
    java.net.BindException: Address in use: connect
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(Unknown Source)
    at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
    at java.net.PlainSocketImpl.connect(Unknown Source)
    at java.net.Socket.(Unknown Source)
    at java.net.Socket.(Unknown Source)
    at sun.net.NetworkClient.doConnect(Unknown Source)
    at sun.plugin.protocol.jdk12.http.HttpClient.doConnect(Unknown Source)
    at sun.net.www.http.HttpClient.openServer(Unknown Source)
    at sun.net.www.http.HttpClient.openServer(Unknown Source)
    at sun.net.www.http.HttpClient.(Unknown Source)
    at sun.net.www.http.HttpClient.(Unknown Source)
    at sun.plugin.protocol.jdk12.http.HttpClient.(Unknown Source)
    at sun.plugin.protocol.jdk12.http.HttpClient.New(Unknown Source)
    at sun.plugin.protocol.jdk12.http.HttpURLConnection.createConnection(Unknown Source)
    at sun.plugin.protocol.jdk12.http.HttpURLConnection.connect(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(Unknown Source)
    at oracle.forms.net.HTTPNStream.connect(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)
    java.io.EOFException
    at java.io.DataInputStream.readUnsignedByte(Unknown Source)
    at oracle.forms.engine.Message.readDetails(Unknown Source)
    at oracle.forms.engine.Message.readDetails(Unknown Source)
    at oracle.forms.net.StreamMessageReader.run(Unknown Source)
    &lt;hr /&gt;
    I'm completely at a loss here. Any advice would be greatly appreciated.
    Thanks in advance.

    Hi Michael,
    I've done what the Microsoft note states and the error takes longer to appear, but it does.
    I've done some netstat -an captures before using the Forms App (before the error) and after. Here are:
    Before:
    Conexiones activas
    Proto Direcci¢n local Direcci¢n remota Estado
    TCP 0.0.0.0:135 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:445 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:1991 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:2030 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:6129 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:16992 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:16993 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:19226 0.0.0.0:0 LISTENING
    TCP 127.0.0.1:1040 127.0.0.1:1041 ESTABLISHED
    TCP 127.0.0.1:1041 127.0.0.1:1040 ESTABLISHED
    TCP 127.0.0.1:1042 127.0.0.1:1043 ESTABLISHED
    TCP 127.0.0.1:1043 127.0.0.1:1042 ESTABLISHED
    TCP 127.0.0.1:1044 0.0.0.0:0 LISTENING
    TCP 127.0.0.1:1058 127.0.0.1:1059 ESTABLISHED
    TCP 127.0.0.1:1059 127.0.0.1:1058 ESTABLISHED
    TCP 127.0.0.1:1060 127.0.0.1:1063 ESTABLISHED
    TCP 127.0.0.1:1063 127.0.0.1:1060 ESTABLISHED
    TCP 127.0.0.1:1064 0.0.0.0:0 LISTENING
    TCP 127.0.0.1:1066 127.0.0.1:1067 ESTABLISHED
    TCP 127.0.0.1:1067 127.0.0.1:1066 ESTABLISHED
    TCP 127.0.0.1:1068 127.0.0.1:1069 ESTABLISHED
    TCP 127.0.0.1:1069 127.0.0.1:1068 ESTABLISHED
    TCP 127.0.0.1:3274 127.0.0.1:6139 ESTABLISHED
    TCP 127.0.0.1:3275 127.0.0.1:3276 ESTABLISHED
    TCP 127.0.0.1:3276 127.0.0.1:3275 ESTABLISHED
    TCP 127.0.0.1:3277 127.0.0.1:3278 ESTABLISHED
    TCP 127.0.0.1:3278 127.0.0.1:3277 ESTABLISHED
    TCP 127.0.0.1:6083 0.0.0.0:0 LISTENING
    TCP 127.0.0.1:6139 0.0.0.0:0 LISTENING
    TCP 127.0.0.1:6139 127.0.0.1:3274 ESTABLISHED
    TCP 127.0.0.1:9000 0.0.0.0:0 LISTENING
    TCP 127.0.0.1:31595 0.0.0.0:0 LISTENING
    TCP 192.168.147.139:139 0.0.0.0:0 LISTENING
    TCP 192.168.147.139:3236 192.168.146.2:445 ESTABLISHED
    TCP 192.168.147.139:3283 172.17.4.33:1026 ESTABLISHED
    TCP 192.168.147.139:3318 172.17.7.223:1435 ESTABLISHED
    TCP 192.168.147.139:3322 192.168.146.4:4136 ESTABLISHED
    TCP 192.168.147.139:3323 192.168.146.4:389 ESTABLISHED
    TCP 192.168.147.139:3473 192.168.146.6:80 TIME_WAIT
    TCP 192.168.147.139:3481 172.17.7.223:1435 TIME_WAIT
    TCP 192.168.147.139:3482 192.168.146.6:80 CLOSE_WAIT
    TCP 192.168.147.139:3483 192.168.146.6:80 TIME_WAIT
    TCP 192.168.147.139:3484 192.168.146.6:80 TIME_WAIT
    TCP 192.168.147.139:3485 192.168.146.6:80 TIME_WAIT
    TCP 192.168.147.139:3486 192.168.146.6:80 TIME_WAIT
    TCP 192.168.147.139:3487 192.168.146.6:80 TIME_WAIT
    TCP 192.168.147.139:3488 192.168.146.6:80 TIME_WAIT
    TCP 192.168.147.139:3489 192.168.146.6:80 CLOSE_WAIT
    TCP 192.168.147.139:3490 192.168.146.6:80 TIME_WAIT
    TCP 192.168.147.139:3491 192.168.146.6:80 TIME_WAIT
    TCP 192.168.147.139:3492 192.168.146.6:80 TIME_WAIT
    TCP 192.168.147.139:3493 192.168.146.6:80 TIME_WAIT
    TCP 192.168.147.139:3494 192.168.146.6:80 TIME_WAIT
    TCP 192.168.147.139:3495 192.168.146.6:80 TIME_WAIT
    TCP 192.168.147.139:3496 192.168.146.6:80 TIME_WAIT
    TCP 192.168.147.139:3497 192.168.146.6:80 TIME_WAIT
    TCP 192.168.147.139:3498 192.168.146.6:80 TIME_WAIT
    TCP 192.168.147.139:3499 192.168.146.6:80 CLOSE_WAIT
    TCP 192.168.147.139:6129 192.168.146.90:3102 ESTABLISHED
    UDP 0.0.0.0:259 *:*
    UDP 0.0.0.0:445 *:*
    UDP 0.0.0.0:500 *:*
    UDP 0.0.0.0:1065 *:*
    UDP 0.0.0.0:3285 *:*
    UDP 0.0.0.0:4500 *:*
    UDP 0.0.0.0:18234 *:*
    UDP 0.0.0.0:19226 *:*
    UDP 127.0.0.1:123 *:*
    UDP 127.0.0.1:1025 *:*
    UDP 127.0.0.1:1054 *:*
    UDP 127.0.0.1:1900 *:*
    UDP 127.0.0.1:3289 *:*
    UDP 127.0.0.1:18001 *:*
    UDP 127.0.0.1:18002 *:*
    UDP 192.168.147.139:123 *:*
    UDP 192.168.147.139:137 *:*
    UDP 192.168.147.139:138 *:*
    UDP 192.168.147.139:1900 *:*
    AFTER:
    Conexiones activas
    Proto Direcci¢n local Direcci¢n remota Estado
    TCP 0.0.0.0:135 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:445 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:1991 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:2030 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:6129 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:16992 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:16993 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:19226 0.0.0.0:0 LISTENING
    TCP 127.0.0.1:1040 127.0.0.1:1041 ESTABLISHED
    TCP 127.0.0.1:1041 127.0.0.1:1040 ESTABLISHED
    TCP 127.0.0.1:1042 127.0.0.1:1043 ESTABLISHED
    TCP 127.0.0.1:1043 127.0.0.1:1042 ESTABLISHED
    TCP 127.0.0.1:1044 0.0.0.0:0 LISTENING
    TCP 127.0.0.1:1058 127.0.0.1:1059 ESTABLISHED
    TCP 127.0.0.1:1059 127.0.0.1:1058 ESTABLISHED
    TCP 127.0.0.1:1060 127.0.0.1:1063 ESTABLISHED
    TCP 127.0.0.1:1063 127.0.0.1:1060 ESTABLISHED
    TCP 127.0.0.1:1064 0.0.0.0:0 LISTENING
    TCP 127.0.0.1:1066 127.0.0.1:1067 ESTABLISHED
    TCP 127.0.0.1:1067 127.0.0.1:1066 ESTABLISHED
    TCP 127.0.0.1:1068 127.0.0.1:1069 ESTABLISHED
    TCP 127.0.0.1:1069 127.0.0.1:1068 ESTABLISHED
    TCP 127.0.0.1:3274 127.0.0.1:6139 ESTABLISHED
    TCP 127.0.0.1:3275 127.0.0.1:3276 ESTABLISHED
    TCP 127.0.0.1:3276 127.0.0.1:3275 ESTABLISHED
    TCP 127.0.0.1:3277 127.0.0.1:3278 ESTABLISHED
    TCP 127.0.0.1:3278 127.0.0.1:3277 ESTABLISHED
    TCP 127.0.0.1:6083 0.0.0.0:0 LISTENING
    TCP 127.0.0.1:6139 0.0.0.0:0 LISTENING
    TCP 127.0.0.1:6139 127.0.0.1:3274 ESTABLISHED
    TCP 127.0.0.1:9000 0.0.0.0:0 LISTENING
    TCP 127.0.0.1:31595 0.0.0.0:0 LISTENING
    TCP 192.168.147.139:139 0.0.0.0:0 LISTENING
    TCP 192.168.147.139:1025 192.168.146.6:80 TIME_WAIT
    ... (2000 to 3000 lines follows)
    TCP 192.168.147.139:4980 192.168.146.6:80 TIME_WAIT
    TCP 192.168.147.139:4999 192.168.146.6:80 TIME_WAIT
    TCP 192.168.147.139:5000 192.168.146.6:80 TIME_WAIT
    TCP 192.168.147.139:6129 192.168.146.90:3102 ESTABLISHED
    UDP 0.0.0.0:259 *:*
    UDP 0.0.0.0:445 *:*
    UDP 0.0.0.0:500 *:*
    UDP 0.0.0.0:1065 *:*
    UDP 0.0.0.0:3285 *:*
    UDP 0.0.0.0:4500 *:*
    UDP 0.0.0.0:18234 *:*
    UDP 0.0.0.0:19226 *:*
    UDP 127.0.0.1:123 *:*
    UDP 127.0.0.1:1025 *:*
    UDP 127.0.0.1:1054 *:*
    UDP 127.0.0.1:1900 *:*
    UDP 127.0.0.1:3289 *:*
    UDP 127.0.0.1:18001 *:*
    UDP 127.0.0.1:18002 *:*
    UDP 192.168.147.139:123 *:*
    UDP 192.168.147.139:137 *:*
    UDP 192.168.147.139:138 *:*
    UDP 192.168.147.139:1900 *:*
    FYI, the IP 192.168.146.6 is the Application Server.
    Thanks in advance.

  • Error :Openning Form Function from OA page

    Hi,
    I have an OA page on which advance search is implemented. Result set of search having one column with hyprelink to open a form function.
    In controller we are openning the form UI using using following code..
    pageContext.forwardImmediatelyToForm(destination);
    It is working fine and openning the form first time, while form UI is open and if we go back to OApage and click on any other link, it should refresh the same form UI with new values, but it gives error...
    FRM-92050: Failed to connect to the server: /forms/formservelet:-1
    Error appeares on the applet window.
    Please help me in resolving this issue.
    Thanks in advace. - Atal

    Atal,
    Not sure of any docs, but you surely can try in metalink. Moreover as the forms gets launched on 1st invocation and the error code is related to forms, I will suggest to check this issue with forms forum.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Maybe you are looking for