Order of PathCheck directives not working?

Hello,
I have an odd problem with the execution order of the PathCheck directives in obj.conf file. I understand it that these are executed in order in which they appear in the file.
We're using the SmartFilter 4.2 content filter.
Basically the way I understand this should work is that the check-acl PathCheck directive should execute first (for the default ACL), presenting the authentication prompt, and then after that the sf-url-check PathCheck directive should execute at which point SmartFilter will then decide if it'll allow the page to be loaded or it'll return it's denied access page.
What's happening in actuality though is that if the page is one which SmartFilter would block, the proxy authentication prompt does not appear. If the page is one which SmartFilter would allow, the proxy authentication prompt does appear. I've swapped order of PathCheck's around and it doesn't change things.
If I replace sf-url-check with the default url-check everything works fine.
It's as though regardless of the order of PathCheck directives the SmartFilter one executes first and if it doesn't like the URL it just blocks it skipping the proxy authentication PathCheck directive, but if SmartFilter does like the URL it allows the proxy authentication PathCheck directive to execute.
I'm confused as I thought the order of the PathCheck directives executes in order of their appearance, but someone perhaps SmartFilter is overriding this.
This is in v4.04 of the proxy as SmartFilter presently doesn't support v4.05.
Any thoughts?
Here's the default object code from obj.conf:
<Object name="default">
PathCheck fn="check-acl" acl="default"
PathCheck fn="sf-url-check"
ObjectType fn="cache-enable" query-maxlen="10" log-report="off"
ObjectType fn="cache-setting" lm-factor="0.10" max-uncheck="7200"
Service fn="proxy-retrieve" method="*"
</Object>
Here's the default ACL from generated.proxy-testing.acl:
acl "default";
authenticate (user,group) {
database = "default";
method = "basic";
prompt = "Internet Access";
deny (all)
(user = "anyone");
allow absolute (all)
(group = "ApprovedInetUsers");
-----

Hello,
Does anyone have any thoughts as to what is causing this?
Thank you.

Similar Messages

  • In Report,order by clause is not working

    Hi All,
    For the report i prepared the query in this one am using the order by clause,i run the query in the sql plus working fine am getting the data based on the order by clause.when i use the same query for the report am getting the data but not in the order(i.e order by clause in not working).
    Please help me how to do this one.
    Thanks in Advance.
    Regards,
    Leelakrishna.G

    Hi Dora,
    Data is coming in the proper sequence,but in the first group data is not coming(In first group data first line only displaying,remaining data is not comming).
    My req is:
    The report is executing based on the creation date(i.e.,from creation date to today).
    In this so many Purchase requisitions will be there for this one different approval in different times will be there.
    For Ex:
    we will take 2 PR number only(for the first one 3 approvals,second one 4 levels of approval).
    1. one supplier 1person raised by 1PR submit
    No Action
    Approve
    2. 2Supplier 2personraised by 2PR Submit
    NO Action
    Forword
    Approve
    with ur suggestion am trying data is gettin fine but first group first line is coming remaining data is not coing.
    EX:
    1. one supplier 1person raised by 1PR submit
    No Action
    Approve
    2PR Submit
    NO Action
    Forword
    Approve
    Note:"2. 2Supplier 2personraised by " this kind of lines data is missing.
    Can you pls check and suggest me how i can do this.
    Thanks in Advance.
    Regards,
    Leelakrishna.G

  • All share functions except email are NOT enabled. I can create and print but order prints is also not working. HELP!

    All share functions except email are NOT enabled. I can create and print but order prints is also not working. HELP!

    Hello
    Please see notes and 4 attachments for your reference. Hopefully this information helps.
    Maureen
    what version of iPhoto are you using? 9.5.1
    what system version are you running? OSX 10.9.4
    what happens when you try to order? See attached picture. I want to share pics to FB & FLICKR etc
    did you make sure you've selected the correct Print Products store in iPhoto's Advanced preference pane? YES
    what fixes have you tried? Restarted computer. I'm not very computer savy. I have had no problems with this in the past.
    where is your library located? I have not moved anything for iphoto.
    did you apply any updates or upgrades just prior to the problem occurring? I can't remember
    are you running a "managed" or "referenced" library? Not sure how to find this out
    what type of Mac? iMac 2.5 GHz Intel Core i5
    how much free space on your boot drive? 12 GB 1333 MHz DDR3 - I have an external hard drive 1 TB

  • Maps Directions not working after upgrading to iOS 5

    So I upgraded to iOS5 and now two things happened:
    It now uses the Chinese version of Google, instead of the international English that I had before. So now I can only see the Chinese street names in Shanghai, instead of both Chinese and English names before.
    The directions do NOT work now!! I tried emailing directions from the site maps.google.com, and they do show up on iPhone Maps. I can even calculate different type of directions (car, walking, public transit) on iPhone of the emailed directions. It just doesn't work with directions created on the iPhone itself.
    I hope somebody can help me with these two problems.
    Thanks!!

    BACK TO ENGLISH AND CHINESE LIKE BEFORE!!!
    YES APPLE OR/AND GOOGLE FIXED IT.
    now works with and without the VPN.
    THANKS!!!!!!

  • JSP include directive not working with Tomcat 5.0

    Hi.
    I'm developing a small JSF webapp under Tomcat 5.0. My idea was to use the include directive to display a navigation panel on every JSP page.
    I took the code straight from the Java Web Services Tutorial; the resulting page looks like this:
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html"
           version="2.0">
    <jsp:directive.page contentType="text/html;charset=iso-8859-1"/>
    <%@ include file="/jsp/panelpage_header.inc" %>
         <h:outputText value="Welcome!"/>
    <%@ include file="/jsp/panelpage_footer.inc" %>
    </jsp:root>However, when I try to load the page, a compilation error occurrs:
    org.apache.jasper.JasperException: /trias/welcome2.jsp(11,2) The content of elements must consist of well-formed character data or markup.
         org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:39)
    ...I checked the path to the included files, and it seems to be okay. The files themselves contain the JSF tags for the view, html-head, html-body etc. The compiler doesn't even care if the files exist or not because it aborts immediately when it reaches the first include-statement.
    Did anyone see this kind of error before?

    Ok, the solution with jsp:directive.include works,
    if header.inc and footer.inc themselves are well
    formed too. If I understood the concept right this is
    because header and footer are processed during
    request time and therefore interpreted as
    'standalone' pages.This isn't true. The include directive (<jsp:directive.include>) is run a Compile Time. The code is inserted directly into the surrounding JSP (unlike <jsp:include> which forwards the request at runtime). The finished JSP, after the include, is then processed and needs to be well-formed XML.
    >
    But: What can I do when these two files define a tag
    that should enclose my current page (for example,
    header opens a panelGrid-Tag, and footer closes it).
    For this case I thought the use of the
    @include-directive would be neccessary to combine the
    three pages during compilation. By this the resulting
    page would be well-formed although header and footer
    are not.It should be, as long as you are using <jsp:directive.include>, and the rest of the included pages are also well formed (no <% %> tags, nothing else out of place...).
    Honestly, I haven't done much work with JSP documents, so I haven't run into this problem. But I do believe everything I said is correct.
    What I would do is double check the correctness of the rest of the included pages and see if your error isn't something else.

  • IOS 6 Map Direction Not Working

    Hi this is Karthikeyan from India, I am using apple iphone 3GS, I have updated os from ios5 to ios6, the problem is io6 map is not working like previous version ios5... The main problems is in ios6 map Route Directions completely not working... anyone help to resolve this..??

    First, I would suggest looking at: http://support.apple.com/kb/HT5429.
    In ios 6, apple removed google maps as the default and provided their own mapping service. Maps is not available in all areas and there are ways to report problems inside the application.

  • I absolutely CANNOT figure out how to add playlists to my ipod. i have followed directions - NOT WORKING.. frustrated!!!!!!  HELP.

    please help!  i am a fitness instructor that DEPENDS ON MY PLAYLISTS, and ever since i upgraded to itunes 11 last week, i CANNOT figure out how to add playlists to my ipod!  the tutorials were not helpful, as i followed instructions, and it DID NOT WORK.  i am VERY frustrated.  can someone help?
    thanks!

    revert the look and feel to itunes 10
    View > Show Sidebar
    View > Show Status bar.
    Now everything will work before.
    Click on your iPod in the lefthand window. Then use the music sync page to select your playlists. Or drag the playlists to your device

  • Purchase order release strategy Workflow not working

    Hi All,
    I am working on PO Approval release strategy and it is not working fine . The release strategy set up is configured by my functional consultant . I just copied the standard workflow template WS20000075 and making changes to my custom workflow template . When ever po is created an event "RELEASESTEPCREATED" get triggered and the first approver receives an workitem and when he approves it goes to Second Approver and it is working fine . But when rejected then a notification email goes to initiator . Now when an initiator login into ME22N and made any changes ( even material text change ) in it then again "RELEASESTEPCREATED" event getting triggered . But I need to trigger my workflow only when there is change in PO Net value .
    Kindly help me how to achieve this functionality .
    Thanks and regards
    Dilip

    Hi Vikram,
    There is already an existing entry for BUS2012 with event CHANGED against the change doc EINKBELEG .
    Acutlly when login as initiator and try to change PO through ME22N here are my observations :
    case 1:   When Buyer click on  " Cancel Reject " button and do any changes ( even text change ) then RELEASESTEPCREATED and CHANGED events  are triggering  . But since the event linkaged is set to RELEASESTEPCREATED workflow get restarted again.
    Even the CHANGE event does'nt have 'RELEASECODE' as parameter to restart workflow .
    Case 2:  When Buyer doesn't click on " Cancel Rejection" buttion and do any changes then only CHANGE event get triggered
    which do nothing since there is no event linkage .
    Is to  click on " Cancel Reject" button mandatory ? .  But even though we make " Cancel Reject"  as Button mandatory then RELEASESTEPCREATED Button triggering for any change but we need to trigger it for only net Value change .
    Thanks and regards,.
    Dilip Kumar

  • SORT BUTTON ON PURCHASE ORDER ITEM OVERVIEW IS NOT WORKING

    Gentlemen
    We have recently upgraded our system from SAP R3 4.6 to SAP ECC 6.0. After the upgrade we have noticed an issue in transactions ME21N, ME22N, ME23N; despite the u201CSortu201D button on the item overview is available, itu2019s not working. It doesnu2019t sort (ascending or descending)  material, material text or any another column.
    Please let me know if there is a sap note to adjust this mistake or another advice.
    Thanks
    JM

    To fix this:
    Goto Personal settings --> Basic settings --> Item overview: "Check" Item overview as grid control.
    Once grid control is active, you should be able to sort columns.
    Hope this helps-

  • Purchase order on Hold is not working from Sales Order document

    Hello gurus,
    I'm detecting a problem that I have.
    I have created a Sales Order and then, this document create a Purchase Requisition in automatic.
    So, when I create the purchase order, adopting the purchase requisition, I want to save this as on Hold.
    The problem is that the button "Hold" is missing.
    But, if I create a purchase requisition and I register the sales order directly (account assignment "E") and then, I create the purchase order, adopting the purchase requisition, the button "Hold" is not missing.
    I have active the BADI to Hold, but, it is only mention restrictions with Third Party and Services, not with Sales Order normal.
    Could you help me please a.s.a.p.?
    Regards,
    Sandra Palomo

    Application component: MM-PUR-PO-GUI                                                                               
    Function group: MEPO                                                                               
    The Business Add-In (BAdI) ME_HOLD_PO enables you to specify whether an    
    Enjoy purchase order can be put on hold or whether this function is to be  
    suppressed in accordance with your requirements.                                                                               
    In the standard system, this function is generally offered during the      
    creation of an Enjoy purchase order (transaction ME21N) and when a PO      
    that is on hold is changed (transaction ME22N).                                                                               
    Note                                                                               
    Enjoy purchase orders cannot be put on hold if any of the following        
    criteria apply:                                                            
    o  The PO contains service items                                           
    o  The PO contains "third-party" items                                     
    o  Commitment errors are involved                                          
    o  Subsequent (period-end volume rebate) settlement is involved                                                                               
    In the case of stock transfers within a company code, the "Hold" function  
      is generally inactive. If an application object contains an error of any   
      kind, the function is likewise inactive.

  • LOV based on Query - ORDER BY :P_ITEMVALUE does not work

    Hello guys! I have a special request that I'm focussing on. I have a couple of select lists in my application that contain tree species.
    On the first page the user has the opportunity to assign a ranking to the respective tree species. The database column storing that information is named INT_BEDEUTUNG.
    Instead of using that order by clause continously I want to be able to change the order by definition using two buttons. One is used to order alphabetically (column BA_LANG) and one is used to order by the field INT_BEDEUTUNG.
    Hence I tried to bind an item (P6_SORT) via a button, assigning it to either BA_LANG or INT_BEDEUTUNG.
    The tree species select lists in my reports are based on LOVs using the following query:
    SELECT BA_LANG, LNG_BAUMART
    FROM VT_TBL_BAUMART, vt_tbl_BAUMARTENBEDEUTUNG
    where CNT_BAUMART = LNG_BAUMART and
    LNG_GEBIET=:P6_lng_gebiet
    order by :P6_SORTI thought that if :P6_SORT conatins the value BA_LANG or INT_BEDEUTUNG, the selct list would be ordered accordingly. Unfortunately it doesn't, although P6_SORT is not empty?
    Do you have an idea what I am doing wrong or how to change the order by clause for that query for the whole application?
    I'd appreciate your interesting answers and thoughts!
    Best regards,
    Sebastian
    Edited by: skahlert on 17.09.2009 08:52

    @ Roel
    Thanks Roel! I believe your suggestion works! Thanks a lot! Great to get such a rapid solution! :-)
    Nevertheless I have one more question. I am using 2 html buttons on page 1 with URL-redirect in order to set the item on a specific page. This was for testing purposes only.
    Now I just want to set the attribute or value on page one where the respective buttons are placed.
    I have other navigating buttons on the same page, which when clicked, bind items on the target page. These should be used throughout the application to forward the item value for P_SORT.
    Now the question is - how can I bind an item on page 1 without being redirected? Is there a javascript routine or a simple trick that does the trick???
    Thanks again and best regards,
    Sebastian

  • Help: ORDER BY variable does not work in CS3

    I have a variable in my recordset query for the ORDER BY
    clause which is set by the URL variable, 'order'. With CS2 the
    recordset worked fine with the variable. CS3 shows N/A for the
    variable type in the Recordset dialog, and when I click Test to
    test my recordset, it says I need to specify a variable type. So I
    set it to 'Text' and suddenly the variable doesn't even work. It
    just orders the records by ID. Am I going to have to use CS2 to
    create recordsets with an ORDER BY variable in the future or is
    there some other way around this?

    AngryCloud wrote:
    > In CS2, Dreamweaver does not ask for a data type.
    There is no such thing as Dreamweaver CS2. You are presumably
    talking
    about the version of Dreamweaver that was bundled with Adobe
    Creative
    Suite 2 after Macromedia was acquired by Adobe. That was
    Dreamweaver 8.
    From the sound of it, you have the original Dreamweaver 8,
    which didn't
    use data types for variables. Everything changed when the
    8.0.2 updater
    was released. The updater made important changes to the way
    Dreamweaver
    handles variables in SQL queries. These are designed to
    prevent
    malicious attacks through SQL injection. Dreamweaver CS3 uses
    the same
    code as Dreamweaver 8.0.2.
    If I remember correctly, Dreamweaver will automatically
    update all the
    code if you open the Recordset dialog box, make any changes,
    and then
    click OK. If that doesn't work, the safest approach is to
    select the
    Recordset in the Server Behaviors panel, and click the minus
    button to
    remove it cleanly. Then build the recordset again: a
    nuisance, I know,
    but it makes your code more secure.
    When using LIKE in a SQL query, you must always choose Text
    as the data
    type, even if you're using numbers in the variable field.
    This is
    because the SQL specification says that LIKE is for comparing
    strings.
    Dreamweaver 8.0.2 and above now follows the SQL
    specification, whereas
    it didn't before.
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS3" (friends of
    ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • Maps - Transit directions not working!

    All of the sudden for a reason unknown to me, my Maps app stopped giving me directions! The GPS works, it will find locations and my location but will not give directions. It shows "Transit directions could not be found between these locations" and I'm not using it any differently than I ever have, no other country or anything like that so I'm stumped!! HELP PLEASE....

    I'm also experiencing a similar issue. When I attempt to get directions on the public transportation option I see the blue lines all over the place. Not sure if this was is a result of a recent update or not. The step-by-step directions are correct but the blue lines on the map are all jacked up.

  • SALES ORDER REASON FOR REJECTION NOT WORKING .

    Hi Friends
    Though user mention reason for rejection in preceding sales orders'  line item s,still  those line items are being copied to subsequent documents ( to another sales order and billing document ) .
    Do you feel  there may be  problem is in  standard SAP functionality or I  have to do something in configuration ( copy control )  to restrict it ?. not one sales order , it's happening for all the sales orders .
    Thanks in advance
    Rusheek

    Please check ur copying requrement routine in VTAA must be "301" and "Pos./neg. quantity" must be "+". Check with this configuration,
    If any query please revert back
    Rgds
    Dhirajjjj

  • Ordered Qty in Sales order exit USEREXIT_CHECK_VBAP is not working

    Hi All,
      In a requirement, I changed the ordered quantity in a Sales order in the exit USEREXIT_CHECK_VBAP to a desired quantity.For eg: Some one has entered a quantity 5 and pressed enter, my program logic in that exit changed that quantity to 10, after saving it get reflected in VBAP-KWMENG as 10, uptill this it fine.
      Now the problem is when I want to see the same saved Sales Order through VA02 its show me the previously entered qty as 5 not 10.
      Kindly let me know if there is anything am missing.
      Kindly help me out.
    Thanks
    Bhagat

    write your code in the below
          FORM USEREXIT_SAVE_DOCUMENT_PREPARE                           *     
          This userexit can be used for changes or checks, before a     *     
    FORM userexit_save_document_prepare.                                        
    ENDFORM.                    "USEREXIT_SAVE_DOCUMENT_PREPARE

Maybe you are looking for

  • Regarding FCC in receiver side

    HI friends, i need help regarding FCC. my input file is a text file on which some of fields doesn't have data so i want to display pipe symbol in that empty field in receiver side. what i have to do in the sender channel parameters side. points will

  • TNS-01150: The address of the specified listener name is incorrect  TNS-011

    Hi Gurus, Good day! I would like to seek your expertise on how to resolve the errors below: TNS-01150: The address of the specified listener name is incorrect TNS-01153: Failed to process string: (ADDRESS=(COMMUNITY=sap.world)(PROTOCOL=TCP)(Host=155.

  • Does SOA 10.1.3 support Oracle DB 11.2?

    Hi frdnz, I need the know supported oracle versions for SOA 10.1.3. A link to oracle site would be very helpful.. Thanks in advance. Lisan

  • Remote disc sharing with windows 7 pc not working

    I bought Photoshop Elements to put on my MacBook Air. Since I could get a better price from Amazon than Adobe, I ordered the cd version and recieved it in the mail. I was planning to either use a product key to download it or use remote disc sharing.

  • Rochester/Roadrunner Issues with SMTP Server

    Hello. New to Rochester and Roadrunner. I let Mac Mail setup the account but it couldn't resolve the SMTP server on Roadrunner. I can receive but not send. I've played with all of the port and SSL settings and still nothing. It shows my account as "o