ERM 5.3 Error - READ TIME OUT

Hello GRC Community,
<br><br>
I'm running into an issue in GRC 5.3 SP10 for the ERM Module.  When we're building a role and get to the risk analysis step, the analysis runs (at the transaction or object level) for a very long time before it kicks back the following error:
<br><br>
<b>Risk analysis failed; Service call exception; nested exception is: java.net.SocketTimeoutException: Read timed out</b>
<br><br>
Here are the system Logs, can someone offer any suggestions as to why we're getting this error?
<br><br>
2010-04-05 15:48:12,548 [SAPEngine_Application_Thread[impl:3]_11] ERROR com.virsa.re.role.actions.RiskAnalysisAction
java.lang.Throwable: Service call exception; nested exception is:
     java.net.SocketTimeoutException: Read timed out<br>
     at com.virsa.re.bo.impl.RiskAnalysisBO.performTranLvlRiskAnalysis(RiskAnalysisBO.java:584)<br>
     at com.virsa.re.bo.impl.RiskAnalysisBO.performRiskAnalysisOnSystemFromRiskAnalysisPage<br><br>(RiskAnalysisBO.java:167)<br>
     at com.virsa.re.role.actions.RiskAnalysisAction.performAndShowRiskAnalysis(RiskAnalysisAction.java:1657)<br>
     at com.virsa.re.role.actions.RiskAnalysisAction.execute(RiskAnalysisAction.java:105)<br>
     at com.virsa.framework.NavigationEngine.execute(NavigationEngine.java:273)<br>
     at com.virsa.framework.servlet.VFrameworkServlet.service(VFrameworkServlet.java:230)<br>
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)<br>
     at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.runServlet(FilterChainImpl.java:117)<br>
     at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:62)<br>
     at com.virsa.comp.history.filter.HistoryFilter.doFilter(HistoryFilter.java:43)<br>
     at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:58)<br>
     at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:384)<br>
     at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)<br>
     at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)<br>
     at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)<br>
     at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)<br>
     at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)<br>
     at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)<br>
     at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)<br>
     at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process<br><br>(ApplicationSessionMessageListener.java:33)<br>
     at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)<br>
     at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)<br>
     at java.security.AccessController.doPrivileged(Native Method)<br>
     at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)<br>
     at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)<br>
Edited by: suggsda on Apr 5, 2010 10:28 PM

Yes, my connectors were established per the configuration guide. The issue with this error was a result of the new connector being established in both ERM & RAR. I neglected to run the proper background jobs in RAR for this connector, so when ERM tried to leverage RAR for the risk analysis the results would time out because there was no data on the RAR side for it to return. Unfortunately this was an oversite on my part as we were migrating from sandbox to development.

Similar Messages

  • About Sun Fire E25K I2c read time out error

    Hi,
    Can anybody give me a breif explaination about the following errors
    which capatured by Sun Fire E25K System Controller:
    Nov 7 08:16:36 2006 E25K-ORADR-sc0 hwad[11914]: [1123
    20621355893934396 ERR I2cComm.cc 410] I2c read time out - bus: 10,
    address: 21
    Nov 7 08:16:36 2006 E25K-ORADR-sc0 hwad[11914]: [1128
    20621356152372741 ERR SelectPll.cc 292] Reading bus failed in address
    0, ecode=1123
    Nov 7 18:45:40 2006 E25K-ORADR-sc0 hwad[11914]: [1123
    20659099583593289 ERR I2cComm.cc 410] I2c read time out - bus: 10,
    address: 21
    Nov 7 18:45:40 2006 E25K-ORADR-sc0 hwad[11914]: [1128
    20659099584735868 ERR SelectPll.cc 138] Reading bus failed in address
    0, ecode=1123
    Nov 8 02:15:01 2006 E25K-ORADR-sc0 hwad[11914]: [1124
    20686060070434628 ERR I2cComm.cc 1095] I2c write time out - bus: 10,
    address: 21
    Nov 8 02:15:01 2006 E25K-ORADR-sc0 hwad[11914]: [1129
    20686060083304777 ERR SelectPll.cc 181] Writing bus failed in address
    0, ecode=1124
    What is the reason to cause "I2c read time out" ?
    TIA.
    Rgds,
    Simon

    Hello Simon,
    these forums are user-to-user. The Fire E25K is definetely beyond the scope of these forums (too expensive, too critical for your business, too complex).
    This system should be under Spectrum coverage (Platinum/Gold).
    Open a service case !
    Let's if you get any response to your posting on the Sun Managers mailing list.
    Michael
    Message was edited by:
    MAALATFT

  • ServletInputStream.read() causes read time out error

    this part of the jsp page
    <jsp:useBean id="testServlet" scope="page" class="testServlet" />
    <%
    testServlet.doUpload(request);
    %>
    this is part of the servlet
    public void doUpload(HttpServletRequest request) throws IOException
    BufferedInputStream br = new BufferedInputStream(request.getInputStream());
    /* error here! */
    int i = br.read();
    it will produce an read time out error when i reach the error line
    btw..... i am using tomcat as server and parsing the form :
    <form name="form1" enctype="multipart/form-data" method="get" action="converter.jsp">
    <input type="file" name="filename">
    </form>
    thnx in advance!

    I'd think for the request to have an input stream, the request method on the form would need to be post, not get. Other than that, I don't know why you've created a Servlet - seems like you could have just created a simple class that takes a HttpServletRequest object (doesn't have to be a servlet). Your jsp page is the real servlet that's being called.

  • HT5052 i am struggling to download new software update for ipad 2 using itune: The problem is that im getting an error saying time out!!! and when i start downloading again it starts from zero!!

    The problem is that im getting an error saying time out!!! and when i start downloading again it starts from zero!!

    Their alternative option is for you to bring it into the store
    You could google and look for some download helpers (presuming they still exist, haven't used them in years) but they're freeware or adware that caches your download to help you recover from timeouts.
    the timeout is possibly caused by your ISP, if they regularly cycle routers or the such it 'burps' your connection  causeing it to cut out.
    You might try taking your laptop to your local library which may have wifi. Or, as the others have suggested, a friend's house with cable internet.

  • SLD server exception: IO error: Read timed out

    Hi,
    I have deployed the components for NWDI and after that when i am creating the Domain,I am doing update CMS data for creating a Track. I am getting the following error:
    SLD server exception: IO error: Read timed out
    Can any one help on this.
    Thanks
    Ravi.S

    Hi,
    My SLD is a PI 7.0 system and my NWDI is configured on a standalone Java system.
    I have done the SLDDataSupplier check, and it connects fine to the SLD.
    Also on my http://<hostname>:<port>/devinf/main in the NWDI system, the SLD link points to the right SLD and im able to connect.
    Still at the CMS update stage it gives the error -
    SLD (URL http://<hostname>:<port>/) server exception: IO error: Read timed out

  • WE05 takes a long time and ended with error message: time out

    Hello,
        When user trying to use WE05 transaction it takes more time and ended with error message time out.In the WE05 tranaction even i tried with minimal search options(like for just 2hrs duration,for one day) still getting the same error.I think there must be problem in EDIDC table.
       Please suggest solution for this????
    Regards,
    Loki.

    You have to enter the selection ctiteria on WE05, might be there is a huge data on these tables. So the best option is to enter the selection criteria as much as you can to get the IDOC list. Also check the sie of EDIDC table and analyse the number of IDOC on that table. Make sure that index are updated of the table
    Regards,
    Subhash

  • 8g touch updated 4.2.1, problems synching apps and music. gives multiple errors; device times out, internal device errors, network times out, duplicate file, too many files open. itunes diagnostics ok. what to do?

    have an 8g ipod touch which has had problems trying to play games and downloading update 4.2.1. went to the apple store who kindly downloaded the software update but now can't synch and generates multiple error messages; device times out, internal device error, network times out, duplicate file and too many files open etc etc. have latest i tunes download and diagnostic test ok. what can i do?

    Does the ext directory have the php_oci8.dll? In the original steps the PHP dir is renamed. In the given php.in the extension_dir looks like it has been updated correctly. Since PHP distributes php_oci8.dll by default I reckon there would be a very good chance that the problem was somewhere else. Since this is an old thread I don't think we'll get much value from speculation.
    -- cj

  • ERROR while saving the runtime systems(read time out exception)

    Hi e xperts
    I am configuring NWDI and assigned asll the permissions and roles to the CMS user.I created Domain,in landscape configurater
    created track and saved.
    while saving the rumtime systems the error thrown is
    com.sap.cms.util.exception.conf.CMSCCBSCommunicationException: CBS (URL http://dtlepdev:54400/tc.CBS.Appl/archiveapi2/) communication exception: Read timed out (Service call exception; nested exception is:
    java.net.SocketTimeoutException: Read timed out)
    at com.sap.cms.pcs.conf.communicator.CBSConfCommunicator.removeBuildspace(CBSConfCommunicator.java:382)
    at com.sap.cms.pcs.conf.communicator.CBSConfCommunicator.deleteCreateBuildspace(CBSConfCommunicator.java:338)
    at com.sap.cms.pcs.conf.communicator.CBSConfCommunicator.editBuildspace(CBSConfCommunicator.java:277)
    at com.sap.cms.pcs.conf.communicator.CBSConfCommunicator.createBuildspace(CBSConfCommunicator.java:168)
    at com.sap.cms.pcs.conf.core.services.SystemManagerObject.saveSystem(SystemManagerObject.java:261)
    at com.sap.cms.pcs.conf.core.plugin.DefaultTrack.newTrack(DefaultTrack.java:292)
    at com.sap.cms.pcs.conf.core.TrackManager.editTrack(TrackManager.java:208)
    at com.sap.cms.pcs.conf.manager.CmsConfManager.editTrackConfiguration(CmsConfManager.java:1002)
    at com.sap.cms.pcs.conf.manager.proxy.CmsConfProxyBean.editTrackConfiguration(CmsConfProxyBean.java:489)
    at com.sap.cms.pcs.conf.manager.proxy.LocalCmsConfProxyLocalObjectImpl0_0.editTrackConfigurationand also ..
    Unable to instantiate a Build Space administrator!
    Build Space "DTL_ETRACK_C" [bsID: 27, version: 0] [in-queue: on (privileged), out-queue: "on", processing: off]
    <null>
    [EXCEPTION]
    Buildspace DTL_ETRACK_C does not own the workspace ws/ETRACK/dtl.com_DEFAULTIME/cons/inactive/ .  It is currently not owned by any other buildspace
    at com.sap.tc.cbs.server.rt.bs._BuildSpaceValidator.checkWorkspace(_BuildSpaceValidator.java:120)
    at com.sap.tc.cbs.server.rt.bs._BuildSpaceValidator.validateWSs(_BuildSpaceValidator.java:74)
    at com.sap.tc.cbs.server.rt.bs.BSAdmin.validate(BSAdmin.java:192)
    at com.sap.tc.cbs.server.rt.bs.BSAdmin.updateState(BSAdmin.java:260)
    at com.sap.tc.cbs.server.rt.bs.BSAdminOrc.determineChanges(BSAdminOrc.java:439)
    at com.sap.tc.cbs.server.rt.bs.BSAdminOrc.validateBuildSpaceData(BSAdminOrc.java:219)
    at com.sap.tc.cbs.server.rt.bs.BSAdminOrc.act(BSAdminOrc.java:341)
    at com.sap.tc.cbs.server.rt.impl.CourteousTimer.run(CourteousTimer.java:139)
    at java.lang.Thread.run(Thread.java:534
    In cbs i checked the parametrs they are open and on..
    please suggest me on this ASAP..since 2 days i have been struggling and searched in forums..no perfect solution
    help me out
    perfect soln is immediately awarded...
    I
    THanks
    Mayu

    Hi Mayu,
    here apparently the CMS cannot communicate to CBS properly and then when CMS tries to talk to CBS using a webservice, it times out due to various reasons, see below.
    Strange, I always had this error when the CMS was on a different release like CBS and this caused the communication problem.
    Don't you have an entry in your cms log like this?
    com.sap.cms.util.exception.CMSUnexpectedException                          
    at com.sap.cms.pcs.conf.manager.CmsConfManager.newTrackConfiguration(CmsConfManager.java:666)                                                    
    Caused by: java.lang.IncompatibleClassChangeError
    at com.sap.cms.pcs.conf.communicator.CBSConfCommunicator.openConnection(CBSConfCommunicator.java:84)                                             
    Please provide me the version of the DI_CMS, DI_CBS (and DI_DTR for the sake of completeness).
    You can find this info on the ComponentInfo page.
    On 640/700 this is http://<host>:<port>/sap/monitoring/ComponentInfo
    as of 710 you find this on the "Components" tab of http://<host>:<port>/nwa/sysinfo
    I also think that this is not due to the runtime systems. I guess you have the same problem if you try to create the track without runtime systems, right?
    (The "Unable to instantiate a Build Space administrator!" is not necessarily an error, see the note:
    #1175019 - Unable to instantiate a Build Space administrator!)
    Thank you!
    Best Regards,
    Ervin

  • Read Time Out Exception while generating PDF Document

    Hi,
    We are working on Netweaver 04,Patch SP 16 and trying to generate a Non Interactive PDF on ADS Version SP 14 for printing purpose (Eg.Invoice). This extracts data using EJBs. We used Interactive Form UI element which has various sub elements like static image, etc.
    We are using Acrobat Reader 7.0 for generating PDF.
    The form fetches the records and prints perfectly in the Development System, While creates a 'java.net.SocketTimeoutException: Read timed
    out ' Exception in Production.
    Time Out period for web service container is set to 180 sec in both Dev and Prod.
    Default trace in the production is continously throwing following  error."com.adobe.document.XMLFormService#com.adobe/AdobeDocumentServices#com.adobe.document.XMLFormService
    Thread[XMLForm.exe Error Reader,5,SAPEngine_Application_Thread[impl:3]
    _Group]##0#0#Error##Plain###Service XMLFormService: Native process
    (PID=0) /usr/sap/NWP/JC00/j2ee/os_libs/adssap/XMLFormService/bin/XMLForm.exe terminated abnormally with error code 127# "
    We are running following services in both Prod and Dev for using ADS.
    1. IIOP Provider
    2. Data Manager Service
    3. Data Font Manager Service
    4. XML Module
    5. Document Services Configuration
    6. Document Services License Support Service
    Could some one please  let us know what could be the problem?
    Thanks And Regards,
    Apeksha.

    Hi Markus,
    Thanks for the prompt reply. However, SAP notes 867502
    and 811342 speak about PDF manipulation services, which we are not using in our application. We need to create non interactive form which simply reads the data from the DB and displays it to the users for printing.
    The other 2 notes-826419 and  849851 talk about SP 10,11 and 12, while we are using SP14 for Adobe Services and SP 16 for Netweaver Java Stack.
    The application works perfectly on the Development Server, but not on Production Server. Though all the configurations are same on both the servers, still can you suggest what all things need to be considered ?
    Thanks and Regards,
    Apeksha

  • SMTP very slow/errors and times out in mail.app

    I have a series of account set up that are working great except for my work mail (exchange IMAP). The server it's on is pretty slow, and this is complicated in mail app as I get constant SMTP send errors "the server rejected the address...." it's very intermittent - I can have an hour where everything sends just fine, and others where it just doesn't work. Connection doctor takes at least 10 seconds to successfully connect.
    Is there a way to adjust the time out value on mail.app so that it doesn't immediately fail to send?

    Let us separate between the intermittent SMTP errors and the slowing down for the time being. What happens (and how long it takes) when you open a shell and connect to the SMTP server ? For example, try something like this:
    ]# telnet smtp.google.com 25 (if your smtp server is imap google)
    try to send a simple message and see how long it takes, e.g.
    helo smtp.google.com
    --

  • J2K errors - Session time outs

    Need some help regarding Cold fusion Version : 9.0.1 and we recently applied Cumulative Hotfix 2 to remediate the session time outs,
    Still we are getting session time outs.
    Ex :Error: Element SECURITY_ATTRIBUTE_LIST is undefined in SESSION.
         Error: Element USER_LOGIN_NAME is undefined in SESSION.
    These are the sample errors we are getting. Can any one help with this.
    Thanks and Regards
    Raja

    Those are likely to be coding errors. The place to look is where you write/set the values of SESSION.SECURITY_ATTRIBUTE_LIST and SESSION.USER_LOGIN_NAME for the first time. Could you show us the code?

  • 3253 error code, times out Downloads through itunes on mac

    I have been trying to download the iphone 4 upgrade and some other larger files like movies through itunes and it is soooo slow and always times out or show an error 3253 message.  I have searched for a remedy but only find things in regards to windows and i'm on my mac. I'm disconnected my modem/router and reconnected, rebooted, etc. but still having problems.  Help! My iphone downloads movies faster than itunes does.  The songs are not a problem.

    Changing my DNS settings worked for me (3253 errors on my MBP). I followed the instructions here:
    http://appletoolbox.com/2010/09/itunes-10-the-network-connection-was-reset-fix/
    Hope that helps!

  • BI Java SDK in BI 7.0: Read Time out when executing MDX Statements

    Hi all,
    we´ve implemented some functions with the BI JAVA SDK which gets informations out of our BI via the SOAP / XMLA  Service. For some Queries this is not working and the following exception occurs on Java Side:
    --- snip ---     
    Caused by: java.rmi.RemoteException: Service call exception; nested exception is:
         java.net.SocketTimeoutException: Read timed out
    --- snip ---
    The same query works on our Test Enviroment (which has longer execution times) so the difference has to be in some parameters set on the BI System. So the question is:
    Which parameters affect the queries sent via the SOAP / XMLA Service ?
    Any clues ?
    Thank for your help.
    Marco

    Hi Shan,
    that was also my first idea - but it didn´t help. It also does not explain, why the same codings works against the testsystem. Thats why i think the problem is related to some type of (profile-?) parameters on the BI Server itself. But its just a guess ....
    Marco

  • Error: Read timed out&MESSAGE_NOT_FOUND.

    Hi,
    There's a synchronous scenario (File-File). A connection failure occured during a query from buisness-process (BPM). Since then an error (error message) appears constantly in Runtime Workbench-Component Monitoring-Communication Channels.
    Success
    RRB: entering RequestResponseBean
    Success
    RRB: passing through ...
    Success
    RRB: suspending the transaction
    Success
    RRB: leaving RequestResponseBean
    Success
    Application attempting to send an XI message synchronously using connection File_http://sap.com/xi/XI/System.
    Success
    Trying to put the message into the call queue.
    Success
    Message successfully put into the queue.
    Success
    The message was successfully retrieved from the call queue.
    Success
    The message status set to DLNG.
    Error
    Received XI System Error. ErrorCode: GENERAL ErrorText: com.sap.aii.af.ra.ms.api.DeliveryException: Read timed out ErrorStack: 
    Error
    Returning synchronous error notification to calling application: com.sap.aii.af.ra.ms.api.DeliveryException: XIAdapterFramework:GENERAL:com.sap.aii.af.ra.ms.api.DeliveryException: Read timed out.
    Error
    Transmitting the message using connection http://*****:8010/sap/xi/engine?type=entry failed, due to: com.sap.aii.af.ra.ms.api.DeliveryException: XIAdapterFramework:GENERAL:com.sap.aii.af.ra.ms.api.DeliveryException: Read timed out.
    Error
    The message status set to FAIL.
    Error
    Returning to application. Exception: com.sap.aii.af.ra.ms.api.DeliveryException: XIAdapterFramework:GENERAL:com.sap.aii.af.ra.ms.api.DeliveryException: Read timed out
    Error
    Attempt to process file failed with com.sap.aii.af.ra.ms.api.DeliveryException: XIAdapterFramework:GENERAL:com.sap.aii.af.ra.ms.api.DeliveryException: Read timed out
    Error
    Attempt to process file failed with com.sap.aii.af.service.util.transaction.api.TxManagerException: Unable to roll back transaction: com.sap.engine.services.ts.exceptions.BaseIllegalStateException
    File removing and the channel rebooting the channel donu2019t help.
    After rebooting the channel:
    Error
      Received XI System Error. ErrorCode: MESSAGE_NOT_FOUND ErrorText:   ErrorStack: XML message not found
    Error
      Returning synchronous error notification to calling application: com.sap.aii.af.ra.ms.api.DeliveryException: XIServer:MESSAGE_NOT_FOUND:.
    Error
      Transmitting the message using connection http://*****:8010/sap/xi/engine?type=entry failed, due to: com.sap.aii.af.ra.ms.api.DeliveryException: XIServer:MESSAGE_NOT_FOUND:.
    Error
      The message status set to FAIL.
    Error
      Returning to application. Exception: com.sap.aii.af.ra.ms.api.DeliveryException: XIServer:MESSAGE_NOT_FOUND:
    Error
      Attempt to process file failed with com.sap.aii.af.ra.ms.api.DeliveryException: XIServer:MESSAGE_NOT_FOUND:
    Error
      Attempt to process file failed with com.sap.aii.af.service.util.transaction.api.TxManagerException: Unable to roll back transaction: com.sap.engine.services.ts.exceptions.BaseIllegalStateException
    Any ideas?

    hi,
    try this,
    go to Message Monitoring in RWB, delete all the messages with status system error and onhold.
    it shd solve your problem
    Regards,
    Sukarna.chirumamilla.

  • XI 3.1 Webservices API: Read time out during getDocumentInformation()

    Hi,
    my client is moving vom BO 6.5 to BO XI 3.1. The client uses BO to create mass reports for indivual subscribers in a batch mode fashion. We are currently evaluating the Webservices API, dealing with Desktop Intelligence reports.
    I have implemented a load test prototype using the Webservices API with the help of the examples found here.
    Retrieving a single report works fine, but when I try to put some load on the server and request reports with several parallel threads, I get the "Read timeout error" when calling getDocumentInformation(repID, null, actions, null, boRetrieveData). The actions array just contains the FillPrompts instance.
    2008-12-05 11:05:07,448 INFO  (test-5    ) [HTTPSender                    ]   Unable to sendViaPost to url[http://bojv01:8080/dswsbobje/services/ReportEngine]
    java.net.SocketTimeoutException: Read timed out
         at java.net.SocketInputStream.socketRead0(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:129)
         at java.io.BufferedInputStream.fill(BufferedInputStream.java:218)
         at java.io.BufferedInputStream.read(BufferedInputStream.java:237)
         at org.apache.commons.httpclient.HttpParser.readRawLine(HttpParser.java:77)
         at org.apache.commons.httpclient.HttpParser.readLine(HttpParser.java:105)
         at org.apache.commons.httpclient.HttpConnection.readLine(HttpConnection.java:1115)
         at org.apache.commons.httpclient.MultiThreadedHttpConnectionManager$HttpConnectionAdapter.readLine(MultiThreadedHttpConnectionManager.java:1373)
         at org.apache.commons.httpclient.HttpMethodBase.readStatusLine(HttpMethodBase.java:1832)
         at org.apache.commons.httpclient.HttpMethodBase.readResponse(HttpMethodBase.java:1590)
         at org.apache.commons.httpclient.HttpMethodBase.execute(HttpMethodBase.java:995)
         at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(HttpMethodDirector.java:397)
         at org.apache.commons.httpclient.HttpMethodDirector.executeMethod(HttpMethodDirector.java:170)
         at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:396)
         at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:346)
         at org.apache.axis2.transport.http.AbstractHTTPSender.executeMethod(AbstractHTTPSender.java:520)
         at org.apache.axis2.transport.http.HTTPSender.sendViaPost(HTTPSender.java:191)
         at org.apache.axis2.transport.http.HTTPSender.send(HTTPSender.java:77)
         at org.apache.axis2.transport.http.CommonsHTTPTransportSender.writeMessageWithCommons(CommonsHTTPTransportSender.java:327)
         at org.apache.axis2.transport.http.CommonsHTTPTransportSender.invoke(CommonsHTTPTransportSender.java:206)
         at org.apache.axis2.engine.AxisEngine.send(AxisEngine.java:396)
         at org.apache.axis2.description.OutInAxisOperationClient.send(OutInAxisOperation.java:374)
         at org.apache.axis2.description.OutInAxisOperationClient.executeImpl(OutInAxisOperation.java:211)
         at org.apache.axis2.client.OperationClient.execute(OperationClient.java:163)
         at com.businessobjects.dsws.reportengine.ReportEngine.getDocumentInformation(Unknown Source)
    BTW, the threads use different logins and in consequence different connections/sessions.
    The timeout occurs after 30secs, so simple reports with no prompts are created without error. Increasing the timeout on the connection as suggested in other postings did not help.
    I think the issue is related to Axis2. I don't know how to set the timeout on the Axis client via the BO API. Trying to recreate the client API from the WSDL did not work. Is there any example how to do this correctly? Having the source of the Axis client, one would have the chance to set the timeout on the client programmatically ...
    Any help would be greatly appreciated,
    con

    I found a workaround for the issue by patching and compiling the Axis2 kernel library. You need to download it form Apache, install Maven 2.0.7, set the default timeout in .../client/Options.java to a value that suits your needs (for me: 20min), and compile the whole thing using mvn clean install.
    But this is obviously not the solution one wants. So, is there anybody with a REAL answer to the problem?
    Regards,
    con

Maybe you are looking for

  • HT1977 I don't have the App Store installed on my iPod Touch. How do I get it on there in order to put games and other apps on???

    I've tried going through several outlets, I cannot seem to figure out how to install the actual icon/program (the Apps Store) onto my iPod Touch. All I have on there is iTunes, Safari--and the bare minimum that it came with .  I'm trying to install t

  • Custom Label Printing Using BI Publisher

    I looked at the example of AveryLabel3x10, But I need to do for 4x8 labels with each label size 2'' W x 1.25'' H on A4 Sheet, Each label as gap of .063''. I tried to extend the above example but couldn't do it. Any help is higly appreciated. Thanks i

  • Field disappears on copying of the configuration

    Hi Experts, in CRM 7.0 I have created a field via AET. I've added the field to the custom-configuration and am able to use it. So now, when I copy this custom configuration - the generated field disappears, even though it is shown as available in the

  • Cairo-compmgr corrupts second monitor

    Hey all, I just set up openbox with cairo-compmgr, and it works great when I'm just using my laptop screen... however when I enable my secondary 22" monitor, the second display is "corrupted." What I see is similar to the ie6 effect. I've tried both

  • InDesign CC Crashes Repeatedly on Startup

    I'm using InDesign CC on a PC running Windows 7. Nearly every time I try to launch an InDesign file via Bridge, it crashes. Here is the crash log: Problem signature:   Problem Event Name: APPCRASH   Application Name: InDesign.exe   Application Versio