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

Similar Messages

  • "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.

  • 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 !

  • 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:- 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

  • 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?

  • 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.

  • After installing Mountain Lion, iMessages and Facetime does not work. When I try to sign-in I get a message that says: The server encountered an error processing registration. Please try again later. Apple care does not know what is the cause. Please help

    After installing Mountain Lion, iMessages and Facetime does not work. When I try to sign-in I get a message that says: The server encountered an error processing registration. Please try again later. After 4 calls to apple and 8 and a half hours on the phone. The apple people does not how to solve the problem. The last thing they told me is that they will send the problem to their engineers and I will hear from them. unfortunately they have not contact me.
    During the phone calls I tried putting the date and time in automatic, changing the username and password, I even tried using somebody elses username and password. Please help, facetime is my tool to telecomute, and it is hurting my job.

    I had the same problem and found the solution here:
    https://discussions.apple.com/thread/3189272

  • 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/

  • When I try to login to iMessage, I get the error: The server encountered and error processing registration.  Please try again later.

    I've been getting this error for two weeks.  I've tried rebooting the computer, resetting my network connection, and double-checking my password.  The chat function works fine on my iPad and iPhone, just not on my computer.  I have OS X 10.8.4 running on a MacBook Pro.
    Any help GREATLY appreciated.
    Suzanne

    I have encountered the same problem as Wildwing today on my iMac.  Facetime was working fine last week, but at lunch time today when my son tried to call he could not get through, although I was sitting at my iMac compiling an email at the time. Fortunately however I have an iPad Mini, which I heard ringing in another room so I picked up the call on that. 
    I have noticed that if I go to the  FaceTime tool bar, Preferences is greyed out. 
    I have tried to sign in again but keep getting this message : 'The server encountered an error processing registration.  Please try again later.'
    I have checked the outage on Support System Status, Apple is not reporting any problems.  I have logged on to Apple ID and re-verified both of my Apple IDs (I use a different one for iTunes) and had no difficulty accessing my Apple ID on either account on my current passwords.
    Messages which is set up with the same Apple ID as Facetime is working fine on my iMac and both Facetime and Messaes are fine on my Mini.
    I have had two Apple IDs for ages, which has never caused a problem before although I am wondering if this is the issue.
    Taking the 'try again later' literally, I have been trying that on and off since lunch time and I have rebooted my computer, I am still getting the same Error message.
    I am at a loss to know what to do next.  Help please

  • Can't use iMessege or App Store anymore?? Fails with "The server encountered an error processing registration. Please try again later."

    My iMessage application stopped working.  iMessage is apparently having trouble logging in using my apple_id.  It works fine with my iPhone and iPad.  When attempting to login to iMessage using my apple_id I get the following message "The server encountered an error processing registration. Please try again later."  If I try to log into the appstore, I simple get "An unknown error has occurred"  Any suggestions?

    Hi, see if it's one of these...
    Anonymous
    Post subject: NSURLErrorDomain error -1100 in OS X 10.8
    If you check for software updates using the App Store in OS X 10.8 and get "NSURLErrorDomain error -1100" the problem may be with your Software Update preferences. This is particularly likely if you were using a custom Apple Software Update server. To solve the problem, quit the App Store, move the following two files (if present) to the trash, restart, and only then rerun App Store updates:
    /Library/Preferences/com.apple.SoftwareUpdate.plist
    /Library/Preferences/com.apple.SoftwareUpdate.plist.lockfile
    http://x704.net/bbs/viewtopic.php?f=12&t=6130
    I was recently trying to upgrade to mountain lion through the app store.  I have unreliable Internet from a cable company whom I will not name, but we all know who they are.  My Internet dropped while downloading the upgrade.  Once I went through the notorious unplug the modem/router and plugged it back in to gain Internet connectivity again, I could not resume. No matter what I did, the app store kept displaying "an error occurred." I am hoping that those with the same issue read this first to save them hours of skimming through the Internet to find a solution.  Here are the steps to take:
    1. Make sure you have reestablished Internet connection
    2. Chances are you got frustrated when you tried to resume/unpause the download and clicked the "X" to the left.  If so, select the "Store" drop-down menu from the App Store and select "View My Account." There should be an option to unhide your purchase.  You know what to do.
    3. There is also an option to  reset all warnings for buying and downloading under "View My Account." Do this, click "Done," sign out of the App Store and quit the App Store.
    4. Open the Preferences in safari and select Privacy.  Select "Remove All Website Data."  Just do it.
    5. Launch the app store and sign in.
    6. Now, if you "Check for Unfinished Downloads" everything works peachy.
    I hope this helps.  Not much I can do for your Internet connection though.
    JonEz15...
    https://discussions.apple.com/thread/4697970?tstart=120

  • Everytime that I sign on FaceTime on my macbook pro, it says "the server encountered an error processing registration. Please try again later". How can I fix this so that I can use facetime again

    Everytime that I sign on FaceTime on my macbook pro, it says "the server encountered an error processing registration. Please try again later". How can I fix this so that I can use facetime again

    Not a solution, but was able to login at work.   Then when I got back to the hotel all was fine and it works now.  Just will not change IDs I guess.  

  • When logging on to my account a receive this message "the server encountered an error processing registration. Please try again later".  This is not a new account. I have changed my password and nothing works.  What am I doing wrong.

    I'm having trouble logging into facetime.  We do not have a new account.  I've changed the password and still cannot get in.  The message that pops up is "the server encountered an error processing registration.  Please try again later."  I want to talk to my granddaughter but can't.  Can someone help me.  Thanks

    I had to same problem. I found forums about adding the DNS 8.8.8.8 and 8.8.4.4 in System Preferences - Networks I did that and it still didnt work.  Just found another forum saying to go into System Preferences - Time and Date and check the Set time and Date automatically. And it worked for me. Hope it works for you too.

Maybe you are looking for