Css11501 - SSl - Speeding up transaction time

HI
We are currently using a css 11501, terminating ssl to a web oracle system.
During the transaction the user may click on a link which is a link to the forms server. Various jar files are then uploaded including Jinitiator plug in.
The users are finding this rather slow ( uploading jinitiator plug-in / jar files), testing has revealed it is taking double the time, than if the user was connecting to the server directly ( Here it would be in HTTP only).
Is caching the way forward?
Which products would be best.
Can anything be done with the css 11501.
Would there be any difference in using a css11503?
Bear in mind the user transaction is ssl.
Any thoughts would be appreciated.

11503 and 11501 would have the same performance.
Using a cache would help if the problem was the server.
Apparently this is not the case here.
Did you capture a sniffer trace to see if ther was anything abnormal during the file transfer.
Very low packet size ?
Long delay between packets ?
Regards,
Gilles.

Similar Messages

  • Transaction Time out error in EJB while using Websphere Application Server.

    Hi All,
    I am using Websphere Application server and getting the transaction time out error. By default the transaction time out is 120 second. I am using session bean for doing a set of transaction. These set are dynamically generated. Is there any way to set the transaction time out for only this session bean to infinite ?
    Thanks in advance
    Vivek

    Hi,
    According to WAS 6 , every opened connection has to be commited (or rolledback) explicitly (didnt try autocommit) before closing. Even if all you have done with that connection is a SELECT Query.
    This has apparently solved the same problem I was getting. implement it and see whether it helps you.

  • Transaction Time out in BPEL

    Hi All,
    About my issue ,
    A legacy system written in PL/SQL procedures written to process huge chunk of data ( kind of adapter which processes more than 2000 files each invoke updates some tables , which takes around 6 hrs to complete ). and we are trying to invoke those pl/sql procedures to integrate the system with SOA(11G).
    We have developed a BPEL communicating to DB through DBadapter ( invokes the required PL/SQL procedures ).
    All BPELs used are asynchronous processes . wanted to know how the DB Adapter works . is it a good practice to make the BPEL wait for the pl/sql procedure to return (Though BPEL process is a Asynchronous one) .
    Please advice me on this .
    Cheers
    Vamsi

    Vamsi,
    I believe configuring Pick activity will not help in this case. If you are configuring a DB adapter in a BPEL process then between the invoke and DB adapter it is a sync call. So try increasing transaction time out period through admin console and let me know the results.
    Another option is, remove all activities and services from main BPEL after invoke activity (of DB adapter) and create another BPEL and create the removed activities. Create a concurrent program to invoke the PLSQL procedure and at the end of the procedure call the end point url of the second bpel and send the out variables to this bpel.
    Hope this helps
    Thanks

  • Program speeds up System time?

    Hi, im writing an animation program in swing that loads and displays images in a seperate thread. there is a variable sleep time in between display times (because of a timestamp on the image).
    the wierd thing is that when I output the timestamp to a string after sleeping for the appropriate time per frame, the time seems to be going faster. I thought this was just an internal bug, but when I go to http://www.time.gov/ the applet there shows the time being sped up while my program is running.
    Is there a known issue with threads and sleeping that affects the system time? thanks

    Huh?
    "speeds up system time"? "time seems to be going faster"? Man, if you can make time go faster, let me know, because this Monday has already lasted several weeks.
    Seriously, what are you saying? You tell it to sleep for 100 ms but it sleeps less? Or more?
    If it's that the time is later than you expect when it wakes up, then that's no surprise, since sleep only guarantees that it will sleep at least that long (unles interrupted). It could sleep longer, depending on the vagaries of your OS's and VM's schedulers.
    Or are you saying that after 10 seconds of real wall clock time have passed, your system clock has advanced 12 seconds?

  • Transaction time out for an single ejb

    Hi,
    I have one ejb which need to run for long time.
    Did a quick search on the forum and find out that you can modify data-source.xml and server.xml to increase the time out period.
    But this is a "global" setting which will affect all the ejbs in the application.
    Is there a setting where only one ejb's transaction time-out can be specified?
    Thanks in advance!
    Young

    What is the exact error code? I.e. the ORA-nnnn error code.
    It is not possible to diagnose a problem if the actual problem is not known. Responders are guessing at what the problem is and offering solutions.. and these could be very far of the mark.

  • How to extend transaction time on EJBSessionBean method?

    Hi,
    I am importing some data from XML files, and for that I have several methods in a SessionBean. The import may take several minutes, so with larger sets of data I get "Transaction time out" error. I know I can set transactions to bean-managed (haven't tried it yet, though), but is there a way to set a single method's transaction (in a container-managed-transaction bean) to take all the time it needs?
    Thanks,
    Pedja

    Ok now it is even worse ir seems to have stopped ringing totally my phone is updated using the latest version of IOS and the ringer is on full I am missing all of my calls!!!! Is there anyone that can help??

  • Transaction aborted (possibly due to transaction time out) - Question

    This one is driving me insane!
    Bellow you will find the code, the descriptor stuff and the exception. The code belongs to a CMP EJB using CMT (transactions). This gets called from a session bean. Please help.
    Here is the code:
    public Object ejbCreate( String id )
         throws CreateException {
         s_logger.debug( "ejbCreate()" ); // this prits
         //setId( id );
         return null;
    public void ejbPostCreate( String id )
         throws CreateException {
         s_logger.debug( "ejbPostCreate()" ); // this also prints
    here is descriptor stuff:
    <container-transaction>
    <method>
    <ejb-name>AgentBean</ejb-name>
    <method-name>*</method-name>
    </method>
    <trans-attribute>Required</trans-attribute>
    </container-transaction>
    here is the !@#$ exception (sorry been tracing this one for hours):
    RemoteException occurred in server thread; nested exception is:
    java.rmi.RemoteException: Transaction aborted (possibly due to transaction time out).; nested exception is: javax.transaction.RollbackException: Transaction marked for rollback; nested exception is:
    javax.transaction.RollbackException: Transaction marked for rollback
    java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:
    java.rmi.RemoteException: Transaction aborted (possibly due to transaction time out).; nested exception is: javax.transaction.RollbackException: Transaction marked for rollback; nested exception is:
    javax.transaction.RollbackException: Transaction marked for rollback
    java.rmi.RemoteException: Transaction aborted (possibly due to transaction time out).; nested exception is: javax.transaction.RollbackException: Transaction marked for rollback; nested exception is:
    javax.transaction.RollbackException: Transaction marked for rollback
    javax.transaction.RollbackException: Transaction marked for rollback
    <<no stack trace available>>

    It usually means that you're doing something which creates a loop in your locking. Something like setting a value in each instance from an update method of one of the instances. Your posted code doesn't seem to be the trouble, but I could be missing something.
    Success,
    S.

  • Transaction time out

    Hi,
    I have a stateless session bean invoking methods on an entity bean reference.
    When 2 methods are invoked using the home reference, I get the following error
    Start server side stack trace:
    javax.transaction.TransactionRolledbackException: Transaction timed out after
    64 seconds
    Name=[EJB com.aol.quack.usabilityTools.recTuningBeans.UsabilityReportBean.createFreqReport(java.lang.Str
    e=active),properties=({weblogic.transaction.name=[EJB com.aol.quack.usabilityTools.recTuningBeans.Usabil
            at weblogic.transaction.internal.TransactionManagerImpl.receiveRequest(TransactionManagerImpl.ja
            at weblogic.rmi.internal.BasicServerRef.dispatch(BasicServerRef.java:153)
            at weblogic.rmi.internal.ServerRequest.sendOneWayRaw(ServerRequest.java:92)
            at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:112)
            at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:253)
            at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:220)
            at weblogic.rmi.internal.ProxyStub.invoke(ProxyStub.java:35)
            at $Proxy79.findRecognitions(Unknown Source)
            at com.aol.quack.usabilityTools.util.FuncLib.processForEachMode(FuncLib.java:190)
            at com.aol.quack.usabilityTools.util.FrequencyReport.generate(FrequencyReport.java:128)
            at com.aol.quack.usabilityTools.recTuningBeans.UsabilityReportBean.createFreqReport(UsabilityRep
            at com.aol.quack.usabilityTools.recTuningBeans.UsabilityReportBean_earfgg_EOImpl.createFreqRepor
            at com.aol.quack.usabilityTools.recTuningBeans.UsabilityReportBean_earfgg_EOImpl_WLSkel.invoke(U
            at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:288)
            at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:93)
            at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:257)
            at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:22)
            at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
            at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    End  server side stack trace
    Does anyone have idea whats wrong? Is it the code?
    The same code works for small tables though.
    Thanks,
    Priya
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    I don't think you can call a stored procedure from a CMP. What i meant was you might try calling a stored
    procedure from a BMP or a Stateless bean if it is only required to get records from the table.
    Shiva.
    Priya wrote:
    Hi,
    How do I get stored procedures to work for container managed bean?
    Priya
    Shiva Paranandi <[email protected]> wrote:
    If it is failing for large data means you need to have an alternate solution
    like getting a stored procedure to
    pass the results or doing some caching. Or maybe you might even try splitting
    the obtained data so your
    transactions might spawn for less than 60 seconds. Worst case increase
    the time. Also check out what is the
    time it takes to get the same data through a sql plus. Check if there
    is a huge amount of time difference and
    then you might want to see where this time difference is coming from.
    Shiva.
    Priya wrote:
    Hi,
    I am using CMP for the entity beans and have already set the timeoutvalue to
    60 secs.
    Also, this works for small tables but fails for big ones while calling2 finder/home
    methods consecutively.
    Priya
    Shiva Paranandi <[email protected]> wrote:
    Does the transaction only involve getting records from the table?
    You
    can change the transaction time out
    value in your ejb's or in the console of WLS. Hope you are using PreparedStatements
    in your SQL code. You
    might also want to turn on your JDBC log to check out what might behappening.
    Shiva.
    Priya wrote:
    Hi,
    I have a stateless session bean invoking methods on an entity
    bean
    reference.
    When 2 methods are invoked using the home reference, I get the followingerror
    Start server side stack trace:
    javax.transaction.TransactionRolledbackException: Transaction timedout after
    64 seconds
    Name=[EJB com.aol.quack.usabilityTools.recTuningBeans.UsabilityReportBean.createFreqReport(java.lang.Str
    e=active),properties=({weblogic.transaction.name=[EJB com.aol.quack.usabilityTools.recTuningBeans.Usabil
    at weblogic.transaction.internal.TransactionManagerImpl.receiveRequest(TransactionManagerImpl.ja
    at weblogic.rmi.internal.BasicServerRef.dispatch(BasicServerRef.java:153)
    at weblogic.rmi.internal.ServerRequest.sendOneWayRaw(ServerRequest.java:92)
    at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:112)
    at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:253)
    at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:220)
    at weblogic.rmi.internal.ProxyStub.invoke(ProxyStub.java:35)
    at $Proxy79.findRecognitions(Unknown Source)
    at com.aol.quack.usabilityTools.util.FuncLib.processForEachMode(FuncLib.java:190)
    at com.aol.quack.usabilityTools.util.FrequencyReport.generate(FrequencyReport.java:128)
    at com.aol.quack.usabilityTools.recTuningBeans.UsabilityReportBean.createFreqReport(UsabilityRep
    at com.aol.quack.usabilityTools.recTuningBeans.UsabilityReportBean_earfgg_EOImpl.createFreqRepor
    at com.aol.quack.usabilityTools.recTuningBeans.UsabilityReportBean_earfgg_EOImpl_WLSkel.invoke(U
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:288)
    at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:93)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:257)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:22)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    End  server side stack trace
    Does anyone have idea whats wrong? Is it the code?
    The same code works for small tables though.
    Thanks,
    Priya
    > >                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Transaction time out after 300 seconds..

    Hi guys,
    I have very intersting problem. I get transaction time out exception after 300 seconds. I use WLP8.1 SP3. I get this when I try to add a new portlet using admin tool
    to home page (which is customized by many users)
    Here is the error msg:
    <weblogic> <> <BEA-415037> <PortalAdminInstanceManager.addPlaceableToPageInstance() -- java.rmi.RemoteException: EJB Exception: ; nested exception is:
    javax.ejb.EJBException: SQL Error while trying to getLayoutDefinition on 2004: SQL [select LAY.MARKUP_DEFINITION_ID, LAY.INTERSECTION_ID, PL.PLACEHOLDER_DEFINITION_ID, PL.MARKUP_DEFINITION_ID, PL.LAYOUT_LOCATION, PL.INTERSECTION_ID, LAY.ICON_URI, LAY.HTML_LAYOUT_URI, LAY.WEBAPP_NAME, LAY.LAYOUT_FILE, LAY.IS_LAYOUT_FILE_DELETED from PF_LAYOUT_DEFINITION LAY, PF_PLACEHOLDER_DEFINITION PL where LAY.LAYOUT_DEFINITION_ID = ? and PL.LAYOUT_DEFINITION_ID = LAY.LAYOUT_DEFINITION_ID] database error code [0] SQL state [null] 040.; nested exception is: java.sql.SQLException: The transaction is no longer active - status: 'Marked rollback. [Reason=weblogic.transaction.internal.TimedOutException: Transaction timed out after 299 seconds
    Name=[EJB                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Hi guys,
    I have very intersting problem. I get transaction time out exception after 300 seconds. I use WLP8.1 SP3. I get this when I try to add a new portlet using admin tool
    to home page (which is customized by many users)
    Here is the error msg:
    <weblogic> <> <BEA-415037> <PortalAdminInstanceManager.addPlaceableToPageInstance() -- java.rmi.RemoteException: EJB Exception: ; nested exception is:
    javax.ejb.EJBException: SQL Error while trying to getLayoutDefinition on 2004: SQL [select LAY.MARKUP_DEFINITION_ID, LAY.INTERSECTION_ID, PL.PLACEHOLDER_DEFINITION_ID, PL.MARKUP_DEFINITION_ID, PL.LAYOUT_LOCATION, PL.INTERSECTION_ID, LAY.ICON_URI, LAY.HTML_LAYOUT_URI, LAY.WEBAPP_NAME, LAY.LAYOUT_FILE, LAY.IS_LAYOUT_FILE_DELETED from PF_LAYOUT_DEFINITION LAY, PF_PLACEHOLDER_DEFINITION PL where LAY.LAYOUT_DEFINITION_ID = ? and PL.LAYOUT_DEFINITION_ID = LAY.LAYOUT_DEFINITION_ID] database error code [0] SQL state [null] 040.; nested exception is: java.sql.SQLException: The transaction is no longer active - status: 'Marked rollback. [Reason=weblogic.transaction.internal.TimedOutException: Transaction timed out after 299 seconds
    Name=[EJB                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Speeding up Boot Times

    Hey Guys,
    Just installed my first copy of Arch on my machine. I am loving it so far, especially Pacman, however I would like to see about speeding up the boot time of the machine. This is sort of a generic question but what tips/tricks do you have to speed up boot times on Arch? I'm all about speed and efficiency and it seems like it is taking a little bit longer than it should. I have already skimmed down on interfaces loading on start up, modules that are not really necessary, and killed most of my scripts that run after boot. Suggestions?
    Last edited by Morfir (2011-12-10 18:01:15)

    Build yourself a custom kernel, build in all of the modules you need to boot.  Set yourself up to not use an initrd. 
    Mind you, keep the stock kernel and initrd on the boot partition and keep an entry for them in your /boot/grub/menu.lst.  Add the custom kernel to the boot partition and make a new entry for it in the menu.lst file.
    If you do this, make sure you set it to optimize for your specific processor.
    See https://wiki.archlinux.org/index.php/Kernel_Compilation
    also, if you have never compiled a kernel, take a look at:
    http://www.gentoo.org/doc/en/handbook/  (No I am not joking -- Gentoo documentation on kernel compilation is unsurpassed)

  • Fan runs at full speed all the time

    The fan on my brand new iMac 17" runs at full speed all the time, creating an unbearable amount of noise. The activity monitor shows 99% spare time, i.e. nothing much is running.
    I updated all software, checked the firmware version (it was the latest already) and performed an SMC reset. I also unplugged it for several hours, as some people have suggested.
    I downloaded smcFanControl and it says that the ODD fan is running at 5200 rpm all the time. The CPU and HDD fans seem to run at normal speeds. smcFanControl also reports a cool 39 deg.
    Does anyone have any idea of what to try to fix this problem?

    I don't have a solution but thought I'd add a computer that showed the same behaivor.
    A 20" iMac I was configuring for my company did the same thing, but just once so far. I used it briefly just out of the box and didn't have any problems. It's a stock install of OS X 10.4.8, no other software installed. Turned it on several days later and the fans ran during the 2 hours I used it to run Safari via Airport. I turned if off after it started to smell like hot electrical components. Activity monitor looks completely normal. After shutting it off for two hours, unplugging and re-plugging AC and keyboard, it came back on with no fans. I did not do the SMC reset or any updates between the power cycle.
    ps. Repairing permissions is Voodoo
    http://daringfireball.net/2006/04/repairpermissionsvoodoo

  • Speed up calc times for compley member formulae

    Hello together,
    I am seeking to speed up calc time for one of the steps in a business rule. Besides the required dimensions (+ currency), the application includes custom dimensions for cost centre, products and distribution channel. The members for the currency dimension include EUR, GBP, USD, ..., Curnone (currency not relevant).
    FIX (
    FY12,
    "Forecast",
    "Final",
    @LEVMBRS("Cost Centre",0),
    @LEVMBRS("Products",0),
    @LEVMBRS("Currency,0),
    "Distribution Channel",
    SET FRMLBOTTOMUP OFF;
    "500400";
    "500600";
    SET FRMLBOTTOMUP ON;
    ENDFIX
    The member formula are:
    500400 = 500000 * 400000
    500600 = 500000 * 600000 -> Curnone
    The accounts 400000, 500000 and 600000 are calculated themselves from member formulas including complex crossrefs. In order to speed things up, I tried to fix on the source and push the result onto the target account:
    "500000"("500400" = "500000" * "400000")
    which seems to speed up things considerably (I kept the setting FRMLBOTTOMUP ON). However, I'm not sure how to go about it for the second formula (the crossref is making it difficult). Does anybody have any advice? thanx in advance
    Florian
    Edited by: 943380 on 21.08.2012 01:56

    I am sorry re my comment of "A + B" calculations as they are, uh, obviously not. Sometimes I wonder about my eyes, other days it's my brain that is in question, and then yet other days it's both...
    Okay, so with that out of the way, let me ask if you must calculate everything all at once? Per your (hopefully closely read this time) comment, I am guessing this is for a Planning application. If so, is this a calculation that could be fired from a form, using that form's dimensionality? If it is, its scope could be limited and thus appear to be quicker.
    Failing that, yes, CALCPARALLEL can help, but is probably not a great idea within the context of planner-initiated calcs as it will chew up CPUs even faster than single-threaded calcs.
    Regards,
    Cameron Lackpour
    Edited by: CL on Aug 21, 2012 8:39 AM
    I was just going through the tabs in my browser and I found the OP's post (I am sort of lazy when it comes to closing tabs). The OP's OP did have +'s instead of *'s. I thought I was losing what little sanity I have left.
    https://docs.google.com/open?id=0B_qdhXKUMwSdTEFVcU1uSUlMWkk
    I can't tell you how happy this makes me. :) Sometimes I wonder about my advancing years, but this time I wasn't totally bonkers.

  • Reduce the file size of the spotify ipad/iphone install to speed up load times

    i love spotify, i do, but over the last few months, it's been taking longer and longer to start. i've also noticed the download size has been slowly increasing. can you folks do some code optimisation to reduce it's install footprint and perhaps then it might take less time to load and i can get to playing music quicker. the increased file size would suggest there are additional features being added, but to no real benefit.it's fast to load on my htc m8s, but can take 30 seconds to load on my ipad mini (model a1432)

    Updated: 2015-08-04Hello and thanks for the feedback!
    Since Spotify developers naturally always try to optimize the app (speed, load up times, etc), I'll refer you to a similar idea about a Spotify Lite version for all mobile apps: https://community.spotify.com/t5/Live-Ideas/Mobile-Spotify-Lite-Version-for-Mobile-Apps/idi-p/1133920
    Please add your kudos and comments there. ;)

  • SMTP Connection Time SMTP Transaction Time warning and mails slow receiving

    Hi,
    i am getting a warning while testing email server over Mxtoolbox
    Waring
    SMTP Connection Time     6.661 seconds
    SMTP Transaction Time     9.532 seconds - Not good! on Transaction Time
    How do i resolve the same
    Ratheesh

    Hi,
    Please refer to the article below about the parameters for the Receive connector. The interesting parameter for the delay seemed to be the tar pit interval.
    http://technet.microsoft.com/en-us/library/bb125140.aspx
    Then try to run this command below to find out what your tarpitting settings:
    get-ReceiveConnector | select name,tarpitinterval
    Refer to this thread:
    http://social.technet.microsoft.com/Forums/en-US/5680ad62-a7c8-4279-89d5-addab465680d/7925-seconds-warning-on-transaction-time-is-this-a-problem?forum=exchangesvradmin
    To know more about SMTP tar pit feature:
    http://support.microsoft.com/kb/842851/en-us
    Regards.

  • My fan(Left only) is running at high speed all the time since last update. Any ideas? (Mac OSX version 10.7.5 on 27" mid 2011)

    My left side fan is running at full speed all the time. I have downloaded free fan speed control app but does not help. Any advise

    Fan Control Apps/Utilities generally can only raise the speed of the fans and not lower them.
    Disable, turn off or uninstall whatever Fan Control that you installed and reset the SMC.
    see > Intel-based Macs: Resetting the System Management Controller (SMC)
    1. Shut down the computer.
    2. Unplug the computer's power cord.
    3. Wait fifteen seconds.
    4. Attach the computer's power cord.
    5. Wait five seconds, then press the power button to turn on the computer.
    Then if the iMac's fan is still running fast, you probably have a loose sensor cable or bad thermal sensor and the iMac needs to be taken into service
    see > Apple - Support - iMac - Service FAQ

Maybe you are looking for

  • EMIGALL -  BCONTACT : Problem in upload

    Hi, I am using EMIGALL to upload BCONTACT. However, I am getting the error that Business Partner does not exist. I have successfully uploaded BPs using PARTNER object and relationships using PART_REL. I alos gave PARTNER as KSM for BCONTACT. But stil

  • I have asr 1000 with asr1000rp2-adventerprisek have problem when I gave PPP Multilink to the interface Dialer

    Hello, please Urgent Help I have ASR 1000 with asr1000rp2-adventerprisek  Version, when I give PPP Multilink to the dialer interface it show following error : FMFP-3-OBJ_DWNLD_TO_CPP_FAILED: F0: fman_fp_image: MLP bundle , link download to CPP failed

  • Pjc for client-server mode

    hi, i have been using pjc for customized text field and text area and have successfully implemented it on windows and sun solaris. we have used pjc for working in non english character set so that the user can directly type in the required character

  • Printer Profiles for Epson R260

    I need to download UCC Printer Profiles for my Epson 260. But the website doesn't list any. It does show profiles for the R2200. Where are they?

  • Having trouble with Excel

    Having trouble with Excel on my Mac 10.6.8 Excel is frozen right now so I can not get read the version #, but I think it's 2008. I got the following error message which froze me up. Excel can not save autorecover info to mac hd users/documents/data I