Response Time out through IISProxy.dll

I just found that the end of my message was missing . So, I posting the remaining
over here.
Because , I was flusing the data after every 2 minutes , it worked fine ..
This one worked with WebLogic 5.1 when accessing the Weblogic server directly
. Like
http://IP:7001/x/applet.jsp (This JSP downloads the Applet under JRE1.3) .
From this Applet I was calling the above code (delay.jsp) using the HttpMessage
Class as given below.
However , when proxied by path with the WebServer IIS4.0 it didn't work.
IS IISProxy.dll not capable of doing it ?
Iam copying the code fragments for the Applet Iam using . Is it a problem with
the code?
I heard that the URLConnection never times out . How is that it is not able to
read the Response?
<CODE >
<HttpMessage>
public class HttpMessage {
URL servlet = null;
Hashtable headers = null;
public HttpMessage(URL servlet) {
this.servlet = servlet;
public InputStream sendGetMessage(Properties args) throws IOException {
String argString = ""; // default
if (args != null) {
argString = "?" + toEncodedString(args);
URL url = new URL(servlet.toExternalForm() + argString);
// Turn off caching
URLConnection con = url.openConnection();
con.setUseCaches(false);
// Send headers
sendHeaders(con);
return con.getInputStream();
private void sendHeaders(URLConnection con) {
if (headers != null) {
Enumeration enum = headers.keys();
while (enum.hasMoreElements()) {
String name = (String) enum.nextElement();
String value = (String) headers.get(name);
con.setRequestProperty(name, value);
</HttpMssage>
<Code used to Read the Response.>
URL url = new URL(getDocumentBase(),"/ccls/test/delay.jsp");
HttpMessage msg = new HttpMessage(url);
InputStream in = msg.sendGetMessage(null);
char[] buff = new char[2048];
int bytesRead;
int ch;
StringBuffer sbtextbox = new StringBuffer("");
DataInputStream data = new DataInputStream(
new BufferedInputStream(in));
String line;
while ((line = data.readLine()) != null) {
sbtextbox.append(line+"\r\n");
</Code used to Read the Response.>
</CODE>
Can anybody suggest what should be the possible reasons and any workaround for
it?

Increase "HungServerRecoverSecs"(default 300 seconds) in your iisproxy.ini.
Jong
"TejoKiran" <[email protected]> wrote:
>
Hi ,
Iam using an Applet (under JRE 1.3.0).
Iam trying to send a Http Request using URL Connection.
It is working fine . However, if the response time of the server is more
than
3 minutes ,
the Response is not coming back to the the Applet and it is in a loop
trying to
read from the Server.
I have observed that the request is sent to the server and it is processed
successfully.
Then , I tried to call this sample JSP from the Applet.
<CODE : delay.jsp>
<%@ page language="java" import="java.util.*"%>
<%
System.out.println("<START>");
out.println((new Date()).toString());
System.out.println((new Date()).toString());
long cTime;
cTime = System.currentTimeMillis();
long dTime = cTime;
while(true) {
long dif = System.currentTimeMillis() - cTime;
if(dif > (15*60*1000))
break;
if((System.currentTimeMillis() - dTime) > (2*60*1000)) {
out.println("2 Minutes");
out.flush();
System.out.println("2 Minutes");
dTime = System.currentTimeMillis();
System.out.println((new Date()).toString());
out.println((new Date()).toString());
System.out.println("<END>");
%>
</CODE>
Because , I was flushing the data after every 2 minutes , it worked fine
This one worked with WebLogic 5.1 when accessing the Weblogic server
directly
. Like
http://IP:7001/ccls/test/applet.jsp (This JSP downloads the Applet under
JRE1.3)

Similar Messages

  • Token time-out through a federation chain.

    I have a RP connected to ADFS and then the ADFS uses federation to go through a chain of R-STS to the IDP.
    Just wondering what the rules around token time-out are?
    If the RP token times out it will go back to ADFS for a new token. If the ADFS token time-out is less than the RP token time-out, then does ADFS pass this to the preceding one in the chain and that checks its token time-out and (if timed out) pass back upstream
    potentially all the way to the IDP?
    If one of the upstream R-STS had not timed out, would it simply re-mint the token at that level? I assume that it would need to store the token information that it received from its upstream partner in order to do this? perhaps in a cookie? Problem is I
    can't see any sign of these?
    WS-Fed is used all the way up.
    I can't find any articles that define the correct behaviour hence the question.

    WS-Fed CP chains became unpopular when Office365 did not support them :-). Yes, and there is a difference between SAML1 and SAML 2 Token handling. If all intermediaries can be controlled, then it is probably possible to do it at the Issuers. 
    However, my conservative/defensive conclusion is that it is best organized at the RP (or in traditional SAML speak: SP). Often with the Sliding expiration.
    Sliding expiration is documented in his first WIF book by Vittorio. And later enhanced in the second edition of the Patterns and Practices book. The last book also explains how to do it in SharePoint! It is possible and documented, contrary to common believe.
    Of course I totally agree with Dominick that there should be some upper limit to validity. Especially in case of compromised tokens. You don't want them to be valid really "forever".
    Paul Lemmers

  • Time out Through MAXTRANTIME in tuxedo 8.1

    Request all to share inputs on MAXTRANTIME parameter introduced in Tuxedo 8.1. I am using Tuxedo 8.1 and tried to use MAXTRANTIME but effect/behavior is not clear to me from Tuxedo 8.1 documentation.
    We use global transaction ( time out used in tpbegin is 0 - i.e. no time outs) and MAXTRANTIME is not taking in to effect and Transaction are not getting time out. I can not verify that as i am not clear of effect/behavior.
    Thanks,
    Ajeet

    Ajeet,
    There are currently no known issues with the MAXTRANTIME feature.
    Verify that you have executed tmloadcf after updating the UBBCONFIG file and
    run tmunloadcf to make sure that the TUXCONFIG file updated is the one being
    used by your application.
    The tmadmin subcommand "verbose" followed by "printtrans" can be used to
    show the time remaining until timeout for all currently active transactions.
    Remember that transaction timeout can occur up to SCANUNIT seconds after the
    specified time due to the timing of the BBL scan.
    Timeout will be detected when the next ATMI call is made on behalf of the
    transaction, but timeout does not send a signal or other notification to
    processes involved in the transaction. A server which is executing
    long-running database operations or other long-running application code will
    continue to operate on a transaction until an ATMI call is made which
    detects the transaction timeout.
    If none of the above suggestions solves the problem, then you'll need to
    open a case with customer support.
    Ed
    <AJEET TEWARI> wrote in message news:[email protected]..
    Request all to share inputs on MAXTRANTIME parameter introduced in Tuxedo
    8.1. I am using Tuxedo 8.1 and tried to use MAXTRANTIME but effect/behavior
    is not clear to me from Tuxedo 8.1 documentation.
    We use global transaction ( time out used in tpbegin is 0 - i.e. no time
    outs) and MAXTRANTIME is not taking in to effect and Transaction are not
    getting time out. I can not verify that as i am not clear of
    effect/behavior.
    Thanks,
    Ajeet

  • WSMA Max Response time out issue ?

    Hi,
         I am requsting an mediatrace command from the application to router via WSMA.During that I gotta error "Max Response time 10 seconds exceed"
         For that I dont find listener schema for setting the timeout event.In some article I found MaxWait is the tag where we can set timeout value.But could      not find the tag in our schema ? Anyone please tell me how to fix this ?

    Finally I found it myself  .... Actually maxWait is the attribute of execCLI tag . That works well
    This link is really helpfull : http://developer.cisco.com/c/document_library/get_file?groupId=103519&folderId=2303210&name=DLFE-69112.pdf

  • Cannot transfer response group calls that are parked and time out

    Hello all,
    Need your help with a peculiar issue. The deployment consists on one Lync Server 2013 Front End server acting also as mediation server. Communication with the PSTN is through a ITSP (no SBC on place).
    There is a response group created for the main line (the office's published number) that plays a greeting and then it sends the call to a queue (in attendant mode). Any user available picks up the call, puts it on park and IM'es the final recipient (which
    uses any phone to pick up the call). Everything works as expected, except when the call in the parking lot times out, it rings back on the client that picked the call first, but when he picks it up, it doesn't show the options to transfer the call. The top
    of the call window says "Connecting call...", but the call is connected and the person is able to talk with the person that was on parking.
    I have reviewed the client's log file using Snooper, and there is not errors. In the CDR records, everything seems normal.
    The curious thing is that if the call goes directly to the user (using his DID or on a Lync to Lync call) and the calls is parked and it times out, it connects normally, and the user can transfer the call or put it on parking again. The problem happens only
    whit calls that are pick up from the response group.
    Any ideas?
    Patricio Carpio.

    Please check if this issue happens with other Response Group agent.
    As the status “Connecting call” exists, this may cause the option “transfer the call” missing.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • No Ranging Response received - T3 time-out

    Hi everyone, Our internet connection often drops, sometimes the modem reboots himself sometimes we are disconnected only for a few seconds.It happens 2 to 3 times per hour (and its getting worse this days, maybe because of the heat ?) We already had this problem last summer and a technician came and changed something outside, it was not reall better after that but we had other stuff to deal with. Before contacting the support I'd like to know if tehre is something obviously wrong wth the numbers below. Here are the logs and the connection infos. No Ranging Response received - T3 time-out;CM-MAC=b8:9b:c9:74:d5:b0;CMTS-MAC=00:13:5f:04:1c:9f;CM-QOS=1.1;CM-VER=3.0; 2015/06/28 16:09:24 critical
    MIMO Event MIMO: Stored MIMO=-1 post cfg file MIMO=-1;CM-MAC=b8:9b:c9:74:d5:b0;CMTS-MAC=00:13:5f:04:1c:9f;CM-QOS=1.1;CM-VER=3.0; 2015/06/28 16:06:16 warning
    No Ranging Response received - T3 time-out;CM-MAC=b8:9b:c9:74:d5:b0;CMTS-MAC=00:13:5f:04:1c:9f;CM-QOS=1.1;CM-VER=3.0; 2015/06/28 16:06:01 critical
    Unicast Ranging Received Abort Response - initializing MAC;CM-MAC=b8:9b:c9:74:d5:b0;CMTS-MAC=00:13:5f:04:1c:9f;CM-QOS=1.1;CM-VER=3.0; 2015/06/28 16:05:36 critical
    No Ranging Response received - T3 time-out;CM-MAC=b8:9b:c9:74:d5:b0;CMTS-MAC=00:13:5f:04:1c:9f;CM-QOS=1.1;CM-VER=3.0; 2015/06/28 16:05:26 critical
    Unicast Ranging Received Abort Response - initializing MAC;CM-MAC=b8:9b:c9:74:d5:b0;CMTS-MAC=00:13:5f:04:1c:9f;CM-QOS=1.1;CM-VER=3.0; 2015/06/28 16:05:26 critical
    Unicast Maintenance Ranging attempted - No response - Retries exhausted;CM-MAC=b8:9b:c9:74:d5:b0;CMTS-MAC=00:13:5f:04:1c:9f;CM-QOS=1.1;CM-VER=3.0; 2015/06/28 16:05:16 critical
    Ranging Request Retries exhausted;CM-MAC=b8:9b:c9:74:d5:b0;CMTS-MAC=00:13:5f:04:1c:9f;CM-QOS=1.1;CM-VER=3.0; 2015/06/28 16:05:16 critical
    No Ranging Response received - T3 time-out;CM-MAC=b8:9b:c9:74:d5:b0;CMTS-MAC=00:13:5f:04:1c:9f;CM-QOS=1.1;CM-VER=3.0;Downstream Channel Bonding Value
    Index 1 2 3 4
    Lock Status Locked Locked Locked Locked
    Frequency 645.002 MHz 639.000 MHz 650.999 MHz 657.000 MHz
    SNR 37.936 dB 37.936 dB 37.936 dB 38.605 dB
    Power 1.300 dBmV 1.842 dBmV 1.267 dBmV 1.751 dBmV
    Modulation 256 QAM 256 QAM 256 QAM 256 QAMUpstream Channel Bonding Value
    Index 1 2 3 4
    Lock Status Locked Locked Locked Locked
    Frequency 23.000 MHz 36.100 MHz 29.600 MHz 14.400 MHz
    Symbol Rate 5120 KSym/sec 5120 KSym/sec 5120 KSym/sec 5120 KSym/sec
    Power Level 46.5000 dBmV 47.0000 dBmV 46.5000 dBmV 45.5000 dBmV
    Modulation 64QAM 64QAM 64QAM 64QAM
    Channel ID 3 1 2 4Thanks for your help, regards

    The stats as read at the modem level at that moment in time were o/k but there are three additional signal stats which can't be read by the modem. They can only be read from their end by them polling the CMTS (Cable Modem Termination System) at the local headend facility.
    They are the 'Upstream Receive Power Level', the 'uSNR' (upstream Signal To Noise Ratio), and the "ICFR" (In Channel Frequency Response). These are as equally important in diagnosing connectivity issues as are the modem's stats.
    You can call in and ask what these figures are. The Upstream Receive Power Level should fall within the range of -2dB to +2dB with 0dB being in the middle and perfect.
    The Upstream SNR should be least 31dB, and the higher it is the better.
    The ICFR should be no higher than 2 dB.
    You could have an intermittent noise ingress issue in only the upstream channel(s) / return path only somewhere.
    They will be able to see whether or not everything is in the green zone and also see a history plot for the modem.

  • Time Out Error while waiting for response from DB Procedure

    Hi Gurus,
    We are encountering a problem in our production environment. The system is implemented using AIA foundation pack 2.5 on SOA suite 10.1.3.4.
    We have a BPEL process A which calls an ESB Service which inturn calls BPEL Process B. In process B, we have a DB procedure call which waits for a response from
    a DB procedure. The procedure doesn't reply on time and Process B remains in waiting state to get the response from DB Procedure wherein Process A errors out by showing as "Timed Out Error".
    This issue is intermittent and we have already increased transaction-time outs in transaction-manager.xml to 7200 and ejb-orion-jar.xml to 3600.
    When we encountered this problem, we found out that there are too many connections open and when we bounced the server, everything was restored to nornal but as it is a production env. we can't do it over and over again.
    We have 2 nodes each having max connections as 100 and min. as 0.
    Is there a limit to max no. of connections or can we do something in DB side to ensure that it doesn't happen again ?
    Please suggest.
    Thanks,
    Vikas Manchanda

    Hi Anuj,
    I don't think it is a problem with connection reaching to max numbers because this issue is coming on very intermittent basis.we don't have any other processes using
    the same connection pool and this issue is coming even when there is no load on the server. This is recent trace from the production environment. Also i don't have any thing called "abandoned-connection-pool" in my data-sources.xml.
    <2011-07-07 13:09:16,101> <ERROR> <default.collaxa.cube> <BaseCubeSessionBean::logError> Error while invoking bean "delivery": Waiting for response has timed out. The conversation id is null. Please check the process instance for detail.
    com.oracle.bpel.client.delivery.ReceiveTimeOutException: Waiting for response has timed out. The conversation id is null. Please check the process instance for detail.
    at com.collaxa.cube.ejb.impl.DeliveryBean.request(DeliveryBean.java:109)
    at sun.reflect.GeneratedMethodAccessor113.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:592)
    at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.JAASInterceptor$1.run(JAASInterceptor.java:31)
    at com.evermind.server.ThreadState.runAs(ThreadState.java:693)
    at com.evermind.server.ejb.interceptor.system.JAASInterceptor.invoke(JAASInterceptor.java:34)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:50)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
    at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(StatelessSessionEJBObject.java:87)
    at DeliveryBean_RemoteProxy_4bin6i8.request(Unknown Source)
    at com.collaxa.cube.ws.soap.oc4j.SOAPRequestProvider.processNormalOperation(SOAPRequestProvider.java:451)
    at com.collaxa.cube.ws.soap.oc4j.SOAPRequestProvider.processBPELMessage(SOAPRequestProvider.java:274)
    at com.collaxa.cube.ws.soap.oc4j.SOAPRequestProvider.processMessage(SOAPRequestProvider.java:120)
    at oracle.j2ee.ws.server.provider.ProviderProcessor.doEndpointProcessing(ProviderProcessor.java:956)
    at oracle.j2ee.ws.server.WebServiceProcessor.invokeEndpointImplementation(WebServiceProcessor.java:349)
    at oracle.j2ee.ws.server.provider.ProviderProcessor.doRequestProcessing(ProviderProcessor.java:466)
    at oracle.j2ee.ws.server.WebServiceProcessor.processRequest(WebServiceProcessor.java:114)
    at oracle.j2ee.ws.server.WebServiceProcessor.doService(WebServiceProcessor.java:96)
    at oracle.j2ee.ws.server.WebServiceServlet.doPost(WebServiceServlet.java:194)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
    at oracle.security.jazn.oc4j.JAZNFilter$1.run(JAZNFilter.java:400)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
    at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:414)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:623)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)
    Caused by: com.oracle.bpel.client.delivery.ReceiveTimeOutException: Waiting for response has timed out. The conversation id is null. Please check the process instance for detail.
    at com.collaxa.cube.engine.delivery.DeliveryHandler.initialRequestAnyType(DeliveryHandler.java:576)
    at com.collaxa.cube.engine.delivery.DeliveryHandler.initialRequest(DeliveryHandler.java:465)
    at com.collaxa.cube.engine.delivery.DeliveryHandler.request(DeliveryHandler.java:134)
    at com.collaxa.cube.ejb.impl.DeliveryBean.request(DeliveryBean.java)
    Please suggest.
    Thanks,
    Vikas Manchanda

  • Whenever i try to update my iphone through the itunes it gives the error of server connetion time out

    whenever i tried to update my iphone through itunes it gives the server connection time out error and i am unable to update my software throught the iphone

    Hello ujl,
    The articles linked below provides steps that can help get your iPhone restored.
    Resolve iOS update and restore errors in iTunes
    http://support.apple.com/kb/TS1275
    If you can't update or restore your iOS device
    http://support.apple.com/kb/HT1808
    Cheers,
    Allen

  • LMS 3.2 SP1 - Syslog Report times out / CW14: NO HTTP response

    Hi,
    in Device Center I can´t start the Syslog Report, it opens a new Browser window and times out.
    If I start the "Device Troubleshooting" from the Device Center, all checks are successful. Just the check "Syslog Message" show the error: CW14: NO HTTP response from Servername
    I have LMS 3.2 SP 1 installed
    I already re set the System Identity User and restarted the daemon, no success.
    What should I check? Is it a known problem ?
    Best regards,
    Patrick
    UP

    Hey,
    i maybe found the failure.
    In the dir "CSCOpx\databases\rmeng" the following files are very big.
    So I started a immediate syslog purge job, but it failed.
     [ Thu Jul 28  09:00:33 CEST 2011 ],INFO ,[main],Starting purge job 5349
     [ Thu Jul 28  09:00:33 CEST 2011 ],INFO ,[main], Its a force Purge job
     [ Thu Jul 28  09:02:21 CEST 2011 ],ERROR,[main],Drop table failed:SQL Anywhere Error -210: User 'DBA' has the row in 'SYSLOG_20110627' locked 8405 42W18
     [ Thu Jul 28  09:02:21 CEST 2011 ],ERROR,[main],Failed to purge syslogs
     [ Thu Jul 28  09:02:22 CEST 2011 ],ERROR,[main],Purge not successful
    Can anyone say me, how to fix it?
    Best regards
    Patrick

  • HT204380 I have done all the above. I am in Germany using an iPad 2, trying to call an iPad 2 in the UK. My IPad goes through the call and then times out. I have been on the phone to the receiver at the time so know they had their iPad on.

    I have done all the above. I am in Germany using an iPad 2, trying to call an iPad 2 in the UK. My IPad goes through the call and then times out. I have been on the phone to the receiver at the time so know they had their iPad on.

    What do you mean that you can't "call" an iPad in the UK??  That doesn't particularly make sense.  You can email to an iPad or text them, but the iPad is not a phone, so how do you expect to "call" them??
    Hope this helps

  • How to get the number and response time of HTTP request through Weblogic?

    hi,
    does anybody know how to get the HTTP request information through Weblogic server, such as the number of HTTP request in 1 min and the average response time of request in 5 mins ?
    Or is there anyway i can do it through monitoring and get these data then? If so, please help tell me.
    Thanks in advance
    BTW, we don't have the 3rd-party monitoring tool here.

    Hi,
    tables: usr02, usr41.
    data: OPCODE_MODE_COUNT(1) TYPE X VALUE 3,
          modes like sy-index,
          u_MODES LIKE MODES.
    select * from usr02.
      select * from usr41 where BNAME = usr02-bname.
        CALL 'ThUsrInfo' ID 'OPCODE' FIELD OPCODE_MODE_COUNT
          ID 'TID' FIELD usr41-TERMID
          ID 'MODES' FIELD MODES.
        IF SY-SUBRC = 0.
          u_MODES = u_MODES + MODES.
        ENDIF.
      endselect.
      if sy-subrc = 0.
        write:/ usr02-bname, u_MODES.
      endif.
      clear u_modes.
    endselect.

  • ACE 4710: Find out the response time of a real server

    Hi to everyone,
    I have a couple of ACE 4710 and I need to find out what is the response time of a real server.
    Is there a way for this?
    Thank you for any answer!
      giorgio romano

    Hi,
    Kindly add the following line in your serverfarm configuration:
    predictor response syn-to-synack
    Suppose your serverfarm looks like this:
    serverfarm host AAA_FARM
    predictor response syn-to-synack
    probe HTTP_PROBE
    probe TCP9001_PROBE
    rserver SC106
    inservice
    rserver SC107
    inservice
    rserver SC108
    inservice
    rserver SC109
    inservice
    rserver SC110
    inservice
    rserver SC111
    inservice
    rserver SC112
    inservice
    rserver SC113
    inservice
    rserver SC114
    inservice
    rserver SC120
    inservice
    rserver SC131
    inservice
    And then use the following command to see the average response time from your rserver as follows:
    ACE1/prod# show serverfarm AAA_FARM detail
    serverfarm     : AAA_FARM, type: HOST
    total rservers : 11
    active rservers: 11
    description    : ServerFarm AAA
    state          : ACTIVE
    predictor      : RESPONSE
    method            : syn-to-synack
    samples           : 8
    failaction     : -
    back-inservice    : 0
    partial-threshold : 0
    num times failover       : 0
    num times back inservice : 0
    total conn-dropcount : 0
    Probe(s) :
    HTTP_PROBE,  type = HTTP
    TCP9001_PROBE,  type = TCP
    ----------connections-----------
    real                  weight state        current    total      failures
    ---+---------------------+------+------------+----------+----------+---------
    rserver: SC106
    x.x.x.x.:0        8      OPERATIONAL  2          1125       0
    max-conns            : 4000000   , out-of-rotation count : 0
    min-conns            : 4000000
    conn-rate-limit      : -         , out-of-rotation count : -
    bandwidth-rate-limit : -         , out-of-rotation count : -
    retcode out-of-rotation count : -
    load value           : 0
    average response time (usecs) : 81   ----> thats what you might be looking for
    From other day :
    rserver: SC114
    x.x.x.x:0        8      OPERATIONAL  70         10903      2
    max-conns            : 4000000   , out-of-rotation count : 0
    min-conns            : 4000000
    conn-rate-limit      : -         , out-of-rotation count : -
    bandwidth-rate-limit : -         , out-of-rotation count : -
    retcode out-of-rotation count : -
    load value           : 0
             average response time (usecs) : 1334                       ----> thats what you might be looking for
    For Serverfarm BBB_FARM
    serverfarm     : BBB_FARM, type: HOST
    total rservers : 1
    active rservers: 1
    description    : ServerFarm BBB
    state          : ACTIVE
    predictor      : RESPONSE
    method            : syn-to-synack
    samples           : 8
    failaction     : -
    back-inservice    : 0
    partial-threshold : 0
    num times failover       : 1
    num times back inservice : 1
    total conn-dropcount : 0
    Probe(s) :
    ----------connections-----------
    real                  weight state        current    total      failures
    ---+---------------------+------+------------+----------+----------+---------
    rserver: SC208
    x.x.x.x:0        8      OPERATIONAL  0          0          0
    max-conns            : 4000000   , out-of-rotation count : 0
    min-conns            : 4000000
    conn-rate-limit      : -         , out-of-rotation count : -
    bandwidth-rate-limit : -         , out-of-rotation count : -
    retcode out-of-rotation count : -
    load value           : 0
             average response time (usecs) : 0   ----> thats what you might be looking for
    Use more detials for response predictor:
    http://www.cisco.com/en/US/docs/app_ntwk_services/data_center_app_services/ace_appliances/vA3_1_0/configuration/slb/guide/rsfarms.html#wp1068831
    Configuring the Application Response Predictor
    To instruct the ACE to select the server with the lowest average response time for the specified response-time measurement based on the current connection count and server weight (if configured), use the predictor response command in server farm host or redirect configuration mode. This predictor is considered adaptive because the ACE continuously provides feedback to the load-balancing algorithm based on the behavior of the real server.
    To select the appropriate server, the ACE measures the absolute response time for each server in the server farm and averages the result over a specified number of samples (if configured). With the default weight connection option configured, the ACE also takes into account the server's average response time and current connection count. This calculation results in a connection distribution that is proportional to the average response time of the server.
    The syntax of this command is as follows:
    predictor response {app-req-to-resp | syn-to-close | syn-to-synack}[samples number]
    The keywords and arguments are as follows:
    •app-request-to-resp—Measures the response time from when the ACE sends an HTTP request to a server to the time that the ACE receives a response from the server for that request.
    •syn-to-close—Measures the response time from when the ACE sends a TCP SYN to a server to the time that the ACE receives a CLOSE from the server.
    •syn-to-synack—Measures the response time from when the ACE sends a TCP SYN to a server to the time that the ACE receives the SYN-ACK from the server.
    •samples number—(Optional) Specifies the number of samples over which you want to average the results of the response time measurement. Enter an integer from 1 to 16 in powers of 2. Valid values are 1, 2, 4, 8, and 16. The default is 8.
    For example, to configure the response predictor to load balance a request based on the response time from when the ACE sends an HTTP request to a server to when the ACE receives a response back from the server and average the results over four samples, enter:
    host1/Admin(config)# serverfarm SFARM1
    host1/Admin(config-sfarm-host)# predictor response app-req-to-resp
    samples 4
    To reset the predictor method to the default of round-robin, enter:
    host1/Admin(config-sfarm-host)# no predictor
    To configure an additional parameter to take into account the current connection count of the servers in a server farm, use the weight connection command in server farm host predictor configuration mode. By default, this command is enabled. The syntax of this command is as follows:
    weight connection
    For example, enter:
    host1/Admin(config)# serverfarm SF1
    host1/Admin(config-sfarm-host)# predictor response app-request-to-resp
    samples 4
    host1/Admin(config-sfarm-host-predictor)# weight connection
    To remove the current connection count from the calculation of the average server response time, enter:
    host1/Admin(config-sfarm-host-predictor)# no weight connection
    You can use threshold milliseconds parameter which is optional Specifies the required minimum average response time for a server. If the server response time is greater than the specified threshold value, the ACE removes the server from the load-balancing decision process (takes the server out of service).
    Enter an integer from 1 to 300000 milliseconds (5 minutes). The default is no threshold (servers are not taken out of service).
    In case if you have measures the response time from  when the ACE sends a TCP SYN to a server to the time that the ACE receives a CLOSE from the server  use syn-to-close      (already discussed previously)
    If you have to measures the response time from when the ACE sends a TCP SYN to a server to the time that the ACE receives the SYN-ACK from the server use syn-to-synack   (already discussed previously)
    SAMPLES parameter is optional and  specifies the number of samples that you want to average from the results of the response time measurement and response time is used to select the server with the lowest response time for the requested response-time measurement. If you do not specify a response-time measurement method, the ACE uses the HTTP app-req-to-response method.
    Whenever a server's load reaches zero, by default, the ACE uses the autoadjust feature to assign a maximum load value of 16000 to that server to prevent it from being flooded with new incoming connections. The ACE periodically adjusts this load value based on feedback from the server's SNMP probe and other configured options.
    Using the least-loaded predictor with the configured server weight and the current connection count option enabled, the ACE calculates the final load of a real server as follows:
    final load = weighted load × static weight × current connection count
    where:
    •weighted load is the load reported by the SNMP probe
    •static weight is the configured weight of the real server
    •current connection count is the total number of active connections to the real server
    The ACE recalculates the final load whenever the connection count changes, provided that the (config-sfarm-host-predictor) weight connection command is configured. If the (config-sfarm-host-predictor) weight connection command is not configured, the ACE updates the final load when the next load update arrives from the SNMP probe.
    If two servers have the same lowest load (either zero or nonzero), the ACE load balances the connections between the two servers in a round-robin manner.
    HTH
    Plz rate if u find it useful.
    Sachin

  • My iPhone goes through most of the steps to synch with iTunes and then stops.  iTunse eventually times out on the synch.  How do I fix this ?

    When I try to synch my iPhone 4 with iTunes - both at the latest code levels - the synch goes normally until the last stage where I get the message Finishing sync.   It nevers completes.  Eventually it times out and states that the iPhone is not responding.  On the phone the sync icon has gone away so the iPhone thinks that it is done.

    More information.  During the synch process this last time it moved through the first 5 steps fine.  At some point during the "Waiting for items to copy" the iPhone stopped showing the sync icon.

  • 3253 error code, times out Downloads through itunes on mac

    I have been trying to download the iphone 4 upgrade and some other larger files like movies through itunes and it is soooo slow and always times out or show an error 3253 message.  I have searched for a remedy but only find things in regards to windows and i'm on my mac. I'm disconnected my modem/router and reconnected, rebooted, etc. but still having problems.  Help! My iphone downloads movies faster than itunes does.  The songs are not a problem.

    Changing my DNS settings worked for me (3253 errors on my MBP). I followed the instructions here:
    http://appletoolbox.com/2010/09/itunes-10-the-network-connection-was-reset-fix/
    Hope that helps!

  • I can see my Canon MP600 usb connected to Airport Express through Bonjour on my Windows XP. But, when installed by Bonjour, the printor time-out and can't print anything. Any idea what to do?

    I can see my Canon MP600 usb connected to Airport Express through Bonjour on my Windows XP. But, when installed by Bonjour, the printor time-out and can't print anything. Any idea what to do?

    Thanks for the quick reply.
    So am I correct in saying trying to utilise the Airport Express to access the printer over the network was a wasted effort due to the latest iOS? I had read up on the express before purchase and believed that was one of it's main purposes.
    Thanks again for the help.

Maybe you are looking for