Application persistence 'lost'

We setup our pair of CSS11506 units in VRRP redundancy mode about 2.5 years ago. All of services are created individually, one on port 80 and one on port 443. Each of their VIPs are the same, port 80 and 443. It was a requirement for our 443 application that when a service is suspended the users currently on that server through the VIP should not be impacted. They should be able to complete their work until they close the session or reach the content rule's idle timeout. Below is an example of how our services and rules are created. Anyone see an issue with this?
service server01-443
ip address 10.10.10.5
protocol tcp
port 443
redundant-index 5
keepalive type script ap-kal-ssl "10.10.10.5 "
keepalive frequency 15
active
service server01-80
ip address 10.10.10.5
protocol tcp
port 80
string server1
keepalive type script ap-kal-httptag "10.10.10.5 /keepalive.asp <A HREF="javascript:newWin('http://www.oururl.com"')">www.oururl.com"</A>
keepalive frequency 15
active
content www-oururl-443
vip address 10.10.10.30
protocol tcp
port 443
add service server01-443
redundant-index 30
sticky-inact-timeout 30
advanced-balance sticky-srcip
balance weightedrr
active
content www-oururl-80
vip address 10.10.10.30
protocol tcp
port 80
url "/*"
advanced-balance arrowpoint-cookie
arrowpoint-cookie browser-expire
add service server01-80
balance weightedrr
active
Thanks
Chad

the 'weight 0' works with all type of loadbalancing method - leastconn included.
I would like to clarify something.
suspend will actually not impact current connections.
So, you could suspend a service and the currently connected users will be able to keep their connections.
However,most of the time, during an HTTP connection you open and close connections.
With suspend, no new connections are allowed, even for users already connected.
The graceful shutdown allows connections to go to the server if there is a sticky entry matching the client and server.
This is useful to permit a user to finish browsing - not just finish downloading a page.
Gilles.

Similar Messages

  • My Contacts File in Applications has lost all name and addresses - how can I retrieve them?

    Out of the blue my Contacts File in Applications has lost all my names and addresses.  Is there any way I can retrieve them?  On my back-up systems they don't appear either.  Panic!
    Lecia

    Hello again
    Alothogh I could not find help on any of the Communities (that I could acyually understand) - I haven't a clue what I have just done but ALL my addresses have now shown up in Contacts.  Wish I knew what I had 'clicked" to achieve this - but as I have been "clicking" just about everything in sight - I am not sure what did the magic trick.
    Maybe, although I have answered my own query, someone could perhaps tell me what may have happened?  I THINK it was something to do with iCloud --- which is something I don't understand AT ALL!
    Cheers,  Lecia
    CHEER

  • Connection to system REPOSITORY using application REPOSITORY lost.

    Connection to system REPOSITORY using application REPOSITORY lost. Detailed information: Error accessing "http://<host>:<port>/rep/query/int?container=any" with user "USER01". Response code is 401, response message is "Unauthorized".
    USER01 is locked, but i want to change this conection user to PIDIRUSER.
    Do you know where this connection user can be changed?

    Hello there.
    Please check the note below according to your system:
    #999962 - PI 7.10: Change passwords of PI service users
    #936093 - XI 7.0: Changing the passwords of XI service users
    #721548 - XI 3.0: Changing the passwords of the XI service users
    Regards,
    Caio Cagnani

  • Connection to system REPOSITORY using application REPOSITORY lost. Detailed

    Connection to system REPOSITORY using application REPOSITORY lost. Detailed information: Error accessing "http://ECC:50000/rep/query/int?container=any" with user "PIDIRUSER". Response code is 401, response message is "Unauthorized"

    This problem occurs when user is locked. Unlock yhe user in su01.
    unable to access repository / SLD
    See this guide may help you.
    https://www.dw.dhhs.state.nc.us/wi/OnlineGuides/EN/ErrorsEN.pdf
    Rewards if helpful.
    BR,
    Alok

  • The iPhoto application was lost on my 2007 version macbook?

    the iPhoto application was lost on my 2007 version macbook?

    BTEI555 wrote:
    the iPhoto application was lost on my 2007 version macbook?
    If you're running Lion 10.7.5, you can download/install iPhoto here:
    http://support.apple.com/kb/DL1608
    Alternatively, restore the application from your Time Machine backup for Leopard or Snow Leopard. If you're still running Tiger, you might be able to navigate the original install disc and find the package installer for it.

  • Random application object lost in Portal

    Hi people,
    I'm having a problem with the application object.
    Some times, in a random way, i'm losing the state of the application object between request's.
    This appens when I'm using the BSP application in the SAP Portal.
    Thanks,
    Paulo Ruivo

    Hi,
    the problem is that in the url I pass a parameter that in the bsp page copy to an attribute of the application.
    Then in the controler i try to read this value and it is empty, all the information in application object is lost.
    This appens during one single request.
    I have several Iviews pointing to the same BSP application, the diference between the content that is shown is controled by the parameter passed in the URL.
    Is it possible that while navigating between iviews, the info in the BSP application is mix up. Something like the aplication start (iview open) and then been close (previous iview close)?
    Thanks for the help.
    Paulo Ruivo

  • Keyboard input delayed in Siebel application // letters lost while typing

    Hi all,
    We have a strange problem on a client computer. While working with Siebel, keyboard input is extremely delayed. When typing a word or a phrase, it takes some seconds to appear in the corresponding field, and also some chars are just lost if one is typing too fast. This does only happen in Siebel - all other applications are OK.
    I have seen this already some months ago, but don't remember the cause.
    Web Client 7.8.2.14 QF0E76
    Win XP SP3 IE8
    Did anyone ever experience this? Might be some specific driver issue or IE security update or whatever?
    Thanks
    Benny

    Thanks Wilson for your input, unfortunately resetting browser settings and stuff like this does not help.
    In the meantime I have done more research on this and found something interesting. The dropped characters / missing keystrokes do only appear when typing in Siebel popup applets. We do NEVER lose any keystroke when typing in a normal form or list applet. I have run a little test with a vanilla SRF file and a VBS Script.
    I placed a VBS file on my desktop which will use SendKeys to simulate typing the word "Siebel" several times.
    The source code of the VBS file is:
    >
    Option Explicit
    Dim WshShell, c
    Set WshShell = CreateObject("WScript.Shell")
    c=0
    WScript.Sleep 5000
    Do While c < 5
    WshShell.SendKeys "S"
    WScript.Sleep 70
    WshShell.SendKeys "i"
    WScript.Sleep 40
    WshShell.SendKeys "e"
    WScript.Sleep 30
    WshShell.SendKeys "b"
    WScript.Sleep 90
    WshShell.SendKeys "e"
    WScript.Sleep 120
    WshShell.SendKeys "l"
    WScript.Sleep 70
    WshShell.SendKeys " "
    WScript.Sleep 90
    c = c + 1
    Loop
    WScript.Quitwhen I click this script I have 5 seconds to switch to Siebel and point the cursor into a text field.
    -> When this text field is on a form applet, it correctly writes "Siebel Siebel Siebel Siebel Siebel"
    -> When this field is on a MVG applet, it sometimes drops keystrokes like "Siebel Siel iebel Siebel Sibel"
    what the hell could be the problem ??????
    Could someone try this in another environment??
    We are on 7.8.2.14 QF0E76 ...

  • Persistence lost

    Hi.
    There's another Kodo issue that troubles me. In my case persistent
    objects are created by EJB in application server. They are however to be
    used on the client side, modified and then sent back to server side for
    final processing. My problem is these persistent objects seem to lost it's
    "persistent" state upon serialization and after deserialization they appear
    to be transient. Is there any possibility to keep them "persistent" after
    sending to and from the client? I keep reference to the original
    PersistenceManager on the server side, but my persistent object looses it's
    StateManager, flags, etc.
    Or maybe there's another way to mark persistent-capable but transient
    object as already exisiting in datastore? So that it will be UPDATEd instead
    of INSERTed when calling makePersistent() on it? I already have it's ID
    ofcourse.
    Thanks in advance for your replies,
    Pawel

    This is not a Kodo issue per se but a limitation of JDO. However there
    are a number of ways to get around the problem.
    1. Re-retrieve the object in question and "transfer" values over to it.
    The samples/j2ee example shows a simple pattern to attach identity and
    reconstitute values upon client response.
    2. Use Kodo 3.0's detach/attach capabilities. This allows Kodo to
    properly manage your class despite the current serialization state.
    http://solarmetric.com/Software/Documentation/3.0.0RC2/docs/ref_guide_detach.html
    Pawe__ |wierszcz wrote:
    Hi.
    There's another Kodo issue that troubles me. In my case persistent
    objects are created by EJB in application server. They are however to be
    used on the client side, modified and then sent back to server side for
    final processing. My problem is these persistent objects seem to lost it's
    "persistent" state upon serialization and after deserialization they appear
    to be transient. Is there any possibility to keep them "persistent" after
    sending to and from the client? I keep reference to the original
    PersistenceManager on the server side, but my persistent object looses it's
    StateManager, flags, etc.
    Or maybe there's another way to mark persistent-capable but transient
    object as already exisiting in datastore? So that it will be UPDATEd instead
    of INSERTed when calling makePersistent() on it? I already have it's ID
    ofcourse.
    Thanks in advance for your replies,
    Pawel
    Steve Kim
    [email protected]
    SolarMetric Inc.
    http://www.solarmetric.com

  • W7 x64 CS6 Adobe Application Manager lost Applications

    On my systems (desktop + laptop) I have installed the CS6 Suites. Well known, that there are no functionality updates for CS6 no longer, but I would like to get the updates for Camera Raw …… The situation is, on the laptop the Adobe Application Manager works fine, but on the desktop I have an empty list of application and therefore no updates. How can I manage this?

    I came across your post but I'm using a Mac. I had the same errors but decided to try out PS CS6 and found it was already updated. I rebooted and the errors disappeared. (My Adobe Update Manager works with both CC and CS6.) If you've already tried verifying update and rebooting, perhaps this thread (link) will help?
    Adobe Application Manager won't update on Win 8.1 -> cannot install apps

  • Install Disk #2 (Application CD) lost

    Hello everyone,
    I'm going to reinstall 10.5 from the scratch on my MacBook. Have found the original installation CD #1, but cannot find the second one with the applications. Can I use the second CD from other Mac (I also own latest Mac Pro)? Would like to avoid being stuck with a MacBook in the middle of installation process
    Thank you in advance for any suggestions.
    Cheers,
    Boris.

    The second disk contains bundled applications, all apps that come with the system are on your Disk 1.
    I couldn't recommend using the disk from another Mac as it violates your license agreement and there's a good chance it would launch on that hardware.
    Yeah, I know...
    -mj

  • Application screens lost on second monitor....

    Hello,
    I had a second monitor hooked up and I had some app windows on that screen but I returned the monitor this morning, now I can view those apps anymore...they are stuck over on that non-existing screen now....how do you get your back onto the main monitor? i tried restarting but no go....
    thanks!

    Open the Script Editor in the /Applications/AppleScript/ folder, and run scripts such as:
    tell application "Finder"
    set position of window 1 to {204, 96, 819, 501}
    end tell
    changing the script to move each window in turn. The application's name in the first line and the first number in the second line specify which window to target.
    (18146)

  • Applications Folder Lost 5800 XM

    It appears I have deleted the Applications icon (and folder?). It contained, as well as other things, the File Manager icon. Any suggestions as to how I can get it all back?
    Nokia 5800 ExpressMusic
    Code 0559958 (Australia)
    Firmware v 20.0.012 
    Solved!
    Go to Solution.

    At other sections of Discussion I discovered the code for a HARD Full Factory Reset.
    Refer: /discussions/board/message?board.id=hardware&thread.id=12171
    Press and hold GREEN + RED + CAMERA when powering up.
    Keep the keys pressed until you get the shaking hands. That should fully reset the device, with a lock code of 12345.
    This is only available on phones with 20.0.012 or later.
    Thanks to gunglewack.

  • Application Builder Lost

    Hey Everyone,
    Weird problem, I am coding mainly in LabVIEW 8.2 right now.  I was playing around with the demo version of LabVIEW 8.5, and I decided to get rid of it.  No problems, I restarted and loaded my project.  According to LabVIEW 8.2, I no longer have the application builder installed.  Has anyone else had this problem?

    Ok, more info.  I went to re-enter my code and here's the new problem.  I went Project Window > Help > Activate Application builder.  Errors 2 shows the box I get.  Errors shows the project windows showing errors on my build specifications.  I have the Full Development version, and now I can't seem to enter in my Application builder... sweet.  Any Ideas?
    Attachments:
    errors.JPG ‏6 KB
    errors2.JPG ‏9 KB

  • Download application if lost disc

    I need to replace my laptop.  The new ones don't have an optical drive. Can I download my Dreamweaver from Adobe's website using the numbers on the box my discs came in? I've already deleted it from this laptop so its replacement is not licensing an additional computer.
    Thanks,
    Robert H.

    RW Huntley wrote:
    I've already deleted it from this laptop so its replacement is not licensing an additional computer.
    Have you deactivated that installation with Adobe?
    Simply deleting the software does not inform Adobe.

  • Application for lost passport

    Dear Sirs,
     I have a BlackBerry Curve 8310 Smartphone terminal / IMEI 358516028578832 / PIN 25958CF4 who want to install the e-mail settings but I do not have the "password" and I have changed operator, who was VODAFONE and the current operator is YOIGO, I can not install this option.
    Please send to me the pasword.
    Thanks, I wait your reply.
    Enrique Prieto Castillo
    Av. Primado Reig, 42, A - 27
    46009 Valencia, Spain
    email : [email protected]
    Phone 34 600431229

    No one here has that information nor ability. This is a user-to-user community support forum. We are not RIM employees, but volunteers who enjoy assisting other users. 
    To get your email settings, you must have the BlackBerry Data Plan from your mobile provider. You need to call the carrier whose SIM card is in the device.
    Good luck.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

Maybe you are looking for