Error message from Application Server

Hi All,
Is it possible to capture a descriptive error message from the Application server when we try to transfer a file from SAP and it does not get written to the application server.
I know it is possible to catch the standard catchable runtime exceptions, but I also would like to know if the file transfer fails in any other conditions which do not result in runtime dumps, nevertheless I should be able to get the error message.
Thanks in advance,

hi,
it is not possible to find the run time errors in application server while writing the file.using sy-subrc only we can find out. where it is writing correctly like this.
we can see all the application server files in this Tcode: AL11

Similar Messages

  • Database Connection Error: Cannot obtain error message from the server

    I have a SQL statement that wants to add a temp table to the database.   The SQL statement works fine but when I try to add it via 'Add Command' feature in Crystal XI R2, I get the following error message:
    Database Connection Error: Cannot obtain error message from the server
    Any ideas?
    Thanks in advance,
    Zack H.

    Hi Raghavendra,
    I am using this in the 'Add Command' feature but I get the error message displayed in the subject line:
    CREATE TABLE #TibetanYaks(
    YakID char(4),
    YakName char(20) )
    INSERT INTO #TibetanYaks (YakID, YakName)
    SELECT  LastName, FirstName
    FROM      Employee
    WHERE      EmployeeID between '2000' and '3000'
    I haven't tried to add this as a stored procedure but I imagine it will work as I have no problems yet with stored procedures.  I simply want to be able to use temporary tables for the sole purpose of that session and not creating anything static in the database.
    By the way, even though I get the error message, when I look on the backend database, I see that the temporary table was successfully created...its just not brought across correctly in Crystal.
    Any ideas?
    Zack H.

  • How to send communication message from application server to load balancer

    Hi,
    Environment: 8 application servers are clustered behind a load balancer. Java/J2EE based client-server application
    When any one of the servers is supposed to go down, I want to send a message from that server, programmatically, to load balancer something which signifies "server is down or going down, do not forward any client connections to me". This is to avoid any CLOSE_WAITs.
    How do I achieve this? How can I send message programmatically from app server to load balancer? From very basic knowledge, SNMP can be used for this. But do not know how to start of. Any other means is also OK. Need details.
    Thanks
    Sunil

    At the same time we stop accepting any new connections [ServerSocket.accept() will be escaped during server shutdown].Just close the ServerSocket.
    Both these are working fine. But during the 25 seconds, still the client connections gets queued up trying to find that serverNot if you close the ServerSocket.
    reason being the load balancer is still forwarding requests to this server whose shutdown has started but not completed. So CLOSE_WAITS happen.Not if you close the ServerSocket. Not that the CLOSE_WAITS are the actual problem, as they will all disappear when the server exits. It's more that the clients shouldn't have been able to create the connection in the first place. Which wouldn't have happened if you had closed the ServerSocket.
    If we tell load balancer not to send any more client socket connections, then we completely avoid getting CLOSE_WAITS.If you close the ServerSocket ditto.

  • Displaying error messages from application log

    Hi,
    I am using the function module RV_DELIVERY_CREATE for creating delivery in my program. If the sy-subrc is not zero i.e if delivery is not created, i have to display error messages collected inside the application.How can i do this ?
    The object nd subobject are existing in SLG0 but when i
    tried to see the object and subobject in SLG1 transaction , no logs were found.
    Do we need to activate the object and sunobject somewhere before logging can take place??
    I am using the following code in my program to display the logs but it is displaying no logs found: 
    CALL FUNCTION 'APPL_LOG_SET_OBJECT'
          EXPORTING
            object                    = 'ZCH_SCL'
            subobject                 = 'DL'
      LOG_HANDLE                = ' '
      NO_LOG                    = ' '
    EXCEPTIONS
      OBJECT_NOT_FOUND          = 1
      SUBOBJECT_NOT_FOUND       = 2
      OTHERS                    = 3
          IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ENDIF.
    CALL FUNCTION 'APPL_LOG_INIT'
    EXPORTING
    OBJECT                    = 'ZCH_SCL'
       SUBOBJECT                 = 'DL'
      LOG_HANDLE                = ' '
    EXCEPTIONS
      OBJECT_NOT_FOUND          = 1
      SUBOBJECT_NOT_FOUND       = 2
      OTHERS                    = 3
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
          PERFORM z_call_rv_delivery_create. " to call fm rv_delivery_create
          IF sy-subrc ne 0.
            CALL FUNCTION 'APPL_LOG_DISPLAY_INTERN'
      EXPORTING
        object                               = 'ZCH_SCL'
       subobject                            = 'DL'
       title_list_screen                    = 'Error Logs'
      COLUMN_SELECTION                     = '11112221122   '
      COLUMN_SELECTION_MSG_JUMP            = '1'
      EXTERNAL_NUMBER_DISPLAY_LENGTH       = 20
      I_S_DISPLAY_PROFILE                  =
    IMPORTING
      NUMBER_OF_PROTOCOLS                  =
    EXCEPTIONS
      OBJECT_NOT_FOUND                     = 1
      SUBOBJECT_NOT_FOUND                  = 2
      OTHERS                               = 3
    thanks,
    vartika

    Hi Vartika,
    you need to save that log after creating and appending to it.
    here is a code to save that log.
    If log created, save to database
      if e_bal_hndl is not initial.
        refresh: bal_hndl.
        append e_bal_hndl to bal_hndl.
        call function 'BAL_DB_SAVE'
          exporting
            i_client         = sy-mandt
           i_in_update_task = 'X'
            i_t_log_handle   = bal_hndl
          importing
            e_new_lognumbers = log_no
          exceptions
            log_not_found    = 1
            save_not_allowed = 2
            numbering_error  = 3
            others           = 4.
    u have to write this code after appending info to Log.
    hope this will help.
    regards,
    vikas

  • Returning error messages from media server

    My application requires that I can get detailed feedback from
    the FMS upon a given failure. For instance, if I try to open a
    stream who's file does not exist, is it possible to have a message
    or error code returned to Flash so that I can deal with the problem
    accordingly (in this case display some text that says "stream not
    available or similar)?
    From my experience, the only messages that get returned are
    success or failure messages but nothing specific.

    quote:
    Originally posted by:
    ysv
    For instance, if I try to open a stream who's file does not
    exist, is it possible to have a message or error code returned to
    Flash so that I can deal with the problem accordingly (in this case
    display some text that says "stream not available or similar)?
    Look in the docs under the netStream class, and it's onStatus
    method. If a stream is not found, the onStatus returns
    netStream.play.streamNotFound as the code. You just need to have
    your netStream's onStatus method fire off your events.

  • Error Message from Oracle server while a procedure calling from VB

    hi,
    when i am calling a procedure some time an error is comming and most of the times the program is working properly. the error showing is as folows
    ORA-06550: line 1, column 7:
    PLS-00306: wrong number of type of arguments in call to 'PRO_PandL_Exp1'
    ORA-06550: line 1, column 7:
    PL/SQL:Statement Ignored
    i am expressing my extreem thanks for trying to help me and solve the problam
    the procedure i written is
    CREATE OR REPLACE PROCEDURE PRO_PANDL_EXP1
    (companyid in number, Stdate in varchar2, enddate in varchar2, YEARID in number, p_recordset OUT SYS_REFCURSOR ) AS
    sdate date;
    edate date;
    begin
    sdate := to_date(Stdate,'dd-mon-yyyy');
    edate := to_date(enddate,'dd-mon-yyyy');
    open p_recordset for select NVL(sum(dr),0) AS DR , NVL(sum(cr),0) AS CR , NVL(sum(opamt),0) AS OPAMT,
    NVL(sum(balamt),0) AS BALAMT, group_name, ORDER_TO_PRINT, GROUP_LEVEL,
    TR_PL_BS_FLAG, ag.GROUP_ID, head_status as Head_id, Head_name,
    nvl(Details.GROUP_NATURE, ag.group_nature) as GROUP_NATURE,
    nvl(Details.parent_id1, ag.parent_id1) as Parent_id1
    from (
    (SELECT SUM(nvl(MONTHBALANCEAMTDR, 0)) AS DR,
    SUM(nvl(MONTHBALANCEAMTCR, 0)) AS CR,
    SUM(nvl(OPBALANCEAMT, 0)) AS OPAMT, SUM(nvl(balance,
    0)) AS balAmt, group_id, DTL.head_id,
    DTL.head_status, DTL.head_name,
    DTL.GROUP_NATURE, parent_id1
    FROM ( SELECT SUM(nvl(MONTHBALANCEAMTDR, 0))
    AS MONTHBALANCEAMTDR,
    SUM(nvl(MONTHBALANCEAMTCR, 0))
    AS MONTHBALANCEAMTCR, SUM(nvl(OPBALANCEAMT,
    0)) AS OPBALANCEAMT, SUM(nvl(balance, 0))
    AS balance, groupdetails.group_name,
    groupdetails.group_id AS group_id,
    groupdetails.head_id AS head_id,
    GROUPDETAILS.HEAD_NAME,
    groupdetails.head_status, PARENT_ID1,
    ORDER_TO_PRINT, GROUP_NATURE
    FROM (SELECT SUM(NVL(MONTHBALANCEAMTDR, 0)) AS MONTHBALANCEAMTDR,
    SUM(NVL(MONTHBALANCEAMTCR, 0)) AS MONTHBALANCEAMTCR, head_id, HEAD_NAME,
    group_ID, COMPANY_ID FROM (SELECT SUM(DECODE(DRCR, 0, (AMOUNT_IN_AED+nvl(CON_RATE_DIFF,0)),
    0)) AS MONTHBALANCEAMTDR,
    SUM(DECODE(DRCR, 1, (AMOUNT_IN_AED+nvl(CON_RATE_DIFF,0)), 0))
    AS MONTHBALANCEAMTCR, AH.head_id,
    AH.HEAD_NAME, AH.group_ID,
    AH.COMPANY_ID
    FROM federal.TRANS_DETAILS TD,
    federal.account_heads AH
    WHERE VOUCHER_DATE &lt;= edate AND
    VOUCHER_DATE &gt;= sdate AND
    AH.COMPANY_ID = TD.COMPANY_ID AND
    AH.head_id = TD.head_iD AND
    ah.company_id = companyid
    GROUP BY DRCR, AH.group_id, AH.head_id,
    AH.COMPANY_ID, AH.HEAD_NAME)
    GROUP BY group_id, head_id, COMPANY_ID, HEAD_NAME )
    transdetails,
    (SELECT SUM(nvl((AMOUNT_IN_AED+nvl(CON_RATE_DIFF,0)), 0))
    AS OPBALANCEAMT, AH.head_id,
    AH.HEAD_NAME, AH.group_ID,
    AH.COMPANY_ID
    FROM federal.TRANS_DETAILS TD,
    federal.account_heads AH
    WHERE VOUCHER_DATE &lt; sdate AND
    AH.COMPANY_ID = TD.COMPANY_ID AND
    AH.head_id = TD.head_iD AND
    ah.company_id = companyid
    GROUP BY AH.group_id, AH.head_id,
    AH.COMPANY_ID, AH.HEAD_NAME)
    OPENINGDETAILS,
    ( SELECT ah.head_id, DECODE(group_level, 1,
    ah.head_id, 0) AS head_status,
    0 AS BALANCE, accountgroup.company_id, accountgroup.group_id, parent_id2,
    group_name, DECODE(group_level, 1, ah.head_name, ' ') AS head_name, ORDER_TO_PRINT,
    GROUP_NATURE, parent_id1
    FROM FEDERAL.account_heads AH,
    (SELECT group_id, group_name, group_level, company_id, parent_id2, parent_id1,
    ORDER_TO_PRINT, GROUP_NATURE
    FROM FEDERAL.account_groups AG
    WHERE AG.company_id = companyid and (GROUP_NATURE='I' or GROUP_NATURE='E' or GROUP_NATURE='P') )
    accountgroup
    WHERE AH.group_id = accountgroup.group_id AND
    AH.company_id = accountgroup.company_id AND
    AH.company_id = companyid) groupdetails
    WHERE transdetails.head_id (+) = groupdetails.head_id AND
    transdetails.company_id (+) = groupdetails.company_id AND
    OPENINGdetails.head_id (+) = GROUPDETAILS.head_id AND
    OPENINGdetails.company_id (+) = GROUPDETAILS.company_id
    GROUP BY groupdetails.group_name, head_status,
    groupdetails.group_id, groupdetails.head_id,
    GROUPDETAILS.HEAD_NAME,
    GROUPDETAILS.group_id, PARENT_ID2, head_status,
    ORDER_TO_PRINT, GROUP_NATURE, parent_id1) DTL
    GROUP BY group_id, DTL.head_id, DTL.head_name,
    DTL.head_status, DTL.GROUP_NATURE, parent_id1)
    UNION ALL
    (SELECT DISTINCT
    0, 0, 0, 0, accountgroup.group_id, 0 AS head_id,
    0 AS head_status, ' ' AS head_name, GROUP_NATURE, parent_id1
    FROM FEDERAL.account_heads AH,
    (SELECT group_id, group_name, group_level, company_id,
    parent_id1, ORDER_TO_PRINT, GROUP_NATURE
    FROM FEDERAL.account_groups AG
    WHERE AG.company_id = companyid and group_level&lt;=2 and (GROUP_NATURE='I' or GROUP_NATURE='E' or GROUP_NATURE='P') ) accountgroup
    WHERE AH.group_id = accountgroup.group_id AND
    AH.company_id = accountgroup.company_id AND
    AH.company_id = companyid AND
    accountgroup.group_id = ah.group_id ) ) Details,
    account_groups AG where Details.group_id (+) = AG.Group_id and AG.GROUP_LEVEL &lt;=2 AND
    ag.company_id = companyid group by
    group_name, ORDER_TO_PRINT, GROUP_LEVEL, TR_PL_BS_FLAG, ag.GROUP_ID,
    head_status, Head_name, Details.GROUP_NATURE, Details.parent_id1 , ag.GROUP_NATURE, ag.parent_id2, ag.parent_id1
    order by parent_id1, GROUP_ID, ORDER_TO_PRINT, head_status, head_name ;
    end pro_pandl_Exp1;
    Thank you
    Bosemon

    prakash wrote:
    Hi all,
    DECLARE
    l_conn  UTL_TCP.connection;
    BEGIN
    l_conn := ftp.login('Destination Ip address ', '22', 'Username', 'Password');
    ftp.ascii(p_conn => l_conn);
    ftp.put(p_conn      => l_conn,
    p_from_dir  => 'MID5010_DOC1TEMP', -- Oracle Directory name from where we need to copy a file
    p_from_file => 'Hipaa.33KM.5093.06152011130146885.834.O.irl',
    p_to_file   => '/qatest1/mihipaa5010/mj5010/DevelopmentStage/working_directory/Outbound/Data/75061252/Hipaa.00AN.07262011173844778.820.O.copied.irl'); -- Directory of the destination machine where we need to paste
    ftp.logout(l_conn);    
    exception
    when others then
    dbms_output.put_line(sqlcode || sqlerrm);
    --dbms_output.put_line(l_conn);    
    END;We are getting the below error:
    SSH-1.99-OpenSSH_5.1
    -29260ORA-29260: network error: TNS:connection closed
    Could any one please let us know why this error is raising...As sybrand correctly points out, this issue doesn't belong here.
    You are using a 3rd party package "ftp" and the error it is indicating suggests the issue is a network issue of some sort.
    We don't have the code of that package or know what it is doing, so please consult whoever supplied or wrote the package and/or your network administrators.

  • Not supported: Cannot obtain an error message from the server on Win7

    App is written against the RDC and runs fine on Xp, but on Win7 it fails when I change databases. Ie you can select from several databases from within the app. When doing so the app closes the RDC connection:
         if (m_Application != NULL) m_Application.Release();
         m_Application = NULL;
         if (m_Report != NULL) m_Report.Release();
         m_Report = NULL;
    So that it is then reopened. This works fine on Xp, but not on Win7. I also tried the 11.5 Sp4 runtime. The ODBC log complain about an invalid handle.
    I know that the RDC is deprecated, but I wonder if anyone else has run into this?

    Go to this link, and book mark it, and it will get you to our download page:
    http://service.sap.com/sap/bc/bsp/spn/bobj_download/main.htm
    Select Crystal Reports Release 2 and then Service Packs
    Thanks again
    Don

  • How to display Image as Error instead of Error Message from Resource Bundle

    hi,
    I want to display images as error instead of error message from Application Properties in struts1.1
    Ex:
    I want to prompt a user to type password length min. of 6 char. If failed, need to show simple image as error rather
    "Length should be min. 6".
    reagrds
    parthiban.

    BalusC wrote:
    RahulSharna wrote:
    in the respective resource bundle modify the value by something was below
    error.password.length=<img src="/images/password-Length.gif" alt="Password Length Issue" align="center"/>
    OK, it apparently allows HTML in error messages.Yes struts allows it :)

  • No Response From Application Server - How To over come this error message

    I am Using Oracle 10g Application server. if we run a report from our front end - jsp , if the transaction takes more than 10 minutes then 'No Response From Application Server ' error message is coming in browser. How to over come this. whether i have to set any transaction time in application server. If anybody knows this kindly give reply immediatly.

    There are settings in the reports configuration to modify your timeout. This is documented in the repors config file itself.
    cu
    Andreas

  • No Response From Application Server-how to overcome this error message

    I am Using Oracle 10g Application server. if we run a report from our front end - jsp , if the transaction takes more than 10 minutes then 'No Response From Application Server ' error message is coming in browser. How to over come this. whether i have to set any transaction time in application server. If anybody knows this kindly give reply immediatly.

    Can you provide additional background information? Is this a in-house application serviced through an OC4J container or a Report from the Middle Tier install?
    Is this request being front-ended by an OHS server? Are there firewalls involved?
    Regards.

  • Error Loading the file from application server

    Hi Team,
    I'm trying to load the .CSV file from application server and I'm getting the error message.
    In the data package
      Update to PSA --Green
      Transfer Rule -- Green
      Update Rule -  error ABORT was set in the customer routine 9998
                            Error 1 in the update
    Please help me to provide the solution.
    But when I try to load the other files there are no issues. thanks.
    Regards,
    Senthil

    Raj
      check the below links, which can helps to solve your issues
    Flat file data load
    flat file Data loading issue
    Mahesh

  • Error in data load from application server

    Well, this problem again!
    In datasource for dataload by flatfile, tab Extraction i selected Load Text-Type File From Application Server.
    In tab Proposal:
    Converter: Separated with Separator (for Example, CSV).
    No. of Data Records: 9198
    Data load sucefull.
    I add 1 record:
    Converter: Separated with Separator (for Example, CSV).
    No. of Data Records: 9199
    So appear a  message error "Cannot convert character sets for one or more characters".
    I look in line 9199 in file and not have any special character. I use AL11 and debug to see this line.
    When i load file from local workstation, this error not occur.
    What's happen?

    Hi Rodrigo,
    What type of logical file path have yopu created in the application server for loading this file.
    Is it a UNIX file path or an ASCII file path.
    Did you check how the file looks in the application server AL11?
    Prathish

  • Error when loading a flat file from Application server.

    Hi,
    I am trying to load a flatfile from the application server, and I am getting the message
    Error while accessing the application server file
    Message no. RSDS_ACCESS002
    I checked for notes and found only one:
    Note 1033978 - Correction: Loading Unicode files from application server
    but we have 19 SP level, and the note says it needs 13 SP level, so I think it would not be of any help.
    does anybodie know what to do??
    thanks for the help.
    Mauricio

    Error in accessing while application server file..
    when i am trying load the data to psa
    when i am taking the file name: text-type file from app server
    plz reslove me for this problem??
    another question
    when i am saving the file with using * in the  filename in .CSV file its not saving,
    whats the reason????
    ASHOK

  • ERROR - No Response from application server

    Hi all,
    i'm hitting this error in my application server, i search and read some posts in this forum regarding the same subject, but, the only answer i got is "shutdown app server and start again"
    It's very important that i understand and correct what is origin of this error , so i decided to create a new post.
    My environment.
    Oracle Application Server 9.0.4 (10g) under windows 2003.
    Several users, from serveral applications reported then got "No Response from application server".
    Here's what i got from logs:
    WebCache (event.log)
    [28/Sep/2007:15:37:07 +0100] [warning 14014] [ecid: 4522403843773,0] Receive request from origin server times out.
    [28/Sep/2007:15:37:07 +0100] [error 11364] [ecid: 4642662928061,0] Network error response is returned.
    [28/Sep/2007:15:37:07 +0100] [error 11364] [ecid: 4522403843773,0] Network error response is returned.
    [28/Sep/2007:15:37:12 +0100] [detail] [ecid: 4333425287762,0] [client: 10.41.6.31] [host: bb-9ias] [url: /cotacoes/acor_cotConsPed.jsp]
    [28/Sep/2007:15:37:12 +0100] [warning 14014] [ecid: 4333425287762,0] Receive request from origin server times out.
    [28/Sep/2007:15:37:12 +0100] [error 11364] [ecid: 4333425287762,0] Network error response is returned.
    [28/Sep/2007:15:37:14 +0100] [detail] [ecid: 4711382411904,0] [client: 10.40.51.10] [host: bb-9ias] [url: /wf_prod/acor_agendaNovasColoc.jsp?jboEvent=Sort&'pFlgDadosPesq=&'pFlgComPesq=&'pFlgEspPesq=&'pFlgGerPesq=&'pFlgTempoPesq=&'pRamoPesq=&'pDataPesq=&'pEscPesq=&'U
      iNome=&'pMediadorNome=&'pEstPesq=&'jboEventVo=AgendaProcVO&'amId=Bc4jModule&'pParamSort=MED_NOME&'pSort=asc]
    [28/Sep/2007:15:37:14 +0100] [warning 14014] [ecid: 4711382411904,0] Receive request from origin server times out.
    [28/Sep/2007:15:37:14 +0100] [error 11364] [ecid: 4711382411904,0] Network error response is returned.
    [28/Sep/2007:15:37:27 +0100] [detail] [ecid: 4402144779094,0] [client: 10.44.1.48] [host: bb-9ias] [url: /wf_prod/acor_editaProc.jsp?proc=61063&'dt=1190990239312&'pFlgDadosPesq=&'pFlgComPesq=&'pFlgEspPesq=&'pFlgGerPesq=&'pFlgTempoPesq=&'pRamoPesq=&'pDataPesq=&'pEscP
      sq=&'UtiNome=&'pMediadorNome=&'pEstPesq=Emissão%20de%20Titulares&'pSort=desc&'pParamSort=PRO_DAT_INICIO&'linha=2]
    [28/Sep/2007:15:37:27 +0100] [warning 14014] [ecid: 4402144779094,0] Receive request from origin server times out.
    [28/Sep/2007:15:37:27 +0100] [detail] [ecid: 4608303209302,0] [client: 10.40.62.8] [host: bb-9ias] [url: /cotacoes/acor_cotRamos.jsp?pTime=1190989207512&'pKey=31094&'jboEvent=Mostra%20Ramo%20L&'ecra=consCot&'PrId=37412&'PedCompanhia=CSA&'PedTipo=C&'SitCodigo=2&'Sit
      escr=Em%20Execução&'PedNumero=&'PedMediador=&'EscDireccao=&'EscZona=&'EscEscritorio=&'PedNome=&'PedDataI=&'PedDataF=&'pRamCodigo=&'pSitCodigo=&'Code=&'pParamSort=null&'pSort=null&'value=null&'RamCodigo=9&'RamDescr=Multi-Riscos%20Comercio%20(MP%20Negócio)]
    [28/Sep/2007:15:37:27 +0100] [warning 14014] [ecid: 4608303209302,0] Receive request from origin server times out.
    [28/Sep/2007:15:37:27 +0100] [error 11364] [ecid: 4608303209302,0] Network error response is returned.
    [28/Sep/2007:15:37:27 +0100] [error 11364] [ecid: 4402144779094,0] Network error response is returned.
    [28/Sep/2007:15:37:45 +0100] [detail] [ecid: 4007007807211,0] [client: 10.40.15.7] [host: bb-9ias] [url: /ConsultaSinistros/DadosSubSin.jsp?nid_claim=351017&'vn_claim=9001151241&'tstamp=1190990264562]
    Apache (error.log)
    [Fri Sep 28 15:37:45 2007] [error] [client 10.42.48.237] [ecid: 4007007807211,1] MOD_OC4J_0080: After calling Apache's ap_bwrite(), got
    an return value: -1 and the client could have aborted in the middle of receiving the chunk data.
    [Fri Sep 28 15:37:45 2007] [error] [client 10.42.48.237] [ecid: 4007007807211,1] MOD_OC4J_0058: Failed to handle response chunk data passed
    in from oc4j via ajp13.
    [Fri Sep 28 15:37:45 2007] [error] [client 10.42.48.237] [ecid: 4007007807211,1] MOD_OC4J_0035: After handling ajp13 response message,
    got an invalid value: -2.
    [Fri Sep 28 15:37:45 2007] [error] [client 10.42.48.237] [ecid: 4007007807211,1] MOD_OC4J_0121: Failed to service request with network
    worker: oc4j_consultasinistros_15 and it is not recoverable.
    [Fri Sep 28 15:37:45 2007] [error] [client 10.42.48.237] [ecid: 4007007807211,1] MOD_OC4J_0013: Failed to call destination: oc4j_consultasinistros's
    service() to service the request.
    [Fri Sep 28 15:37:55 2007] [error] [client 10.42.48.237] [ecid: 9418666609387,1] MOD_OC4J_0080: After calling Apache's ap_bwrite(), got
    an return value: -1 and the client could have aborted in the middle of receiving the chunk data.
    [Fri Sep 28 15:37:55 2007] [error] [client 10.42.48.237] [ecid: 9418666609387,1] MOD_OC4J_0058: Failed to handle response chunk data passed
    in from oc4j via ajp13.
    [Fri Sep 28 15:37:55 2007] [error] [client 10.42.48.237] [ecid: 9418666609387,1] MOD_OC4J_0035: After handling ajp13 response message,
    got an invalid value: -2.
    [Fri Sep 28 15:37:55 2007] [error] [client 10.42.48.237] [ecid: 9418666609387,1] MOD_OC4J_0121: Failed to service request with network
    worker: OC4J_FerrProdutividade_13 and it is not recoverable.
    [Fri Sep 28 15:37:55 2007] [error] [client 10.42.48.237] [ecid: 9418666609387,1] MOD_OC4J_0013: Failed to call destination: OC4J_FerrProdutividade's
    service() to service the request.
    [Fri Sep 28 15:38:34 2007] [error] [client 10.42.48.237] [ecid: 9298407565065,1] MOD_OC4J_0080: After calling Apache's ap_bwrite(), got
    an return value: -1 and the client could have aborted in the middle of receiving the chunk data.
    [Fri Sep 28 15:38:34 2007] [error] [client 10.42.48.237] [ecid: 9298407565065,1] MOD_OC4J_0058: Failed to handle response chunk data passed
    in from oc4j via ajp13.
    [Fri Sep 28 15:38:34 2007] [error] [client 10.42.48.237] [ecid: 9298407565065,1] MOD_OC4J_0035: After handling ajp13 response message,
    got an invalid value: -2.
    [Fri Sep 28 15:38:34 2007] [error] [client 10.42.48.237] [ecid: 9298407565065,1] MOD_OC4J_0121: Failed to service request with network
    worker: OC4J_FerrProdutividade_13 and it is not recoverable.
    [Fri Sep 28 15:38:34 2007] [error] [client 10.42.48.237] [ecid: 9298407565065,1] MOD_OC4J_0013: Failed to call destination: OC4J_FerrProdutividade's
    service() to service the request.
    [Fri Sep 28 15:38:37 2007] [error] [client 10.42.48.237] [ecid: 8954810184060,1] MOD_OC4J_0080: After calling Apache's ap_bwrite(), got
    an return value: -1 and the client could have aborted in the middle of receiving the chunk data.
    [Fri Sep 28 15:38:37 2007] [error] [client 10.42.48.237] [ecid: 8954810184060,1] MOD_OC4J_0058: Failed to handle response chunk data passed
    in from oc4j via ajp13.
    some thoughts ...This error is not happening consistently, it triggers near the end of month ,naturally the amount of requests in the end of month is higher .. am i hitting som e limit ?
    Best Regards
    Rui Madaleno

    Network error response is returned.
    hi all,
    i'm hitting this error in my application server, i search and read some posts in this forum regarding the same subject, but, the only answer i got is "shutdown app server and start again"
    My environment.
    Oracle Application Server 9.0.4 (10g) under solaris 9.
    Several users, from serveral applications reported then got "No Response from application server".
    Here's what i got from logs: LOGS event_log WEBCACHE
    [08/Oct/2008:11:59:37 -0430] [detail] [ecid: 101795743162,0] [client: 172.19.1.120] [host: shcontingencia:7778] [url: /forms90/l90servlet;jsessionid=ac13041fce663ec96491934459ca516f5215b31fb0c.qQvxpQTOokTBnkTxok4UaNaKaxD3lN4RawSLcgSO-xaL-xbzmQnAnwSLak8RnhfzbNqKc2SHc30Ka2bvmRbzp3zD-BbCmQXIr6zInQjImQzv8N8Sc38MbNmLa2b48OX3b4DteyztfAXMplaxn6jAmljGr5XDqQLvpAe_]
    [08/Oct/2008:11:59:37 -0430] [warning 14003] [ecid: 101795743162,0] Error while receiving response from the origin server
    [08/Oct/2008:11:59:37 -0430] [error 11364] [ecid: 101795743162,0] Network error response is returned.
    [08/Oct/2008:12:50:55 -0430] [detail] [ecid: 88913989443,0] [client: 172.19.1.39] [host: shcontingencia:7778] [url: /forms90/l90servlet;jsessionid=ac13041fce67b31f32050664119ba348b92e845aaa4.qQvxpQTOokTBnkTxok4UaNaKaxD3lN4RawSLcgSO-xaL-xbzmQnAnwSLak8RnhfzbNqKc2SHc30Ka2bvmRbzp3zD-BbCmQXIr6zInQjImQzv8N8Sc38MbNmLa2b48OX3b4DteyztfAXMplaxn6jAmljGr5XDqQLvpAe_]

  • I am now getting an error message from Elementsautoanalyzer.exe, extendscript.dll not found. reinstalling the application may fix this problem.  is there a fix for this?

    I am now getting an error message from Elementsautoanalyzer.exe, extendscript.dll not found. reinstalling the application may fix this problem.  is there a fix for this?

    TomCT60,
    Is your MacBook using Mac OS X 10.6.8 as indicated in your post? If so you will not be able to fully integrate with iCloud.
    iCloud and Snow Leopard, by Roger Wilmut describes what iCloud options are available for Snow Leopard.
    If you are using Lion, go to iCal>Preferences...>Accounts, and delete/re-add your iCloud CalDAV server.

Maybe you are looking for

  • Generation of reimport includes is taking long time in SOLMAN

    Hi In order to set EWA I hava activated SDCCN and tried to generate inludes under IMG setup. but its taking a long time compiling. Is there anything wrong. How can i fix it. Please suggest

  • B1i Experts. Please help!!

    I have installed the B1i Service and B1 the Event Service (SBO Version 2007 PL 6 on a Windows 2003 SBS with ISA Server installed). I had to change the port (in 7080), because port 8080 is not available. After configuring and restarting the services I

  • Using Smart Album conditions

    I would like to set up a Smart Album with both an AND and OR condition. The logic would be keyword=Family, Parker OR Hailey AND Date>12/31/08. Is there a way to do this?

  • Infoobject dataload using BI table as datasource

    I have created an infoobject A,whose A (text) is having a datasource which is created from a BI table. System had generated the required proposal while creating the transformation and then created the Data Transfer Process and loaded the data into th

  • Retreiving a fat16 or 32 partitions real uuid on snow leopard

    Hello, I do have a big problem. Since on mac at least on snow leopard I'm unable to retreive the real partition UUID from a fat formated fat16 or 32 usb stick. The problem is that this stick is a real official document for work. The stick needs regul