GZIP Filter works sometimes, doesn't other times...

I downloaded and installed the GZIP Filter from the Bea website. It works great most of the time. But in doing some performance testing, I found that the output for some pages is compressed some of the time but not others. I also found some pages were never compressed during the testing. Does anyone know what would cause this?
Thanks.
Greg

Are you using fixed IP addresses or are you using DHCP?
Change to static (fixed) IP addresses and when you hit ⌘ K then enter the IP address of the other Mac.
iFelix

Similar Messages

  • Facetime works sometimes and not others

    My fiance and I are trying to get facetime working since we currently live across states. I'm on my iPad 2 and she's on her MBP (she got one a few months before the most recent update to Sandy Bridge, fyi).
    When it comes to facetime, I can use it with my friend who has an iPhone 4 flawlessly. It literally works every single time. With my fiance, we've gotten it to work/connect 3 times total. Once while I was in the same room as her, and twice since then across our connections.
    So I don't think it's a port issue as it tends to work sometimes and not others. It feels like the software is literally just not working right. Can anyone lend a hand? A few points of interest:
    - Skype works perfectly (the resolution is just meh and you can't turn it on the iPad). So video is going through
    - It has worked before
    - When it has connected in the past, the two times it wasn't at her place, we've been randomly disconnected and unable to reconnect
    - The error it gives is on her end - Failed to connect or something like that
    Thanks for the help!

    I am having the same problem with safari and mail have to use the home button, swipe to clear memory won't work either my mini is only a few months old, so it has to be the update.

  • Every time i search nfl on google, firefox freezes then it sometimes unfreezes and other times crashes.

    Every time i search nfl on google, firefox freezes then it sometimes unfreezes and other times crashes.

    Hello,
    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * On Windows you can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac you can open Firefox 4.0+ in Safe Mode by holding the '''option''' key while starting Firefox.
    * On Linux you can open Firefox 4.0+ in Safe Mode by quitting Firefox and then going to your Terminal and running: firefox -safe-mode (you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    [[Image:FirefoxSafeMode|width=520]]
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Thank you.

  • Why does my Pixma MP 980 sometimes print and other times give me 5700 paper jam msg untrue?

    I'm having trouble with an erratic printer Pixma MP 980. Somtimes it prints (wireless connection) and other times it receives job but doesn't do it, saying there's a paper jam (error msg 5700 - turn off printer, get jammed paper out - there is no jammed paper - and if it doesn't work then, consult manual.)
    Manual has nothing about this in Troubleshooting that I can find. Why does the printer work sometimes, then not? It repeats even after I turn it on and off, but only after a successful printing. Then next job is error, but no paper jam to prove it.

    Hello marykennedy,
    Unfortunately, when the 5700 error repeatedly displays on the printer, the printer will require servicing to determine the exact cause of the issue.  Please click on the Contact Us link below to obtain servicing options.
    This didn't answer your question or issue? Find more help at Contact Us.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • Ichat 4.0 Sometimes works, sometimes doesn't

    Hello,
    I have asked many firewall questions on this forum before. At this stage, what seems to work are the appletest servers, both video and voice. But...I have many friends that have accounts that sometimes work, sometimes don't. With no changes whatsoever to the firewall or computers. These users that I try to contact run the gamut from aim on windows, to ichat on tiger, to ichat on leopard. And again, sometimes will work, sometimes not.
    I found an article on the web that states that multiple computers on your home network with the same user id's could cause this issue....Is that true? I have a 5 mac household, and the user id's are all the same. Now I'm only logged into ichat as me on my computer, so I'm not sure how that could happen.
    I have read the docs about ports to open, and I have opened them all, and then some, because I have found that sometimes ichat demands a port to be open that has nothing to do with those listed.
    Any clues?

    I have comcast as a service provider. They provide the modem. I have my own computer based router, running freebsd. I have full control over the firewall. I am running NAT inside the firewall. I have seen this behavior with both the firewall disabled, and with the ports I have opened. What is crazy is that while watching the security logs, when I test an account that doesn't work, I'll get a UDP deny on some arbitrary port that isn't supposed to be used by ichat.

  • Why AbstractAction sometimes work sometimes doesn't work ?

    In my program I need to use the Esc key, so I did the following to implement it, sometimes when I started the program and press the Esc key, it works as I intended, but other times after the program starts and I pressed the Esc key, no response, but if I minimize the window and restore it, and then I press the Esc key, it would work fine. Has anyone encountered similar problem ?
        Action Escape_Action=new AbstractAction("Escape Action")                             // Create an action object
          public static final long serialVersionUID=26362862L;
          // This is an instance initializer; it is executed just after the constructor of the superclass is invoked
            // The following values are completely optional
            // Set tool tip text
            putValue(Action.SHORT_DESCRIPTION,"Tool Tip Text");
            // This text is not directly used by any Swing component; however, this text could be used in a help system
            putValue(Action.LONG_DESCRIPTION,"Context-Sensitive Help Text");
            // Set an icon
            Icon icon = new ImageIcon("icon.gif");
            putValue(Action.SMALL_ICON, icon);
            // Set a mnemonic character. In most look and feels, this causes the specified character to be underlined. This indicates that if the
            // component using this action has the focus and In some look and feels, this causes the specified character in the label to be underlined
            putValue(Action.MNEMONIC_KEY,new Integer(java.awt.event.KeyEvent.VK_A));
            // Set an accelerator key; this value is used by menu items
            putValue(Action.ACCELERATOR_KEY,KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE,0));
          public void actionPerformed(ActionEvent evt)                                       //  This method is called when the action is invoked
        // Register keystroke
        this.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW).put(KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE,0),Escape_Action.getValue(Action.NAME));
        // Register action
        this.getActionMap().put(Escape_Action.getValue(Action.NAME),Escape_Action);
        Frank

    You need to create a "Short, Self Contained, Compilable
    and Executable, Example Program (SSCCE)",
    see http://homepage1.nifty.com/algafield/sscce.html,
    that demonstrates the incorrect behaviour, because I can't
    guess exactly what you are doing based on the information provided.

  • SE K750i phone to Mac thru USB: Sometimes works, sometimes doesn't

    I sync and transfer files to and from from my SE K750i cellphone via Bluetooth most of the time and it works great.
    The other day I tried using the USB cable (came with the phone) and to my amazement, it opened iPhoto to download the pics I had taken with the camera feature on the phone. Also, it mounted the Memory Stick the phone uses as a Mass Storage device on the desktop.
    Here's where it gets weird: Just like it worked perfectly before, now the Mac won't recognize the phone. I can still sync and transfer with Bluetooth beautifully.
    I tried using the Image Capture application and the phone is listed on the "Devices" list, but it won't connect.
    The USB cable is connected to a 4 port USB hub, which is in turn connected to the USB port in the rear of the Mac (along with a digital camera, PDA and printer. They all work and connect fine).
    Any ideas?
    Thanks for your input guys!

    I figured it out.
    Seems the K750i wont mount as a Mass Storage device and iPhoto wont launch as long as its connected to an USB hub. If the USB cable for the phone is connected straight into the G4 USB port it will work just fine.
    I have no idea why this happens, but at least the issue is solved.

  • Font changing size when i go to yahoo mail on my new netbook sometimes its ok other times it appears microscopic i have to close firefox then reopen and sometimes this works other times it does not work Why ?

    this does not happen on any other site i visit only on yahoo mail.yahoo,s answer to the same question is we dont know reason maybe its firefox.

    I have had that happen with Comcast web mail, too. You can't hold the Ctrl key and then use the scroll wheel to do certain functions in the web mail software. That function will work in the web mail software, but you will also change the Zoom factor of the page. You have to remember to '''''reset''''' the Zoom factor immediately, Firefox will remember the Zoom factor and use that until you reset it to default.

  • Exporting to .MOV works sometimes and not others? Help?

    I've been working on an animation project, but I'm really new at this.
    I need to export my different clips as .mov files. Sometimes, this works great. But most of the time, the .mov exports as a still image (the first frame of my clip). When I export as a .swf file, this works fine. I can play them, etc. However, I can't convert the file from .swf to .mov. Usually I get an error saying there is no relevant data to export or that the file is corrupted. I know the file isn't corrupted, so that's not it.
    I think the problem might be that not all of my animation is on the main timeline. Still, I can't tell the difference between the files that did export correctly and those that didn't. And I'm really hoping that I can do this without putting all of my animation on the main timeline. But like I said, I'm new at this.
    I need to edit using Final Cut Pro, so I can't use the .swf files without conversion.
    Thanks in advance for any help! I really need it.

    I am having the same problem with safari and mail have to use the home button, swipe to clear memory won't work either my mini is only a few months old, so it has to be the update.

  • Printing Sometimes Works, Sometimes Doesn't

    I have the most unusual problem, and I'm not expecting any answers. I was wondering, however, if anyone had any ideas about figuring this thing out.
    On one computer network (mainly running 1.4.x with Windows 2000) I can print my JComponent absolutely normally with expected results. On another system (NT 1.4.x), the print dialog sometimes comes up/sometimes not. For some, it prints. For others, nothing doing.
    I'm mystified and would appreciate any help and ideas. Stuff that breaks some of the time is hard to debug.
    Here's the code that handles the printing:
    public class PrinterObj {
    private static PrinterJob printer = PrinterJob.getPrinterJob();
    private static PageFormat page = printer.defaultPage();
    public static void pageSetup()
              page = printer.pageDialog(page);
    public static void printComponent(JComponent c)
    //PrintWrapper is one of our classes
              printer.setPrintable(new PrintWrapper(c), page);
              boolean testbool = printer.printDialog();
              System.out.println("Test the print dialog: " + testbool);
              if(testbool)
              try{
                        printer.print();
              }catch(PrinterException pe){
                        System.out.println(pe.toString());

    If anyone wants to know the cause of this problem, here it is:
    Java can't print to one of the printers. There are multiple printers on the network, all the same exact model. For whatever reason, one of those printers does not work. It's very weird.
    If the bad printer is set as the default printer, the print dialog box won't even show up.
    Very weird.

  • ALSA randomness, sometimes works, sometimes doesn't

    I'm having some very strange problems with ALSA
    I updated my system and had some issues with it, so changed to OSS. Then found more problems with OSS because my programs aren't compatible with it and I just want to go back to ALSA.
    I can do an 'alsaconfig' command in the terminal and sometimes it'll find the card, sometimes it won't.
    on bootup sometimes ALSA will initialise and i'll get sound the whole session, but on a reboot I won't.
    I've followed the wiki pretty well and everything was working for 4 months then an update has stuffed it up
    I'm on a clonezilla backup at the moment and this one is even playing up, for some reason i've got sound coming out of my virtual box, but not arch, this will usually happen if i try to play music out of Rhythm Box. That gives me the error " Couldn't start playback, The autoaudiosink element is missing."
    what's happening?
    $ lsmod|grep '^snd' | column -t
    snd_seq_dummy 2720 0
    snd_intel8x0 30616 2
    snd_ac97_codec 106112 1 snd_intel8x0
    snd_seq_oss 31232 0
    snd_seq_midi_event 7036 1 snd_seq_oss
    snd_seq 53808 5 snd_seq_dummy,snd_seq_oss,snd_seq_midi_event
    snd_seq_device 6792 3 snd_seq_dummy,snd_seq_oss,snd_seq
    snd_pcm_oss 40320 2
    snd_mixer_oss 17564 1 snd_pcm_oss
    snd_pcm 74464 3 snd_intel8x0,snd_ac97_codec,snd_pcm_oss
    snd_timer 21156 2 snd_seq,snd_pcm
    snd 58820 9 snd_intel8x0,snd_ac97_codec,snd_seq_oss,snd_seq,snd_seq_device,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_timer
    snd_page_alloc 8900 2 snd_intel8x0,snd_pcm
    $ ls -l /dev/snd
    total 0
    drwxr-xr-x 2 root root 60 2009-11-21 23:40 by-path/
    crw-rw----+ 1 root audio 116, 8 2009-11-21 23:40 controlC0
    crw-rw----+ 1 root audio 116, 7 2009-11-21 23:50 pcmC0D0c
    crw-rw----+ 1 root audio 116, 6 2009-11-23 20:19 pcmC0D0p
    crw-rw----+ 1 root audio 116, 5 2009-11-21 23:40 pcmC0D1c
    crw-rw----+ 1 root audio 116, 4 2009-11-21 23:40 pcmC0D2p
    crw-rw----+ 1 root audio 116, 3 2009-11-21 23:40 seq
    crw-rw----+ 1 root audio 116, 2 2009-11-21 23:40 timer
    $ sudo /etc/rc.d/alsa restart
    :: Saving ALSA Levels [DONE]
    :: Restoring ALSA Levels [DONE]
    $ aplay /usr/share/sounds/alsa/Front_Center.wav
    ALSA lib pcm_dmix.c:1010:(snd_pcm_dmix_open) unable to open slave
    aplay: main:608: audio open error: Device or resource busy

    bump

  • Flash file works sometimes, but not others

    Here is the page with what I am trying to do. It is volunteer
    work for a non-profit, and I am not an uber flash programmer, but I
    have come this far, and would appreciate any helps diagnosing the
    possible causes for this. Please view this link to see what I am
    talking about. Clicking on the thumbnails opens a separate window
    with a photo gallery.
    http://www.coafkids.org/dev/photovideo/
    On my computer, this works fine, both on the authoring end
    and the server end. On some others, reportedly, they can view some
    of the gallery slideshows, but not others. The reports have been
    random, so there is no consistency with which shows work and which
    do not.
    The flash file is the same exact file for each of the
    galleries. Each gallery has its own folder on the server. In this
    folder, there is a flash file(same exact file in all galleries) an
    XML file specific to that gallery, and an images folder. The XML
    file gives the flash file the location and respective caption for
    each image that is located in the images folder. With all the flash
    files named exactly the same in each folder, with exactly the same
    code, how does it not work on only some machines??
    Any light, anything at this point would be extremely
    helpful..
    Thank you in advance,
    Armo

    The people that report problems are only reporting them for
    one, two, or sometimes just three out of the 9 galleries.
    Therefore, since it is exactly the same flash file used in all 9,
    why would some choose not to work. And even worse, why are the ones
    that do not work varied across each person?
    Thank you for your response.... hope we can all solve this
    mystery together...

  • Full screen vertical scroller sometimes works, sometimes doesn't

    Curious to know if anyone else has had this problem or there's some information that my elucidate this mystery:
    Our publication ran a page with a full-screen vertical scrolling overlay today for the iPad. Inside of Viewer the folio flipped from page to page just fine, but once published we were unable to move between pages any longer once on this particular page. We've run full-screen vertical overlays before without incident and we're stumped to understand why the Viewer elicited no issues while the final publication did.
    I put this question to you, Forum: Any thoughts?

    Hey Lightgarden,
    Welcome to Apple Support Communities.
    From what I gather, your iPhone 4s intermittently stops responding and displays a blank black screen. If you haven’t already, take a look at the article linked below and try the troubleshooting suggestions that it provides.
    If your iPhone, iPad, or iPod touch doesn't respond or doesn't turn on - Apple Support
    If your device doesn't respond when you press buttons
    Your device might not return to the Home screen when you press the Home button, wake from sleep when you press the Sleep/Wake button, slide to unlock or power off, or it might appear frozen. Try these steps:
    Restart your device.
    If it still doesn't respond, or if it doesn't turn back on, reset your device.
    Get more help
    If you still need help after trying the steps above, contact Apple Support.
    Cheers,
    -Jason

  • Sometime works, sometime doesn't

    Hello Good Morning!
    I create an application and I redo again but I have hard time to figure out. I don’t want to cop the application.
    If anyone wants to share, please let me know.
    This is long story:
    I am developing an application that includes 3 pages.
    In page one, a report with edit button that associate with own row (same idea master detail form). Add button directs to page 2 with a form with empty (same idea Crate button of master detail form).
    In page two, the form with data that can change and history of the notes (report).
    There are three buttons: Cancel, Apply Change (same idea master detail form). Add Note button direct to page 3.
    In page three, vertical shows the report from page one and reports of the Note history (from page 2). Between the reports, user can input new note and Cancel button (direct to page2) and Add button (insert New Note).
    A Master Detail form includes several of the features that have been covered so far. The Master Detail wizard will create two application pages. One page is a report and the other has a form and a tabular form on the page. There is the option of separating the second page into two separate pages. At the developer’s request, the wizard will put the form on one page with a standard report, and another page will have a form to edit a single detail record for a total of three application pages.
    Thanks for reading all,
    Sam

    Hi Issac,
    Are the flashes asociatedwith beeps?
    The following table lists the new tones and their meaning:
    Tone(s)          Description
    1 tone, a 5-second pause, repeat          No RAM installed
    3 successive tones, a 5-second pause, 3 successive tones          RAM does not pass data integrity check
    1 long tone when holding down the power button          Firmware upgrade in process. See About firmware updates for Intel-based Macs for more details.
    3 long tones, 3 short tones, 3 long tones          Firmware restoration from CD in process. See About the Firmware Restoration CD (Intel-based Macs) for more details.
    http://support.apple.com/kb/HT2538
    Older meanings...
    Can you count the beeps or flashes?
    1 beep = no RAM installed
    2 beeps = incompatible RAM types
    3 beeps = no good banks
    4 beeps = no good boot images in the boot ROM (and/or bad sys config block)
    5 beeps = processor is not usable
    In addition to the beeps, on some computers the power LED will flash a corresponding number of times plus one. The LED will repeat the sequence after approximately a 5-second pause. The tones are only played once.
    Note: In this case, a flash is considered to be 1/4 second or 250 ms or greater in length.

  • "http request error" - SQL call sometimes works, sometimes doesn't

    Hello everyone,
    A bit of a random question, maybe someone has an idea...
    I have a flex app that queries data from a mySQL service via http service. Overall, things work great! The queries are quick to return a result and without issues. But, when I view the website from my work PC, I get this error "HTTP Request Error", and none of the SQL calls work. Any ideas? I know my work has very tight security regulations, but I would still think it would be able to work.
    I can't get a better security message because I can't set up and run flex to debug the issue, all I get is "HTTP Request Error", so who knows what it could be. I have tested my website from about 15 computers/different networks, and they all work, except my work PC. Any ideas?
    And yes, the flash version is current.
    Thanks!

    it sounds like the work security is blocking it
    can you write a simple html page that fetches the data and displays it?It might give you a better idea what is happening behind flex

Maybe you are looking for

  • Cluster setup

              Hi,           I'm running two WLS 6 in a multihomed machine. Do I need to install to instances           of WLS or can I install one instance and use the same file, but starting with           different scripts. Are there any negatives or p

  • Can 10.1.2 an 10.1.3 relese JDevelopers be on the same computer?

    Hi, I have Developer Suite 10.1.2 (and relevant OC4J with Reports and Forms services, and JDeveloper, namely) on my WinXP Computer and I now plan to install JDeveloper 10.1.3 can I do this wihtout unistall of my present developer suite? Well - the ma

  • How to run classic apps on a Macbook

    I do not know where to post this, so excuse me if this is OT. But I ran into this page http://www.applelinks.com/index.php/more/sheepshaver23_enables_you_to_run_classic_macos_programs_onmacintels/ I suppose this is a shareware app (not a commercial a

  • Migrating MS Access database to Oracle 8i

    Hello, How can I migrate a database in MS Access to Oracle 8i? I need do a program with 2 conections (one in Access and other in Oracle) and saving in Oracle?? Thanks

  • Create .DLL file to register an UDO

    Hi, How do we create a .DLL file to register an UDO? I would appreciate if you can give me a step by step minute details. Regards Sudatt