Could any expert in WAAS Mobile see this question?

Hi everybody!
I succesfully installed WAAS Mobile in a customer. Everything worked fine with WAAS, except for a particular application. WAAS Mobile is not working with a particular client/server Application. When WAAS Client is running, the Application Client is not able to connect to the Application Server.
Analyzing the packets capture with Wireshark, I observed that the first 3 packets are not being redirected to the WAAS Mobile Server. It is going straight to the Application Server.
At first I thought that I needed to add another process to the Proxied Process list in WAAS. But using the TCPView software I can see that the process that is sending the first packets is the one that I already added to the Proxied Process list.
The question is: Is it normal for these first packets not passing through WAAS Mobile Server? Or all the packets of the process should be redirected to the WAAS Mobile Server? Could this problem be a bug? What is the best way to troubleshoot this?
Thanks!
Marcio

First of all, individual packets are not passed thru to the WAAS Mobile Server. All TCP connections for accelerated applications are terminated on the client. The packet content is encapsulated and passed to the WAAS Mobile Server using a UDP connection on port 1182. The fact that you saw packets going to the application server means that the applicaiton in question is not being optimized for whatever reason. To determine the reason, please generate a client and server System Report directly after exercising the problem application with WAAS Mobile. Either open a TAC case for the issue or send the system reports to the Cisco SE assigned to your account. The system reports can then be analyzed to determine why the application is being bypassed.

Similar Messages

  • "your request could not be completed" I always see this annoying message whenever I try to download google LATITUDE, I never saw this message when I download other applications.

    "your request could not be completed" I always see this annoying message whenever I try to download google LATITUDE, I never saw this message when I download other applications. How can i download this on my iphone4 from Pakistan?

    I'm having the same problem!!

  • Could any body suggest hoe to tune this SELECT stmt?

    DATA : BEGIN OF it_bkpf OCCURS 100,
             bukrs  LIKE bkpf-bukrs,
             belnr  LIKE bkpf-belnr,
             gjahr  LIKE bkpf-gjahr,
             blart  LIKE bkpf-blart,
             budat  LIKE bkpf-budat,
             usnam  LIKE bkpf-usnam,
             dbblg  LIKE bkpf-dbblg,
             stblg  LIKE bkpf-stblg,
             stjah  LIKE bkpf-stjah,
             bktxt  LIKE bkpf-bktxt,                    
             grpid  LIKE bkpf-grpid,                    
             awkey  LIKE bkpf-awkey, 
             tcode  LIKE bkpf-tcode,                       
             END OF it_bkpf.
       SELECT bukrs belnr gjahr blart budat usnam dbblg stblg stjah
             bktxt grpid awkey  tcode                          
             INTO TABLE it_bkpf
         FROM bkpf
         WHERE bukrs IN s_bukrs AND
               budat IN postdate AND
               blart IN s_blart AND
                blart in s_blart1 and                         
               usnam IN s_usnam
         %_HINTS ORACLE 'INDEX(BKPF BKPF______Z1)'.
    Could you please suggest what is wrong or how to tune this SELECT stmt?

    hi,
        for increasing  perfomance of the select statement , check u r using the <b>Proper Index</b> of the table( table contains primary index and secondary index).
    once u also check, u provide the low and high values to <b>s_bukrs</b> , <b>s_blart</b>  , <b>s_usnam</b> all these fields( if u define using select-options statement) otherwise it will check from its low value to final value.
        Keep the selected data amount be small.
    for furthur refarence u follow these links.
    http://www.sapbrain.com/ARTICLES/TECHNICAL/optimization/optimization.html
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/abap/abapPerformanceand+Tuning&
    http://www.sap-img.com/abap/performance-tuning-for-data-selection-statement.htm
    regards,
    AshokReddy.

  • Experts to help me see this serious problem? Thank you very much

    http://forums.adobe.com/message/4839978

    We are all itunes users just like you.
    All sales are final.
    You can try contacting itunes support and asking for an exception:
    http://www.apple.com/support/itunes/contact/

  • Any one can help me in this question i am stuck

    import java.util.Scanner;
    public class JPetWorld
    public static void main (String[] args){
    Pet p = new Pet( "Meow meow", 'F' );
    Scanner sc = new Scanner (System.in);
    System.out.print("Press enter to proceed") ;
    sc.nextLine() ;
    System.out.println("Name: " + p.getName() );
    System.out.println("Gender: " + p.getGender() );
    p.buyAccomodation( "Basket" );
    System.out.println( "Accomodation: " + p.getAccomodation() );
    You are given the Pet class with the following class diagram.
    Pet
    name: String
    gender: char
    hunger: String
    mood: String
    cleanliness: String

    Pet(name: String, gender: char)
    buyAccomodation(accom: String)
    buyFood(num: int): int
    feed()
    playFetch()
    playHideAndSeek()
    bath()
    advanceDay()
    bidFarewell()
    Using the Pet class given, you are required to write the JPetWorld program according to the following requirements.
    a. Declare one integer called foodQuantity presenting the quantity of pet food the owner has. Initialise it to zero.
    b. Choose Pet
    Prompt and read from the user
    - the pet name
    - the pet gender ( a char)
    and create a Pet object using the information entered.
    c. Choose Pet Accomodation
    Prompt and read from the user
    - the type of pet accomodation (sofa or basket)
    Then call the buyAccommodation method of the pet object to buy an accommodation using the information entered.
    d. Buy Pet Food
    Prompt and read from the user
    - the quantity of pet food to buy
    Call the buyFood method of the pet object using the information entered. The buyfood method will return an integer representing the actual quantity of food bought. This is because the shop may not have enough quantity of pet food that the owner wants to buy. Thus the actual quantity may be lesser than the quantity the user intended to buy. Set the foodQuantity variable to the actual quantity of food bought.
    e. Menu
    Write a loop that will loop 10 times. In the loop, do the following:
    - display a menu and prompt as follows:
    Menu
    1. Check pet food quantity
    2. Feed Pet
    3. Play with pet
    4. Bath pet
    5. Advance to next day
    6. Bid farewell and Exit
    Enter choice
    - Read the user input.
    - Choice 1 (Check pet food quantity)
    If the user selects choice 1, display the value of the variable foodQuantity in the following format:
    - Choice 2 (Feed pet)
    If the user selects choice 2, test if the value of the variable foodQuantity is greater than zero. If it is,
    � Call the feed method of the pet object
    � Decrease the foodQuantity variable by 1
    � Display the message �Pet is eating food�slurp, slurp�
    Else,
    � Only display �Not enough food to feed pet!�
    - Choice 3 (Play with pet)
    If the user selects choice 3, display the following submenu and prompt:
    1. Play fetch
    2. Play hide and seek
    Enter choice:
    Read the user input.
    If the owner selects choice 1, call the playFetch method of the pet object.
    If the owner selects choice 2, call the playHideAndSeek method of the pet object.
    - Choice 4 (Bath pet)
    If the user selects choice 4, prompt and read from the owner for the temperature of the bath water.
    If the temperature of the bath water is below 20oC, display �Cannot bath. Too cold!�.
    If the temperature of the bath water is above 40oC, display �Cannot bath. Too hot!�.
    Else, call the bath method of the pet object and display �Pet is bathing�splash, splash!�
    - Choice 5 (Advance day)
    If the user selects choice 5, call the advanceDay method of the pet object.
    - Choice 6 (Bid farewell and Exit)
    If the user selects choice 6, call the bidFarewell method of the pet and then terminate the loop.
    - Other input
    If the user enters any other input, display the message �Invalid choice.�
    thanks.............

    here's a bone to get you started. now that i've done the hard part,
    you should be able to finish the rest.
    public class Pet {     
         private String name;
         private char gender;
         private String hunger;
         private String mood;
         private String cleanliness;
         public Pet(String _name, char _gender){
              name = _name;
              gender = _gender;
         public void buyAccomodation(String accom) {}
         public int buyFood(int num){return 1;}
         public void feed() {}
         public void playFetch() {}
         public void playHideAndSeek() {}
         public void bath() {}
         public void advanceDay() {}
         public void bidFarewell() {}     
    }

  • April 2015: Could I have a current Answer to this question all reff are 6-8 years ago, Why since Firefox joined Yahoo, am I getting Spam Email Every Day, Thank

    Since Firefox joined with Yahoo, I have been receiving Daily Spam Emails, never have I had so many since this merger. Plus only 3/4 of many received Emails are shown on the screen, the rest are cut off.. Thank you

    Mozilla doesn't send spam, nor does Yahoo, so this isn't something we can control. I'd suggest you try adjusting the spam filters in your e-mail system to better get rid of the garbage, or switch e-mail addresses if it is really bad.
    As for e-mails being cut off, try the steps at [[Websites look wrong or appear differently than they should]]

  • See this question about static object

    1)static A a =new A();
    2) A a1=new A();
    what is the difference between them?

    static A a =new A();
    When this line is written in another class say : class b;
    a is accessible without the need for declaring an object of b.
    i.e., b.a
    Not in the other case.
    Many factory classes and methods are accessed this way coz, the classes are private and abstract, so u cannot make an object of that class.
    For example:
    System.out.println() - here println() is a method, out is an object of some class that is declared static in the class System. if it were'nt static, then we had to make an object of the System class and then access the out object,
    hope this helps
    let me know

  • PLEASE ANY ONE CAN ASSIST ME ON THIS QUESTION

    Hello am finding it difficult in
    The relational schema below describes part of a database used by a hospitality company which specialises in organising business events for customers in London.
    CUSTOMER(customer#, cname, address, tel, company-name)
    EVENT (event#, event-name, event-type, event-date, event-time, customer#, cost)
    EQUIPMENT_FOR_EVENT (event#, equipment#)
    EQUIPMENT (equipment#, equipment-type, price, supplier#)
    SUPPLIER (supplier#, sname, address, tel)
    The following assumptions are made:
    •     Customers may choose their own event name which is recorded in the ‘event-name’ attribute.
    •     The ‘event-type’ attribute identifies event categories specified by the hospitality company (e.g., ‘birthday party’, ‘retirement party’).
    •     Each piece of equipment has a unique number, its type (e.g. ‘camera’, ‘sound system’), and its price and supplier.
    a)      Specify the sequence (order) in which the above five relations should be created and populated (you don’t need to write the actual CREATE and INSERT statements). Indicate which relational integrity rule is applicable in deciding such a sequence.
    b)      Provide SQL statements to express the following queries:
    (i)     Find the names of those customers who have booked an event categorised as a ‘birthday party’ for the month of July 2011.
    (ii)     Find the names of those customers whose events require any ‘video-cameras’.
    (iii)     Find the names of those suppliers who have supplied any equipment for events which took place during December 2010.

    yes. a likely exam question will be set like this

  • WAAS Mobile HA between 2 Data Centres

    We have to deploy WAAS Mobile between 2 Data Centres, with remote user connecting to either DC across VPN & then connecting to a local WAAS Mobile server. We are trying to understand the best way to configure this from the available documentation on CCO.
    We are a bit confused re the role of the WAAS Mobile Manager Server.
    Is this similar to the role of Central Manager on normal WAAS, i.e configuration/management etc, or does it have any function in the selection of the server a client will connect to.
    Regarding HA & Load balancing of the connections between the Data Centres, this is how we think we should deploy it!
    Deploy a Server Farm at each DC & use the Latency based method of farm selection. This way the client should connect to the local server farm, based on which DC the VPN connects to?
    Is this correct, has anyone deployed WAAS mobile in this way or have any advice?
    Thanks
    Colin

    Fabricpath is L2; not related to the L3 technology you want to use; if VRF are in use you can just use VLANs which is described in your first scenario : "use 2 routers with VRF lite configuration in each DC, then dot1q on the trunk through the Fabric Path"

  • Anyone know how to remove Overdrive books from my iphone that have been transferred from my computer? They do not show up on itunes. I see a lot of answers to this question but they all are based on being able to see the books in iTunes.

    How do I remove Overdrive books from the library that were downloaded onto my computer then transferred to my iphone? The problem is that they do not show up in iTunes.
    I see this question asked a lot when I google, but they always give answers that assumes you can find the books in iTunes either under the books tab, or the audio books tab or in the music. They do not show up anywhere for me. They do not remove from the app like the ones I downloaded directly onto my iphone.the related archived article does not answer it either.  I even asked a guy working at an apple store and he could not help either.   Anybody...?
    Thanks!

    there is an app called daisydisk on mac app store which will help you see exactly where the memory is focused and consumed try using that app and see which folders are using more memory

  • I would like to mark data on my iPhone / iPad as private or hide it. Is it possible? I could do it on my Palmpilot. Any data - addresses, calendar entries, files, anything could be hidden on the palm pilot. It'd be great to see this facility on apl pdts

    I would like to mark data on my iPhone / iPad as private or hide it and only unlock it with a different password. Is it possible? I could do it on my Palmpilot. Any data - addresses, calendar entries, files, anything could be hidden on the palm pilot. It'd be great to see this facility on apple products.

    I know what you meant. As I said, it's not possible to do so on the iPhone. Of course Apple could add such a feature to a future version of iOS, it's only software, but so far they haven't. You can suggest such a feature to Apple here: http://www.apple.com/feedback/iphone.html

  • Is this BUG or Feature of APEX 4.0.1 - Any expert please help to answer

    Try this to stimulate the BUG or Feature
    - Development -
    1. Create Basic Master Detail with tabular form
    2. Create a basic LOV and display NULL -> RETURN NULL
    - Run -
    1. Run the Page click "ADD ROW"
    2. Do not enter any data into the tabular
    3. Click on Apply Changes
    Apex smart enough to know user do not want to add anything very nice....
    now... observe this
    - Development -
    1. Modify the LOV, remove the display NULL, so it will show first value of the LOV
    - Run -
    1. Run the Page click "ADD ROW"
    2. Do not enter any data into the tabular
    3. Click on Apply Changes
    Apex don't bother to test all validations straight to GIGO and end user see those ORA-.
    I have a page that the tabular form has a default value (not LOV but default value) the validation is not working, GIGO....
    Any expert please explain is this suppose how Apex work? or do we need to handle those default value.
    I try to debug the page with good one and bad one, I think I still have a lot to learn I don't understand the debug message. I guess is something about Branching....
    Siere

    Hi,
    Unfortunately there isn't really much that could be done to work around this issue in 4.0.x. The validation logic treats these new rows as not having been touched by the user, hence they are ignored. But the DML (update/insert) logic thinks the data did change due to that default value, and thus attempts an insert for the new row. There might be a way to trick APEX into doing the right thing with some JavaScript, but I would advice against that, considering that this might break after a future upgrade.
    Regards,
    Marc

  • Hello. I try instal iTunes 10.5.0.142. Wehn I try I see this ,, There is a problem with this Windows Installer package. A program required for this install to complete could not be run. Concat your support personnel or package vendor." What I have to do ?

    Hello. I try instal iTunes 10.5.0.142. Wehn I try I see this ,, There is a problem with this Windows Installer package. A program required for this install to complete could not be run. Concat your support personnel or package vendor." What I have to do ?

    Hi
    You will need to uninstall all traces of previous iTunes installations any all associated items such as bonjour, mobile device thingy, apple software updated etc.
    Bonjour and iTunes can be uninstalled using the windows program uninstalled but for everything else best to use a separate installer program that also checks the registry for associated components as you will need to remove these too.
    Once you have removed all tracesofeverything apple related ( doesn't seem to matter about QuickTime) you can try to reinstall iTunes 10.5 and hopefully it should install without any problems. I had the same problem as you and once I did all this every went through fine, seems that there is something in the old versions, the software updated part I think which seems to be blocking certain items in the latest version.
    Good luck

  • I am having a problem with pop pups and small windows with ads constantly opening up on my safari?? Thought that macs didn't get virus? this looks like one- any experts around? please help me fix it with your instructions? really don't know what to do...

    Hi everyone,
    I am having a problem with my Mac OS X 10.7.5 mac book air , there are constant pop pups and small windows with ads blinking constantly opening up on my safari in front of everything?? it is constantly interupting me and makes me mistakingly click on it then another new windows open behind the one im using..
    I am not too sure if thats a virus or trojan.. I always thought that macs didn't get virus? this looks like one to me… any experts around? please help me fix it with your instructions? really don't know what to do... thanks

    Those are not viruses. You have probably installed some malware:
    The Safe Mac » Adware Removal Guide
    Helpful Links Regarding Malware Protection
    An excellent link to read is Tom Reed's Mac Malware Guide.
    Also, visit The XLab FAQs and read Detecting and avoiding malware and spyware.
    See these Apple articles:
              Mac OS X Snow Leopard and malware detection
              OS X Lion- Protect your Mac from malware
              OS X Mountain Lion- Protect your Mac from malware
              About file quarantine in OS X
    If you require anti-virus protection Thomas Reed recommends using Dr.Web Light from the App Store. It's free, and since it's from the App Store, it won't destabilize the system. If you prefer one of the better known commercial products, then Thomas recommends using Sophos.(Thank you to Thomas Reed for these recommendations.) If you already use Sophos, then be aware of this if you are using Mavericks: OS X Mavericks- Sophos Anti-Virus on-access scanner versions 8.0 - 9.1 may cause unexpected restarts
    From user Joe Bailey comes this equally useful advice:
    The facts are:
    1. There is no anti-malware software that can detect 100% of the malware out there.
    2. There is no anti-malware that can detect anything targeting the Mac because there
         is no Mac malware in the wild, and therefore, no "signatures" to detect.
    3. The very best way to prevent the most attacks is for you as the user to be aware that
         the most successful malware attacks rely on very sophisticated social engineering
         techniques preying on human avarice, ****, and fear.
    4. Internet popups saying the FBI, NSA, Microsoft, your ISP has detected malware on
        your computer is intended to entice you to install their malware thinking it is a
        protection against malware.
    5. Some of the anti-malware products on the market are worse than the malware
        from which they purport to protect you.
    6. Be cautious where you go on the internet.
    7. Only download anything from sites you know are safe.
    8. Avoid links you receive in email, always be suspicious even if you get something
        you think is from a friend, but you were not expecting.
    9. If there is any question in your mind, then assume it is malware.

  • I downloaded a song from i-tunes.  It plays on my computer, but won't play on my i-phone.  Any suggestions on how to fix this? Or how can I re-download the song without getting charged a second time.  I could not find an option to "report a problem".

    I downloaded a song from i-tunes.  It plays on my computer, but won't play on my i-phone.  Any suggestions on how to fix this? Or how can I re-download the song without getting charged a second time.  I could not find an option to "report a problem".

    I could not find an option to "report a problem".
    Log in to the Store. Click on "Account" in your Quick Links. When you're in your Account information screen, go down to Purchase History and click "See all".
    Find the item that is not playing properly. If you can't see "Report a Problem" next to the entry, click the "Report a problem" button. Now click the "Report a Problem" link next to the item.
    (Not entirely sure what happens after you click that link, but fingers crossed it should be relatively straightforward.)

Maybe you are looking for