Local Director http probes with URLs and http redirect mode

I am trying to configure http probes on my Local director 430 running 4.2.3
I am using http redirect mode so the Virtual is bound to URLs not REALs with are linked to DIPs which are bound to REALs. So far the probes seem to not actually do anything. Does anyone know if the probes are compatible with URL redirect loadbalancing. And if so how one would go about configuring it.
Thanks for your help.

keepalive can be used for the probe notification in this case.
Check the following url for details.
http://www.cisco.com/univercd/cc/td/doc/product/webscale/css/bsccfggd/services.htm#xtocid727448

Similar Messages

  • Local Director & HTTP Redirection

    Hi, just wondering if anyone has successfully implemented HTTP
    redirection on Cisco Local Director 416 running ver 4.1.2 Basically I'm
    after any pitfalls to look out for. Current implementation utilizes
    generic session stickiness however this has problems for clients
    trying to access our load balanced servers if they come from behind
    multiple proxies via their ISP.
    Servers are Private IP addressed (Firewall in front of LD performing NAT static
    txlation)
    On another point, how does the Cisco CS11000 (Arrowpoint) perform
    session persistance/stickiness or what "better" ways does the
    Arrowpoint acheive this as compared to Local Director?
    Any helpful input would be much appreciated.
    Rgds
    Adam

    Since there has been no response to your post, it appears to be either too complex or too rare an issue for other forum members to assist you. If you don't get a suitable response to your post, you may wish to review our resources at the online Technical Assistance Center (http://www.cisco.com/tac) or speak with a TAC engineer. You can open a TAC case online at http://www.cisco.com/tac/caseopen
    If anyone else in the forum has some advice, please reply to this thread.
    Thank you for posting.

  • Since I'm having probs with ios6 and Safari, would the Atomic browser be worth a try?

    Since i'm having probs with ios6 and Safari (Autofill and loss of Wi Fi), would the Atomic browser be worth a try?  trouble is, I'm a bit of a 'newbie' when it comes to the 'clever' stuff, so need a bit of expert advice here.

    I use the Atomic browser for some things. I feel it's main advantage is that you can set the type of browser that Atomic reports. I set mine to Internet Explorer and that allows me to visit regular websites without being redirected to a tablet version. Its free so why not download it and give it a try. If you find it wanting just delete it.

  • Local Director & cat6500/Sup2 with ASLB or MNLP, when ?

    Does somebody to know when ASLB or MNLP for Local Director will be accesible on platform cat6500 with Sup2/PFC2/MSFC2
    As I know there is no support for them on such cat6500 yet.
    Actually I'm using:
    LocalDirector 430 with soft version 4.2.4
    WS-X6K-SUP2-2GE/WS-F6K-PFC2 with CatOS 7.4(2)
    WS-F6K-MSFC2 with IOS 12.1(13)E2
    and can't configure nor "redirection assist" on LD nor "casa" on router
    Regards
    Maciej Kolodziej

    Unfortunately that document was posted: Fri May 18 10:24:16 PDT 2001
    later Cisco has produced document:
    http://www.cisco.com/en/US/products/hw/switches/ps708/products_configuration_guide_chapter09186a0080121d6a.html#wp1025726
    where we can find:
    Note The information and procedures in this chapter apply only to the Supervisor Engine 1 with Layer 3 switching engine (Policy Feature Card or PFC). ASLB is not supported on Supervisor Engine 2 with Layer 3 Switching Engine II (PFC2).
    Thus my question in subject ;-))
    regards
    Maciej Ko³odziej

  • Making custom icons with transparency, and Cover View mode

    I tried making a new icon for a folder, and transparency doesn't seem to be treated the same in Leopard as it was in Tiger.
    Trying to get an object to float onscreen, without a square white background, I tried pasting the following onto the folder's icon at the top of a Get Info window:
    1. one layer of a .psd file
    2. the image Saved For Web in Photoshop (as a GIF), open in Photoshop
    3. the same image saved as a .png, opened in Photoshop
    4. a Photoshop EPS with a clipping path, opened in Photoshop
    5. the GIF file opened in Preview
    6. the .png file opened in Preview
    the results:
    1. the transparency surrounding the object comes out as white
    2. a speckled, purple image with a white background
    3. the same as 2
    4. the same as 1
    5 and 6: the transparency seems to work: the icon on the
    Get Info window loses its white background and the icon floats correctly on the Desktop. But in Cover Flow viewing mode, it completely disappears.
    What am I missing? By the way, the icons for the image files, in Cover Flow, show the white background for the .psd and .png files, but not for the .gif, where the transparency shows correctly. The .gif's icon seems to show the image with a white background in List and Icon view, but only the generic GIF icon in Column view. This all seems strange to me.

    I think you probably discovered the Cover Flow Bug. See this thread and the older one referenced in it as well:
    http://discussions.apple.com/thread.jspa?messageID=6846850
    As for the rest, well, at least you can copy something with a transparency out of Preview and paste it as an icon. Preview and Photoshop seem to me to not play well together with transparencies. I've gotten some VERY strange looking things, going back and forth between them with pngs and tiffs. Don't use gifs, or eps files, but I did notice that Finder does a rotten job coping with Photoshop's alpha channel (especially weird since once upon a time it worked fine, ditto for being able to show thumbs for eps files).
    Francine
    Francine
    Schwieder

  • Prob with JProgressBar and JButton

    Hi, hopefully someone can help me. I have an applet that does some stuff and when it starts the work, it creates a new JFrame with 2 progress bars (JProgressBar), an ok Jbutton and a cancel JButton. The progress bars update properly, thats not an issue, my problem is that when you click either of the buttons, they don't create an actionEvent until the work is completed, which is ok for the OK button but makes the cancel button pretty useless. I have tried suggested work arounds using SwingWorker and the event dispatching thread for similar probs other people have posted on here but with no success. I don't really know a lot about threads which doesn't really help!! Is it likely to be a thread problem or something to do with event queue which has also been suggested to me. Any help would be greatly appreciated.

    public class ProgressDialog extends JDialog implements Runnable
    private JProgressBar progressBar, totalBar;
    private JButton ok, cancel;
    public ProgressDialog()
    setTitle(dialogTitle);
    setBounds(350,300,300,120);
    //setSize(300,100);
    Container contentPane = getContentPane();
    FlowLayout flow = new FlowLayout();
    contentPane.setLayout(flow);
    JLabel label1 = new JLabel(" Upload progress: ");
    contentPane.add(label1);
    progressBar = new JProgressBar(0,100);
    progressBar.setValue(0);
    progressBar.setStringPainted(true);
    contentPane.add(progressBar);
    JLabel label2 = new JLabel(" Total progress: ");
    contentPane.add(label2);
    totalBar = new JProgressBar();
    totalBar.setValue(0);
    totalBar.setStringPainted(true);
    contentPane.add(totalBar);
    ok = new JButton("OK");
    ok.addActionListener(new ActionListener() {
    public void actionPerformed(java.awt.event.ActionEvent evt) {
    jButton1ActionPerformed(evt);
    contentPane.add(ok);
    cancel = new JButton("Cancel");
    cancel.addActionListener(new ActionListener() {
    public void actionPerformed(java.awt.event.ActionEvent evt) {
    jButton2ActionPerformed(evt);
    contentPane.add(cancel);
    setVisible(true);
    setResizable(false);
    Thats near enough the whole class now. Thanks

  • LabView Programming :: Portland OR, Seeking a local programmer to assist with code and application develop

    I am looking for someone to professionally develop some code I've cobbled together. The
    'program' I have developed has received some acceptance within my
    larger team, and I am hoping to bring in an external expert to assist
    us with streamlining the code and creating a stand-alone executable.
    There is no real DAQ, just data manipulation.
    We are looking for LOCAL PROGRAMMERS only please. I would like to meet with any applicants in person.
    Please PM me on this forum with your resume/expertise...
    Kind regards,
    Geoff

    Geoff,
    Thanks for the post.  Could we have an email contact for you?  Or perhaps you could send me an email at jimlaudie-at-gmail-dot-com and I could reply?
    Best of luck,
    Jim

  • Problem with URL iView regarding fetch mode and SSO to non-sap webapps

    Hi,
    I have created an URL iView which opens an internal webapp. When the fetch mode is set to client-side the page is displayed for the user. But when I set the fetch mode to server-side, the page cannot be displayed by the user.
    No proxy is needed. I tried to open the wepapp direcly on the portal server without any problem. Are there any additional points to be considered?
    On the other hand I want to realize SSO to this webapp (form based authentication) with user mapping. Is it correct, that I have to user server-side fetch mode, when I want to use the POST request method?
    Thanks ahead,
    Bernd

    >
    Bernd Speckmann wrote:
    > On the other hand I want to realize SSO to this webapp (form based authentication) with user mapping. Is it correct, that I have to user server-side fetch mode, when I want to use the POST request method?
    Yes.
    >Are there any additional points to be considered?
    Have a look at System Administration - System Configuration - Service Configuration - Applications - com.sap.portal.ivs.httpservice
    This is used to do the Server side fetch.
    Have fun
    Johannes

  • Mod_wl.so "Thread Local Storage" load error with Apache and WL 7

    I'm using Apache 1.3 and WL 7.0, and after configuring Apache to load mod_wl.so,
    I get the following error when starting up. I'm using the mod_wl.so that is
    for hpux11.
    Thanks for any help.
    $ ./apachectl start
    /usr/lib/dld.sl: Can't shl_load() a library containing Thread Local Storage: /usr/lib/libcl.2
    /usr/lib/dld.sl: Exec format error
    Syntax error on line 1053 of /opt/apache/etc/httpd.conf:
    Cannot load /opt/apache/lib/modules/mod_wl.so into server: Exec format error
    ./apachectl start: httpd could not be started

    Sunny,
    When you build apache on hpux, you should do the following before the
    configure:
    export CFLAGS="-lstd -lstream -lCsup -lm -lcl -ldld"
    Regards,
    Eric
    "Sunny Yee" <[email protected]> wrote in message
    news:[email protected]..
    >
    I'm using Apache 1.3 and WL 7.0, and after configuring Apache to loadmod_wl.so,
    I get the following error when starting up. I'm using the mod_wl.so thatis
    for hpux11.
    Thanks for any help.
    $ ./apachectl start
    /usr/lib/dld.sl: Can't shl_load() a library containing Thread LocalStorage: /usr/lib/libcl.2
    /usr/lib/dld.sl: Exec format error
    Syntax error on line 1053 of /opt/apache/etc/httpd.conf:
    Cannot load /opt/apache/lib/modules/mod_wl.so into server: Exec formaterror
    /apachectl start: httpd could not be started

  • Execute Broadcaster direct with URL and variables

    Hi,
    is it possible to execute an broaadcaster with an existing setting as an URL command like <SAP_BW_URL CMD='START_BROADCASTER >.
    But i want execute the broadcaster direct in the same like the button below without any user action. It would be very nice to change the variable settings in the same way.
    Brg,
    Frank

    Hi,
    is it possible to execute an broaadcaster with an existing setting as an URL command like <SAP_BW_URL CMD='START_BROADCASTER >.
    But i want execute the broadcaster direct in the same like the button below without any user action. It would be very nice to change the variable settings in the same way.
    Brg,
    Frank

  • Mountain Lion probs with iPhone and Camera

    I made an update from Snow Leopard to Mountain Lion and now my laptop does not see my Canon Camera, "no camera found"  wich is not to bad, cause i can still reach it with the canon software. But when i connect my iPhone 4 is does say "no camera found" too and that is it. I cannot synchronise, exchange my ebooks or upload my pictures from my phone. Any sollution for this beside downgrading to Snow Leopard?

    Launch iTunes and set up your iPhone. iPhone issues = iPhone forum.

  • Anyone else having probs with BTFon and BTYahoo us...

    Hi All,
    Where to start. BTFon via the BTFon app was working well until recently....
    ....now it's not working properly - totally random and can do any of the following:
    The app when at home drops my SSID and connects to BTFon or BTOpenzone, or tries to connect
    When I disconnect from my own SSID, the app can't connect to either BTF or BTO
    The app gives the incorrect email details window - this is down to Skyport and/or the Baynard servers
    My phone shows BTF and BTO as disabled or remembered or both - forgetting the network used to allow a connection, now it doesn't always allow a connection
    My phone see's the BTF BTO rapidly moving around on the list of available networks
    The app either connects to BTO, or the hub drops my SSID, yet as the app doesn't fire up to notify me, so I assume I'm connected to my SSID - therefore no emails get sent to the phone till I reconnect to my hubs SSID and then I get bombarded with them
    Which takes me on to BTY....
    A few days ago, all the emails in my BTY inbox (on phone and Laptop) were dated 01/01/1970
    This could only be corrected by opening the emails and the date self corrected.
    (The emails that shouldn't of been there were then automatically sent to their relevant folders)
    Unbeknown to me, today I didn't think I had received any BTY emails, but I had and the Snoop Yahoo mail app didn't alert me to them. This worked perfectly BEFORE the ATOS were altered - possible reason???? (gmail is fine btw)
    Having tried various things to try and resolve this on the phone, I gave up and dumped the Ymail app (probably a good thing imho).
    Tried K9 - didn't like it that much.
    Tried some others - again not to my liking.
    Used the pre installed email client (unknown) - It'll do, but just checked and one email in my inbox is again showing 01/01/1970.
    Anyway, closed down all applications on the phone and Laptop. Then turned the phone off.
    Then tried to open BTY and got this:
    Due to the above, (on the laptop) I tried Thunderbird, hmm not sure so removed, then windows mail, still not sure so also removed.
    Tried BTY again and it worked, though a new but an already read email is there in my inbox, the date 01/01/1970
    What can I do to sort all this out?
    -+-No longer a forum member-+-

    Sorry about the confusion here: what I meant was as both of the accounts using the 'old' or 'new' yahoo mail, or one of each?
    A few of us had issues with access protocols when "mix'n matching them"
    You could try a temporary pass change for both accounts, see if the app works, and then revert to a chosen password.
    I has this issue myself...it simply "went away" and I never really got to the bottom of it
    AQ.
    "Welcome to Royston Vasey - You'll never leave."

  • Since update, ipad has probs with contacts and mail! Doesn t work

    I can t open contacts! Try send email, the program closes suddenly. Same with contacts! Does somebody know the problem? The problem persists since update to ios5?, thx for help

    I cant say mine ever did that after ios 5..
    the only problems i noticed was the rapid battery drain..and when id go into my calender appoitments they would disappear..i had to exit and re-enter the callender app to make them appear again.
    Have u done a hard reset by holding down the home & sleep button for more than 15 secs ??
    Also ios 5.0.1 is out..have u updated to that..it could help correct ur issues ur having at the moment.

  • Trouble video chatting between Mac Mini and PC. Prob. with Skype and IChat

    Hello,
    I hope someone can help my dad and I because we have been trying to solve this problem since Xmas. I will try to give you as much information on this as I can so that someone can hopefully help us.
    He has a Mac Mini (OS 10.3.9) and a Logitech Quickcam 9.5 and I have a PC. We have tried IChat 2.1 to AIM 5.9 and initially he could see me and hear me and I could see him but couldn't hear him. Now when we try to connect. I can see myself but can't hear or see him. We have looked through a lot of the recent forums and have tried what was suggested with no luck.
    We have also tried Mac Skype 2.0.06 to PC Skype 2.5.0.151 but with Skype he can see and hear me but I can either only hear him (when he has not started the video) or only see him when he has started the video. We cannot seem to get both going at the same time. He has made sure that "enable skype video" is ticked in the skype preferences and we have tried ticking "start my video automatically" but it still doesn't seem to work. I would prefer to use Skype if possible because the video is larger and I am more familiar with it.
    If someone can help us with this, I would be so happy!
    Thanks in advance!
    Mac Mini   Mac OS X (10.3.9)  

    Hi fantabuloussara,
    Welcome to the Apple Discussions
    Ok If this was a new computer and iChat was started when the computer was the first time then some settings will not have taken effect.
    Go to System Preferences > Quicktime > Streaming or Connection Speed tab (depending if Quicktime 6 or 7).
    Set the drop down to 1.5Mbps/T1/LAN and restart iChat.
    IS the Mac Firewall ON ?
    In that case you will need this at the second pic.
    10:02 PM Friday; January 19, 2007

  • [Opteron] W2K Boot prob. with SATA and Raid (Msi-9130)

    when installing win 2000 server to 2 raptor 74GB in mirroring the follwing happens;
    using via 300b format in 10 sec, very fast transfer and ntoskrnl.exe is missing
    using via 310 format i 7 min, fast transfer and ntoskrnl.exe is missing
    tried to copy ntoskrnl.exe from cd but still same problem
    setup:
    ms 9130 (far2) bios 1.10
    dual opteron 244
    corsair 4x 1gb 3200
    wd raptor 74 in mirroring
    ati 9200 graphics
    nec 2510a dvd in ATA
    EDIT tried to make Opteron gray

    Quote from: jarvo on 30-January-07, 04:38:13
    Yeah, not matter what the HDD order is winxp always tries to boot from the single drive when its plugged in.
    Not sure if this only happens to me or if other people have had similar issues.
    IDE drivers becomes automatically as 1st HDD. you need to switch them.
    have you arranged hard disk boot priority? (not main priority)
    have a try to push "F8" or "F11" during post to popup menu, and choice correct HDD to boot from there.

Maybe you are looking for

  • How do I move photos in a Smart Collection and keep folder structure?

    HI there I am on a trial of Lightroom and loving it so far.  One seemingly simple task I would like to try out is moving all my RAW files (which are all mixed up with JPGs and PSDs to a new location and keep the current folder structure. Currently I

  • Printing problem with epson and 10.2.8

    Can't print on my ibook the printer show in the printer center, but not in the apple system profiler. what can I do to print?

  • Can TC backup a harddrive connected to my Macbook Pro?

    Hi, I have a TC 500 and Macbook pro. Most of my important data is on an external hard drive which I connect when needed to my laptop. What would be ideal is if time machine could backup the external hard drive. Is there a way to do it? Also... I thin

  • EjbLoad() called multiple times

    "I have a Bean Managed Persistence Entity Bean that is deployed on iAS6 sp4 (Solaris). I am having problems with the persistence, or lack of, of the bean. I am new to entity beans but not Java or iPlanet. My first problem is after I call my custom fi

  • Ribbon and webpart properties disabled in publishing page Sharepoint 2013

    Hello, I have a problem with our sharepoint site 2013. I don't know how it came because it worked two weeks ago but when I go on a page and I select modify the page I cannot modify the webparts on the page. Before I had a little box on the top right