Error:- No server was available to process the request. Please try again la

Hi All,
I have created a report in deskI and trying to execute it through WebI on a large database, but it gives the below mentioned error after almost 30 min.
Error:- No server was available to process the request. Please try again later. (Error:RFC 00101)(Error:INF)...
When I run the same report on small database it works fine.
When trying to execute the same report through SDK also it gives the same error.
The SQL only execution timing when the report fails is about 23 min.
What is the reason for this error. can we fix it by changing some configurations on BOXI server.
Thanks in Advance,

Hi Prabhat,
Following solution might be helpful in resolving the issue.
To resolve the error message
Log on to the Central Management Console as administrator.
Click Servers > Desktop Intelligence Report Server.
Increase the following time-out parameters to at least twice the current value:
Minutes before Idle connection is closed
Minutes before an idle report job is closed
Click Update > Apply.
The report opens successfully.
Regards,
Sarbhjeet Kaur

Similar Messages

  • Error  No server was available to process the request. (Error: RFC 00101)

    Hi,
    I am having this error when I try to refresh a report using SDK
    com.businessobjects.rebean.wi.ServerException: No server was available to process the request. Please try again later. (Error: RFC 00101)
            at com.businessobjects.rebean.fc.internal.ras21.RAS21CPIConnection.processRequest(RAS21CPIConnection.java:175)
            at com.businessobjects.rebean.fc.internal.ras21.XMLviaRAS21Encode.processRequestHelper(XMLviaRAS21Encode.java:680)
            at com.businessobjects.rebean.fc.internal.ras21.XMLviaRAS21Encode.openDocument(XMLviaRAS21Encode.java:1167)
            at com.businessobjects.rebean.fc.internal.ras21.RAS21DocumentComAdapter.openDocument(RAS21DocumentComAdapter.java:62)
            at com.businessobjects.rebean.fc.internal.ras21.RAS21ReportEngineComAdapter.openDocument(RAS21ReportEngineComAdapter.java:100)
            at com.businessobjects.rebean.fc.internal.ReportEngineImpl.openDocument(ReportEngineImpl.java:249)
    But all the servers are running....
    I think it could be a timeout problem or somethingelse. Could someone help me ?
    Do you have ever had this error ?
    Regards

    Error's happening on opening the Desktop Intelligence document - it's unable to connect to a Desktop Intelligence Cache Server.
    To check that the server is up - when the exception happens, are you able to refresh a Desktop Intelligence document in InfoView? 
    Any firewalls between your dev box and Enterprise box?
    Sincerely,
    Ted Ueda

  • Error encountered during DocumentInstance initialization, No server was available to process the request. Please try again later. (Error: RFC 00101)

    Post Author: usaitconsultant
    CA Forum: JAVA
    HiIm trying to initialize my deski document to pass parameter values in prompts. However, Im encountering this error message " No server was available to process the request. Please try again later. (Error: RFC 00101)". Codes below.Anybody encountered this already or know how to resolve this? Please help me, thank you. Source Code:ReportEngines reportEngines = (ReportEngines)enterpriseSession.getService("ReportEngines");ReportEngine reportEngine = reportEngines.getService(ReportEngines.ReportEngineType.FC_REPORT_ENGINE); //DeskiDocumentInstance documentInstance = reportEngine.openDocument(infoObject.getID()); //Error  hereError encountered:Entering getRASConnection()ExceptionError Message: No server was available to process the request. Please try again later. (Error: RFC 00101)

    Hi Prabhat,
    Following solution might be helpful in resolving the issue.
    To resolve the error message
    Log on to the Central Management Console as administrator.
    Click Servers > Desktop Intelligence Report Server.
    Increase the following time-out parameters to at least twice the current value:
    Minutes before Idle connection is closed
    Minutes before an idle report job is closed
    Click Update > Apply.
    The report opens successfully.
    Regards,
    Sarbhjeet Kaur

  • No server was available to process the request

    Greetings, BO that I have is XI R2 with service pack 5. The report is Desktop Intelligence. I can change the values of the prompts in Desktop Intelligence but when I try modify the values of the prompts of some reports in schedule of Infoview, I received the error of the subject of this thread. The prompts are date type.
    Any idea about this error ?

    HI Miguel, import the report in Deski client refresh, change the name and export and try again.
    Also check to see if Deski Report Server (check PID before)  is crashing due to the workflow.

  • Identity Manager - No reconciler was available to process the request.

    I am getting this error "No reconciler was available to process the request." when trying reconcile from my resources in IdM 5 sp 5. I also see on the status history it is "Scheduled reconciliation is currently disabled." Does anyone know how to start the reconciler or how to resolve this issue?
    thanks,
    Chris

    I got it to work again but I didn't do much for the resolution.
    I ended up rebooting the app server again, tried the reconciliation and it failed again.
    I noticed the java.exe was still taking CPU cycles so I left it sit for 4 hours and then came back, tried it again, and it worked.
    Best I can figure is there was some background task/process running in IdM that was causing the reconciler error. Once it ended I was able to run my reconciliation. If anyone knows anything else about this topic the information would be much appreciated.
    Chris

  • The server was unable to process the request due to an internal error.

             
    Properties set in my project are below
    namespace EmployeeService
            public class Employee
                private int _Id;
                private string _Name;
                private string _Gender;
                private DateTime _DateofBirth;
                public int Id
                    get { return _Id; }
                    set { _Id = value; }
                public string Name
                    set { _Name = value; }
                    get { return _Name; }
                public string Gender
                    set { _Gender = value; }
                    get { return _Gender; }
                public DateTime DateofBirth
                    set { _DateofBirth = value; }
                    get { return _DateofBirth; }
    This is the service i have developed in my project 
    namespace EmployeeService
        // NOTE: You can use the "Rename" command on the "Refactor" menu to change the class name "Service1" in both code and config file together.
        public class EmployeeService : IEmployeeService
            public Employee GetEmployee(int Id)
                Employee objemp = new Employee();
                string cs = ConfigurationManager.ConnectionStrings["DBCS"].ConnectionString;
                using (SqlConnection con = new SqlConnection(cs))
                    SqlCommand cmd = new SqlCommand("spGettblEmployeewcf", con);
                    cmd.CommandType = CommandType.StoredProcedure;
                    SqlParameter Idparameter = new SqlParameter();
                    Idparameter.ParameterName = "@Id";
                    Idparameter.Value = Id;
                    cmd.Parameters.Add(Idparameter);
                    con.Open();
                    SqlDataReader dr = cmd.ExecuteReader();
                    while (dr.Read())
                        objemp.Id = Convert.ToInt32(dr["Id"]);
                        objemp.Name = dr["Name"].ToString();
                        objemp.Gender = dr["Gender"].ToString();
                        objemp.DateofBirth = Convert.ToDateTime(dr["DateofBirth"]);
                return objemp;
            public void SaveEmployee(Employee objemp)
                string cs = ConfigurationManager.ConnectionStrings["DBCS"].ConnectionString;
                using (SqlConnection con = new SqlConnection(cs))
                    SqlCommand cmd = new SqlCommand("spInsertEmployeewcf", con);
                    cmd.CommandType = CommandType.StoredProcedure;
                    SqlParameter ParameterId = new SqlParameter()
                        Value = objemp.Id,
                        ParameterName = "@Id"
                    cmd.Parameters.Add(ParameterId);
                    SqlParameter ParameterName = new SqlParameter()
                        Value = objemp.Name,
                        ParameterName = "@Name"
                    cmd.Parameters.Add(ParameterName);
                    SqlParameter ParameterGender = new SqlParameter()
                        Value = objemp.Gender,
                        ParameterName = "@Gender"
                    cmd.Parameters.Add(ParameterGender);
                    SqlParameter ParameterDateofBirth = new SqlParameter()
                        Value = objemp.DateofBirth,
                        ParameterName = "@DateofBirth"
                    cmd.Parameters.Add(ParameterDateofBirth);
                    con.Open();
                    cmd.ExecuteNonQuery();
    The Service Contract  code is
    namespace EmployeeService
        // NOTE: You can use the "Rename" command on the "Refactor" menu to change the interface name "IService1" in both code and config file together.
        [ServiceContract]
        public interface IEmployeeService
            [OperationContract]
            Employee GetEmployee(int Id);
            [OperationContract]
            void SaveEmployee(Employee objemp); 
            // TODO: Add your service operations here
        // Use a data contract as illustrated in the sample below to add composite types to service operations
    and i deployed the EmployeeService in iis and consuming the service in my web application the code is below
     protected void btnsave_Click(object sender, EventArgs e)
                EmployeeService.EmployeeServiceClient client = new EmployeeService.EmployeeServiceClient("basicHttpBinding");
                EmployeeService.Employee employee = new EmployeeService.Employee();
                employee.Id = Convert.ToInt32(txtid.Text);
                employee.Name = txtname.Text;
                employee.Gender = txtgender.Text;
                employee.DateofBirth = Convert.ToDateTime(txtdob.Text);
                client.SaveEmployee(employee);
            protected void btnget_Click(object sender, EventArgs e)
                EmployeeService.EmployeeServiceClient client = new EmployeeService.EmployeeServiceClient("basicHttpBinding");
                EmployeeService.Employee employee = client.GetEmployee(Convert.ToInt32(txtid.Text));
                txtname.Text = employee.Name;
                txtgender.Text = employee.Gender;
                txtdob.Text = employee.DateofBirth.ToShortDateString();
    and  when i am entering the details of employee Id,Name,Gender,DateofBirth and clicking save button iam getting the following error 
    The server was unable to process the request due to an internal error.  For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the <serviceDebug> configuration behavior)
    on the server in order to send the exception information back to the client, or turn on tracing as per the Microsoft .NET Framework SDK documentation and inspect the server trace logs.
    Code in web.config file in Webapplication(Client) is the following
    <?xml version="1.0"?>
    <!--
      For more information on how to configure your ASP.NET application, please visit
      http://go.microsoft.com/fwlink/?LinkId=169433
      -->
    <configuration>
        <system.diagnostics>
            <sources>
                <source name="System.ServiceModel.MessageLogging" switchValue="Warning, ActivityTracing">
                    <listeners>
                        <add type="System.Diagnostics.DefaultTraceListener" name="Default">
                            <filter type="" />
                        </add>
                        <add name="ServiceModelMessageLoggingListener">
                            <filter type="" />
                        </add>
                    </listeners>
                </source>
                <source name="System.ServiceModel" switchValue="Warning, ActivityTracing"
                    propagateActivity="true">
                    <listeners>
                        <add type="System.Diagnostics.DefaultTraceListener" name="Default">
                            <filter type="" />
                        </add>
                        <add name="ServiceModelTraceListener">
                            <filter type="" />
                        </add>
                    </listeners>
                </source>
            </sources>
            <sharedListeners>
                <add initializeData="C:\Users\HEMANTH\Desktop\Client\Client\Web_messages.svclog"
                    type="System.Diagnostics.XmlWriterTraceListener, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
                    name="ServiceModelMessageLoggingListener" traceOutputOptions="Timestamp">
                    <filter type="" />
                </add>
                <add initializeData="C:\Users\HEMANTH\Desktop\Client\Client\Web_tracelog.svclog"
                    type="System.Diagnostics.XmlWriterTraceListener, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
                    name="ServiceModelTraceListener" traceOutputOptions="Timestamp">
                    <filter type="" />
                </add>
            </sharedListeners>
            <trace autoflush="true" />
        </system.diagnostics>
        <system.web>
            <compilation debug="true" targetFramework="4.0" />
        </system.web>
        <system.serviceModel>
            <diagnostics>
                <messageLogging logEntireMessage="true" logMalformedMessages="true"
                    logMessagesAtTransportLevel="true" />
            </diagnostics>
            <bindings>
                <basicHttpBinding>
                    <binding name="basicHttpBinding" />
                </basicHttpBinding>
                <wsHttpBinding>
                    <binding name="mexHttpBinding">
                        <security mode="None" />
                    </binding>
                </wsHttpBinding>
            </bindings>
            <client>
                <endpoint address="http://localhost/EmployeeWebServices/EmployeeService.svc/basic"
                    binding="basicHttpBinding" bindingConfiguration="basicHttpBinding"
                    contract="EmployeeService.IEmployeeService" name="basicHttpBinding" />
                <endpoint address="http://localhost/EmployeeWebServices/EmployeeService.svc/mex"
                    binding="wsHttpBinding" bindingConfiguration="mexHttpBinding"
                    contract="EmployeeService.IEmployeeService" name="mexHttpBinding" />
            </client>
        </system.serviceModel>
    </configuration>
    Things i have tried till now are 
    1)changed the name of the name of the endpoint address basicHttpBinding to  basicHttpBinding_IEmployeeService but still get the save error.
    2)Opened the Message Log Trace. Got the error as follows
    <MessageLogTraceRecord>
    <HttpResponse xmlns="http://schemas.microsoft.com/2004/06/ServiceModel/Management/MessageTrace">
    <StatusCode>InternalServerError</StatusCode>
    <StatusDescription>Internal Server Error</StatusDescription>
    <WebHeaders>
    <Content-Length>730</Content-Length>
    <Cache-Control>private</Cache-Control>
    <Content-Type>text/xml; charset=utf-8</Content-Type>
    <Date>Sat, 03 Jan 2015 12:12:24 GMT</Date>
    <Server>Microsoft-IIS/7.5</Server>
    <X-AspNet-Version>4.0.30319</X-AspNet-Version>
    <X-Powered-By>ASP.NET</X-Powered-By>
    </WebHeaders>
    </HttpResponse>
    <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
    <s:Header></s:Header>
    <s:Body>
    <s:Fault>
    <faultcode xmlns:a="http://schemas.microsoft.com/net/2005/12/windowscommunicationfoundation/dispatcher" xmlns="">a:InternalServiceFault</faultcode>
    <faultstring xml:lang="en-US" xmlns="">The server was unable to process the request due to an internal error.  For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute
    or from the <serviceDebug> configuration behavior) on the server in order to send the exception information back to the client, or turn on tracing as per the Microsoft .NET Framework SDK documentation and inspect the server trace logs.</faultstring>
    </s:Fault>
    </s:Body>
    </s:Envelope>
    </MessageLogTraceRecord>
    Try to understand but could not understand because i'am new to wcf services. Please help me to find the error details.
    Thanks in advance
    Regards
    rax227 
                           

    Hi Mohan,
    I didn't use Fiddler before, I just download and use it but how to see the request message from this software?
    I have logged the request to event log before send to web service and copy this request from event log to testing with soapUI, so I don't think have between the actual messages being sent to your client via orchestration and soapui. In the log Response shape
    I see the fault response in event log.
    You can see
    this link to know how to use fiddler. As I suggested above the error you need to check is at the server side who is hosting the service( your party ) because you are getting fault response properly from them. The webservice you are calling seems to look
    like WCF service too. Your life would have been so easier if you could ask them to have firewall open from your dev box to their dev server so that you can use use "Add Service Reference" wizard, that even they have .NET wcf service too. 
    Did you by any chance manage to talk to them what they are getting or if they can increase the exception details in the fault message for you?
    If this answers your question please mark it as Answer and if this post is helpful, please vote as helpful. Thanks !

  • No reconciler was available to process the request.

    I am getting "No reconciler was available to process the request." error when trying to do initiate any reconcile (full/incremental). Did anyone else get the same error?
    --

    I'm getting the exact same error.

  • My iphone 4s cant activate after i update the ios to 6.0.1, always shows this message " Your request couldn't be processed" we are sorry but there was an error processing your request, Please try again later........please someone help me...

    My iphone 4s cant activate after i update the ios to 6.0.1, always shows this message " Your request couldn't be processed" we are sorry but there was an error processing your request, Please try again later........please someone help me???

    It sounds a lot like your phone was jailbroken or hacked to unlock it before you updated.
    Was it?

  • "we are unable to process your request please try again later" error message after restoring my iPhone! HELP!

    "we are unable to process your request please try again later" error message after restoring my iPhone! HELP!

    I am having the same issue.  I when I try to donw load a program after I get and email that says the latest epsidoeds is ready to downloae.  This just statrted the other day.  I am seeing this problem show up on other forums as well.

  • No reconciler was available to process the request.- error

    I was having a problem with reconciliation so I deleted the task and source adapter tasks. When I now attempt incremental reconciliation I know get this error. What do I do now?

    Hi,
    Something similar happened to me, recons didn't work first due to no recon availables and later due to a forever pending state.
    ... restarted App Server but Reconciliation Task status shows as 'finished' and no reconciler was available to process a
    recon request. In that situation it's possible to do a manual start of the task through lh console (startTask Reconcile
    "Reconciler your.hostname"), but reconciliations keep in pending state for ever. I tried to import Recon Tasks as ankushkapoor
    suggests, but didn't work. What finally broke my configuration was a commented /etc/hosts line related to the hostname of IDM
    when it was installed.
    Uncommenting that line and restarting de App Server made recons work again.
    Pablo C.

  • The iTunes store could not process your request, please try again later.

    For the last 6 days I have been getting the above message when trying to login and update my account in App Store. I only get as far as the Terms & Conditions page, click the accept and that's it. So far I have not seen any other advice on this forum then to wait it out. Any other suggestions?

    Same here in Mexicali, Baja California with my iPhone 3G. I am using a debit card which matches my billing address (apple suggested me this possible error) but still doesnt work.
    Created a different Apple ID, triple checked the info and same error appears, i cant even cancel on iTunes.
    Any update from someone or should we just keep trying until the servers are back on?
    Thanks!

  • No server was available to process request. Please try again later. (Error:

    In version BO XI R3.1 SP4, we face an error intermittently while trying to save large deski reports viewed in HTML format to pdf . It displays errors "No server was available to process request. Please try again later. (Error: RFC 00101)"  "
    The same error pops up intermittently while navigating between pages . This error is also seen for refresh of some of the reports . Anyone has come across this intermittent errors with the SP4 ?
    Regds
    Ksenia

    What application server are you using ? IIS
    how many deski report servers and cache servers do you have ? 4 Deski Report servers, 1 Cache server
    do you see your deski processes restarting or hanging during those errors ?  No, deski servers work fine
    you might be running out of capacity. : No we have enough storage , also the server resources are not much utilized. Also this also occurs when only one user is logged onto the system

  • When ever i try logging into FaceTime or iMessage on my Macpro i get The server encountered an error processing registration. Please try again later. what could be the problem..N.B I'm located in trinidad in the caribbean message

    When ever i try logging into FaceTime or iMessage on my Macpro i get The server encountered an error processing registration. Please try again later. what could be the problem..N.B I'm located in trinidad in the caribbean message

    Hi,
    As the Other threads suggests I would check the Date and Time settings on the Mac and compare that with the settings in the router.
    Messages (and iChat before that) send Time stamped info to Login and to send IMs.
    Obviously most people set their Macs to their Time Zone and nearest city/town.
    What people sometimes forget is that their Router/Modem device(s) have to be set correctly as well.
    EDIT
    Also Add a Public DNS server to your System Preferences> Network > Advanced Button > DNS  tab
    A Google one such as 8.8.4.4 or 8.8.8.8 seem to work well for most people
    10:15 PM      Saturday; March 17, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.3)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously
    Message was edited by: Ralph Johns (UK)

  • The server has encountered an error processing registration. Please try again later"

    Hello, I just got my MAC Book Pro and it I can not log into FACETIME it states " The server has encountered an error processing registration. Please try again later" now it is not due to incorrect information entered. However I also have an IPad mini and I could log unto that without any problems.. Greatly appreciate any help!

    Back up all data.
    Take the steps suggested in this support article:
    FaceTime, Game Center, Messages: "There was an error processing registration" when signing in
    The time zone must be correct for your location.
    Make sure you know your ID (an email address) and password. The password should be in your keychain, which you access in the Keychain Access application.
    Sign out of iMessage:
    Messages ▹ Preferences ▹ Accounts ▹ Sign out
    Then sign back in with your verified credentials.

  • TS4268 I am trying to facetime on my mac but keep getting the message "The server encountered an error processing registration. Please try again later." I have gotten this multiple times. how can I get around this?

    priority:
    I am trying to facetime on my mac but keep getting the message "The server encountered an error processing registration. Please try again later." I have gotten this multiple times. how can I get around this?
    i also have tried downloading "FaceTap" application to get facetime on my ipad and failed too. i thought i failed because i couldnt download latest 6.0 iOS or later. i downloaded latest software update for iOS but was 5.8 I think

    Wait until Apple fix it. See: http://www.apple.com/support/icloud/systemstatus/

Maybe you are looking for

  • Where can we suggest new features for Yahoo Messenger and other RIM IM clients?

    I just downloaded the new version of Yahoo Messenger and I like the user interface. But every time a new version comes out, this application creates a less-complete history of contact behavior. Several versions ago, the contact's status showed up in

  • Completed reader extended forms coming up blank

    I have an issue with one of my Reader Extended forms (dynamic form created in LCD ES 8.2) and it's compatibility with different versions of Reader.  The problem occurs when the person completing the form has a different version of Reader than the per

  • My new MacBook pro is not turning on!please give me solution!!

    My new 2012 MacBook pro is not turning on!i already set up the mac!next day when I tried to start it,it was not turning on!i tried with pressing command,control and power button together but it's not working!!please help!!

  • Yosemite and iphoto upgrade missing photo library

    While painfully transferring one user acount to another mac, my external hard drive died with all back-ups.  After I sucessfully and with great trevail migrated the account , I found that I had neglected to upgrade both computers to Yosemite.  When I

  • Playback progessively getitng slower and slower

    When I first played with Premiere, it could read the footage from my canon T2i like a charm, no herky-jerky playback, no waiting for the "play" button to refresh everytime I shuttled (both in the source monitor and program). After using for only a co