APEX and SSO problem

I was having issues with SSO and APEX.
I got error in portal_sso_redirect: missing application registration information.
we followed the APEX as partner app on how to site.
Problem was that in SSO sdk docs, they state that if ports 80 or 442 are used, do not include the in p_listener_token - so we followed that.
Looking through forums I tried rerunning regapp.sql and appending the 80 port for the listener token.
Now works.
I hope this helps others that are banging their heads against a wall trying to solve this.
These forums are a fabulous resource.
Peter

I've just created a new instance on the same server, installed Apex 3.2, created a single page test app, used Application Express as Partner Application as SSO authorisation scheme, accessed the app's url and exactly the same thing happens... I just get a 404 page where the URL http://OID_HOST:port/sso/auth
I must be overlooking something somewhere but as far as I know, I've followed all the guidance and have created this based on previous installs.
Again, any help would be greatly appreciated!
Thanks.

Similar Messages

  • Integrating Oracle EBS and ApEx Aplication with Responsibilities and SSO.

    Good day all.
    I am looking forward from getting somebody 's help, the trouble I am facing is described below:
    a) I am currently working on SSO with EBS. I mean, my users can connect and work perfectly.
    b) ApEx is Configured as Application Partner with SSO, and the application we built (it's call PR-Auto)
    is working good under SSO platform. I mean I am able to login using TEST user and password TEST in
    both applications (EBS and PR-Auto).
    c) The thing is that I need to call PR-Auto from one responsibility in EBS;
    Following my setup for the responsibility:
    - I have created a function:
    Name: APEX_FA_PR
    Properties:
    Function type: SSWA plsql
    Web HTML :apps.apex_launcher.launch_fa_pr
    Web Host agent: pls/apex
    - I have created a menu, application and responsibility using the function APEX_FA_PR.
    - I have create launcher package:
    create or replace package apex_launcher is
    procedure launch_fa_pr;
    end apex_launcher;
    create or replace package body apex_launcher as
    procedure launch_fa_pr as
    begin
    /** 110 Is ID of PR-Auto, my app **/
    /** 5 is my home page **/
    f(p=>'110:5');
    end;
    end apex_launcher;
    d) New responsibility shows on EBS menu page.
    e) Click on responsibility, and the page shows 'redirecting to login server for authentication', but
    nothing happens, page goes blank with this url:
    http://fahorromex37.fahorro.com.mx:8004/pls/apex/wwv_flow_custom_auth_sso.process_success?urlc=v1.2~42
    03F9A8A1D696097BEA96499E6B6845E80C14A56DF724C3FFF879578FC734C5E1DEEA9129A4117E62A3676A409528E8EB927AA55
    0EA7B208C34F5A3FDB4472679EDE448F8971966BE9BADD22207FE90BDBA2800E6529F3967A18DEC76DCC17DE21D96A65CA2C424
    319F159CC78ED78E8B99F69F1BA8297A1EECF6AD137A6C3896E1C4E8D5F93874A9A08887D3F95058D33F667D7B785FF0A065B53
    891B8B393DFD24530BD0720150F05DE63F0CD5AFD86F0267BAF4C9CAE8C5AA693B4E488B3776BF43450FD412167B402C962BABE
    A54707043AFA6FBB168B29EDB3BE120FFE0C30683D53283B036E781ABF1A5F7374ADF83463D57D2EE958765B0501CE2B0F4E3DF
    24845A54A1CF02526FA39EF60644ED5A0D9D2A05EBFAD3BD01007D0817135989A4B97D68C92C6E2BA767CFDB0AF188054024BB1
    EFFA7DEC8699BBA7485A349D87BA1C15475927E52110DF56FCC3FD560D2CBBA1C0D7D9D3ADFCDB975CD2
    the address of my application pr-auto is http://fahorromex37.fahorro.com.mx:8004/pls/apex/f?p=110
    f) DBA teams follow instructions from the following documentation
    "Integrating Oracle E-Business Suite Release 11i with Oracle Internet Directory and Oracle Single Sign-On"
    and "Note 261914.1 Integrating Oracle E-Business Suite Release 11i with Oracle Internet Directory and
    Oracle Single Sign-On"
    g) We are using:
    DB: Oracle9i Enterprise Edition Release 9.2.0.6.0 - Production
    SO: Linux 2.6.9-42.ELsmp
    ApEx: 3.0.1.00.07
    Any help will be greatly appreciated.
    J.O.

    Many Thanks Daniel for your prompt reply.
    Tried to understand the white Paper and your thread but I am still facing problem,although able to Call ApEX page but now i
    want to pass th e session Id where I am stuck.
    MY three functions:
    CREATE OR REPLACE FUNCTION SYMAPEX.apex_authorise (
    p_username IN VARCHAR2
    , p_password IN VARCHAR2) RETURN BOOLEAN
    AS
    BEGIN
    IF apex_validate_hash (p_username, p_password) THEN RETURN TRUE;
    END IF;
    RETURN (FND_WEB_SEC.validate_login@VCSDEV2_QA (p_username, p_password) = 'Y');
    END apex_authorise;
    CREATE OR REPLACE FUNCTION SYMAPEX.apex_generate_hash (
    p_string IN VARCHAR2
    , p_offset IN NUMBER DEFAULT 0) RETURN VARCHAR2
    IS
    BEGIN
    IF p_string IS NULL THEN RETURN NULL;
    END IF;
    RETURN RAWTOHEX(UTL_RAW.cast_to_raw(
    DBMS_OBFUSCATION_TOOLKIT.MD5(input_string=>p_string||':'||
    TO_CHAR(SYSDATE-(p_offset/24*60*60),'YYYYMMDD HH24MISS'))));
    END apex_generate_hash;
    CREATE OR REPLACE FUNCTION SYMAPEX.apex_validate_hash (
    p_string IN VARCHAR2
    , p_hash IN VARCHAR2
    , p_delay IN NUMBER DEFAULT 5) RETURN BOOLEAN
    IS
    BEGIN
    FOR i IN 0..p_delay LOOP
    IF p_hash = apex_generate_hash (p_string, i) THEN RETURN TRUE; END IF;
    END LOOP;
    RETURN FALSE;
    END apex_validate_hash;
    MY Launch Procedure:
    CREATE OR REPLACE Package body OAE_PKG1 AS
    PROCEDURE LaunchOAE1 (application IN NUMBER DEFAULT 101
    , page IN NUMBER DEFAULT 111
    , request IN VARCHAR2 DEFAULT NULL
    , item_names IN VARCHAR2 DEFAULT NULL
    , item_values IN VARCHAR2 DEFAULT NULL)
    AS
    BEGIN
    OWA_UTIL.mime_header('text/html', false);
    OWA_COOKIE.send
    (name=>'APEX_APPS_'||application,
    value=>FND_GLOBAL.user_name||':'||apex_generate_hash@QA_VCSDEV2(FND_GLOBAL.user_name),
    domain => '.orvcsd01.symprod',
    path=>'/');
    OWA_UTIL.redirect_url('http://orvcsd01.symprod.com:7780'||'/pls/apex/f?p='||application||':'||page||'::'||request||':::'||ite
    m_names||':'||item_values);
    END LaunchOAE1;
    END OAE_PKG1;
    MY On Load before headre process:
    DECLARE
    c OWA_COOKIE.cookie;
    a wwv_flow_global.vc_arr2;
    BEGIN
    c := OWA_COOKIE.get('APEX_APPS_101');
    a := htmldb_util.string_to_table(c.vals(1));
    :P111_USERNAME := a(1);
    :P111_PASSWORD := a(2);
    IF :P111_PASSWORD IS NOT NULL THEN
    wwv_flow_custom_auth_std.login(
    P_UNAME => :P111_USERNAME,
    P_PASSWORD => :P111_PASSWORD,
    P_SESSION_ID => v('APP_SESSION'),
    P_FLOW_PAGE => :APP_ID||':111');
    END IF;
    END;
    I am doing custom authencitaion and calling apex_authorise function there.
    Although I am able to Call the ApEX and able to validate application server password,but moment i try taking help off cookies
    to pass on my application session details to ApEX so that users would not have to login twice,i am gettign the error.
    Second question:
    Do we have any other methos of passing session to ApEX from Application server other than cookies.
    Please suggest.
    Thanks.
    Ravijeet

  • Create PDF report with APEX and Oracle 11g doesn't work

    Hi everyone,
    I have a problem with the downloading of PDF reports from APEX with Oracle 11g.
    When I try to download a PDF, Acrobat Reader says it can not open the file.
    I have done the same test in an environment with APEX and Oracle 10g and it works perfectly.
    Does anyone know if there is a known bug for version 11g.
    Thank you very much.

    Hi Munky,
    I open the generated file the Notepad++ I can read the next message:
    *<HTML><HEAD><TITLE>500 Internal Server Error</TITLE></HEAD><BODY><H1>500 Internal Server Error</H1>OracleJSP:*
    An error occurred. Consult your application/system administrator for support. Programmers should consider setting the init-param <code>debug_mode</code> to "true" to see the complete exception message.</BODY></HTML>
    I have not idea can I solve the problem.
    Have you got any solution for this problem??
    Thank you so much.
    Victor Muñoz.

  • Is There any Relation Between PCD and SSO

    Hi,
      Is there any relation between PCD and SSO, why because if i am try to connect from portal to R/3 in the user mapping i got one error i.e some pcd error.
    pls tell me how to rectify that.
    Regards,
    Jagadish Babu Kanikanti.

    Hi Jagadish
    The PCD is only a central persistance for storing Portal objects. There is no such relation between PCD and SSO that could create a problem. You can however check for the PCD error in this manner.
    1. In the system administration role, choose System Administration -> Support. The Support Desk appears.
    2. Select the area Portal Content Directory.
    3. Click on PCD Configuration in the test and configuration tools. The next screen shows all the parameter values currently maintained for the PCD.
    4. To reload the configuration, choose Reload.
    Hope that helped.
    Best Regards
    Priya

  • Apex and Natural Vs Surrogate keys

    Hi
    We've been using Apex for a few months now and there's a debate raging in our department over whether we should design our database tables using natural or surrogate (based on Oracle sequences / triggers) keys. Our experience as Apex developers shows that Apex itself looks to lean towards surrogate keys, a few examples are below:
    - When creating forms on reports / tables Apex only allows 2 primary key columns without adding 'extras' in the background (see a previous post of mine).
    - If we have a form on a table and our natural primary keys can be updated, the Apex-created DML statements break, as they look to do the update using the changed key values in the WHERE clause rather than the old ones. The only way around this seems to be to delete the inbuilt DML statements created by Apex and code your own, which is extra work.
    - The Apex sample applications themselves seem to use sequences / surrogate keys.
    What are people's opinions on this? In particular is there any guidance from the Apex development team on which is best to use with Apex?
    Regards
    Antilles

    Hi Andrew,
    As with abots_d, I only use "natural" keys for lookups.
    >
    1. the department names were here for 20 years and they never changed
    >
    But, can you guarantee that they never will? My firm has changed departmental names so many times, it's getting ridiculous! But other things also change over time - consider what happens if a person gets married and changes their name and you've used their previous names as the keys (and consider how much data in other tables may use those keys).
    >
    2. Server names are uniquely generated by special formula in excel to preciously avoid the duplication problem and guarantee the uniqueness within our glamorous bank.
    >
    SQL could probably recreate that formula and Unique Key constraints would handle the rest
    >
    3. no, we are not going to extend this app to cover any other banks
    >
    Given what's happening with the banking industry right now, who can say ;)
    >
    4. PK that means smth ( aka "server name" ) has a meaning, whereas meaningless - has no (business) value
    >
    Why does a bit of data have to have explicit "business value"? I would suggest that a surrogate key is a pointer to a record and allows you to easily create relationships. Once created, the key would never be changed regardless of what happens to the data on its record. Thus, the relationship is maintained. Using personnel (which our firm renamed as "Human Resources" a while back) as an example, it's likely that every employee would have an employee number. Does this number actually mean anything in itself, does it have "business value"? Most likely, it's just a convenient way to identify a person and relate records to them.
    I would suggest that any non-numeric/date keys are relatively slow. As strings, the only way to check for their sort order would be to (A) convert to upper or lower case and (B) perform a string comparison left-to-right across the entire string. There's also the possibility of certain characters appearing in the strings that can cause issues - for example, quotes, apostrophes, colons, commas, question marks and percentage signs.
    Also, consider the length of a VARCHAR2 that you would have to use - how big would it need to be to cover all possibilities? You may say 20 now but tomorrow you get data with 21 characters in it - do you want to update the table plus all related tables for that?
    There are further issues with parent, child, grand-child etc relationships where the keys would have to be passed down in full through the relationships. Depending on how many levels you may have, a fair number of the fields on the bottom-most table would be there just for the keys.
    It has been a standard industry practice for many years now to "normalise databases" to avoid lots of issues with keys and "repeating data". Apart from very simple lookup tables, I have stuck with those guidelines for years now without any problems at all.
    Andy

  • Outgoing audio. Was not going on Skype after ios7 download.went to settings--privacy--microphone--on--and the problem was resolved.

    Outgoing audio. Was not going on Skype after ios7 download.went to settings--privacy--microphone--on--and the problem was resolved.

    Hello:>
    I created a function "APEX_030200.wwv_flow_epg_include_mod_local" as a sys user, then I dropped it.>
    You can't have 'created' this function ! The function is installed by the APEX installer. This function needs to exist in the database for APEX to function correctly. Install the function described below into your database
    CREATE OR REPLACE function APEX_030200.wwv_flow_epg_include_mod_local(
        procedure_name in varchar2)
    return boolean
    is
    begin
        return false; -- remove this statement when you modify this function
        -- Administrator note: the procedure_name input parameter may be in the format:
        --    procedure
        --    schema.procedure
        --    package.procedure
        --    schema.package.procedure
        -- If the expected input parameter is a procedure name only, the IN list code shown below
        -- can be modified to itemize the expected procedure names. Otherwise you must parse the
        -- procedure_name parameter and replace the simple code below with code that will evaluate
        -- all of the cases listed above.
        if upper(procedure_name) in (
              '') then
            return TRUE;
        else
            return FALSE;
        end if;
    end wwv_flow_epg_include_mod_local;
    /Varad

  • Apex 4 - strange problem with dial chart

    I may be misunderstanding the way dial charts worked but here goes.
    I created a dial chart (not %) just a regular dial chart.
    my query was : select count(*), 200 from mytable; -- just counting number of rows (always less than 200)
    So when the query return 40, my chart shows 40. But when the query is returning 0, my dial won't go below 2.
    So I tried modifying query to select count(*), 200, 0, 200 from dual; Same problem.
    And here it gets weird. I went into the query section of apex and changed my query (note, I did not create new dial, just moded old one) to
    select 0, 100 from dual;
    I still get back a value of 1 on the dial.
    Anybody seen anything like this? It's like some weird uber cache somewhere or something. I can't figure it out.
    Addition :
    So we did the following :
    select 0, 20 from dual; -- shows 0
    select 0, 100 from dual; -- show 1
    select 0, 200 from dual; -- show 2
    select 0, 500 from dual; -- show 5
    Is this a bug?
    Edited by: user3932435 on Aug 11, 2010 7:28 PM

    Hi,
    Thanks for bringing this issue to my attention. It appears that you have hit some behaviour that's reproducible in our Flash 3 charts as well as our Flash 5 charts with APEX 4.0. I believe the reason that it wasn't apparent before now, with the Flash 3 charts, is because there was no option to display a value on the gauge pointer with the earlier charts. With APEX 4.0, we've extended the Chart Attributes to allow for the display of the value. Obviously in your case, the incorrect value is being displayed and will be misleading to your users. I appreciate this is not ideal, but if possible I would suggest updating your attributes to switch off the display of the Value on the gauge. I will address this in a future release, as with the exposure of the "Value" attribute with Flash 5 charts, we don't want to be displaying incorrect information. Thanks again for bringing this to our attention, and hopefully by switching off the Value attribute, you can still proceed with your use of the gauge chart.
    Regards,
    Hilary

  • Singe Sign On bewteen Apex and JSP Application

    Hi,
    the following problem: We have a Apex and a jsp Webapplication. In Apex we use LDAP Authentication and Role Authorisation. The JSP page also uses LDAP to authenticate users.
    Now there is a request from the Java guys to use one of our pages because they need the information. They will include a link to our page and the user can simple click on it. Parameters are passed as usual using the f?p Syntax.
    But how can we pass the already authenticated user through to the Apex app? Are there any common ways to accomplish this? As both apps are used only inside the company I though of using NTLM but I have never done anything with it. On the basis of your experience how much efford will it be solve it with NTLM? And is it possible?
    Are there other/better recommendations?
    Dim

    Dim - Search this forum for examples of using the NTLM "page sentry". The key is that you need something accessible to your applicaiton's authentication scheme code (the page sentry in particular) from which you can obtain the authentication username (securely). This is usually a cookie, header value, or CGI environment variable.
    Scott

  • OPMN: OC4J_SECURITY won't start - SSO problems

    Hi,
    After restoring our infrastructure database and oracle home from backups I am unable to get the OC4J_SECURITY to start. I had to really fiddle around with the restoration and it's possible I mucked something up there. Here are relevant parts of the logs, I'm hoping someone can advise me what the problem is and what I can do to fix it:
    e:\oracle\product\10.1.4\identdev\opmn\logs\OC4J~OC4J_SECURITY~default_island~1
    ======================================================================================================
    09/09/13 11:02:49 Start process
    09/09/13 11:02:53 Warning: Error reading transaction-log file (/E:/oracle/product/10.1.4/identdev/j2ee/OC4J_SECURITY/persistence/OC4J_SECURITY_default_island_1/transaction.state) for recovery: premature end of file
    09/09/13 11:02:53 Forced or abrupt (crash etc) server shutdown detected, starting recovery process...
    09/09/13 11:02:53 Recovery completed, 0 connections committed and 0 rolled back...
    09/09/13 11:02:55 SSOLoginServlet.init: Starting up SSO server ...
    09/09/13 11:02:55 Initilize NLS utility...
    09/09/13 11:02:55 Reading SSO server policy....
    09/09/13 11:02:55 SSO: Entered FilePolicyManager constructor ...
    09/09/13 11:02:55 SSO: FilePolicyManager: done loading the E:\oracle\product\10.1.4\identdev\sso\conf\policy.properties file
    09/09/13 11:02:55 SSO: Leaving FilePolicyManager constructor ...
    09/09/13 11:02:55 SSODebug: Done loading the debug file, E:/oracle/product/10.1.4/identdev/sso/log/ssoServer.log
    09/09/13 11:02:57 SSO: Initializing the encryption objects failed
    09/09/13 11:02:57 oracle.security.sso.server.conf.ConfigurationException: Missing SSO server configuration
    09/09/13 11:02:57      at oracle.security.sso.server.conf.DatabaseConfigReader.init(DatabaseConfigReader.java:444)
    09/09/13 11:02:57      at oracle.security.sso.server.auth.AuthUtil.init(AuthUtil.java:194)
    09/09/13 11:02:57      at oracle.security.sso.server.ui.SSOLoginServlet.init(SSOLoginServlet.java:284)
    09/09/13 11:02:57      at javax.servlet.GenericServlet.init(GenericServlet.java:258)
    09/09/13 11:02:57      at com.evermind.server.http.HttpApplication.loadServlet(HttpApplication.java:2358)
    09/09/13 11:02:57      at com.evermind.server.http.HttpApplication.findServlet(HttpApplication.java:4800)
    09/09/13 11:02:57      at com.evermind.server.http.HttpApplication.initPreloadServlets(HttpApplication.java:4894)
    09/09/13 11:02:57      at com.evermind.server.http.HttpApplication.initDynamic(HttpApplication.java:1026)
    09/09/13 11:02:57      at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:560)
    09/09/13 11:02:57      at com.evermind.server.Application.getHttpApplication(Application.java:915)
    09/09/13 11:02:57      at com.evermind.server.http.HttpServer.getHttpApplication(HttpServer.java:707)
    09/09/13 11:02:57      at com.evermind.server.http.HttpSite.initApplications(HttpSite.java:637)
    09/09/13 11:02:57      at com.evermind.server.http.HttpSite.setConfig(HttpSite.java:278)
    09/09/13 11:02:57      at com.evermind.server.http.HttpServer.setSites(HttpServer.java:278)
    09/09/13 11:02:57      at com.evermind.server.http.HttpServer.setConfig(HttpServer.java:179)
    09/09/13 11:02:57      at com.evermind.server.ApplicationServer.initializeHttp(ApplicationServer.java:2435)
    09/09/13 11:02:57      at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1592)
    09/09/13 11:02:57      at com.evermind.server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:92)
    09/09/13 11:02:57      at java.lang.Thread.run(Thread.java:534)
    09/09/13 11:02:57 SSO: FAILED TO START SSO SERVER!
    =============================================================================================================================
    E:\oracle\product\10.1.4\identdev\sso\logs\ssoserver.log
    =============================================================================================================================
    Sun Sep 13 10:53:22 WST 2009 [DEBUG] Orion Launcher DBConnectionPool: Checking for DB connection errors..
    Sun Sep 13 10:53:22 WST 2009 [ERROR] Orion Launcher SSO Server initialization failed. Check the DB availability and restart SSO Server
    Sun Sep 13 10:53:22 WST 2009 [ERROR] Orion Launcher Initializing the encryption/decryption objects failed
    oracle.security.sso.server.conf.ConfigurationException: Missing SSO server configuration
         at oracle.security.sso.server.conf.DatabaseConfigReader.init(DatabaseConfigReader.java:444)
         at oracle.security.sso.server.auth.AuthUtil.init(AuthUtil.java:194)
         at oracle.security.sso.server.ui.SSOLoginServlet.init(SSOLoginServlet.java:284)
         at javax.servlet.GenericServlet.init(GenericServlet.java:258)
         at com.evermind.server.http.HttpApplication.loadServlet(HttpApplication.java:2358)
         at com.evermind.server.http.HttpApplication.findServlet(HttpApplication.java:4800)
         at com.evermind.server.http.HttpApplication.initPreloadServlets(HttpApplication.java:4894)
         at com.evermind.server.http.HttpApplication.initDynamic(HttpApplication.java:1026)
         at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:560)
         at com.evermind.server.Application.getHttpApplication(Application.java:915)
         at com.evermind.server.http.HttpServer.getHttpApplication(HttpServer.java:707)
         at com.evermind.server.http.HttpSite.initApplications(HttpSite.java:637)
         at com.evermind.server.http.HttpSite.setConfig(HttpSite.java:278)
         at com.evermind.server.http.HttpServer.setSites(HttpServer.java:278)
         at com.evermind.server.http.HttpServer.setConfig(HttpServer.java:179)
         at com.evermind.server.ApplicationServer.initializeHttp(ApplicationServer.java:2435)
         at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1592)
         at com.evermind.server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:92)
         at java.lang.Thread.run(Thread.java:534)
    Sun Sep 13 11:02:55 WST 2009 [DEBUG] Orion Launcher Done loading Policy Configurations
    Sun Sep 13 11:02:55 WST 2009 [DEBUG] Orion Launcher Login Page Value: /sso/pages/login.jsp
    Sun Sep 13 11:02:55 WST 2009 [DEBUG] Orion Launcher Change password Page location: /sso/pages/password.jsp
    Sun Sep 13 11:02:55 WST 2009 [DEBUG] Orion Launcher Wireless Login Page location: /wirelesssso/wirelesslogin.jsp
    Sun Sep 13 11:02:55 WST 2009 [DEBUG] Orion Launcher Wireless Change password Page location: /wirelesssso/wirelesscpwd.jsp
    Sun Sep 13 11:02:55 WST 2009 [DEBUG] Orion Launcher Calling Initialization Methods ...
    Sun Sep 13 11:02:55 WST 2009 [DEBUG] Orion Launcher Connection pool inactivity timeout (mins) 120
    Sun Sep 13 11:02:55 WST 2009 [DEBUG] Orion Launcher SSO Admin Group: cn=iASAdmins,cn=Groups,cn=OracleContext
    Sun Sep 13 11:02:55 WST 2009 [INFO] Orion Launcher Entered DBConnectionPool.init method ...
    Sun Sep 13 11:02:56 WST 2009 [DEBUG] Orion Launcher Repository API returned - DB conn string: ldap://agspsrap01.agric.wa.gov.au:13061/infradev,cn=oraclecontext
    Sun Sep 13 11:02:56 WST 2009 [DEBUG] Orion Launcher Setting max number of connections to 150 in the DB cache pool
    Sun Sep 13 11:02:56 WST 2009 [DEBUG] Orion Launcher Setting minimum number of connections to 0 in the DB cache pool
    Sun Sep 13 11:02:56 WST 2009 [DEBUG] Orion Launcher JDBC pool InactivityTimeout (secs) 7200
    Sun Sep 13 11:02:56 WST 2009 [DEBUG] Orion Launcher JDBC pool PropertyCheckInterval(secs) 900
    Sun Sep 13 11:02:56 WST 2009 [INFO] Orion Launcher Leaving DBConnectionPool.init method ...
    Sun Sep 13 11:02:56 WST 2009 [INFO] Orion Launcher Entered DBConnectionPool.getConnection method ...
    Sun Sep 13 11:02:57 WST 2009 [INFO] Orion Launcher Leaving DBConnectionPool.getConnection method ...
    Sun Sep 13 11:02:57 WST 2009 [DEBUG] Orion Launcher SQL Exception received: java.sql.SQLException: ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "ORASSO.WWCTX_SSO", line 1579
    ORA-06502: PL/SQL: numeric or value error
    ORA-01400: cannot insert NULL into ("ORASSO"."WWCTX_SSO_SESSION$"."SUBSCRIBER_ID")
    ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "ORASSO.WWCTX_SSO", line 1579
    ORA-06502: PL/SQL: numeric or value error
    ORA-01400: cannot insert NULL into ("ORASSO"."WWCTX_SSO_SESSION$"."SUBSCRIBER_ID")
    ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "ORASSO.WWCTX_SSO", line 1579
    ORA-06502: PL/SQL: numeric or value error
    ORA-01400: cannot insert NULL into ("ORASSO"."WWCTX_SSO_SESSION$"."SUBSCRIBER_ID")
    ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "ORASSO.WWCTX_SSO", line 1579
    ORA-06502: PL/SQL: numeric or value error
    ORA-01400: cannot insert NULL into ("ORASSO"."WWCTX_SSO_SESSION$"."SUBSCRIBER_ID")
    ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "ORASSO.WWCTX_SSO", line 1579
    ORA-06502: PL/SQL: numeric or value error
    ORA-01400: cannot insert NULL into ("ORASSO"."WWCTX_SSO_SESSION$"."SUBSCRIBER_ID")
    ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "ORASSO.WWCTX_SSO", line 1579
    ORA-06502: PL/SQL: numeric or value error
    ORA-01400: cannot insert NULL into ("ORASSO"."WWCTX_SSO_SESSION$"."SUBSCRIBER_ID")
    ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "ORASSO.WWCTX_SSO", line 1579
    ORA-06502: PL/SQL: numeric or value error
    ORA-01400: cannot insert NULL into ("ORASSO"."WWCTX_SSO_SESSION$"."SUBSCRIBER_ID")
    ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "ORASSO.WWCTX_SSO", line 1579
    ORA-06502: PL/SQL: numeric or value error
    ORA-01403: no data found
    Sun Sep 13 11:02:57 WST 2009 [DEBUG] Orion Launcher DBConnectionPool: Checking for DB connection errors..
    Sun Sep 13 11:02:57 WST 2009 [ERROR] Orion Launcher SSO Server initialization failed. Check the DB availability and restart SSO Server
    Sun Sep 13 11:02:57 WST 2009 [ERROR] Orion Launcher Initializing the encryption/decryption objects failed
    oracle.security.sso.server.conf.ConfigurationException: Missing SSO server configuration
         at oracle.security.sso.server.conf.DatabaseConfigReader.init(DatabaseConfigReader.java:444)
         at oracle.security.sso.server.auth.AuthUtil.init(AuthUtil.java:194)
         at oracle.security.sso.server.ui.SSOLoginServlet.init(SSOLoginServlet.java:284)
         at javax.servlet.GenericServlet.init(GenericServlet.java:258)
         at com.evermind.server.http.HttpApplication.loadServlet(HttpApplication.java:2358)
         at com.evermind.server.http.HttpApplication.findServlet(HttpApplication.java:4800)
         at com.evermind.server.http.HttpApplication.initPreloadServlets(HttpApplication.java:4894)
         at com.evermind.server.http.HttpApplication.initDynamic(HttpApplication.java:1026)
         at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:560)
         at com.evermind.server.Application.getHttpApplication(Application.java:915)
         at com.evermind.server.http.HttpServer.getHttpApplication(HttpServer.java:707)
         at com.evermind.server.http.HttpSite.initApplications(HttpSite.java:637)
         at com.evermind.server.http.HttpSite.setConfig(HttpSite.java:278)
         at com.evermind.server.http.HttpServer.setSites(HttpServer.java:278)
         at com.evermind.server.http.HttpServer.setConfig(HttpServer.java:179)
         at com.evermind.server.ApplicationServer.initializeHttp(ApplicationServer.java:2435)
         at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1592)
         at com.evermind.server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:92)
         at java.lang.Thread.run(Thread.java:534)
    ======================================================================================================================
    If anyone can give me a clue what to do about this I would be greatly appreciative
    Thanks
    Adam

    The RDBMS with the metadata repository was down or has been restarted. Please restart your OID and SSO and it should work again. (remember to remove all data from table ods.ods_process after stopping OID and before restarting OID)
    If not, please post the contents of the OPMN logging of OID and OC4J_SECURITY.

  • I am not able to launch FF everytime i tr to open it, it says FF has to submit a crash report, i even tried doing that and the report was submitted too, but stiil FF did not start, and the problem still persists, please help me solve this issue in English

    Question
    I am not able to launch FF everytime i try to open it, it says FF has to submit a crash report,and restore yr tabs. I even tried doing that and the report was submitted too, but still FF did not start, and the problem still persists, please help me solve this issue
    '''(in English)'''

    Hi Danny,
    Per my understanding that you can't get the expect result by using the expression "=Count(Fields!TICKET_STATUS.Value=4) " to count the the TICKET_STATUS which value is 4, the result will returns the count of all the TICKET_STATUS values(206)
    but not 180, right?
    I have tested on my local environment and can reproduce the issue, the issue caused by you are using the count() function in the incorrect way, please modify the expression as below and have a test:
    =COUNT(IIF(Fields!TICKET_STATUS.Value=4 ,1,Nothing))
    or
    =SUM(IIF(Fields!TICKET_STATUS=4,1,0))
    If you still have any problem, please feel free to ask.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • Oracle9iAS R2 - Virtual Hosts with Portal and SSO with OIDDAS application

    Hi!
    I have installed a the machine with name minsk.discover.local. The machine have installed Infrastructure and Portal. The instalation is sucessfull and i work fine. But i have publish Portal to WEB with name intranet.discover.com.br. The Oracle describe:
    1 - Create the virtual hosts in SSO and PORTAL - OK
    2 - run ptlasst to create SSO Partners Applications - OK
    After this steps iwork fine with Portal and SSO, but when i click in portlet to create user to access the application OIDDAS, the Portal redirect to login page of SSO in address mct.com.br, the internal name, when then name not responde in the internet.
    I need a help!!!!
    Marcio Mesti

    I just spoke to the Oracle App server admins, the two servers in question are clustered.
    So my question changes slightly to:
    What is the best way to install and configure a webgate for clustered Oracle App servers with mulitple virtual hosts, that are residing behind a load balancer (Traffic Manager)?
    Thanks,
    Andy

  • Authentication to XML DB via WebDAV and SSO

    Hi,
    Is there any way to be authentified by XML DB via WebDAV and SSO ?
    If the access to our infrastructure of database servers is controled by SSO, once I'm authentified by OID (SSO), is it possible to pass that authentification to XML DB through standard port 8080 ?
    Thank you for your help

    This is planned for a future (not 10g) release

  • BOSD, Battery issues and Heating problem after iOS 8 upgrade

    i have upgraded my iPad mini to iOS 8. Ever since I upgraded to iOS 8 am facing blue screen issues and heating problem as well. This is really frustrating even the patch iOS 8.0.2 dint solve the problem. Are you guys listening our complaints. When will you fixing it.

    The same thing happened to me on my 2012 Subaru Outback.  I'm not sure this will help you since you have a Honda, but I'm posting this just in case.
    I paired the audio on my car with my iPhone 6.  However, when I turned the car off and back on again, the iPhone would not pair automatically.  I had to manually connect the iPhone with the car.  Turns out there are two separate bluetooth pairings on my car: one for phone which allows up to 5 devices and one for audio which allows only one device.  So I did the second bluetooth pairing for the phone (had already done the audio), and that fixed it.  YMMV

  • I am making code to try to make a game and my problem is that my code......

    I am making code to try to make a game and my problem is that my code
    will not let it change the hit everytime so im getting the first guy to hit 1 then next hits 8 and so on and always repeats.
    Another problem is that I would like it to attack with out me telling it how much times to attack. I am using Object oriented programming.
    Here is the code for my objects:
    import java.lang.*;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import java.util.Random;
    import static java.lang.Math.*;
    import java.awt.*;
    import java.awt.color.*;
    class rockCrab {
         //Wounding formula
         double sL = 70;                                   // my Strength Level
         double bP = 1;                                   // bonus for prayer (is 1 times prayer bonus)
         double aB = 0;                                 // equipment stats
         double eS = (sL * bP) + 3;                         // effective strength
         double bD = floor(1.3 + (eS/10) + (aB/80) + ((eS*aB)/640));     // my base damage
         //Attack formula
         double aL = 50;                                   // my Attack Level
         double eD = 1;                                   // enemy's Defence
         double eA = aL / eD;                              // effective Attack
         double eB = 0;                                   // equipment bonus'
         double bA = ((eA/10) * (eB/10));                    // base attack
         //The hit formula
         double fA = random() * bA;
         double fH = random() * bD;
         double done = rint(fH - fA);
         //health formula
         double health = floor(10 + sL/10 * aL/10);
         rockCrab() {
         void attack() {
              health = floor(10 + sL/10 * aL/10);
              double done = rint(fH - fA);
              fA = random() * bA;
              fH = random() * bD;
              done = rint(fH - fA);
              System.out.println("Rockcrab hit" +done);
    import java.lang.*;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import java.util.Random;
    import static java.lang.Math.*;
    import java.awt.*;
    import java.awt.color.*;
    class self {
         //Wounding formula
         double sL = 1;                                   // my Strength Level
         double bP = 1;                                   // bonus for prayer (is 1 times prayer bonus)
         double aB = 0;                                 // equipment stats
         double eS = (sL * bP) + 3;                         // effective strength
         double bD = floor(1.3 + (eS/10) + (aB/80) + ((eS*aB)/640));     // my base damage
         //Attack formula
         double aL = 1;                                   // my Attack Level
         double eD = 1;                                   // enemy's Defence
         double eA = aL / eD;                              // effective Attack
         double eB = 0;                                   // equipment bonus'
         double bA = ((eA/10) * (eB/10));                    // base attack
         //The hit formula
         double fA = random() * bA;
         double fH = random() * bD;
         double done = rint(fH - fA);
         //health formula
         double health = floor(10 + sL/10 * aL/10);
         self() {
         void attack() {
              health = floor(10 + sL/10 * aL/10);
              fA = random() * bA;
              fH = random() * bD;
              done = rint(fH - fA);
              System.out.println("You hit" +done);
    }Here is the main code that writes what the objects do:
    class fight {
         public static void main(String[] args) {
              self instance1 = new self();
              rockCrab instance2 = new rockCrab();
              instance2.health = instance2.health - instance1.done;
              System.out.println("You hit: " +instance1.done);
              System.out.println("rockCrabs health: " + instance2.health);
              instance1.health = instance1.health - instance2.done;
              System.out.println("RockCrab hit: " +instance2.done);
              System.out.println("rockCrabs health: " + instance1.health);
              instance2.health = instance2.health - instance1.done;
              System.out.println("You hit: " +instance1.done);
              System.out.println("rockCrabs health: " + instance2.health);
              instance1.health = instance1.health - instance2.done;
              System.out.println("RockCrab hit: " +instance2.done);
              System.out.println("rockCrabs health: " + instance1.health);
              instance2.health = instance2.health - instance1.done;
              System.out.println("You hit: " +instance1.done);
              System.out.println("rockCrabs health: " + instance2.health);
              instance1.health = instance1.health - instance2.done;
              System.out.println("RockCrab hit: " +instance2.done);
              System.out.println("rockCrabs health: " + instance1.health);
              instance2.health = instance2.health - instance1.done;
              System.out.println("You hit: " +instance1.done);
              System.out.println("rockCrabs health: " + instance2.health);
              instance1.health = instance1.health - instance2.done;
              System.out.println("RockCrab hit: " +instance2.done);
              System.out.println("rockCrabs health: " + instance1.health);
    }when the code is run it says something like this:
    you hit 1
    RockCrabs health is 9
    RockCrab hit 7
    your health is 38
    you hit 1
    RockCrabs health is 8
    RockCrab hit 7
    your health is 31
    you hit 1
    RockCrabs health is 7
    RockCrab hit 7
    your health is 24
    you hit 1
    RockCrabs health is 6
    RockCrab hit 7
    your health is 17
    my point is whatever some one hits it always repeats that
    my expected output would have to be something like
    you hit 1
    RockCrabs health is 9
    RockCrab hit 9
    your health is 37
    you hit 3
    RockCrabs health is 6
    RockCrab hit 4
    your health is 33
    you hit 2
    RockCrabs health is 4
    RockCrab hit 7
    your health is 26
    you hit 3
    RockCrabs health is 1
    RockCrab hit 6
    your health is 20
    Edited by: rade134 on Jun 4, 2009 10:58 AM

    [_Crosspost_|http://forums.sun.com/thread.jspa?threadID=5390217] I'm locking.

  • Remote and IR Problem

    A rather odd and annoying problem has recently been occuring on my MBP. A couple days ago my remote (after working without fail for over a year now) suddenly stopped working. Yesterday night and this morning it started working again but after a while it stopped again. I've read dozens of support articles which haven't really helped because there seems to be another problem.
    Most articles have stated that there is an option to disable the IR receiver in the "security" window under system preferences. When the IR and remote are not working this option disappears but when they are working the option is present. I have also tried replacing the battery without any result.
    I am now thinking that it might have something to do with heat buildup because it is mainly occuring after the laptop has been on for about a half hour, so I am going to try to borrow someone's fan.
    If anyone has any suggestions to solve this I would appreciate it if you could help. Thanks!
    MacBook Pro 1.83 GHz   Mac OS X (10.4.9)  

    check out this thread. Seems to be the same problem.
    http://discussions.apple.com/thread.jspa?messageID=4701905&#4701905

Maybe you are looking for

  • R12 Supplier Open Interface issue- Supplier Sites Rolling up to address

    I am doing a supplier conversion, and when I do...the sites roll up to the address. You look at the address book and the sites with the same address roll up. I don't want this. We want a one-to-one relationship. One site, one address...no matter if i

  • About Pl/Sql Block

    Hi All, Is there any way in pl/sql block through which we can run the script file(.sql) which is stored in O.S drive. Some one said that we can do with ref cursor,but how we can do. Please suggest.. Thanks Sandeep

  • Internal Order Vs. Maintenance Order

    Dear All. Greetings of the day We have a scenario in which settlement receiver is internal order , and internal order have budget profile . how can we link the maintenane order to internal order wrt to budget , means system should not allow to exceed

  • The LDAP server is unavailable after installing KB2868725

    After installing the KB2868725 Windows Update, a strange LDAPs connection problem occur. Context : we have a C# web site (.NET 4.0) that perform an LDAPs Bind operation over LDAPs. The web server is not on the same domain (bind operations are perform

  • Mac mini vs. Lacie Ethernet Hard Drive

    So I just got a new Lacie Ethernet Disk mini that I'll be hooking up to my router. I also have a "spare" Mac mini that I thought about using as a file server. Both would just be connected to the router. Which do you think would be faster in terms of