Policy not found / access to URL denied

Hi,
I've installed a policy agent for Apache on redhat and integrated it with SunOne ID server. The authentication works as i can login but i then get denied access to the requested URL. The log of the policy agent says that the policy cannot be found (see below) despite the fact that one of the SunOne ID log file can find the policy for this URL. strange ?
T.
2003-04-05 21:14:00.339 Error 10409:0x80c6e08 PolicyEngine: am_policy_evaluat
e: InternalException in Service::getPolicyResultource: with error message:Policy not found for resource: http://ptah.cpc.wmin.ac.uk:80/index.htm)@<B0>~^^A and
code:7
2003-04-05 21:14:00.339 Warning 10409:0x80c6e08 PolicyAgent: am_web_is_access_a
llowed(http://ptah.cpc.wmin.ac.uk:80/index.htm, GET) denying access: status = no policy found (7)
2003-04-05 21:14:00.339 128 10409:0x80c6e08 RemoteLog: User delaitt was denied access to http://ptah.cpc.wmin.ac.uk:80/index.htm.

Im having the same problem. I installed web server policy agent on S1 webserver 6.1. The policy is available at the top level in the directory tree and I selected this test user as a subject. No conditions were specified. I get this error in amAgent after login :
2004-09-17 12:03:08.705 Error 20423:626488 PolicyEngine: am_policy_evaluate:
InternalException in Service::getPolicyResult with error message:Policy not foun
d for resource: http://aa.na.aa.net:8080/index.html and code:7
2004-09-17 12:03:08.706 128 20423:626488 RemoteLog: User skris was deni
ed access to http://aa.na.aa.net:8080/index.html.
2004-09-17 12:03:08.785 -1 20423:626488 PolicyAgent: validate_session_poli
cy() access denied to skris
The IS logs shows the user has been user had been successfully authenticated. But the amAuthLog shows:
"2004-09-17 12:04:23" "User skris was denied access to http://aa.na.
aa.net:8080/index.html." amAuthLog "Not Available" "Not Available"
"Not Available" "Not Available" "cn=amService-UrlAccessAgent,ou=DSAME Users,dc=n
ovartis,dc=com" "Not Available"

Similar Messages

  • Not found - The requested URL /apex/wwv_flow.show was not found on this ser

    I have a very simple anonymous block (see below) which I am using to test an area of the database I am developing using OE and APEX. Sometimes the block works and other times it fails with the following error message------
    Not found - The requested URL /apex/wwv_flow.show was not found on this server
    Before the error message is displayed a pop-up window appears with a submit button ( the heading on the window contains --- Enter Bind Variables - windows internet explorer), which I do not understand.
    Is the problem I am experiencing due to some memory limitation ? or do I have a corrupt oracle system (everything else appears OK though).
    Any help or advice would be much appreciated.
    Best Regards
    Lawrence Cattell
    Here is the anonymous block (please no comments on the code). If I extend the number of DBMS_OUTPUT.PUT_LINES beyond the current number of 3 it fails everytime, sometimes it works with 3, sometimes it fails. Is it related to the number of variables I am binding to the WSI_QUOTE Type ?
    DECLARE
    v_dir VARCHAR2(20):='WSI_REPORTS';
    V_COUNT NUMBER(2,0);
    V_QTE_REF_NBR WSI_QUOTES.QTE_REF_NBR%TYPE;
    V_CTR_ID WSI_QUOTES.CTR_ID%TYPE;
    v_QTE_REC_NBR WSI_QUOTES.QTE_REC_NBR%TYPE;
    v_QTE_DTE WSI_QUOTES.QTE_DTE%TYPE;
    V_PEB_NBR WSI_QUOTES.PEB_NBR%TYPE;
    V_QTE_COM WSI_QUOTES.QTE_COM%TYPE;
    V_SAI_NBR_01 WSI_QUOTES.SAI_NBR_01%TYPE;
    V_QTY_01 WSI_QUOTES.QTY_01%TYPE;
    V_SAI_NBR_02 WSI_QUOTES.SAI_NBR_02%TYPE;
    V_QTY_02 WSI_QUOTES.QTY_02%TYPE;
    V_SAI_NBR_03 WSI_QUOTES.SAI_NBR_03%TYPE;
    V_QTY_03 WSI_QUOTES.QTY_03%TYPE;
    V_SAI_NBR_04 WSI_QUOTES.SAI_NBR_04%TYPE;
    V_QTY_04 WSI_QUOTES.QTY_04%TYPE;
    V_SAI_NBR_05 WSI_QUOTES.SAI_NBR_05%TYPE;
    V_QTY_05 WSI_QUOTES.QTY_05%TYPE;
    V_SAI_NBR_06 WSI_QUOTES.SAI_NBR_06%TYPE;
    V_QTY_06 WSI_QUOTES.QTY_06%TYPE;
    V_SAI_NBR_07 WSI_QUOTES.SAI_NBR_07%TYPE;
    V_QTY_07 WSI_QUOTES.QTY_07%TYPE;
    V_SAI_NBR_08 WSI_QUOTES.SAI_NBR_08%TYPE;
    V_QTY_08 WSI_QUOTES.QTY_08%TYPE;
    V_SAI_NBR_09 WSI_QUOTES.SAI_NBR_09%TYPE;
    V_QTY_09 WSI_QUOTES.QTY_09%TYPE;
    V_SAI_NBR_10 WSI_QUOTES.SAI_NBR_10%TYPE;
    V_QTY_10 WSI_QUOTES.QTY_10%TYPE;
    V_CTR_NME WSI_CUSTOMERS.CTR_NME%TYPE;
    CURSOR GET_QUOTE_INFO_CUR IS
    SELECT *FROM WSI_QUOTES WHERE QTE_REC_NBR = 2;
    BEGIN
    DELETE WSI_QUOTE_TEMP_HOLD;
    OPEN GET_QUOTE_INFO_CUR;
    LOOP
    FETCH GET_QUOTE_INFO_CUR INTO V_QTE_REC_NBR,V_QTE_REF_NBR,V_CTR_ID,v_QTE_DTE,V_PEB_NBR, V_SAI_NBR_01,V_QTY_01,V_SAI_NBR_02,V_QTY_02,V_SAI_NBR_03, V_QTY_03,
    V_SAI_NBR_04, V_QTY_04, V_SAI_NBR_05, V_QTY_05,V_SAI_NBR_06, V_QTY_06,V_SAI_NBR_07,V_QTY_07,V_SAI_NBR_08, V_QTY_08, V_SAI_NBR_09, V_QTY_09,
    V_SAI_NBR_10,V_QTY_10,V_QTE_COM;
    EXIT WHEN GET_QUOTE_INFO_CUR%NOTFOUND;
    SELECT CTR_NME INTO v_CTR_NME FROM WSI_CUSTOMERS WHERE CTR_ID = V_CTR_ID;
    END LOOP;
    CLOSE GET_QUOTE_INFO_CUR;
    V_COUNT :=1;
    DBMS_OUTPUT.PUT_LINE(v_QTE_REF_NBR|| '***' ||v_CTR_ID|| '***' ||V_CTR_NME|| '***' ||V_peb_NBR|| '***' ||V_SAI_NBR_01|| '***' ||V_QTY_01);
    DBMS_OUTPUT.PUT_LINE(v_QTE_REF_NBR|| '***' ||v_CTR_ID|| '***' ||V_CTR_NME|| '***' ||V_peb_NBR|| '***' ||V_SAI_NBR_02|| '***' ||V_QTY_02);
    DBMS_OUTPUT.PUT_LINE(v_QTE_REF_NBR|| '***' ||v_CTR_ID|| '***' ||V_CTR_NME|| '***' ||V_peb_NBR|| '***' ||V_SAI_NBR_03|| '***' ||V_QTY_03);
    END;

    The interpreter could be choking on the "*from" (no space before "from") might not be parsing the SQL as intended .
    The "Enter Bind Variables" dialog box is coming from something undefined, I'd suggest putting that block into an .sql file and run it via sqlplus.
    To demonstrate how a bind variable is handled try setting up a file with:
    select * from sometablename where somecolname = &somekeyval;
    -- or '&somekeyval' if its varchar2When you connect with sqlplus and run that file it will prompt for the value to use for "somekeyval".
    Only other thing is to ensure the "select * ..." has the same column names and in the same order as expected by the fetch, perhaps the table layout has changed and you could be getting an added column or maybe missing one at the end of the list.
    If you try running that block in a sqlplus session enable serveroutput to see the dbms_out result (set serveroutput on size 50000)

  • I can not load my yahoo email. I get the following message: "Not Found The requested URL /mc/showMessage was not found on this server. Apache/2.2.9 (Debian) mod_jk/1.2.26 PHP/5.2.6-1+lenny4 with Suhosin-Patch etc... (too many characters for your ? page

    Can't log into yahoo email. I get the following message: "Not Found The requested URL /mc/showMessage was not found on this server.

    OK here is the problem I am having with this.. It might be related to my own machine but I need help where to look..
    on the command line using mintty on XP I have this:
    $ nslookup us.mg6.mail.yahoo.com
    Non-authoritative answer:
    Server: Wireless_Broadband_Router.home
    Address: 192.168.1.1
    Name: any-ycpi-uno.aycpi.b.yahoodns.net
    Addresses: 98.136.145.155, 216.115.101.178, 216.115.110.119, 216.115.101.179
    98.136.145.157, 98.136.145.154, 216.115.110.118, 98.136.145.156
    Aliases: us.mg6.mail.yahoo.com, geoycpi-uno-deluxe.gycpi.b.yahoodns.net
    geoycpi-uno.gycpi.b.yahoodns.net
    HOwever when I look in firebug for where the ip for the above domain is this is what I get:
    66.115.130.31 clearly not listed above..
    Let's check the aliases
    $ nslookup geoycpi-uno-deluxe.gycpi.b.yahoodns.net
    Non-authoritative answer:
    Server: Wireless_Broadband_Router.home
    Address: 192.168.1.1
    Name: any-ycpi-uno.aycpi.b.yahoodns.net
    Addresses: 216.115.110.118, 98.136.145.156, 98.136.145.155, 216.115.101.178
    216.115.110.119, 216.115.101.179, 98.136.145.157, 98.136.145.154
    Aliases: geoycpi-uno-deluxe.gycpi.b.yahoodns.net
    geoycpi-uno.gycpi.b.yahoodns.net
    nope
    $ nslookup geoycpi-uno.gycpi.b.yahoodns.net
    Non-authoritative answer:
    Server: Wireless_Broadband_Router.home
    Address: 192.168.1.1
    Name: any-ycpi-uno.aycpi.b.yahoodns.net
    Addresses: 98.136.145.156, 98.136.145.155, 216.115.110.118, 216.115.101.179
    98.136.145.157, 216.115.101.178, 98.136.145.154
    Aliases: geoycpi-uno.gycpi.b.yahoodns.net
    nope
    where is this 66.115.130.31 ip comming from.. why isn't firefox using native DNS lookup?
    When I do a reserve lookup on that ip it points to nationalnet.com as the top SOA..
    any ideas?

  • When using firefox on yahoo and opening my mail it says Not Found The requested URL /dc/launch was not found on this server. How can this be fixed?

    when using firefox on yahoo and opening my mail it says Not Found The requested URL /dc/launch was not found on this server. How can this be fixed?

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    * Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • Profile Manager - Not Found  The requested URL /wiki was not found on this server.

    I have installed Lion Server with Web and Profile Manager services. When I log into the profile manager web page I receive the message "Not Found  The requested URL /wiki was not found on this server."  I followed the guide here for install http://krypted.com/iphone/setting-up-profile-manager-in-lion-server/.

    This was the fixed I found
    Fixing profile manager has been solved by someone else:
    1.  Turn off all services under Server app.
    2.  Under Hardware, settings, change SSL certificate to "none"
    3.  Under Hardware, network, reset host name again.
    4.  Under Hardware, settings, change SSL certificate back to correct one
    5.  Turn Web service ON.
    It may still say /var/empty.
    6.  Turn Wiki service ON
    7.  Recheck Web service.  It should be changed to /Library/Server/Web/Data/Sites/Default.

  • MSSQL Server 2012. Error accessing reporting website. Not Found The requested URL /ReportServer1 was not found on this server. Unable to uninstall MSSQL 2008

    Hi all. I have recently installed MSSQL Server 2008, and was not able to access the URL when I clicked on it. It gave me a 404.
    When I installed 2012, I tried the same thing and it also throws me a 404 error. How should I go about solving this? What are the log files that you may need to help me solve this?
    At the same time, I have also tried to uninstall my 2008, but am always stuck at not being able to remove Client Connectivity Tools and some other components. Please let me know what log files you need and I will be happy to provide them. Thanks!
    The following is the log for the uninstallation.
    Overall summary:
      Final result:                  Failed: see details below
      Exit code (Decimal):           -2068052368
      Exit facility code:            1212
      Exit error code:               1648
      Exit message:                  Failed: see details below
      Start time:                    2014-04-11 09:40:30
      End time:                      2014-04-11 09:41:37
      Requested action:              Uninstall
      Log with failure:              C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140411_093720\sql_tools_Cpu64_1.log
      Exception help link:           http://go.microsoft.com/fwlink?LinkId=20476&ProdName=Microsoft+SQL+Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=10.50.1600.1
    Machine Properties:
      Machine name:                  ADC-PC
      Machine processor count:       8
      OS version:                    Windows 7
      OS service pack:               Service Pack 1
      OS region:                     Singapore
      OS language:                   English (United States)
      OS architecture:               x64
      Process architecture:          64 Bit
      OS clustered:                  No
    Product features discovered:
      Product              Instance             Instance ID                    Feature                
                     Language             Edition              Version         Clustered 
      Sql Server 2008 R2                                                       Management Tools - Basic      
                                   Enterprise Edition   10.50.1617.0    No        
      Sql Server 2008 R2                                                       Management Tools - Complete    
                                  Enterprise Edition   10.50.1617.0    No        
      Sql Server 2008 R2                                                       Client Tools Connectivity      
                                  Enterprise Edition   10.50.1617.0    No        
    Package properties:
      Description:                   SQL Server Database Services 2008 R2
      ProductName:                   SQL Server 2008 R2
      Type:                          RTM
      Version:                       10
      SPLevel:                       0
      Installation edition:          EVAL
    User Input Settings:
      ACTION:                        Uninstall
      CONFIGURATIONFILE:             C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140411_093720\ConfigurationFile.ini
      ENU:                           False
      FARMACCOUNT:                   <empty>
      FARMADMINPORT:                 0
      FARMPASSWORD:                  *****
      FEATURES:                      CONN,SSMS,ADV_SSMS,CE_TOOLS,BROWSER,WRITER
      HELP:                          False
      IACCEPTSQLSERVERLICENSETERMS:  False
      INDICATEPROGRESS:              False
      INSTANCEID:                    <empty>
      INSTANCENAME:                  <empty>
      PASSPHRASE:                    *****
      QUIET:                         False
      QUIETSIMPLE:                   False
      UIMODE:                        Normal
      X86:                           False
      Configuration file:            C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140411_093720\ConfigurationFile.ini
    Detailed results:
      Feature:                       SQL Writer
      Status:                        Passed
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       SQL Browser
      Status:                        Failed: see logs for details
      MSI status:                    Failed: see details below
      MSI error code:                0x1648
      MSI log file location:         C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140411_093720\sql_tools_Cpu64_1.log
      MSI error description:         
      Configuration status:          Passed
      Feature:                       SQL Compact Edition Tools
      Status:                        Failed: see logs for details
      MSI status:                    Failed: see details below
      MSI error code:                0x1648
      MSI log file location:         C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140411_093720\sql_tools_Cpu64_1.log
      MSI error description:         
      Configuration status:          Passed
      Feature:                       Client Tools Connectivity
      Status:                        Failed: see logs for details
      MSI status:                    Failed: see details below
      MSI error code:                0x1648
      MSI log file location:         C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140411_093720\sql_tools_Cpu64_1.log
      MSI error description:         
      Configuration status:          Passed
      Feature:                       Management Tools - Complete
      Status:                        Failed: see logs for details
      MSI status:                    Failed: see details below
      MSI error code:                0x1648
      MSI log file location:         C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140411_093720\sql_tools_Cpu64_1.log
      MSI error description:         
      Configuration status:          Passed
      Feature:                       Management Tools - Basic
      Status:                        Failed: see logs for details
      MSI status:                    Failed: see details below
      MSI error code:                0x1648
      MSI log file location:         C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140411_093720\sql_tools_Cpu64_1.log
      MSI error description:         
      Configuration status:          Passed
    Rules with failures:
    Global rules:
    There are no scenario-specific rules.
    Rules report file:               C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140411_093720\SystemConfigurationCheck_Report.htm

    Strange, but finally the procedure below did solve my problem.
    # Go to Control Panel > Add or Remove Programs and look for '''Anti Phishing Domain Advisor'''.
    # If you click on ''Click here for support information'' you'll see it is a Panda program.
    # Uninstall '''Anti Phishing Domain Advisor''' program...
    # This did solve my problem
    See also [https://support.mozilla.com/en-US/questions/811399#answer-205531 Can't open mail. Get this message: 404 Not Found nginx/0.6.32]

  • "Source not found" Error creating URL Data control with query parameters

    Hi,
    I have a restful service for which i want to create a URL data control. I am able to create the URL data control successfully when i am not passing any parameters in the Source field. But if i am specifying the parameters in the source field like this Department=##ParamName##, something weird is happening. After giving the param string in the Source field, it asks for default param value to test the url. It tests the url successfully. After that i select XML as the data format in which i am mentioning the xsd like this . "file:///C:/..../something.xsd" . And this is when i am getting the error. "Invalid Connection. The source is not found". I am giving exactly same path for xsd which i gave while creating URL data control without query parameters. Infact i was able to create the URL data control with query parameters successfully till afternoon. after that it started giving me this error all of a sudden. Infact as soon as i was able to create a URL data contol with query parameter successfully, i took a backup of the application before moving further. But even that backup is not working now.
    As far as i understand, i dont think there will be any change in xsd if query params are passed to a web service. Please correct me if i am wrong.
    Just dont know what could be the issue. Please help
    Thanks

    Hi,
    xsd is used for the URL service to know what the returned data structure is so it can create the ADF DC metadata
    Frank

  • BI IP - Upload flat file - "requested resource not found" when typing URL

    Hi,
    we tried to implement the "upload flat file" functionality (blog Marc Bernard). We followed the different steps and included the bug fixes as well. When we want to launch the URL in an internet explorer session we get message "requested resource not found".
    Hereby the URL used:
    http://sapscmbid.vpkgrp.int:50100/sap/bc/webdynpro/sap/zrsplf_file_upload?sap-language=EN&planning_sequence=FILE_SEQ&show_messages=WEXA
    Do you know what we did wrong? We would like to finish this by the end of this week ...
    kind regards
    D

    Hi,
    when we use URL http://sapscmbid.vpkgrp.int:50100/ we see the screens of the portal so I presume this server and port is accurate (we use the same link for the planning modeler and this works fine).
    The SICF service zrsplf_file_upload has been imported and has status active. Should we check other things as well?
    D

  • Firefox 5 gives "Server not found" for all URLs - fresh install of Fedora 15 x86_64

    Under a fresh install of Fedora 15 x86_64 on an Intel box, Firefox 5 (firefox.x86_64 5.0-2.fc15) will not display web pages. Internet connection and DNS resolution function correctly. For instance, I can correctly 'ping fedoraproject.org' but giving Firefox the URL 'http://www.fedoraproject.org' reults in a "Server not found" message. What needs to happen to get the URLs to resolve in Firefox?

    Xyne wrote:
    SS4 wrote:
    edit: -facepalm-
    Changing
    SigLevel = Required
    to
    SigLevel = PackageRequired
    in pacman.conf did the trick
    No, that was my fault. I updated my release scripts yesterday and the new ones did not create the database signature symlink. I just fixed it about 10 minutes ago.
    Change the SigLevel back to Required, otherwise Pacman will not verify the databases. Everything should be working again.
    Cheers, upgrading is back to normal (good work on the repo btw)

  • 404 not found: The requested URL /apex/f was not found on this server.

    That is the error I get in the browser. It occurs only on one page, all other work normally. The apache error log contains this:
    [Thu Aug 10 09:14:33 2006] [error] [client 0.0.0.0] [ecid: 1155226473:127.0.0.1:22240:0:50,0] mod_plsql: /apex/f HTTP-404 ORA-06502: PL/SQL: numeric or value error: character string buffer too small\nORA-06512: at "FLOWS_020200.F", line 276\nORA-06512: at line 22\n
    It would appear that invoking the page is throwing an internal error, so the page is never generated and why Iam getting the 404 not found error.
    I have tried exporting the page, deleting it, then importing it back.
    Apex version is 2.2

    The item uses a static LOV with only two entries. Here's a dump of the offending item from the page export:
    declare
    h varchar2(32767) := null;
    begin
    wwv_flow_api.create_page_item(
    p_id=>2519432345942021 + wwv_flow_api.g_id_offset,
    p_flow_id=> wwv_flow.g_flow_id,
    p_flow_step_id=> 12501,
    p_name=>'P12501_VPS_PLAN__SLMMEMORYLIMIT',
    p_data_type=> 'VARCHAR',
    p_accept_processing=> 'REPLACE_EXISTING',
    p_item_sequence=> 100,
    p_item_plug_id => 2497622874655454+wwv_flow_api.g_id_offset,
    p_use_cache_before_default=> 'NO',
    p_item_default_type => 'STATIC_TEXT_WITH_SUBSTITUTIONS',
    p_prompt=>'Guaranteed RAM',
    p_source=>'V(''P12501_VPS_PLAN__SLMMEMORYLIMIT'')',
    p_source_type=> 'FUNCTION',
    p_display_as=> 'RADIOGROUP',
    p_lov => 'STATIC2:256 MB;256,512 MB;512',
    p_lov_columns=> 1,
    p_lov_display_null=> 'NO',
    p_lov_translated=> 'N',
    p_cSize=> 30,
    p_cMaxlength=> 2000,
    p_cHeight=> 1,
    p_begin_on_new_line => 'YES',
    p_begin_on_new_field=> 'YES',
    p_colspan => 1,
    p_rowspan => 1,
    p_label_alignment => 'RIGHT-TOP',
    p_field_alignment => 'LEFT-TOP',
    p_read_only_when=>'V(''P12501_MODE'') IS NULL',
    p_read_only_when_type=>'PLSQL_EXPRESSION',
    p_field_template => 16545661983566545+wwv_flow_api.g_id_offset,
    p_is_persistent=> 'Y',
    p_lov_display_extra=>'NO',
    p_protection_level => 'N',
    p_item_comment => '');
    end;
    /

  • 404 not found The requested URL /pls/apex11/wwv_flow.accept was not found on this server.

    Hi,
    i tried to connect to Apex on Internal workspace.
    I get the error
    ORA-00604: error occurred at recursive SQL level 1
    ORA-00972: identifier is too long
    ORA-06512: at line 10
    ORA-06550: line 22, column 3:
    PLS-00306: wrong number or types of arguments in call to 'ACCEPT'
    ORA-06550: line 22, column 3:
    PL/SQL: Statement ignored
      DAD name: apex11
      PROCEDURE : wwv_flow.accept
      URL : http://servername:7777/pls/apex11/wwv_flow.accept
    Any Help?
    Thanks in Advance
    lukx
    Environment
    OS --> win xp
    DB version --> Oracle 11.2.2
    Apex Version --> 4.2.2.00.11

    Hi,
    i found the reason. On my DB test i put a db trigger "AFTER SERVERERROR ON DATABASE".
    After trigger disable all works fine.
    Lukx

  • 610 error... Database location Policy not found

    I realize that this item is not new to this forum and I have tried all the solutions from here and in any TID's I could find. The configuration looks correct. The only thing I can identify is that it stopped working at the same time that I updated the NW6 server with edir873 and jvm141. I have since then applied the patch to edir and jvm142sp3. Is there a resolution that anyone knows of.

    Walter,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Do a search of our knowledgebase at http://support.novell.com/search/kb_index.jsp
    - Check all of the other support tools and options available at
    http://support.novell.com in both the "free product support" and "paid product support"
    drop down boxes.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://support.novell.com/forums)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://support.novell.com/forums/faq_general.html
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • 404 File not Found when accessing Video Web server

    I am trying to access a Video Web server remotely. Everything works fine on a PC and also on Internet Explorer for Mac.
    When I login using Safari I get the error message "404 File not Found" "The requested URL was not found on this server"
    I have been successful twice through Safari but after that it doesn't seem to work for days.
    I have removed all cookies, emptied the Cache, reset safari, deleted all keychain access references to the website.
    It seems to be a security issue but I am not sure what else to do.
    Any ideas would be greatly appreciated

    Try using open DNS:
    Adding Open DNS codes to your Network Preferences, should give good results in terms of speed-up as well as added security:
    Open System Preferences/Network. Double click on your connection type, or select it in the drop-down menu, and in the box marked 'DNS Servers' add the following two numbers:
    208.67.222.222
    208.67.220.220
    (You can also enter them if you click on Advanced and then DNS)

  • APEX 3.1.2 install with sso, error "requested url ../plsapex/f.. not found"

    Question: why is sso rewriting the url from .../pls/apex/f?p=.. to .../plsapex/f?p=?
    Can anyone help?
    Thanks.
    Abstract: APEX 3.1.2.00.02 install with sso config, error "requested url ../plsapex/f .. was not found"
    Situation:
    Upgraded from Apex 3.0.0.00.20 to Apex Application Express 3.1.2.00.02
    I get to my apex_admin and apex builder pages with url: [http://machinename:port/pls/apex] or
    [http://machinename:port/pls/apex_admin]
    When I try to access our application using no authentication scheme everything is fine.
    But when I switch to sso authentication, somehow strangely the url [http://machinename:port/pls/apex/f?p=application_number]
    is rewritten to sso [http://machinename:port/plsapex/f?p=application_number].
    [https://test.insitehome.org/pls/apex/f?p=119]
    reappears in browser as
    [https://test.insitehome.org/plsapex/f?p=119:1:2095395898953485]
    entries of select * from flows_030100.WWSEC_ENABLER_CONFIG_INFO$
    "LSNR_TOKEN" "SITE_TOKEN" "SITE_ID" "LS_LOGIN_URL" "URLCOOKIE_VERSION" "ENCRYPTION_KEY" "ENCRYPTION_MASK_PRE" "ENCRYPTION_MASK_POST" "URL_COOKIE_IP_CHECK"
    "HTML_DB:test.insitehome.org:443" "LS$XXXXXXXXXXXXXXXX" "6XXXXXXX" "https://testsso.insitehome.org/pls/orasso/orasso.wwsso_app_admin.ls_login" "v1.2" "0AXXXXXXXXXXXXX" "6FXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" "C2XXXXXXXXXXXXXXXXXXXXXXXXXXXXX" "N"
    entries of select * from flows_030100.WWSEC_SSO_LOG$ showing ../plsapex/.. rewrite,
    after trace turned on with SQL&gt; @secdbg.sql;
    ID MSG LOG_DATE
    1259 entry: urlencode 15-DEC-08
    1260 encoded URL is https%3A%2F%2Ftest.insitehome.org%3A443%2Fplsapex%2Ff%3Fp%3D119%3A1%3A1562268139343648 15-DEC-08
    1261 exit: urlencode 15-DEC-08
    1262 entry: urlencode 15-DEC-08
    1263 encoded URL is https%3A%2F%2Ftest.insitehome.org%3A443%2Fplsapex%2Ff%3Fp%3D119%3A1%3A1562268139343648 15-DEC-08
    1264 exit: urlencode 15-DEC-08
    copy of last entries Apache log file
    [Mon Dec 15 13:30:33 2008|http://forums.oracle.com/forums/] error [http://client 172.18.5.120|http://client%20172.18.5.120/] [ecid: 120704279613,1|http://forums.oracle.com/forums/] File does not exist: /u02/test_10gr2_hm2/Apache/Apache/htdocs/plsapex/f
    [Mon Dec 15 13:32:18 2008|http://forums.oracle.com/forums/] error [http://client 172.18.5.120|http://client%20172.18.5.120/] [ecid: 124999354851,1|http://forums.oracle.com/forums/] File does not exist: /u02/test_10gr2_hm2/Apache/Apache/htdocs/favicon.ico
    [Mon Dec 15 13:32:18 2008|http://forums.oracle.com/forums/] error [http://client 172.18.5.120|http://client%20172.18.5.120/] [ecid: 120704387543,1|http://forums.oracle.com/forums/] File does not exist: /u02/test_10gr2_hm2/Apache/Apache/htdocs/plsapex/f
    [Mon Dec 15 13:32:21 2008|http://forums.oracle.com/forums/] error [http://client 172.18.5.120|http://client%20172.18.5.120/] [ecid: 124999354854,1|http://forums.oracle.com/forums/] File does not exist: /u02/test_10gr2_hm2/Apache/Apache/htdocs/favicon.ico
    [Mon Dec 15 13:32:21 2008|http://forums.oracle.com/forums/] error [http://client 172.18.5.120|http://client%20172.18.5.120/] [ecid: 120704387663,1|http://forums.oracle.com/forums/] File does not exist: /u02/test_10gr2_hm2/Apache/Apache/htdocs/favicon.ico
    [Mon Dec 15 13:32:25 2008|http://forums.oracle.com/forums/] error [http://client 172.17.241.64|http://client%20172.17.241.64/] ecid: 1229365945:172.17.241.64:23211:0:817,0 \nOSSO E09: No Oracle SSO support for POSTing data to protected resource yet.\n
    [Mon Dec 15 13:35:09 2008|http://forums.oracle.com/forums/] error [http://client 172.18.5.120|http://client%20172.18.5.120/] [ecid: 107819660799,1|http://forums.oracle.com/forums/] mod_plsql: /pls/apex/wwv_flow_custom_auth_sso.process_success HTTP-404 \nwwv_flow_custom_auth_sso.process_success: MANY PROCEDURES MATCH NAME, BUT NONE MATCHES SIGNATURE (parameter names)\n
    [Mon Dec 15 13:37:25 2008|http://forums.oracle.com/forums/] error [http://client 172.17.241.64|http://client%20172.17.241.64/] ecid: 1229366245:172.17.241.64:19598:0:70,0 \nOSSO E09: No Oracle SSO support for POSTing data to protected resource yet.\n
    [Mon Dec 15 13:42:25 2008|http://forums.oracle.com/forums/] error [http://client 172.17.241.64|http://client%20172.17.241.64/] ecid: 1229366545:172.17.241.64:23157:0:832,0 \nOSSO E09: No Oracle SSO support for POSTing data to protected resource yet.\n

    1. I am able to get to the SSO page. I am redirected to the sso page first
    when unter the url [https://test.insitehome.org/pls/apex/f?p=119:1]
    I am able to enter the username and password.
    But once I click the login button I get the following message :
    " Not Found
    The requested URL /plsapex/f was not found on this server.
    Oracle-Application-Server-10g/10.1.2.0.2 Oracle-HTTP-Server Server at test.insitehome.org Port 443"
    2. The mod_osso.conf file was not changed for our Apex upgrade. The contents of the osso.conf file though are not readable.
    I tried commenting out the
    #OssoConfigFile /u02/test_10gr2_hm2/Apache/Apache/conf/osso/osso.conf
    line in the mod_osso.conf file. url rewrite to ../plsapex/.. did not change.
    Thanks.
    Douglas
    1. The contents of OssoConfigFile /u02/test_10gr2_hm2/Apache/Apache/conf/osso/osso.conf
    ^E~H/&ocirc;M&aelig;~D&Ntilde;~I~PG^:~I| u^~T=&Egrave;i^V^O&Uuml;.&brvbar;&Acirc;^PhW^A&ordm;&Ugrave;&middot;G&raquo;?n&Oacute;^MsF~C&reg;&Ucirc;&para;&aring;&Igrave;4&Iacute;r^S)&plusmn;~Y&pound;&micro;&igrave;&oslash;&gt;oA~W~W~&Igrave;&Acirc;~W&sup2;E~^K^Yg~I#\^?^H~U^L&Uuml; &aelig;i&ograve;
    ~&Euml;&icirc;&Aacute;n^S~J@VI&sup3;^Y&ordf;&THORN;~S&Ograve;&uuml;c&iquest;&yuml;|&uuml;w&para;&iuml;.Gl^X^U~N31p^Q&copy;&raquo;$@~N&curren;&Aacute;_q0be&Aacute;:&Ocirc;&&Ugrave;&Ccedil;&Aacute;ts^[&Oacute;&Ocirc;sJ&Igrave;&Ouml;~W&pound;F^W~W^^&egrave;3A&micro;^[&iexcl;&gt;u^D|f^B~S&egrave;D&Auml;&brvbar;&iacute;&thorn;l&yacute;&Auml;^K&Otilde;&aelig;&iacute;Uu^Gxg~--D^--^Gu&Ntilde;-^PA&Ccedil;4^H^@Px&laquo;&Oacute;^--`Gf^PuJx&uuml;tz&thorn;&lt;&cedil;&iexcl;~J&Ucirc;&macr;&yacute;a~^G~G^U^WSk&divide;u$&szlig;&acirc;&acute;&agrave;s~@8^Y&uml;,--^R&Euml;2&ucirc;&ccedil;&Aacute;&euml;&Igrave;&oacute;@&brvbar;&frac12;&shy;Jg&pound;&Oslash;r^RCs&lt;~@~R&Ugrave;&middot;&szlig;&oacute;&yuml;&THORN;N@&oslash;0&pound;~G&otilde;r^S~N^R&plusmn;&frac12;^_~W~\f&Ocirc;|&oacute;&Agrave;^W~F~T^XO~PHv&uacute;|^F(&middot;%"4&Yacute;l&acirc;~J&cedil;~H^N0#d&Agrave;&cedil;O^H^@~S^FZN2&igrave;z&aring;&auml;N^Xn[T~\(&yen;&ocirc;y"z~XY&para;2~TTg^Y&yacute;&atilde;&aelig;~V&cedil;&yuml;^VUs^B~H&euml;^S^Z3~A&gt;nzr~[^Sl&Agrave;;~D~H&atilde;&frac12;Z&ouml;~U^C
    2. Browser headers- using "Live HTTP headers"
    showing the change in the browser url from .../pls/apex/.. to /plsapex/..
    [https://testsso.insitehome.org/pls/orasso/orasso.wwsso_home.process_signon?urlc=v1.2~08090C4ABBC838658AA3832B0404A1AD53FA9354A053CD7A3DE65D3F31E756E01249AA25E5D85CFD37C9046C60C1340DF5FCAB898569B6791252608F196074FCD7309A9DC4C6B3D9B88E9255DDCD10E3820D6BEB11294A7A4CF9AE309DB67FEC05A56D5B7C7EC239E3F9D5E27E1F199C7338C333B11E9A672CF9B6DFFC193ABA7CFBD22BAE8726E566690E47127365BCC0E5D7A7A24769A1727E287E06CC7FF4BD9D3680141B849561EADCB0478EC2F48D741652100F6EB08395B3253439783EC02DC9ECF8C0B41B112A4059B88B5C3F7854D687A25CDC423A567466E7D48F06BEDD238B645FE5CE58427DD9A9E692A0C88E4891CD900F9DEE362CDDF84A8A62E4093C95628878785C9C8DD54DC21A297BEC39C7EA28A2AEDE81EA475248E15F1327636295C484FA1246FC5B921D675CD17E9CA00F1138A89E8A82292963EAACFB369C19C75610779033377F7EF340278EBFF6E213D64AD9531E7E24AACDC78EE5F35A149CC3754B]
    GET /pls/orasso/orasso.wwsso_home.process_signon?urlc=v1.2~08090C4ABBC838658AA3832B0404A1AD53FA9354A053CD7A3DE65D3F31E756E01249AA25E5D85CFD37C9046C60C1340DF5FCAB898569B6791252608F196074FCD7309A9DC4C6B3D9B88E9255DDCD10E3820D6BEB11294A7A4CF9AE309DB67FEC05A56D5B7C7EC239E3F9D5E27E1F199C7338C333B11E9A672CF9B6DFFC193ABA7CFBD22BAE8726E566690E47127365BCC0E5D7A7A24769A1727E287E06CC7FF4BD9D3680141B849561EADCB0478EC2F48D741652100F6EB08395B3253439783EC02DC9ECF8C0B41B112A4059B88B5C3F7854D687A25CDC423A567466E7D48F06BEDD238B645FE5CE58427DD9A9E692A0C88E4891CD900F9DEE362CDDF84A8A62E4093C95628878785C9C8DD54DC21A297BEC39C7EA28A2AEDE81EA475248E15F1327636295C484FA1246FC5B921D675CD17E9CA00F1138A89E8A82292963EAACFB369C19C75610779033377F7EF340278EBFF6E213D64AD9531E7E24AACDC78EE5F35A149CC3754B HTTP/1.1
    Host: testsso.insitehome.org
    User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.4) Gecko/2008102920 Firefox/3.0.4
    Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
    Accept-Language: en-us,en;q=0.5
    Accept-Encoding: gzip,deflate
    Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
    Keep-Alive: 300
    Connection: keep-alive
    Referer: [https://test.insitehome.org/pls/apex/f?p=119:1]
    Cookie: SSO_ID=v1.2~1~B2483914381A0220A727D12C9A8915E0A7D5AC3F5921B83727FF3A769585941BFC92F6ED489A5526E4BA399033EBB1F594C2E5A9651284A756F0266EDADF2788A5646DC849CC31B22EDFF550F9AE8FBAA45D77962089553D126DC23F7C7D2FF5A6DCD07733EC7AE97C49B047498D6007FAE70E0BB737DD71475C47565AC065B460717829838F23206D05E94531F1B214A089889F439700293486A9BA57C9CEBE1D9958AA22C8A11254DE2B99554BEC167ACAEED89A91289AE21D3392F1B4BB8E21F37C087A416488E063FD4E905ACE4532BF5C7AD4BCCC694F46325BFD4B6B61C0530FDFE7E17D5ECABB99B2734D813E8A969B328653110606BD37F85E3E383A2309D69B4792CBD2173695360006B17F; orasso=9.0.3+en-us+us+AMERICA+5E6829A8119E1C0EE04011AC15F572DA+416E61A4441EBFF32F938E43B1C666B24FCDEED0AE4178FB7D0666DF2F8B242E83E304641F7BB27D2447D4235172D9FDAF1AF383E817CC68D3FAC8771CA0D15526CC58AFCA0862435154ABDA250A026D369DCCC3EC1DA333
    HTTP/1.x 302 Found
    Date: Fri, 19 Dec 2008 14:31:46 GMT
    Server: Oracle-Application-Server-10g/10.1.2.0.2 Oracle-HTTP-Server
    Location: [https://test.insitehome.org:443/plsapex/f?p=119:1:4439918187386025|https://test.insitehome.org/plsapex/f?p=119:1:4439918187386025]
    Set-Cookie: orasso=9.0.3+en-us+us+AMERICA+5E682B3E13BF540BE04011AC15F572DC+D7088454FEBAE9994BE0076646C00462FF614D0247361AC1D38957C467A4BD0B68508FA922065C7512D2DD7BC3BF02EE28F7281585308D54E0BCC5F3E3254F8DB6F3952C0C6D0F5B88B379B6686B1981F7DE4443A83FA03F;path=/;secure
    Keep-Alive: timeout=60, max=1000
    Connection: Keep-Alive
    Transfer-Encoding: chunked
    Content-Type: text/html; charset=UTF-8
    Vary: Accept-Encoding
    [https://test.insitehome.org/plsapex/f?p=119:1:4439918187386025]
    GET /plsapex/f?p=119:1:4439918187386025 HTTP/1.1
    Host: test.insitehome.org:443
    User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.4) Gecko/2008102920 Firefox/3.0.4
    Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
    Accept-Language: en-us,en;q=0.5
    Accept-Encoding: gzip,deflate
    Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
    Keep-Alive: 300
    Connection: keep-alive
    Referer: [https://test.insitehome.org/pls/apex/f?p=119:1]
    Cookie: ORACLE_SMP_CHRONOS_GL=26:1229695773:876325; ORACLE_SMP_CHRONOS_LT=1229697115969
    HTTP/1.x 404 Not Found
    Content-Type: text/html; charset=iso-8859-1
    Connection: Keep-Alive
    Keep-Alive: timeout=5, max=999
    Server: Oracle-Application-Server-10g/10.1.2.0.2 Oracle-HTTP-Server OracleAS-Web-Cache-10g/10.1.2.2.0 (N;ecid=112453569346,0)
    Content-Length: 326
    Date: Fri, 19 Dec 2008 14:31:46 GMT
    -----

  • The requested URL /apex/listenerConfigure was not found on this server

    please help me..
    after run in command prompt (java -jar c:\apex.war) to install apex listener,
    i have error when i call link http://localhost:8080/apex/listenerConfigure.
    In browser show :
    Not found
    The requested URL /apex/listenerConfigure was not found on this server
    how i can fix this error?
    thx :) :) :)

    Hi Beny,
    let's see what I can do to help you fix your installation.
    java -Dapex.port=1521 -jar c:\apex\apex_listener\apex.warThat way you would try to start the APEX Listener on a port that is usually used by the database listener. This could work if you don't have a database installed on that machine or you configured the database listener to use a different port, but I wouldn't recommend to use that port anyway, as anybody will associate it with at database listener... In your case, it sounds like you have a database installed on the same machine you start your APEX Listener on and the database is using that port already. That's why you get "nothing" when you try to access the APEX Listener - the APAEX Listener can't bind to a port that's already used by another process.
    java -Dapex.port=8081 -jar c:\apex\apex_listener\apex.war That port sounds better. The fact that you get an internal error indicates that the APEX Listener is actually working on that port, so we could try to debug.
    My first guess is, that you've already configured the APEX Listener before. Since you had it running before, I assume you didn't remove the old configuration, so the APEX Listener will reuse it. You'll find the corresponding information in the console output of your APEX Listener.
    If that's the case, the error will most likely not be in the previously working APEX Listener configuration, but in your APEX installation. Did you perform the installation steps concerning the APEX_PUBLIC_USER documented for the installation of APEX using APEX Listener? See the corresponding section of the [url http://download.oracle.com/docs/cd/E17556_01/doc/install.40/e15513/otn_install.htm#BABDEEIH]APEX Installation Guide for details.
    -Udo

Maybe you are looking for

  • IMacs out of stock everywhere?

    Hey, Been trying to find an Apple Retailer that has a 24" iMac in stock but it seems everyone is out of stock and have no idea when they are getting more. Anyone else seen some around?

  • Ipad2 cannot connect to apple store in china

    ipad2 16g wifi strong signal i can only browse website can't use app with internet connection based, can't use map as well

  • Itunes producer does not accept itmsp file

    Having a problem with ITPR accepting the .itmsp package. Neither dropping from Finder nor selecting choose and navigating to file will allow file to drop (greyed out via Finder attempt to open). Not sure what the problem is-I changed "textbook" to Bo

  • Posting invoice in MIRO when invoice is out of tolerance

    I can not post an Invoice in MIRO when it is out of tolerance with payment block. I would like to go to MRBR to release the block. What am I missing? config somewhere? Need help- thanks I

  • Dot missing for an event in iPhone 5 Calendar?

    On the iPhone 5, I have a five day event scheduled with the fifth day ending at 8pm. When I view my calendar by month, I see dots for the first 4 days, but not the fifth, despite an event being scheduled. How can I get the dot to be visible? Thank yo