How to change time out settings in Analytic Provider Service...

... or how to disable automatic disconnect between APS and essbase server (using XMLA interface).
First a short summary:
We would like to use a third party product to analyze data (DeltaMaster from Bissantz). This product uses the XMLA interface provided by Analytic Provider Service. Mostly the connection works, I can choose one of our cubes, sometimes a drill down is possible, but sometimes the following error occurs:
"Microsoft.AnalysisServices.AdomdClient.AdomdErrorResponseException: (1042006): Network Error [10061] Unable To Connect To [entwgdw.hres.de:33769]. The client timed out waiting to connect to the Essbase Agent using TCP/IP. Check youer network connections. Also please make sure that Server and Port values are correct [...]"
I have already talked to the Bissantz support concerning this issue and the recommended me to increase the APS time out settings and/or to disable the automatic disconnect between APS and essbase server after every query.
The question is: Is this possible and if yes: How and where can I change these settings???
Kind regards
André

You could look at updating the essbase.properties file in the APS installation directory.
olap.server.netRetryCount=600
olap.server.netConnectRetry=3
olap.server.netDelay=200
olap.server.netSocketTimeOut=200
Update then restart APS
Though this might not be the issue if on windows, it may be down to the amount of ports being used, have a read [here |http://timtows-hyperion-blog.blogspot.com/2007/12/essbase-api-error-fix-geeky.html ] for a possible fix.
Cheers
John
http://john-goodwin.blogspot.com/

Similar Messages

  • Hammer USB HD timing out.  How to change time out value?

    Hi:
    My new Hammer USB 500 Gig portable hard drive does not mount. USB probe log gives these error message:
    33.929 [1] AppleUSBEHCI[0x177d800]::Found a transaction which hasn't moved in 5 seconds on bus 91, timing out!
    68.941 [3] AppleUSBHub[0x17a4400]::TimeoutOccurred error
    The drive mounts on an iMac running Mac OS X 10.5, but neither Finder nor Disk Utility can see the drive on my Powerbook running 10.4.11.
    Hammer tech help says the drive takes as much as 7 minutes to mount. I did notice that it took some time on the iMac.
    Any ideas? Can I change the time out constant somehow?
    By the way the drive requires more than 500 miliamps to start up. I have a double USB cable that does bring the drive up, but my Powerbook won't mount it.
    Thanks,
    Carl Carlson

    Hi Carl, and a warm welcome to the forums!
    Self powered USB drives are a big problem, I think the only answer is a Powered USB Hub.

  • Time Out Settings in OSB

    Hi All,
    I have a service which calls DB via DB adapter. For the webservice call, I have an option of read time out settings in the business service, so that it will get time out after the configured time period.
    But for the DB call I dont have this option in the business service and we are getting stuck thread exceptions when the legacy is taking more time to respond back. We have a requirement that all the services realted to DB call have to get time out when the legacy takes more time.
    Kindly help me in doing this.
    Thanks and Regards,
    Prabhu

    Hi Anuj,
    I did a sample stored procedure which will wait for number of seconds which we send as input and will send the success repose after the number of seconds.
    StoredProcedure:
    create or replace
    procedure sleep (seconds in number,response out varchar2) as testdata number;
    begin
    testdata := seconds;
    dbms_lock.sleep(testdata);
    response := 'SUCCESS';
    end;
    Business Service XML:
    <?xml version="1.0" encoding="UTF-8"?>
    <xml-fragment xmlns:ser="http://www.bea.com/wli/sb/services" xmlns:tran="http://www.bea.com/wli/sb/transports" xmlns:env="http://www.bea.com/wli/config/env" xmlns:jca="http://www.bea.com/wli/sb/transports/jca" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <ser:coreEntry isProxy="false" isEnabled="true">
    <ser:binding type="SOAP" isSoap12="false" xsi:type="con:SoapBindingType" xmlns:con="http://www.bea.com/wli/sb/services/bindings/config">
    <con:wsdl ref="Sleep2/Sleep_dbBS"/>
    <con:binding>
    <con:name>Sleep_ptt-binding</con:name>
    <con:namespace>http://xmlns.oracle.com/pcbpel/adapter/db/Application1/Project2/Sleep</con:namespace>
    </con:binding>
    </ser:binding>
    <ser:monitoring isEnabled="false">
    <ser:aggregationInterval>10</ser:aggregationInterval>
    <ser:pipelineMonitoringLevel>Pipeline</ser:pipelineMonitoringLevel>
    </ser:monitoring>
    <ser:reporting>true</ser:reporting>
    <ser:sla-alerting isEnabled="true">
    <ser:alertLevel>normal</ser:alertLevel>
    </ser:sla-alerting>
    <ser:ws-policy>
    <ser:binding-mode>wsdl-policy-attachments</ser:binding-mode>
    </ser:ws-policy>
    </ser:coreEntry>
    <ser:endpointConfig>
    <tran:provider-id>jca</tran:provider-id>
    <tran:inbound>false</tran:inbound>
    <tran:URI>
    <env:value>jca://eis/DB/SleepConnection1</env:value>
    </tran:URI>
    <tran:outbound-properties>
    <tran:load-balancing-algorithm>round-robin</tran:load-balancing-algorithm>
    <tran:retry-count>0</tran:retry-count>
    <tran:retry-interval>30</tran:retry-interval>
    <tran:retry-application-errors>true</tran:retry-application-errors>
    </tran:outbound-properties>
    <tran:all-headers>false</tran:all-headers>
    <tran:provider-specific>
    <jca:jca-file ref="Sleep2/Sleep_db"/>
    <jca:adapter-name>Sleep</jca:adapter-name>
    <jca:adapter-type>DATABASE</jca:adapter-type>
    <jca:always-use-wsdl>true</jca:always-use-wsdl>
    <jca:connection-mode>managed</jca:connection-mode>
    <jca:outbound-properties>
    <jca:operation-properties>
    <jca:operation-name>Sleep</jca:operation-name>
    <jca:spec-properties>
    <jca:property>
    <jca:name>ProcedureName</jca:name>
    <jca:value>SLEEP</jca:value>
    </jca:property>
    <jca:property>
    <jca:name>QueryTimeout</jca:name>
    <jca:value>2</jca:value>
    </jca:property>
    <jca:property>
    <jca:name>GetActiveUnitOfWork</jca:name>
    <jca:value>false</jca:value>
    </jca:property>
    </jca:spec-properties>
    </jca:operation-properties>
    </jca:outbound-properties>
    </tran:provider-specific>
    </ser:endpointConfig>
    </xml-fragment>
    When I run this from the business service, if I give the input as 10, we are getting error only after 10 seconds not in the query time out seconds. But the thing is we are getting error. If we set the time as 11 seconds we are getting success response. But our requirement is the procedure has to time out in the specified seconds. Kindly correct me if I am wrong.
    Regards,
    Prabhu

  • TS1424 apple store,just wanted to check on how to change my area settings in itunes from United States to United Arab Emirates(that's where i stay).it got changed when i tried to download google maps from the US store in itunes.please help me out here.Tha

    Apple store,just wanted to check on how to change my area settings in itunes from United States to United Arab Emirates(that's where i stay).it got changed when i tried to download google maps from the US store in itunes.please help me out here.Thanks

    Please please help me, if you know how.

  • How can I change time machine settings?

    How can I change time machine settings? I only want Time Machine to backup my Home Folders and the items on the desktop. Currently, it's backing up more files which overwhelm my backup drive. How do I get it to back up Home/Desktop ONLY?
    knarfrh60

    Also, see  selecting items to exclude from the backup  here...
    http://support.apple.com/kb/HT1427
    You may also find this Link of interest...
    Time Machine Tutorial

  • I have a mac 10.5 and need help figuring out how to change my email settings so it does not automatically delete my inbox every 30 days.  How to I adjust the mail settings?

    I have a mac 10.5 and need help figuring out how to change my email settings so it does not automatically delete my inbox every 30 days.  How to I adjust the mail settings?

    I think it must be an IMAP account then, & in Mail>Preferences>Accounts>Advanced>Keep copies for Offline viewing:>Don't keep copies, then on the Server, or maybe it's just this one itself, but on the Server you have a setting to remove eMails after 30 days.
    If it's a POP account we'd have to investigate that... but you didn't say so I'm guessing here.

  • How to avoid time out error in abap program

    How to avoid time out error in abap program
    based on performance wise i want please help

    Timeout occurs when a statement exceeds its time limit.To avoid this we need to tune the statements.
    I can give give you few tips for tune a select stament.
    1.The order of the feilds in the select statement should be same as the order of fields in the database table.
    2.It is always advisible to use the key fields when you are using the where clause.
    3. Sort the internal table while using the for all entreis statements.
    4.Use index in where clause if necessary.
    5.When you have a read statement user binary search but before this a sort statement should be there.
    6. Check your program with the Tcode ST05 and check which statement takes much time based on that tune that.

  • SAP PORTAL Time-Out Settings / BO iView Reports..?

    We have created BO object-specific iView requests in SAP PORTAL based on Ingo's posting....
    SAP BusinessObjects Enterprise & SAP Enterprise Portal - Part 3 of 4
    Currently, just posting some small CR4E and Analysis for Office (*Design Studio will be added in a few months) report objects that are based on BW queries - and response time is a few seconds.
    However, long-term as our BW grows - and the volume of data/periods expands we may see some reduction in the performance of these reports, and they make take a few-minutes to return data.
    The SAP Portal team already have an issue with an ECC / T-Code report (*no Business Objects involved) which runs over 100 seconds - and hits a Portal time-out....and are wondering if we would hit the same issue if a CR4E within the Portal ran longer than 100 seconds...?
    I think the answer is "NO", the Portal time-out would not apply in that scenario. My assumption is that in our solution-path, the Portal's 100 second time-out rule would ONLY apply to the process of the Portal invoking the iView request - and opening the frame for the CR4E content.
    Once the frame is open - and the RPT / Prompt-Screen is loaded the Portal time-out is "happy".
    After that iView -> BO frame is established....so, even if the CR4E & BW Query took more than 100 Seconds to return/display the data - the SAP Portal would not time-out - as all of that activity is actually taking place at the BOE Platform layer within the frame (and using the time-out settings at the BOE level).
    Can anyone confirm that my assumptions are correct, or explain where the assumption is wrong..?
    Thanks in advance...!

    In our scenario, the SAP PORTAL has a 100 second time-out, but the Business Objects platform where the CR4E content is hosted has a 600 second time-out for "View on Demand" reporting.
    When the SAP PORTAL opens the iView connection, it is opening the CR4E content in a frame on the Portal. Prompts are entered - and the RPT execution begins on the BOE platform.
    There is a "spinning-wheel" displayed from the BOE platform, and if run in BO LaunchPad it could run for up to 600 seconds before a time-out occured.
    When it is presented in SAP PORTAL via iView connection - does that "spinning-wheel" from BOE Platform provide enough of a "heartbeat" to let the PORTAL know not to drop the connection at 100 seconds....?
    My reasoning is that SAP PORTAL should be opening the BOE content with the same rules that apply when the report is opening in the BO LaunchPad.
    We are going to create a "SLOW" report in CR4E (*Lots of charts & sub-reports) to test/compare LaunchPad and Portal display of the same report.

  • How to change the security settings of tomcat5.0

    hi i am new to servlets. i am using tomcat5.0 to run my servlets.i have created two web applications under webapps directorywith the names ourwa and new ourwa.as part of ourwa i have developed a servlet with name Caller that includes another servlet named Calle of newourwa. to do this i got the Servlet Context object newourwa with the code below
    ServletContext application=getServletContext( );
    ServletContext newapplication=getContext("/newourwa" );
    and i included Calle servlet using this newApplication with the code below
    RequestDispatcher rd=newapplication.getRequestDispatcher("/calle");
    rd.include(request,response);
    i am not getting the ServletContext object of newourwa. so i am getting null pointer exception while running the servlet Caller.
    i read the documentation on servlet context inteface.there is a method with the name get Context( ).in this method they clearly specified that "in a security conscious environment this method returns null".
    please help me by giving answers to the following questions:
    1)wat is the alternative to dispatch the request from one application to another application?
    2)how to change the seurity settings of tomcat5.0?
    thanks.

    There has been a change in the Java security settings, see:
    *http://kb.mozillazine.org/Java#Java_security_prompts
    *"What should I do when I see a security prompt from Java?":<br>http://www.java.com/en/download/help/appsecuritydialogs.xml
    If you visit a website regularly then a possible workaround is to add the URL to the Java Exceptions Site List, see:
    *"Why are Java applications blocked by your security settings?":<br>http://www.java.com/en/download/help/java_blocked.xml
    *"How can I configure the Exception Site List?":<br>http://www.java.com/en/download/faq/exception_sitelist.xml

  • How do I time out my thread if there is no network traffic

    How do I time out my thread if there is no network traffic for a given time? I have the following code listening for data:
    StringBuffer requestLine = new StringBuffer();
    int c;
    while(true) {
        c = in.read();
        if(c == '\r' || c == '\n') {//Not sure here???
            break;
        requestLine.append((char)c);
    }But how do I time this out if there has been no traffic for lets say 5 minutes?

    Have you redefined 'in'?
    If it's a raw socket connection, you can use the Socket.setSoTimeout method before you open the connection to specify how long it should hold it open if there is no data available.

  • How to change the equalizer settings in iPod Shuffle 4th generation?

    Hi, i own iPod shuffle 2nd and 4th generation. I used to use Sony and sennheiser earphones to listen to them. The problem is I cant get the maximum performance of the earphones on my iPod, unlike in laptop. It is because I can't adjust the Mid, Bass, and treble level in Shuffle. Does anyone knows how to change its equalizer settings?

    You can't there are no equalizer settings on the Shuffle. Incidentally, if you are just wanting to boost the bass that is not getting the most performance from your headphones that is just making the bass abnormally loud.

  • HT4623 HOW TO CHANGE TIME ON MY IPHONE 3GS I HAD UPGRATED IT TO 6.1.3 WORLD CLOCK AND ACTUAL TIMING IS DIFFRENT

    how to change time on iphone 3gs
    world clock n actual timing is different
    ios6.1.3

    That's because iTunes 11 requires Snow Leopard or higher.

  • How to change hdmi out to 720 from 1080? the widescreen mode switch didn't help.

    How to change hdmi out to 720 from 1080? the widescreen mode switch setting didn't help, it used to work.

    Read the instructions that came with the device.
    Basically, activate the device and everything should simply work.

  • How to change Rendering Extension in sql server Reporting Services based on User Permissions

    Hi,
    I want to provide SQL server reporting services rendering extension based on user Access.
    For Example
    User1 can have options of Rendering to EXCEL and PDF
    User2 can have a option of CSV
    i read one article which is useful for report basis rendering extension changes. but i want to give user basis rendering options.
    http://www.mssqltips.com/sqlservertip/3569/how-to-change-rendering-extensions-in-sql-server-reporting-services/?utm_source=dailynewsletter&utm_medium=email&utm_content=headline&utm_campaign=20150406
    Thanks in advance.
    GVRSPK VENI

    You can use a data driven subscription for that
    Maintain a table with rendering extension information for various users ie their AD user login. Then setup a data driven subscription based on table values
    You will be creating a dataset with query for retrieving userid as well as rendering extensions and then just set the value as Get value from database for  render Format and To properties 
    For more details refer
    http://beyondrelational.com/modules/2/blogs/101/posts/13460/ssrs-60-steps-to-implement-a-data-driven-subscription.aspx
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • How to Increase Time-out for Agent Manager in OLT?

    Hello All,
    When using the Oracle Load Testing Agent Manager for a load test of multiple scripts, I often get time-outs at the start of a test from OLT:
    "Error communicating with.... : timed out after 60 seconds".
    When I check the agentmanager.log file on the remote PC (Win XP SP2) I can see that the communcation started with the last line saying
    "connected to server=......yaddayadda.... queue=queue/AgentPoolNotificationQueue"
    which I assume means there was communication. And there were 2 attempts to start. After the first attempt, the entry:
    05:31:09,513 WARN [AgentProcess] Forcibly terminating process 8041484 for agent agId1530_rndd49ae6b9-a8ec-4a0d-920d-16ee6c7021f4
    The agentmanager_auth.log file show 2 lines near the start time of the test:
    2010-05-12 05:30:18,606 INFO [URL:t3://..........au:8088;Requestor Username: oats;Requestor Key:f6272e33-9428-425b-b52d-c0363f863e43;Requestor Queue:queue/AgentPoolNotificationQueue;Request ID:36;Request:startagent;] - authentication successful
    2010-05-12 05:31:09,513 INFO [URL:t3://..........au:8088;Requestor Username: oats;Requestor Key:f6272e33-9428-425b-b52d-c0363f863e43;Requestor Queue:queue/AgentPoolNotificationQueue;Request ID:42;Request:stopagent;] - authentication successful
    Why was there a 'stopagent'?
    The log from a successful agent show lines after the "Connected to server...." line ( "startAgent( pathTo.....a.. Launching agent.... Launched process 8792944 for agaent agId.....") so something appears to have not happened on the failed agents.
    When starting a test immediately (rather than scheduling it as I want to for off-peak times) and the agents time out, I can stop it & restart test. Usually then they all start successfully.
    Does anyone have any suggestions on failure reasons & possible solutions?
    If there's nothing else that I might have missed, I'd like to trying increasing the time-out to say 120 or 500 seconds.
    How can I do this?
    Is there a way to get the agents to try starting again, or add a new vUser/script instance one the test is running?
    Many thanks,
    Neil
    Edited by: Neil S on May 12, 2010 9:16 AM

    Hi Ramesh,
                          I guess you need to increase the parameter "icm/keep_alive_timeout" value, it's default value is 60. please gothrough the link
    http://help.sap.com/saphelp_webas630/helpdata/en/0b/1c7e7abbc311d5993a00508b6b8b11/content.htm
    To increase this go to RZ10 and add this parameter in Instance profile and modify the value then restart the server to make  the changes effective.
    Regards,
    Hari
    PS: Point's are welcome

Maybe you are looking for

  • Arquivamento do XML da NFE!

    Boa tarde a todos, Em relação ao arquivamento do XML das mensagens de NFE, existe alguma obrigatoriedade legal para que sejam guardados esses XML's e dentro da solução GRC NFE 1.0 existe alguma funcionalidade para esse arquivamento ou o pessoal costu

  • Warning messages from ME_PROCESS_REQ_CUST  method CHECK

    Hello All, I am facing below mentioned issue with BADI ME_PROCESS_REQ_CUST 1: how can we issue warning messages from BADI ME_PROCESS_REQ_CUST method CHECK? 2: Check method is called twice if I click on check button in ME52N. Thanks

  • Can not re-install itunes?

    I can not re-install itunes - windows 7 Error 126 keeps popping up...what do i do?

  • PPP Dialup cnx fails - Mica modem never completes state transitions

    I have a NAS (LAC) serving PPP calls over PSTN for multiple customers and for this particular connection, the call always drops at the 'State Transition to Ranging". I have another CE router succesfully calling the NAS and usingeaxctly the same exter

  • MDX filter function doesn't work properly

    hi,  the filter that I'm using in my query is not working properly and i don't see what i'm missing, i tried to convert to double with CDbl function, but i got the same result.  the query :  SELECT NON EMPTY       [Measures].[Montant - Fact Ventes]