Send-file nocache parameter does not appear to work in web server 7U1

Hi all,
I tried the nocache parameter on my webserver 7U1 deployment and it appears to have no affect - i.e. the specified files are still cached.
Reference:
http://docs.sun.com/app/docs/doc/820-1062/abuli?l=en&a=view&q=nocache
I tried this on a Webserver 6.1 installation and it worked properly.
Here's my obj.conf settings:
<Object name=default>
NameTrans fn="pfx2dir" from="/pdf/MNFS" dir="/opt/webserver7/https-orion/docs/orion/pdf/MNFS" name="pdf"
Service method="(GET|HEAD|POST)" type="*~magnus-internal/*" fn="send-file"
</Object>
<Object name="pdf">
Service method="(GET|HEAD)" type="*~magnus-internal/*" fn="send-file" nocache=""
</Object>
Any body else have this problem w/ web server 7? Any help would be greatly appreciated.
thanks,
Rob

Hi guys,
Thanks very much for the help - it was enough for me think more about it and solve the problem.
To answer mv's question, I did previously try the nocache on the default object and it didn't work either (but I will explain the reason below). I knew the file was cached, by seeing the old file in the browser even when refreshed and when checking the access log, the returned byte size was the same as the old file.
elving's comments indirectly led me to the problem, and I'm embarrassed to say it was actually an application error. We're using virtual web servers, and I had been modifing the correct obj.conf file (confirmed by server.xml) - the problem was that the application setting was pointing to the same physical server, but using a different hostname - d'oh!
So in other words, I was updated the conf file correctly for virtual server aaa.com, but the app was set to bbb.com (same physical machine), so the same file was being retrieved but my nocache directives for aaa.com we're being ignored.
Anyway, thanks again everyone for their help - much appreciated!!
cheers,
Rob

Similar Messages

  • (LDOM) The file just loaded does not appear to be executable.

    Sorry if this is not the right forum - it seems to be the closest one for things about LDOMs; plese let me know if I should post somewhere else.
    I have installed LDoms_Manager-1_2.zip on a T5220 Server; following the book ("Logical Domains 1.2 Administration Guide") I set up the control domain etc, then a guest domain (cranachan) - so far all appears well. I downloaded the dvd iso of Solaris 10 (sol-10-u7-ga-sparc-dvd.iso) and added it to the guest as described, started the domain and issued "boot vdisk_iso:f -v" - this seemed to work well, but there was an error that turned out to be that I had given the wrong path for the system disk.
    So I started over - removed the guest domain and the disk definitions for both guest and control domain, and removed the guest; then recreated everything. This time, when I "boot vdisk_iso:f -v" I get:
    The file just loaded does not appear to be executable.
    Any idea what may have happened? It makes no sense to me; not unless the iso file has been corrupted, but it doesn't seem to have been modified, and I can mount it as a loop-back fs in linux.

    I have the same problem with a Netra T1 system. Solaris 10 installed fine and it won't boot. It did have Solaris 8 on the system, but I put in new drives to start my Solaris 10 install.
    I tried booting to single user cd-rom (ok boot cdrom -s) and ran this:
    # installboot /usr/platform/SUNW,UltraAX-i2/lib/fs/ufs/bookblk /dev/rdsk/c1t0d0s1
    (SUNW,UltraAX-i2 was derived from # uname -i)
    It didn't help.
    I also tried "setenv diag-switch? false" at the okay prompt. It didn't help
    Any thoughts?

  • TS3276 sometimes on my Mac when i send a massage it does not appear in my sent bucket

    sometimes on my Mac when i send a massage it does not appear in my sent bucket

    Hello Sally1958,
    This is may be because one of your mail accounts is using a different folder for it's 'Sent' bucket. The following article goes into further detail, and also explains how to change the bucket that each account uses.
    Lion Mail: If messages aren’t stored where expected on the mail server
    http://support.apple.com/kb/PH4951
    Cheers,
    Allen

  • Error The file just loaded does not appear to be executable.

    Hi there,
    I have some problems with a Sun Fire T2000. Solaris 10 was installed one year ago. The server went down and now I am trying to connect to recover the dates and make a new installation.
    Booting the server, I don't get any message. If I type #. I reach to sc> mode and from there I can get to ok prompt. From either mode, I can't get in the operating system.
    From the ok prompt I issued "show-disks" and I booted with the cdrom choosing the option from the output of "show-disks". I got the "The file just loaded does not appear to be executable."
    I searched the error and then I booted with "boot cdrom -s" and I got the "ERROR: /virtual-devices@100/console@1: Last Trap: Division by Zero".
    Please advice for a new installation.
    Thank you.

    Hi, and again thanks.
    I understood that this server runs on different levels, like with firmware OpenBoot (ok prompt) or System Controll (sc>).
    I understood the different setups can be made from ok prompt, like the problem I have now.
    I am at the ok prompt. The "printenv" showed me that I was booting from net1, which is wrong because the installation just ended. So I changed to "disk" following your indications. I checked with printenv and indeed the boot sequence was changed to boot disk.
    I issued the boot command I after the message "Boot device: disk File and args:" it looks like hanging. I am sure I can get back to sc> prompt but it looks like a loop to me: how do I get into the operating system? I looks I can switch only from ok to sc and backwards. But, after booting I'd like to enter in Solaris OS, not OpenBoot firmware or System Control...
    Thank u for the time and listening.

  • exception-type in web.xml does not appear to work

    WLS 60 SP1 (#101616)
              <exception-type> in web.xml does not appear to work. WLS shows standard
              "Internal error 500" page instead of a custom error page. The custom error
              page is shown if <error-code> is used instead of <exception-type>.
              Any ideas? Thanks
              

    Can you show me some of your code? This works for me.
    Also, you say that you are working with 6.0sp3. Are you sure? sp3 hasn't been
    released yet, except in a very limited beta. (I believe only internally, but I
    could be wrong about that.)
    David
    [email protected] wrote:
    Hi all,
    I have created a very simple servlet and an index.html file with a link
    to it, then packaged it into a WAR file with the appropriate web.xml and
    ias-web.xml files. I then created an application.xml file referencing
    only this servlet and adding a context root. After deployment via
    "iasdeploy deployapp simple.ear" and cycling the web server, I can reach
    the welcome file (index.html) correctly
    -"http://localhost/NASApp/simple". When I attempt to follow the link to
    the servlet ("simple servlet") the URL ends
    up as "http://localhost/NASApp/SimpleServlet" whereas it should be
    http://localhost/NASApp/simple/SimpleServlet If I type that url in, the
    servlet executes fine.
    I've deployed this into Tomcat and get the behavior I expect. It appears
    that the element in the application.xml file is ignored by
    iAS.
    I'm using iAS SP3 on Win2k (same problem on NT).
    This is such a basic behavior that I can't believe this is an existing
    bug. I must be doing something wrong...
    Any ideas?
    Thanks in advance,
    -Glen
    Files are attached.
    Name: simple.ear
    simple.ear Type: application/x-unknown-content-type-ear_auto_file
    Encoding: base64
    Description: filename="simple.ear"

  • Crystal 8.5 (Minimum function in the function tree does not appear to work)

    HI I would greatly appreciate some help with this problem I am having.
    I am creating a report in which there is a group of records printed . Within each record there could be any number of results related to that record of which I want to extract both the maximium and minimum value and print these. This bit is fine as I do this using the maximum and minimum function available within the summary function.
    However with each of these max and min values calculated and printed I then want to create a footer that adds all these max and min values up. (This is not immediately possible using the 'summary function' max and min values as they are not presented on the 'Field explorer' dialog box for selection.
    However I can individually using the maximum 'tree function' get the report to store these values so that I can do the calculations once I have got to the footer (as the  fields defined are accessible through the field explorer. But the same minimum function does not appear to extract a result (and no I do not have zeros in the data).
    Is there a known problem with the minimum function?
    Is there another way of getting this data?
    Thank you in advance
    seyviv

    Hi Debi, it would be easier for mean to demonstrate what I wnat/am doing in the report by use of data.
    I have a file with a list of sample results. There may be many results for one sample. ie
    Sample      Result Number      Result
    98-01          1                           3
    98-01          2                           5
    98-01          3                           6
    98-02          1                           3
    98-02          2                           7
    98-02          3                           9
    98-03          1                           4
    98-03          2                           5
    98-03          3                           11
    On the first page I want to see the max and min values across all samples listed for each result number. Then as a total value (once all the result numbers max and mins are displayed I want to perform a calculation on the max and min values displayed in the list (ie. max 4 + 7 -11  and for min 3 + 5 - 6)  
                          Result 
                          Number        Max           MIn 
                          1                    4                3
                          2                    7                5
                          3                    11              6
    Result of                             0                2
    Calculation
    I have been able to do this for the max values but the minimum function does not work.
    How I currently extract this data is that I use a 'Summary field ' to calculate the max and min values in the list. However to get the data for the calculation at the bottom I use the 'Formula fields' to extract the values listed for all the results for 'result number 1, 2 & 3' and then use the 'Function tree' to get the 'Maximum value for each individual result number and then finally do a calculation on the max values. However, the same minimum function does not appear to work.
    I hope this explains what my problem is.
    Thank you in advance of any suggestions you may have
    Regards
    Viv

  • HT201240 This process does not appear to work for me.  I'm running 10.8.3.  I created a new user for a guest staying with me.  They have gone now and I am attempting to either change the password or delete the user.  It won't allow me to choose the user I

    This process does not appear to work for me.  I'm running 10.8.3.  I created a new user for a guest staying with me.  They have gone now and I am attempting to either change the password or delete the user.  It won't allow me to choose the user I created.  I am logged in as myself and it states that I am an "Admin".  The user I'm attempting to change is listed as a "standard" user and there is a white checkmark inside an orange circular background on the user pic in the list of users. 
    Can someone help me?  I am having a hard time believing that OSx will allow me to create users and allow them use of my computer and it's drives, yet it will not allow me to change the password so I can monitor what they might have been doing while logged on?  What if this were my child?  This guest left under sketchy circumstances, and I'd really like to be able to ensure they were not using my computer to do illegal things or to have illegal communications.
    Any help would be appreciated.  (It's odd that it was so simple to "create" a user and set a password for them.......but it's complicated or a little known process to reverse.
    Thanks.

    Here are two screen shots to show you what I am seeing.  The first screen shot shows it allowing me to select (highlighted in blue) my admin user (which is what I am locced in as).  The second screen shot shows it allowing me to select the "Guest" user (highlighted in blue).  However when I click on the user "Orion" nothing happens.  It will not change to highlight that user.

  • GetColumnAt(index) does not appear to work

    I am attempting to place a simple Icon in a dataGrid using
    cellRenderer. My problem is that
    'myDataGrid.getColumnAt(index).cellRenderer' does not appear
    to work. Most of the forum examples create arrays with AS and don't
    show this example. I already use XMLConnector (which works fine)
    the problem is referencing a column after the fact. I can do this
    when creating column smanually but not using getColumnAt(index).
    My code block:
    import mx.controls.gridclasses.DataGridColumn;
    import mx.controls.gridclasses.DataGridRow;
    import mx.core.UIComponent;
    playlist_dg.cellRenderer = "IconCellRenderer";
    playlist_dg.getColumnAt[3].cellRenderer = "IconCellRenderer"
    Any help is appreciated. cellrenderer is a bit hairy
    Mitch

    this is either a blindingly stupid question (for which I
    apologise) or a legit bug. Either response would put my mind at
    rest.
    Thanks
    Hillcreative

  • Msi gt70 2PE integrated HD 4600 graphics HDMI port does not appear to work.

    Hi guys,
    I have the GT70 2PE with integrated hd 4600 graphics and with a dedicated nvidia geforce gtx 880m card. The HDMI output does not appear to work.
    I'm tech savvy and cannot figure this out for the life of me. have tried nearly everything.
    lets start from the low level troubleshooting done:
    - plugged in the HDMI cable from a working computer that has HDMI hooked up to it. This did not make a difference from the new cable I bought for hooking up my TV to my laptop.
    - booted the laptop up and do not see a duplicate screen outputting via HDMI, all my video cards in my PC's I've built prior have always shown the HDMI output as a duplicate screen when I had a monitor hooked onto a PC. This makes me believe the HDMI port may be disabled/broken as there is no HDMI output at POST. Only the laptop monitor displays output.
    In Windows 8.1 I've installed the latest 4600 drivers and nvidia 880m beta drivers.(even though installing nvidia drivers shouldn't matter since I've read the HDMI output is tied to the 4600 integrated graphics chip, also if during POST the HDMI output never showed up on my TV, then installing the latest intel graphics drivers shouldn't have made a difference either, which it didnt make a difference).
    I've tried disabling the integrated graphics card then re-enabling it, as noted on the intel forums. - does nothing.
    what I've ruled out:
    -HDMI cable issues = no issues due to other PC's and devices working with the cables. All cable tests are direct connect to the TV, no intermediary devices such as hdmi splitters etc.
    -BIOS has zero options for graphics card options.
    Any ideas before i RMA this laptop? I'm at a loss. 

    OP's problem has been solved.  Also please don't resurrect and do not hijack other people's topics. Open your own one.
    >>Please read and comply with the Forum Rules.<<
    Topic Locked

  • Hashmap containsKey() method does not appear to work

    Hashmap containsKey() method does not appear to work
    I have an amazingly simple custom class called CalculationKey, with my own amazingly simple custom equals() method. For some reason when I call my containsKey() method on my HashMap it does not use my defined equals method in my defined key class. Do hashmaps have their own tricky way for establishing whether two keys are equal or not?
    THIS IS MY AMAZINGLY SIMPLE CUSTOM KEY CLASS
    private class CalculationKey
    private LongIdentifier repID;
    private LongIdentifier calcID;
    public CalculationKey(LongIdentifier repID, LongIdentifier calcID)
    this.repID = repID;
    this.calcID = calcID;
    public boolean equals(Object o)
    CalculationKey key = (CalculationKey)o;
    if (key.getCalcID().equals(calcID) &&
    key.getRepID().equals(repID))
    return true;
    else
    return false;
    public LongIdentifier getCalcID()
    return calcID;
    public LongIdentifier getRepID()
    return repID;
    THIS IS MY AMAZINGLY SIMPLE CALLS TO MY HASHMAP WHICH ADDS, CHECKS, AND GETS FROM THE HASHMAP.
    private Hashmap calculationResults = new Hashmap();
    public boolean containsCalculationResult(LongIdentifier repID, LongIdentifier calcID)
    if (calculationResults.containsKey(new CalculationKey(repID, calcID)))
    return true;
    else
    return false;
    public Double getCalculationResult(LongIdentifier repID, LongIdentifier calcID)
    return (Double)calculationResults.get(new CalculationKey(repID, calcID));
    public void addCalculationResult(LongIdentifier repID, LongIdentifier calcID, Double value)
    calculationResults.put(new CalculationKey(repID, calcID), value);
    }....cheers

    You can make a trivial implementation to return a
    constant (not recommended)What do you mean by that? Hmm.. I guess you mean that
    you shouldn't use the same constant for all objects?
    But don't see the int value of an (immutable) Integer
    as constant?
    /Kaj
    You can write hashCode to just always return, say, 42. It will be correct because all objects that are equal will have equal hashcodes. Objects that are not equal will also have equal hashcodes, but that's legal--it just causes a performance hit.
    The value is that it's really really simple to implement: public int hashCode() {
        return 42;
    } So you can use it temporarily while you're concentrating on learning other stuff, or during debugging as a way to confirm that the hashCode is not the problem. (Returning a constant from hashcode(), rather than computing a value, is always legal and correct, so if something's behaving wrong, and you replace your hashCode method with the one above, and it still breaks, you know hashCode isn't the problem.)
    The downside is that you're defeating the purpose of hashing, and any non-trival sized map or set is going to have lousy performance.
    For a decent hashCode recipe, look here:
    http://developer.java.sun.com/developer/Books/effectivejava/Chapter3.pdf

  • 'Find' function does not appear to work in TextEdit on .txt documents

    Most of the time the 'Find' function on the TextEdit application does not appear to work on .txt documents.  I have verified this by using Find on words that I know are in a document, and it cannot find them.  I've tried different options on the 'Find' function without success.  This appears to have started with version 10.6.8.  Has anyone else had this problem since upgrading to 10.6.8?

    Thanks -- but I swear it worked fine prior to either the 10.6.7 or 10.6.8 updates and now it doesn't.  I'll just keep experimenting and playing around with it and see if I can get it to work.  Maybe the new Lion O.S. coming out will fix it, although I'm not going to rush -- I made the mistake of putting Snow Leopard on right after it came out and had problems with some programs not working properly anymore (like Pro Tools, for example).  Always a good idea to hold off until most of the bugs get fixed. 

  • Forgot your answer : send request security info does not appear under password and security

    When going into My Apple Id then Password and Security, it is looking for you to answer security questions. I have forgotten them. The option on the bottom where you can send the request security info does not appear. I have tried different computers and different operating systems but still cannot get the option to appear.

    You need to ask Apple to reset your security questions. To do this, click here and pick a method; if that page doesn't list one for your country or you're unable to call, fill out and submit this form.
    (124482)

  • HT4864 my email is not being downloaded to i cloud. I do get my g-mail why is this and what do I need to check to have it downloaded by icloud. icloud is my default mail but does not appear to work??

    my icloud mail does not appear to be down loading i get all my g-mail and i cloud is my default what can I do to make sure that my I cloud mail is coming to me
    ? like I said Im getting nothing what so ever in the i cloud portion of the mail section.

    Once I figured out what was kent by who manages what mail service (e-mail) went to what E-Mail my I cloud was back on line thanks.

  • Clamshell mode does not appear to work with Mountain Lion installed

    Installed Mountain Lion on an 11" MacBook Air last Friday night.  Now the MBA does not work in clamshell mode at work with an external monitor.  It does not appear to wake or connect to the monitor.

    sjrlexlibris wrote:
    I was having the same problem.  Then I happened to plug in my external power supply and the problem went away.  In other words, I only have the problem if I am running my Macbook Pro on battery power.
    Mac notebooks: How to use your computer in closed clamshell (display closed) mode with an external display
    Requirements for closed display mode:
    Power adapter
    External keyboard, mouse, or trackpad
    External display
    Use these steps to enable closed clamshell (display closed) mode:
    Make sure the computer is plugged in to an outlet using the AC power adapter.

  • Use this mailbox for Junk does not appear to work in Mail 4.2.

    Hello, all:
    Have been using 10.6.x since it came out on my previous iMac [24" Early 2008 model]. Went with a fresh install of 10.6.3 on the new iMac [27" i7], and ported data over.
    The only problem that I've had is that setting the Use this mailbox for Junk command in setting up Mail 4.2 does not seem to work. I've closed Mail and looked at ~/Library/Preferences/com.apple.mail.plist, and the correct mailbox name is indicated for the two accounts [IMAP and GMail over IMAP] where I'd like to do Junk Mail filtering. However, there is no centralized Junk Mail filter, which is really annoying me.
    I didn't have this problem previously in Mail 4.x, and I'm expecting that it's a bug specific to 4.2, which I haven't seen in my previous incarnation because I did the import from 3.x->4.0, and the prefs carried forward correctly from 4.0->4.2.
    Anyone else running into this, and is there anything else I should be looking at? Am I explaining the problem such that it's clear what I'm asking?
    Thanks,
    Geof

    I figured out the problem (for me, anyways). In Preferences > Junk Mail, make sure Junk filtering is enabled and make sure the "move it to junk mailbox" radio button is selected.

Maybe you are looking for