About the filtering feature

Hi,
The Filters section of the documentation says :
"After the original resource is invoked, control is passed back to the
filter at the bottom of the list in the chain. This filter can then
examine and modify the response headers and data, block the request,
throw an exception, or invoke the next filter up from the bottom of the
chain. This process continues in reverse order up through the chain of
filters."
The Servlet 2.3 specification doesn't mention the fact that the filter
chain is followed twice.
Did I miss something in the spec ?
Can anyone confirm the WLS behaviour ?
Thanks in advance.

In your filter, you invoke the doFilter method on the filter chain
which in turn invokes the next filter in the chain or the service
method of the servlet if there are no more filters. When the
method invoked by doFilter returns, doFilter itself returns and
control comes back to you. So we are not in fact traversing
the chain again, rather, this is a natural result of unwinding
the call stack.
mark
patrice thiebaud wrote:
Hi,
The Filters section of the documentation says :
"After the original resource is invoked, control is passed back to the
filter at the bottom of the list in the chain. This filter can then
examine and modify the response headers and data, block the request,
throw an exception, or invoke the next filter up from the bottom of the
chain. This process continues in reverse order up through the chain of
filters."
The Servlet 2.3 specification doesn't mention the fact that the filter
chain is followed twice.
Did I miss something in the spec ?
Can anyone confirm the WLS behaviour ?
Thanks in advance.

Similar Messages

  • How can I edit a PDF?  Someone told me about the "typewriter" feature, but can't locate that.

    How can I edit a PDF?  Someone told me about the "typewriter" feature, but can't locate that.

    Hi karenw22462415,
    You'll need to Acrobat to edit a PDF file. If you don't have Acrobat, you're welcome to download a 30-day trial from http://www.adobe.com/products/acrobat.html.
    This Help document will get you started: https://helpx.adobe.com/acrobat/using/edit-text-pdfs.html.
    Best,
    Sara

  • Query about the filterable tag in ADF Tables

    Hi all,
    We having an issue with the the implicit filtering feature provided by ADF. We have followed all the rules for filtering:
    1. filterable="true" and sortable="true"
    2. headertext is present
    3. filterModel="#{bindings.InstanceDetailsVO11Query.queryDescriptor}"
       queryListener="#{bindings.InstanceDetailsVO11Query.processQuery}"
    Now the filter is working fine. But after we reset the page the filter field still has the previous data entered by the user.
    Is there any way we can refresh the field as well?
    Any suggestions would be very helpfull1
    Thanks.

    Hi,
    You can programmatically clear the filter fields and refresh the table by using the below snippet.
    public void resetTableFilterListener(ActionEvent actionEvent) {
            FilterableQueryDescriptor queryDescriptor = (FilterableQueryDescriptor)getYourTable().getFilterModel();
            if (queryDescriptor != null && queryDescriptor.getFilterCriteria() != null) {
                queryDescriptor.getFilterCriteria().clear();
                getOrdTable().queueEvent(new QueryEvent(getYourTable(), queryDescriptor));
    Try if this works for your requirement.
    Thanks

  • A question about the Calendar feature on a Samsung SCH-u410?

    I have an older Samsung SCH-u410, and I have a question about using the Calendar feature. I will set an event in the calendar and set a reminder. Then later I will turn the reminder off, but the alarm will still go off. Shouldn't setting the reminder box to off turn the alarm off. Am I forgetting to do something or is there a problem with my phone? Any info will be gratefully appreciated!!!! I can be e-mailed directly at >> personal information deleted <<
    Thanks,
    Randy
    Message was edited by: Verizon Moderator

        Thank you for your post Junebug. On most phones, turning the reminder off will stop the alarm from sounding. As this is a much older device, I don't have a phone to test. Have you tried removing the calendar event completely? Did you recently purchase this phone or have you had this for awhile?
    MarquiaF_VZW
    Follow us on Twitter @VZWSupport

  • Useful things about the | CLIP feature

    There are other users for the "clip" feature?
    The help is pretty exmplanatory, but i´m wondering if there is a "hidden" feature, or undocumented paramenter, to make more useful things
    I´m thiniking if there is a way to get information FROM the "clip", i would like to send some information TO "clip", but after that, i would lke to build a batch to get information store in the "clip" and store in text files,
    variables, and so on
    ============================================================================
    C:\Windows\system32>clip /?
    CLIP
    Description:
        Redirects output of command line tools to the Windows clipboard.
        This text output can then be pasted into other programs.
    Parameter List:
        /?                  Displays this help message.
    Examples:
        DIR | CLIP          Places a copy of the current directory
                            listing into the Windows clipboard.
        CLIP < README.TXT   Places a copy of the text from readme.txt
                            on to the Windows clipboard.

    There are other users for the "clip" feature?
    Clip.exe is just a cmd command line interface to the clipboard for saving text from Standard Output.
    If you want more command line interface to the ClipBoard see the related PSCX extensions to Powershell.
    PS C:\windows\system32> help *clipboard*
    Get-Clipboard Cmdlet Pscx Get-Clipboard...
    Out-Clipboard Cmdlet Pscx Out-Clipboard...
    Set-Clipboard Cmdlet Pscx Set-Clipboard...
    Write-Clipboard Cmdlet Pscx Write-Clipboard...
    Sounds like what you really want is command line interface to clipbrd.exe (the old XP GUI tool for displaying the contents of the ClipBoard.)  The only analogy there is that it allowed us to save all the contents of the Clipboard to a .clp file for
    later reuse or inspection.
    Robert Aldwinckle

  • About the interview feature in podcasting

    does the person you want to interview have to have a mac?

    I guess you are talking about the iChat recording in GB. No, they don't have to have a Mac. If they are on AIM and you can set up an audio chat with them in iChat, then GB can record it.

  • How does one learn about the new features or pending features

    I'll be honest I have know about Acrobat,com for some time but have recently found a few business opportunities.  Throughout the fourms I see notations about future releases. Some great opportunities if some of the features were a bit more enriched.
    Is there a means of finding out what features are planned and possible target releases ?   I am curious from both the Acrobat.com sharing perspective as well as the CS Review functions.
    Thanks in advance

    All 3rd parties apps are the developers of the apps responsibility.
    Locate the apps on Mac App Store and check the developer website (on the top right of the product description).
    Read here:
    http://www.apple.com/osx/apps/#maps

  • About the AddXmlDeclaration feature on XML assembler

    I created an application that sends messages using the XML assembler component. This component features a property that might be enabled if we would like to set the xml declaration (?xml version=1.0?) on top of the document. By default the declaration is
    appended to the rest of the document, so if i have
    <say>
    <hi/>
    </say>
    As it is appended, it turns out something like this:
    <?xml version="1.0"?><say>
    <hi/>
    </say>
    Strictly speaking, it is fine. Any parser would understand that. My client is arguing they cannot understand the document unless I line break the xml declaration from the contents. Something like this:
    <?xml version="1.0" ?>
    <say>
    <hi/>
    </say>
    The only thing coming to my mind is to create a pipeline component that parses the full document looking for <? ?> tokens, but I am looking for some other way that might be more elegant that messing up with the message payload.
    Thanks in advance.

    You are correct in that their parser is not 'compliant'.  Similar issue comes up with the Byte Order Mark frequently as well.
    Do they even need the Declaration?
    Anyway, I would try to solve this with a combination of XmlReader and XmlWriter as I image that would offer a better performance profile depending on the size of your outgoing messages.
    The quickest solution would be to Indent the whole document using XmlWriterSettings.Indent = True;
    Or, don't have the XmlAssembler write the Declaration, then in your component, write the declaration, write a CR/LF (or equivalent) then write the entire Document Element node.

  • HT5457 can anyone share more info about the Passbook feature.  seems like it would be useful, but nothing happens when i try to launch it on my iPhone

    how do you use the new passbook feature that appears on your iPhone with the new iSO6?  i cant seem to get it to launch, i have no ideas how to use it, it seems like it would be a great tool, HELP!

    You need to download apps that are compatible with passbook.  There are less than 20 available right now I'd say
    Such as:
    Target
    American Airlines
    Fandango
    Ticket Master
    If you click the link to the app store through passbook and get an error, use this article to fix it: http://www.macworld.com/article/2010185/fix-passbooks-app-store-error-in-ios-6.h tml
    You can also use this site: http://www.passsource.com/ to create your own cards such as Blockbuster card, petco card, petsmart card, etc
    To add to passbook once you've downloaded compatible apps try the following:
    So if you have the target app you need to go into the target app > my target> mobile coupons > scroll to bottom of page  and click "add to passbook"
    My assumption is that you need to add things to passbook through the target app or american airlines app and so on.

  • Here's a list from Apple about the new features in Lion

    http://www.apple.com/macosx/whats-new/features.html

    Welcome to Apple Support Communities.
    Look at the date of the original post.
    That link is generic, so it always goes to the latest (or imminent) release.
    In June 2011, it was a link to the then-current version OS X, 10.7 Lion.
    A year from now that link will go to the whatever beast the next version is named for.
    This is a helpful Apple gateway to specs and documents for a wide range of hardware and software
    http://www.apple.com/support/
    The specific document you're looking for might be this one:
    http://support.apple.com/kb/SP629
    And popular search engines will uncover a wealth of related information. Here's a review of selected OS X 10.7 features from a third-party:
    http://www.gizmag.com/osx-lion-new-features/19298/

  • Question about the  "Suggestions" feature in the search box

    How can you tell if the “Suggestions” in the search box are generic or part of my own browsing history? Can the suggestion history be cleared?

    Hey Andy..thanks for the response. The reason I asked is when I start typing in the search box a drop down list of suggestions appears and some of the suggestions I'm not sure where they are coming from. Also, I thought maybe it was based on my own browsing. Example I was typing in a name and it started suggesting specific people. Curious if was because I had gone to their website in the past or it was based juts on my location and the algorithms of the search engine to make a suggestion.  I have even cleared my browsing history but the same suggestions come up. 

  • Question about the restore feature

    My phone went blank two weeks ago-- i did a soft reboot and now the phone no longer will connect with my car to make phone calls.
    If i hit restore -- how far back does this go-- will i loose apps that i have installed later?? will it help my phone reconnect with my car??
    the car is a BMW 3 series and says it is ready to connect. . . it definitely something with the phone
    it is an iphone 3, software 4.0.2

    Restoring an iPhone with iTunes completely erases the iPhone first followed by the firmware being re-installed. After the firmware is re-installed, there are two options. From your iPhone's backup which is the default selection, or as a new iPhone or not from your iPhone's backup which must be manually selected. After either option, this must be followed by a sync with iTunes to transfer your selected content under the various tabs for your iPhone sync preferences with iTunes. When restoring from your iPhone's backup, what is currently selected under the various tabs for your iPhone sync preferences with iTunes will be pre-selected since this is included with your iPhone's backup. Your iPhone's backup is updated as the first step during the iTunes sync process and you are prompted to update your iPhone's backup as the first step after selecting Restore.
    This link provides the data that is included with your iPhone's backup.
    http://support.apple.com/kb/HT1766
    3rd party apps are not included with your iPhone's backup. All 3rd party apps on your iPhone should be in your iTunes library on your computer and will be if you have Sync Apps selected under the Apps tab for your iPhone sync preferences with iTunes. If this is not currently selected and most or all apps on your iPhone are not in your iTunes library on your computer, before selecting Sync Apps with your iPhone connected, at the iTunes menu bar go to File and select Transfer Purchases From - the name of your iPhone. This should include all paid and free apps. After this select Sync Apps making sure all apps on your iPhone are selected below before syncing.
    3rd party app settings and data created and stored by a 3rd party app is included with your iPhone's backup.
    Not sure if this will help with your iPhone connecting with your car.

  • I have windows xp and thought my photos would be streamed to my pc but I guess not...what about the other features of icloud?

    I am very disappointed to find out that icloud does not work with windows xp.  I really liked the idea of having my photos on my iphone stream directly to a library on my pc but now I find out that will not happen.  Is there anything that icloud will do for a pc using windows xp?  Will it still back up my songs, apps, purchased etc? and if so, how will I access them if I need to restore them to my phone if I cant install the icloud tool bar?

    Boot Camp- Some computers require Microsoft Windows 7

  • Two questions about the events feature

    Sometimes I think it is OK to use different rolls for the same happening, e.g. when I have received photos from my wedding from a lot of people that did not syncronise their cameras to the second...
    If I have understood correctly, my present rolls (iPhoto '06) will all be rearranged and called "events" when I install iPhoto '08. So then I'll have to sort all those photos from my wedding manually. Is this right?
    Second question: I already have an "event" with my own photos from my brother's wedding. If another guest at the wedding sends me his photos and I import them into iPhoto, what will happen? Will those newly imported photos be automatically placed inside the already existing event, so that I will need to use an hour to find those new photos one by one if I want to place them in another event, or if I want to adjust them etc?

    Jadar:
    It depends on how you have your Events preferences setup.
    If you leave the checkbox unchecked then the import will go into a single Event. Then you can drag that event into the already created wedding event.
    If the checkbox is checked then the imorted photos will go into new events based on the date of the photo and the criteria setup for Events date. In either case you'll have to drag the new event(s) into the current wedding event.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • About the extra features

    I was putting some text files into my iPod but when i read it doesn't show me the whole text, it sort of goes to not even half way. I had checked my memory and I still have like 4GB to use so I don't think it is a memory problem. So I was thinking maybe I have to go to next page or something but I don't know how. If anyone know what is my problem please teach me how. Thank you

    This may explain why.
    Long notes on the iPod are truncated..

Maybe you are looking for

  • Sent this Letter to CEO, Emailed Support, Tweeted and Still NO Response

    Not sure how to get anyone's attention here, but the complete disregard for my situation guarantees that I'm taking my business elsewhere.   Hubert Joly CEO 7601 Penn Ave. S Richfield, MN 55423 RE: {removed per forum guidelines} and {removed per foru

  • Ripping Files From a Non Commercial DVD

    Is there an alternative to MPEG Streamclip for doing this? I love the little app but just wondered if there was anything else out there that does an equally or better job? Regards, Kenny.

  • BAPI for Ordered Quantity updation for PO after PO line item cancellation

    Dear Experts,         I am trying to cancel a line item in ME22N for a particular Purchase Order. When I cancel an item, the ordered quantity is updated in the Status Tab for Header Details. I want to know how is this quantity getting updated and whi

  • Handling Warning pop up windows in BDC call transaction method

    Hi All, Iam using a BDC to automate the Costing Process i.e. Transaction CK40N using call transaction method. In a particular Screen after i perform the execute action, a warning pop up window appears. Only if I click on OK, the execution continues o

  • Changing the control of Tabstrip?

    Hi Experts.. I have scenario in Tabstrip like NAME DESCRIPTION HELP I have a button in Name Tab. When i click tht one, It will switch over to the Description Tab and Have to display the infm in Description Tab.. I have only one view... Pls help me To