CECORBACommunicationAdapter.request() Throwable - The request timed out

Hi,
i am new to BOSDK. i don't have any knowledge on this.
i am getting the below error.
CECORBACommunicationAdapter.request() Throwable - The request timed out because there has been no reply from the server for 600,000 milliseconds.
i am using the below code:-
IReportAppFactory oFactoryRAS = (IReportAppFactory)oEnterpriseSession.getService("RASReportFactory");
     System.out.println("getting info object3" + oFactoryRAS);
     ReportClientDocument oReportClientDocument = oFactoryRAS.openDocument(oReport, 0, Locale.ENGLISH);
     System.out.println("getting info object4" + oReportClientDocument);
     //Retrive the PrintOutputController to export the report to a ByteArrayInputStream
     PrintOutputController oPrintOutputController = oReportClientDocument.getPrintOutputController();
     System.out.println("getting info object5" + oPrintOutputController);
     //Set the export options and format.    
     ExportOptions oExportOptions = new ExportOptions();
     ReportExportFormat oExportFormat = ReportExportFormat.characterSeparatedValues;
may i know the reason.
please do the needful.
Thnaks in advance.
Regards,
Purushotham

Copy the clientSDKOptions.xml file over to Linux, make it accessible to your Java process, then specify the directory path where the file is found (not file path) using the Java System property "ras.config".
Then strace the Java process, to ensure your app is accessing the xml file correctly in the expected location.
Sincerely,
Ted Ueda

Similar Messages

  • Request timed out because there has been no reply from the server in 600000

    Issue:
    Request timed out because there has been no reply from the server in 600000
    Scenario:
    1. All the crystal reports are designed by using Crystal Report 2008 Version -- 12.3.0.601
    2. All reports are uploaded to CMC (SAP Business Objects Enterprise XI, Product: 12.1.0)
    3. using Front-End .net Winform
    4. Crystal Report is binding is done using Business View Manager (since having more than one databases)
    5. Business View Manager Connects to Oracle using "Oracle Server" connection
    6. Loading reports as follows
    string queryString = string.Empty;
    SessionMgr sessionMgr = new SessionMgr();
    EnterpriseSession enterpriseSession = sessionMgr.Logon(userName, userPassword, serverName, authType);
    EnterpriseService enterpriseService = enterpriseSession.GetService("InfoStore");
    InfoStore infoStore = new InfoStore(enterpriseService);
    enterpriseService = enterpriseSession.GetService("PSReportFactory");
    Object psrfObject = enterpriseService.Interface;
    PSReportFactory psReportFactory = (PSReportFactory)psrfObject;
    queryString = "Select SI_CUID, SI_ID, SI_NAME, SI_PARENTID From CI_INFOOBJECTS " + "Where SI_PROGID='CrystalEnterprise.Report' " + "And SI_ID=" + ReportId;
    InfoObjects infoObjects = infoStore.Query(queryString);
    InfoObject infoObject = infoObjects[1];
    ReportDocument crDoc = new ReportDocument();
    crDoc.Load(infoObject, enterpriseSession);
    7. All the reports are getting loaded properly and i am able to dynamically set the report parameters
    8. After executing report, some of the reports take more than 10 minutes, due to which shows following error
    Request timed out because there has been no reply from the server in 600000
    Note i have done following:
    1. I have checked stored procedure running through oracle for more than 10 minutes (1 hr, 2 hrs)
    2. Tried simply running crystal report without front-end running perfectly more than 10 minutes (1 hr, 2 hr)
    3. When i run .net winform application for specific reports which takes long time, gives "Request timed out because there has been no reply from the server in 600000"
    Also i have done lot much R&D and spent almost weeks to get resolution but not getting any solution out of it, please help me in this case
    HKEY_LOCAL_MACHINESOFTWAREBusiness ObjectsSuite 12.0Report Application ServerClient SDKCorbaAdapterWaitReplyTimeout = 600000 and HKEY_LOCAL_MACHINESOFTWAREBusiness ObjectsSuite 12.0Report Application ServerInprocServerEnterpriseRequ
    AS per following URL
    Session timeout
    1. Log into Central Management Console
    2. Go to server,right click on Crystal report processing server and select properties,change the idle connection time out to 60 minutes
    3. Also right click on crystal report cache server and select properties ,change the idle connection time out to 60 minutes
    4. Restart Crystal Report Processing Server and Crystal Report Cache Server
    5. Change the session time out to 60 minutes in web.xml of INfoviewApp,InfoViewAppAction,PlatformSerivces and CrystalReports.
    6. Navigate to the following location
    <BO Install Dir>Business ObjectsTomcat55webappsInfoViewAppWEB-INF
    7. Edit the web.xml in notepad and search for the below lines.
    <session-config>
    <session-timeout>20</session-timeout> <!-- 20 minutes for session objects -->
    </session-config>
    8. Increase the Session-Timeout parameter to 20 to 60 minutes in web.xml . Save this file
    9. Repeat the same for the web.xml file in the InfoViewAppActions folder in <BO Install Dir>Business ObjectsTomcat55webappsInfoViewAppActionsWEB-INF
    10. Repeat the same for the web.xml file in the PlatformSerivces folder in <BO Install Dir>Business ObjectsTomcat55webappsPlatformSerivcesWEB-INF
    11. Repeat the same for the web.xml file in the CrystalReports folder in <BO Install Dir>Business ObjectsTomcat55webappsInfoViewAppActionsWEB-INF
    12. Restart the tomcat server
    Still i am getting same error, please help me, if you have any idea, clue with respect to this error on winform

    This error is specific to RAS. The default CORBA request timeout is 10 minute = 600000 ms. When the RAS SDK does not get the reponse back from RAS server in 600000 ms it throws this message. Why it works in InfoView\CMC what I believe you refer to as "Front End' application is because InfoView\ CMC don't use RAS.
    1. First make sure that a smaller report wich runs pretty fast ( 1-2 min) works. This will confirm that there is no connectivitiy issues between RAS and RAS SDK.
    2. If you get the efrror for every single report, even the smaller ones, make sure the box running RAS and RAS SDK code( in case they are 2 different) can ping each other with IP, shortname and FQDN. If there is a firewall between them, the RAS port needs to be opened for bidirectional communication. By default RAS chooses a random port for communication with SDK but within CMC you can configure it to use a specific port and open it.
    3. If the issue is specific only to reports that are long running, typically more than 10 minutes, then you need to inclease the CORBA timeout to a value more than what the reports typically would take to process. This is done on client code side or IIS in this case.
    Here are the steps:
    Make the following changes on the application server/system.
    Open RegEdit by going to Start > Run and typing in regedit.exe. Then click Ok.
    Navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Business Objects\Suite 11.5\Report Application Server\Client SDK\CorbaAdapter
    Change the value of SendRequestTimeout(ms) to 100000.
    Change the value of WaitReplyTimeout(ms) to 6,000,000 ms. The default value is 600,000 ms and may not be long enough.
    Restart IIS by going to Start > Run and typing in iisreset. Then click Ok.
    Retry the failing application.
    See note:  1296656
    This error should be easy to fix
    Edited by: Aasavari Bhave on Feb 2, 2012 11:20 AM

  • Checking for updates an error has occurred the request timed out

    Whenever I try to check for an update to my software on my computer I get this message: "an error has occurred, the request timed out."
    I have not been able to have a software update in many months. Any suggestions on how to fix this?
    Thanks,
    David

    Quit all applications
    Hold option key down and click the "Go" menu in the menu bar.
    Select "Library" from the dropdown.
    Library > Preferences
    Look for the file  com.apple.appstore.plist  and move it to Trash.
    Restart the computer.
    Source:https://discussions.apple.com/message/20445064#20445064

  • I have been trying to update via App Store and every time only with apple software it starts to download and it will says it's calculating time remaining then an error message pops up saying " An error has occurred the request timed out. (102) "

    I have been trying to update via App Store and every time only with apple software it starts to download and it will says it's calculating time remaining then an error message pops up saying " An error has occurred the request timed out. (102)" I have tried everything , I've been told its my ISP but I have tried using differenet internet to attempt the updates. Like I said all other software updates fine its just apple software

    http://www.apple.com/support/mac/app-store/contact.html?form=account

  • "An Error has Occurred. The request timed out." - OS X 10.8.2

    I have Mountain Lion OS X 10.8.2 installed on my 15" Macbook Pro (Mid-2010).
    Upon initiating Software Update, the App Store window appears > 'Checking for Updates'  > results in: "An Error has Occurred.  The request timed out." (after approximately of 30 seconds).
    This is an on-going issue.  The OS Firewall is disabled and no third party anti-virus/security software has been installed. 
    I have contacted Apple Technical Support and they advised the installation of Combo/Supplementary (10.8.2) software. 
    This was updated as advised; yet the same problem still exists!
    Can anyone assist with a 'fix' for this issue and the reason why it is occurring please?

    Will something like this work on an iPhone and where would I locate it?  My App Store was working just fine and this last week it's been slower and slower, plus difficulties with downloading and updates. Both my downloads and updates start and then pop up a 'can't install at this time'. I thought it might b my storage space so I started deleting. Well I have plenty of space now and still get same problem.
    Now over the last two days I will type in a search to reinstall the apps that I removed and the App Store tells me request timed out.
    Help please

  • Request timed out because there has been no reply from the server

    Hi,
    I am using "Embedded report application server 11.5".
    When i am going to launch report with the help of above mentioned server i am getting "Request timed out because there has been no reply from the server for more than 600,000 milliseconds" error.I have already huge data for passed parameter
    Steps that i followed:
    1)I have set unlimited jobs in server.
    2)In registry entry i have set 10,00,000 miliseconds insted of 6,00,000 miliseconds.
    Can anybudy please provide me some solution for this.
    Regards
    Vishal

    See here if it's still an issue
    Re: which registry setting to change for long running reports

  • Occasionally got 'Request timed out' when trying to do Ping test on the server. What likely will be the cause?

    I want to troubleshoot what causing the connection unstable between workstation and server. When i try do the ping test, the reply sometime 'Request timed out' Any idea what likely the cause of this issue?
    I tried change network adapter, change network cable, change network port, reassign different ip address to the server. Still the result remain. I got another server on the same rack and same ip segment(base), but the other server is ok.
    Any idea on this guys?
    Thanks.

    Hi S.Akmal,
    The request timed out also can caused by the remote computer no replayed, you can try to check the remote server whether it have some network issue, you also can connect this
    server to another server directly(just connect them with cable) then try the ping then can determine whether issue occur on this server.
    More information:
    Internet Control Message Protocol (ICMP) Basics
    https://support.microsoft.com/en-us/kb/170292
    I’m glad to be of help to you!
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • FCP to YouTube - 'the request timed out'

    Hi guys, here's my question:  I uploaded a video to YouTube from final cut pro two days ago to a friend's channel.  Today, I tried uploading the same video to my own channel, but in FCP it's freezing at 50% upload.  I get this message: Publishing to YouTube failed - the request timed out.  Any thoughts on this?
    I don't think it's to do with the duplicate video because YouTube allows duplicate videos as far as I know.  I also slightly changed the size.
    In the past, I've been able to upload seamlessly from FCP to YouTube, so I have no idea why it's not letting me now.
    Many thanks for your help,
    Brian

    If you don't have Compressor, check the Shared Items folder in your event. Open it in QuickTime. If it plays OK, upload that file using the YT uploader.
    Good Luck.
    Russ

  • The request timed out

    Does anyone know why I get "The request timed out"  when I try to access the iBooks store?  If so, is there a solution?
    Thanks!

    You could try the 10.8.2 Combo download. Run the disk utility first before installing, verify your disk then repair permissions.
    Then try the Combo downoad http://support.apple.com/kb/DL1581

  • IPhone/iPad connection error after first login ok: The request timed out. (-1001)

    Hi
    I have installed SAP 9.0 PL 12, DI API all version, Integration Component of the SAP 9.0 PL12.
    On my iPhone I have the 1.10.1 version of the app SAP.
    I followed the directions provided in the note (also in 1602674) and in the forum, but nothing.
    I start my PC (server with integration installed), do all the tests possible dall'integration admin and I always correct results.
    Start app from my iphone, it connects to my DB but.... after a few minutes I get the error
    "Connection Failed - The request timed out. (-1001)"
    and then throws me out of the db.
    If I try to reconnect, re-entering the password I have always the same error.
    To reconnect, I have to restart the PC and the situation repeats itself (is the first logon, then I get the error and I can not reconnect).
    Can anyone help me?
    THANKS
    NL

    H Thusar
    Update: I only changed the startup type of the service DI Proxy, Event, Integration, and instead of putting 'Automatic' I selected 'Automatic (Delayed Start)'.
    I rebooted the server and I was able to connect the iPhone via app to my DB: I was about an hour, I created BP, made ​​changes, displayed report.
    I then did the logoff.
    I tried to reconnect but nothing is returned the error 'Connection Failed - The request timed out. (-1001)'.
    Even after restarting the server again, the app connects after about two minutes I get the error 'Connection Failed - The request timed out. (-1001)' and is no longer relates only after you restart the server.
    Help
    NL

  • Trying to set up mail and iCloud in iPhone4.  It keeps saying verification failed. the request timed out. Not sure what to do,

    Trying to set up mail and iCloud in iPhone4.  It keeps saying verification failed. And the request timed out?  Not sure what to do.  I do have an iCloud account and am able to log on to it on computer and see mail, contacts, etc.  Any ideas?
    thanks for any help

    ausask64 wrote:
    Can't seem to get a connection to internet even thou it tells me i have one. 
    If you see the white WiFi bars in the upper left corner, that simply means that the iPad has detected a WiFi network, and that does not mean that you are connected to the Internet.
    Can you open web sites with Safari?

  • QT to MobileMe: "The request timed out"

    I am unable to upload a video from QuickTime to MobileMe. It says the request timed out.
    The video was shot using a iPhone 3GS, then saved with iPhoto and opened with QuickTime.
    I go to Share -> MobileMe Gallery.
    The video is a little bit over 10 mins, 268Mb.
    Thanks.

    Add me to the list. 76MB .mov file, I also asked it to same an iPod/iPhone version. (Mine was a slideshow exported from Aperture 3 as 720p HD, then opened in QuickTime X to "Share." Sharing starts with about 12 minutes.

  • I have 2 i4 phones.  I can sign on to iCloud on 1 but never on the other.  Does anyone have the answer to this.  I have tried to change my password but I still have the same problem.  I keep getting message "Verification Failed The request timed out"

    I upgraded to 2 -  i4 phones with 2 different phone numbers.  I can sign on to iCloud on 1 phone but never on the other.  I have changed my my password twice but no matter what I do, I still have the same problem.  I keep getting a message "Verification Failed The request timed out"  no matter how many times I try to sign on it always times out.  Before I upgraded to the i4, I had a i3GS and had the same exact problem.  Does anyone have any ideas???

    Firstly, go to http://iforgot.apple.com and sign in with the ID you use for iCloud. A new password will be sent to your associated email address.
    If that doesn't work, for example because it's going to an address you can't access, then you will have to contact Support. Go to https://expresslane.apple.com ; click 'See all products and services' at the bottom of the page. In the next page click 'More Products and Services, then 'Apple ID'. In the next page select 'Other Apple ID Topics' then 'Lost or forgotten Apple ID password' and click 'Continue'.

  • Unexpected error during HTTP request to voucher server The operation timed out

    I read books from my library through a system called READS. I have successfully used DE 1.0 without any problems, however, when I tried to use it recently it required me to upgrade to 1.5. Well I did so and now the books won't authorize. Here is the error message I am getting:
    Adobe DRM Error System: 5 State: 4 Class: 600 Code: 106 Message: Error on request or response from server. Please check your network connection and try again. Scroll below or view error.log for more details.
    Adobe DRM client Error: 706 Unexpected error during HTTP request to voucher server The operation timed out
    Requested URL: http://207.54.136.76/fulfill/ebx.etd?action=lend&orderid=939605378082105&bookid=ContentRe serveID:B91CC494-23AF-4C6A-9B0C-7DA050C05722-50
    Requested URL: http://207.54.136.76/fulfill/ebx.etd ?action=lend &orderid=939605378082105 &bookid=ContentReserveID:B91CC494-23AF-4C6A-9B0C-7DA050C05722-50
    --- end ---
    I have tried this multiple times with more than one book. Again, they worked just fine before I did the upgrade. I am running Vista SP1.

    Never mind, they obviously post the message on the ticket, but it doesn't send an e-mail. I will try what they indicated. Here is their response...
    Thank you for contacting Adobe Technical Support.
    I understand that you are getting "Adobe DRM Error" in Digital Editions.
    We have documented the steps to resolve this error message. Please do
    refer to this TechNote:
    Error: "Adobe DRM Error" when you activate Digital Editions or access an
    eBook
    http://www.adobe.com/go/kb402747

  • Nslookup: DNS request timed out. time out was 2 seconds. (When the primary DNS is down)

    Hi All,
    I have set up 2 Windows Server 2012 domain controllers (DCA & DCB). DCA points at DCB as the primary DNS, and itself as the alternate DNS. DCB points at DCA as the primary DNS, and itself as the alternate DNS.
    When both DCs are running and if I do an nslookup on DCA: The result is as follows:
    Default Server: dcb.testdomain.com
    Address: 30.30.30.2
    nslookup on DCB:
    Default Server: dca.testdomain.com
    Address: 30.30.30.1
    Client PC (Windows 7 Pro):
    1st DNS : 30.30.30.31
    Alternate DNS: 30.30.30.32
    nslookup on the client PC
    Default Server: dca.testdomain.com
    Address: 30.30.30.1
    Up to here everything is fine. Now if I turn off DCA, and do an nslookup, the result is as follows:
    DCB nslookup:
    DNS request timed out.
           time out was 2 seconds.
    Default Server Unknown
    Address: 30.30.30.31
    Client PC nslookup:
    DNS request timed out.
           time out was 2 seconds.
    Default Server Unknown
    Address: 30.30.30.31
    I waited for more than 15 minutes an tried again, it didn't help.
    I have been reading a few similar posts on this matter, but couldn't find the answer.
    I would  expected it to display the DCB when I do an nslookup.
    Question 1: Shouldn't that display DCB rather than displaying a time out message when I do nslookup?
    Question 2: The fact that it displays a time out message, does it mean that more configuration needs to be done? If so please kindly advice what needs to be done. 
    I did an ipconfig /displaydns command. I realized that the order of DNS have changed on both DCB and the Client PC:
    Now, they both display DCB on the top of the list, whereas they were displaying DCA on the top of the list prior to the shut down.
    Question 3: Does it mean that the Client PC now knows that the 1st DNS is down and so it's using the 2nd DNS?
    If so, why does the nslookup display the time out message?
    Question 4: Is it possible to configure either of DNS Server or the DNS client, so it displays the 2nd DNS when the first DNS is not accessible and when I do nslookup?
    Thank you for. 

    Hi Ton_2013,
    Based on my understanding, the issue we are experiencing is that: when the primary DNS server is down, the result of the tool Nslookup is to diaplay the time out message at first. Right?
    Based on my knowledge, timed out message is means that the server did not respond to a request after a certain amount of time and a certain number of retries. Because the primary DNS server is down, it can't respond to this request and time is out. When
    the primary DNS server can't respond, the secondary DNS server works to ensure effective work. And the order is changed as you said.
    As to the reason why the result is still the same even when the order has changed, we can try to use Network Monitor to capture network traffic and view and analyze it to find the cause. And the cause may be the cache. For your information, please refer
    to the following link to download the tool Network Monitor:
    http://www.microsoft.com/en-hk/download/details.aspx?id=4865
    Regards,
    Lany Zhang

Maybe you are looking for