RequestTimeout error while attempting to connect to the Crystal Server

Hi Guys,
We use Crystal Server 2008, along with an automated java tool that updates the JNDI name for the database. Both the java tool and the Crystal Server reside on the same box, and communicate via TCP/IP.
Recently, we had some space added to the Crystal Server box (around 10 GB). Since then, I am seeing this problem when I invoke the java tool. It started off as an occasional problem, but now is consistent. I have attached the error below.
Has anyone every come across anything like this? We had multiple pairs of eyes look into this problem, and all signs point to a Network Issue, even though both the client and the server are on the same box.
Any help in this matter is much appreacited.
com.crystaldecisions.sdk.occa.report.lib.ReportSDKException: The request timed out because there has been no reply from the server for 600,000 milliseconds.---- Error code:-2147217385 Error code name:requestTimeout
        at com.crystaldecisions.sdk.occa.report.lib.ReportSDKException.throwReportSDKException(Unknown Source)
        at com.crystaldecisions.sdk.occa.managedreports.ras.internal.CECORBACommunicationAdapter.a(Unknown Source)
        at com.crystaldecisions.sdk.occa.managedreports.ras.internal.CECORBACommunicationAdapter.request(Unknown Source)
        at com.crystaldecisions.proxy.remoteagent.y.a(Unknown Source)
        at com.crystaldecisions.proxy.remoteagent.r.a(Unknown Source)
        at com.crystaldecisions.sdk.occa.report.application.cf.a(Unknown Source)
        at com.crystaldecisions.sdk.occa.report.application.DatabaseController.replaceConnection(Unknown Source)
        at com.americanwell.caretalks.reports.cr.CrystalReportServerAdminUtils.updateJndiAliasForRptFiles(Unknown Source)
        at com.americanwell.caretalks.reports.cr.CrystalReportServerAdminUtils.updateJndiDatasource(Unknown Source)
        at com.americanwell.caretalks.reports.cr.CrystalReportServerAdminUtils.updateJndi(Unknown Source)
        at com.americanwell.caretalks.reports.cr.CrystalReportServerAdminUtils.run(Unknown Source)
        at com.americanwell.caretalks.reports.cr.CrystalReportServerAdminUtils.main(Unknown Source)
OK - Logoff from Crytal Reports Server
Thanks a lot,
Jayash

What if you try to increase the request timeout? what happens.
To do that you can copy the clientSDKOptions.xml file  located per default to the following location <BO install path>\Business Objects\common\4.0\java\lib to the classpath of your application then Open clientSDKOptions.xml and change CORBARequestTimeOut from 600000 to a value large enough to allow the report to render, for instance 1200000.
Default vaule is 600000 (10 minutes)
You can also trace your application based on the Java RAS SDK by doing the following:
To enable RAS Java SDK trace, make the following modifications:
1- In an entry module for your application, insert this line:
System.setProperty("ras.config", configPath);
====================
NOTE:
" configPath is the path to the clientSDKOptions.xml file (for example, String configPath = "C:
====================
2- Add the <RequestRecordingOptions> element to the clientSDKOptions.xml file as follows:
<CrystalReports.ClientSDKOptions xmlns:xsi="HTTP://www.w3.org/1999/XMLSchema-instance" version="2" xsi:type="CrystalReports.ClientSDKOptions">
<ServerInfos version="2" xsi:type="CrystalReports.ServerInfos" id="1">
</ServerInfos>
<RequestRecordingOptions version="1.0" xsi:type="CrystalReports.RequestRecordingOptions" id="3">
<RecordRequests>true</RecordRequests>
<RecordRequestsOutputDir>C:/</RecordRequestsOutputDir>
<RecordSecurityContext>true</RecordSecurityContext>
<RecordSucceededResultDetails>true</RecordSucceededResultDetails>
</RequestRecordingOptions>
</CrystalReports.ClientSDKOptions>
Thanks

Similar Messages

  • Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding. This failure occured while attempting to connect to the Principle server.

    We are using SQL Server 2012.
    Every now and then, when we execute the below stored procedure INSERT_INTO_MYTBL, we got the below error, and it returned @ID = 0.
    "Timeout expired.  The timeout period elapsed prior to completion of the operation or the server is not responding. 
    This failure occured while attempting to connect to the Principle server."
    What causes this error, and how can we fix it ?
    Thank you.
    create procedure INSERT_INTO_MYTBL
    @ID int output,
    @Order varchar(50) = NULL,
    @ACCOUNT varchar(20) = NULL
    AS
    DECLARE @Success int, @TryNr int, @ErrMsg varchar(500), @ErrNumber int, @expected_id int;
    SET @Success = 0;
    SET @TryNr = 1;
    SET @ErrMsg = ''
    WHILE @Success = 0 AND @TryNr <= 3 and @ErrMsg = ''
    BEGIN;
    BEGIN TRY;
    BEGIN TRANSACTION;
    retry:
    BEGIN TRY;
    SELECT @expected_id = ident_current('myTbl') + 1
    SELECT @order = @account + '-' + CAST(@expected_id AS varchar(50))
    insert into myTbl
    ([Order],ACCOUNT)
    values
    (@Order,@ACCOUNT)
    END TRY
    BEGIN CATCH;
    SELECT @ErrNumber = ERROR_NUMBER()
    IF @ErrNumber = 2627
    BEGIN;
    GOTO retry
    END;
    ELSE
    BEGIN;
    SET @ErrMsg = '1.' + ERROR_MESSAGE() + ' ' + @order
    RAISERROR (@ErrMsg, 16, 1);
    END;
    END CATCH
    select @ID = SCOPE_IDENTITY()
    IF @id <> @expected_id
    BEGIN
    UPDATE myTbl
    SET [Order] = @ACCOUNT + '-' + CAST(@ID AS varchar(50))
    WHERE ID = @ID
    END
    SET @Success = 1
    COMMIT TRANSACTION;
    END TRY
    BEGIN CATCH;
    ROLLBACK TRANSACTION;
    SELECT @ErrNumber = ERROR_NUMBER()
    IF @ErrNumber = 1205
    BEGIN;
    SET @TryNr = @TryNr + 1;
    IF @TryNr > 3
    RAISERROR ('Giving up after 3 consecutive deadlocks for %s', 16, 1,@ACCOUNT);
    END;
    ELSE
    BEGIN;
    SET @ErrMsg = '2.' + ERROR_MESSAGE() + ' ' + @order
    RAISERROR (@ErrMsg, 16, 1);
    END;
    END CATCH;
    END;

    When the problem occurs, the stored procedure returns @ID = 0, which I think means the query
    When the problem occurs, the procedure does not return anything. SQL Server was told to stop executing. Furthermore, unless you issue the command SET XACT_ABORT ON, SQL Server will not roll back any open transaction. Which is one more reason you should not
    permit command timeouts.
    As for why this procedure sometimes take a long time, I would primarily suspect locking. When this occurs (but before the timeout elapses!), you could use my beta_lockinfo to see if there is any blocking going on. You find it here:
    http://www.sommarskog.se/sqlutil/beta_lockinfo.html
    Erland Sommarskog, SQL Server MVP, [email protected]

  • HT4864 icloud encountered an error while attempting to connect to the server

    icloud encountered an error while attmepting to connect to the server. why can't i connect from my pc? to icloud? whats up?
    mike

    You might want to just give it some time as there are a number of iCloud system issues effecting some users right now (see http://www.apple.com/support/systemstatus/).

  • When attempting to login to iCloud I get the following error message "Connection Error iCloud encountered an error while attempting to connect to the server"

    I am attempting to login to iCloud via my PC (Win XP) and get the error message above.  Any thoughts??
    Thanks,
    Richard Quinn

    Although your symptoms aren't mentioned, I'd try the following document with that. (The server error message is consistent with a LSP conflict.)
    Apple software on Windows: May see performance issues and blank iTunes Store

  • Connection Error iCloud encountered an error while trying to connect to the server

    Hi iCloud users
    For the first time I have experienced errors while attempting to connect to iCloud via my PC.  Never had any problems previously.
    The first error I received was:
         "Connection Error - iCloud encountered an error while trying to connect to the server"
    After a few attempts I was able to connect to iCloud.  However I was unable to access my Calendar and Contacts.  I received the following error messages:
         "Can't load Calendar - There was a problem loading the application"
         "Can't load Contacts - There was a problem loading the application"
    Has anyone out there experienced this?  If so could you offer an solutions/suggestions?  Is iCloud not working properly today?
    Many thanks & cheers,
    Sue

    Hi
    I am sorry can't help you because I have same problem when login to icloude.com and try insert to Contacts!
    Many times happen.
    what is issues ?

  • WMIProviderException: An error occurred when attempting to connect to the report server remote procedure call (RPC) end point

    I am getting the following error message while trying to configure a database for a Reporting Service Server.  Both SQL Server and Reporting server are 2012 named instances.  I have 2014 instances as well on the same server.
    Exception details...
    Microsoft.ReportingServices.WmiProvider.WMIProviderException: An error occurred when attempting to connect to the report server remote procedure call (RPC) end point. Verify that the Report Server Windows service is running, and then retry the operation.
     ---> System.Runtime.InteropServices.COMException (0x800706B3): The RPC server is not listening. (Exception from HRESULT: 0x800706B3)
       --- End of inner exception stack trace ---
       at Microsoft.ReportingServices.WmiProvider.RSWmiAdmin.ThrowOnError(ManagementBaseObject mo)
       at Microsoft.ReportingServices.WmiProvider.RSWmiAdmin.GenerateDatabaseScript(String databaseName, Int32 lcid, Boolean isSharePointIntegrated, String& script)
       at ReportServicesConfigUI.WMIProvider.RSReportServerAdmin.GenerateDatabaseScript(String databaseName, Int32 lcid, Boolean isSharePointIntegrated, String& script)
    Can someone help me on this please?

    Hi Jaigi,
    According to your description, you want to change a report server database for Reporting Services. But it fails on the last step and returns a error. Right?
    In this scenario, it seems you are creating a report server database on another server via remote connection. Based on the error message, it has issues on executing the script for generating new database. Please check if you have permission to connect the
    server and create a new database. Also please check if the Reporting Services Windows services is working properly.
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • HT4436 When trying to sign in I keep getting the error message, "iCloud encounterd a error while trying to connect to the server". How can I get signed in?

    When trying to sign in to iCloud, I always get the message, iCloud has encountered a error while trying to connect to the server. How do I get in????

    Hello,
    Try following step and check if issue gets resolved or not.
    Find Acrobat.exe on your computer.  Right click the program and click 'Troubleshoot Compatibility'.  Set the compatibility to Windows XP service pack 3.
    Regards,
    Anoop

  • Trying to setup new iCloud in system preferences and get error message: "iCloud encountered an error while trying to connect to the server."

    Here's the sequence of events:
    Setting up a new iMac.
    Migration Assistant was aborted during setup and a normal setup was completed.
    Then ran Migration Assistant from the newly setup account.
    It ran fine, but put all the data in a new account called "user".
    Renamed "user" to a new name, renamed the home folder to a new name following these instructions: OS X: How to change your account name or home directory name
    Delete the account we originally created, so just have one account with the name we want and all the data, email. Works fine.
    Sign into the App Store with the account we share for purchases.
    Now, the problem:
    Go to System Preferences to setup iCloud with a new Apple ID
    Get this error: "iCloud encountered an error while trying to connect to the server."
    So I'm unable to setup iCloud for photo stream, FaceTime, etc.
    Internet works fine, we can get mail, etc.
    Rebooting doesn't help
    Ideas?

    never mind the problem is gone this morning.

  • Error Message: The attempt to connect to the report server failed. Check your connection information and that the report server is a compatible version. The request failed with HTTP status 404: Not Found.

    I have a web page that contains a ReportViewer control.  I am trying to display a report, which is an .rdl file located on the SSRS server, in this ReportViewer control.  I have set the ReportPath and ReportServerUrl correctly.  I am
    getting an error message.
    Am I suppose to use an .rdlc file rather than a .rdl file?  Does the web server configuration need to use a certain account?
     I am getting the following error message:
    The attempt to connect to the report server failed. Check your connection information and that the report server is a compatible version.
    The request failed with HTTP status 404: Not Found.

    Hi bucaroov,
    The error "The request failed with HTTP status 404: Not Found." means the ReportServerURL configured in the ReportViewer control is invalid.
    Please follow these steps to solve the issue:
    Logon the Report Server machine.
    Open the Reporting Services Configuration Manager.
    Copy the Report Server URL from 'Web Services URL'.
    Logon the application server(in this case, it is the server that host the web page), check if we can use the URL we got from step 3 to access the Report Server. If so, please replace the ReportServerURL in the ReportViewer control with this URL. If it is
    not available, could you please post the error message.
    Additionaly, we don't need to provide the extension for a server report. The ReportPath should be like: /<reports folder>/<report name>
    For more information, please see:
    Walkthrough: Using the ReportViewer Control in Remote Mode:
    http://msdn.microsoft.com/en-us/library/ms251669(VS.80).aspx
    If you have any more questions, please feel free to ask.
    Thanks,
    Jin Chen
    Jin Chen - MSFT

  • On my Mac Mini, I keep getting this error message: "iCloud encountered an error while trying to connect to the server".  I don't have any problems with iCloud on my laptop / PC.  It works fine... Does anyone know what the problem could be?

    On my Mac Mini, I keep getting this error message: "iCloud encountered an error while trying to connect to the server".  I don't have any problems with iCloud on my laptop / PC.  It works fine... Does anyone know what the problem could be?

    Your Mac must be on Lion (10.7) to run iCloud. Apple had to change the operating system to fully support it. Nevertheless, it is possible to get emails from iCloud without having Lion. Please tell me if this interests you.
    Anyways, here is the link to buy Lion (30 dollars, totally worth the upgrade ): http://itunes.apple.com/be/app/os-x-lion/id444303913?mt=12
    Franklin

  • I keep getting an error that "iCloud encountered an error while trying to connect to the server". What's up?

    I've been getting an error most of the day that says "iCloud encountered an error while trying to connect to the server" on my pc. Also, anything I update on either iPad or iPhone does not update on the other device. What's up?

    Hello pongo19,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    How to restart the Apple Mobile Device Service (AMDS) on Windows
    http://support.apple.com/kb/ts1567
    Close iTunes and disconnect the iPhone, iPad, or iPod touch.
    Click the Windows Start button .
    In the Start Search field type Services.
    In the Programs section of the search results, Click "Services".
    Select Apple Mobile Device and click Stop the service as shown below:
    After the service has stopped, click Start the service.
    After the Apple Mobile Device service has started again, open iTunes and connect the device.
    Set the Apple Mobile Device Service Startup type to Automatic
    Remove and reinstall iTunes and AMDS
    Best of luck,
    Mario

  • There was an error when attempting to connect to the Windows Live Calendar service.

    I keep getting a message when I want to check my email you are not connected (but I am,as I can get in my Webbrowser) and the following error message  
    There was an error when attempting to connect to the Windows Live Calendar service. If the error persists, check to see if there's an upgrade of Windows Live Mail available or contact a service representative.
    Can anyone help me, no sense sending me an email, I cannot get into my email.
    Lucienne1

    Hi,
    Try installing Windows 2012 Live Essentials here.
    You will have to set up your Pop 3 or IMAP email account after installing the updated version per above.
    Are you using an Internet Service Provider Email  account or a cloud based (IMAP) Email account?
    Pop 3 accounts will require incoming and outgoing server addresses and any additional security settings required by your ISP. If you don't have the required settings for Pop 3 you will have to contact your ISP for those.
    Jaco
    ****I am not an HP employee****
    Errare humanum est.

  • HT204053 How to resolve "error while trying to connect to the server."

    Receive "error while trying to connect to the server" on my PC when using iCloud. How to resolve?

    check the below link.
    /people/stephen.johannes/blog/2005/08/18/external-data-loads-for-crm-40-using-xif-adapter

  • Why am I getting this error trying to sign into icloud encountered an error while trying to connect to the server????

    I am trying to sign into my mail and keep getting this error encountered an error while trying to connect to the server????

    I'm having the same issue.  Did you resolve it?

  • TS3988 I can't sign in to iCloud, message pops up stating that "iCloud encountered an error while trying to connect to the server". How do I sign in to iCloud now?

    Was using iCloud just fine on Mac and iPad and suddenly can't access it from either devices.
    When reviewing the settings on iPad a "verification failed, could not communicate with the server" message pops up.
    When trying to access iCloud account on icloud.com a "iCloud encountered an error while trying to connect to the server" message pops up.
    Meanwhile iCloud no longer works on both devices. (Apple ID works fine on Manage my Account)
    I don't remember changing any iCloud settings but I was working on email account settings when this happened....Any ideas??

    I have the same problem. This happens multiple times a day. I answer some questions and then unlock my account and then before long it all happens again. Extremely frustrating as I don't have a clue how to solve the problem.

Maybe you are looking for

  • Content Conversion in File Receiver Adapter

    Hi, I am doing a Content Conversion in File Receiver Adapter. Input to the Adapter is: <ns1:FileResponse_MT xmlns:ns1="http://www.bpmtest.com/bpm">      <OrderID>123</OrderID>      <Quantity>98</Quantity>     <Price>76.23</Price> </ns1:FileResponse_M

  • 2008 24" iMac problem (video footage included)

    OK, I have made a post about this a few weeks ago (click here to see it), and in that post I explained the problem I was having with my iMac.  But I explained it using text.  So, I figured it would probably be better to use video to actually SHOW the

  • Dynamic Menus

    Trying to edit sub menu width / border - www.pdstaxconsultants.businesscatalyst.com Can't locate original file to edit. Can anyone point me in the right direction. Thanks

  • Who can I contact when I have been charged a wrong price for an app in iTunes

    Kick the Boss 2 - charged 129DKK according to resent statement, price should have been 7DKK as far as I remember.

  • Activation of transfer Rule not available:  Help Sought

    Hi All, I have encountered error in loading data due to dataSource not having the same status as the source system in the Business Information Warehouse.  There is a timestamp difference. The recommended solution in HELP was to replicate the datasour