Application registration algorithm

I'm writing a small shareware app that I would ideally like people to register. This is the classic, if they send in the registration code 'xxxxxx', then I can send the unlock code 'YYYYY' situation.
Three criteria:
1) I would like the registrtaion code xxxxx to be unique. I am toying with the idea of storing the date in millisecs of when the app was first run on the system. If anyone has any better suggestions, I would love to hear them.
2) I would really like to have the algorithm myself. i.e. I don't plan to make enough off of this to be worth purchasing a library.
3) This does not need to be incredibly secure. Just enough to keep the casual person from
Does anyone out there have an algorithm they are willing to share to accomplish this?
Thanks all. This falls into the 'I know it has to be a known problem, but I'm not sure where to start' category.

Unless I am misunderstanding, I think that I'm addressing what you mentioned. Let me recap and see if I can make it more clear.
1) Client sends you an identifier and saves it to the client's disk.
String start = "" + System.currentTimeMillis();
start = start.substring( start.length() - 5, start.length() );
//this pulls off the last 6 numbers from the first run time and converts to a string. 
// this is written to a file on the client side and then sent to me for registration.
2) You (the server) send back a hash of the identifier.
//registration app
String start = codeSentFromCustomer;
String superSecretDecoderString = "Secret Code";
start = start + superSecretDecoderString;
String result = MD5.getHashString( start );
result = result.substring( result.length() - 9, result.length() );
//this takes the 6 digits provided and appends "Secret Code".
//  i.e. if the customer's code is "333232", then "333232Secret Code" is fed into MD5.
//  I then send the customer the last 10 digits from my MD5 hash, say "1234567890" for simplicity sake
3) Clients types the unlock code ("1234567890") into the registration box, which is then saved to disk.
// to check on the unlock code's validity, I...
String superSecretDecoderString = "Secret Code";
String start = originalCodeFromAbove; //i.e. "333232" in this example
start = start + superSecretDecoderString;  //now start = "333232Secret Code"
String result2 = MD5.getHashString( start );
result2 = result2.substring( result2.length() - 9, result2.length());
// I compare the result2 to the stored unlock code to make sure they are equal
//  superSecretDecoderString is stored within the client and the registration prog's code.  i.e.
//  the customer never sees that string.
4) At each startup the client code checks the hash of sent ID against the return he has stored.
// run through the validation code detailed in #3.I think it addresses what you were referring to, but if it doesn't please tell me. It's my first crack at this sort of code, and I'd much rather discover any gaping holes now than later. :)
thanks again

Similar Messages

  • Partner Application Registration

    When using the Administer Partner Applications page, it appears the application is not being registered completely. The information does not appear in the WWSEC_ENABLER_CONFIG_INFO$ table, as has been suggested in prior posts (everything is fine in WWSSO_PAPP_CONFIGURATION_INFO$).
    I am attempting to deploy the SSO SDK demo PL/SQL application, which works fine when logged into Portal. However, when not logged into Portal, I receive the following errors:
    "Error in application: missing application registration information
    Please register this application as described in installation guide"
    This error is driven by the PL/SQL exception:
    "wwsec_sso_enabler_private.enabler_config_not_found"
    What am I missing? I have created several Partner applications, and none of them appear in the WWSEC_ENABLER_CONFIG_INFO$ table. I have sucessfully loaded the SSOHash into my partner schemas.
    Environment:
    Win2000
    Portal 3.0.7
    Thanks in advance...
    Dean

    Paul,
    Thanks for the info; however, I'm still unable to get the SSO SDK sample, or any partner app, to work.
    I have read the docs, what little there is, and followed the steps closely. Everything executes ok.
    I have several questions:
    1. When executing the REGAPP.SQL script that comes with the SDK, it indicates to login as the partner schema. I have noticed when running this script, the entry is stored in the partner schema table WWSEC_ENABLER_CONFIG_INFO$, not the one owned by Portal. Is this correct?
    2. My partner app is really a PL/SQL Server Page (PSP) application which uses the same server as Portal. When entering the Listener Token name, I have been using the same server name as Portal. Is this a problem? What is this token used for? Must it be unique for each partner application?
    3. In your response you mentioned changes to the REGAPP script. I found no mention of any changes in the docs with SSO SDK. Am I missing something?
    Finally, is there any better documentation for the SDK and/or partner application configuration. The readme and install files do not, in my opinion, pass as documentation.
    Thanks...
    Dean

  • LMS application registration problem

    Hi,
    I have a problem with the application registration of Campus Manager 5.2.1 under LMS 3.2.
    Right now in the "Functional" tab of the LMS portal the "Campus Manager" view is empty.
    In "Common Services" - "Server" - "Home Page Admin" - "Application Registration" Campus Manager is missing in the list of registered applications.
    I can connect to the Campus Manager using the direct link http://<servername>:1741/campus/adminIntro.do.
    The "CM" tab on the LMS portal page works.
    I tried to register it this way:
    In the CS Homepage Admin I click on "Register" - "Register from Templates" - "Next"
    Then I get the list of templates. I select "Campus Manager" - "Next".
    I enter these values:
    Server name: fully qualified name of the server
    Server Display Name: hostname of the server
    Port: 1741
    Protocol: http
    When I click on "Next" - "Finish" the Campus Manager is not added to the list of registered application and I get no error message.
    Did I enter wrong values? Where can I find corresponding log/debug messages?

    It sounds like the CMIC database may be corrupt.  There is a process to recover this, but it's somewhat complicated.  If you open a TAC service request, your engineer can walk you through the process.  This will clear out the CMIC database and reregister all applications.  That should sort you out.

  • Getting error like "Error in portal_sso_redirect: missing application registration information" while trying to run application using Oracle SSO

    Hi All,
    I am trying to implement SSO authentication for my APEX application. I have registered the application as a SSO partner application.
    I have set the authentication scheme to Oracle Application server Single Sign On.
    When i run the application i am getting the below error.
    Error in portal_sso_redirect: missing application registration information: p_partner_app_name:g_listener_token:HTML_DB:ofss220104.in.oracle.com:5050Please register this application as described in the installation guide.
    Please help me to resolve this.
    Thanks and Regards,
    Suhas

    Suhas,
    After you registered your application as a SSO partner application did you use the information from Oracle SSO (home URL, success URL, Logout URL, app_name etc) and loaded it into the APEX_SSO schema using the regapp.sql script from the ssosdk?
    Step 4 of http://www.oracle.com/technetwork/testcontent/sso-partner-app-100552.html#INSTALL
    Ricker

  • Application Registration Question

    I have an htmldb application which was successfully implemented using my old PC.
    I've just unpacked by new PC and now when I attempt to run my htmldb application I am getting the following error. Can anyone help me correct this?
    Thanks
    Error in portal_sso_redirect: missing application registration information:
    p_partner_app_name:g_listener_token:HTML_DB:apex.oraclecorp.com:80
    Please register this application as described in the installation guide

    Let me clarify. I did not copy the application from the old PC to the new. It isn't even stored on my PC.
    My application is stored in HTMLDB and I access it by going to apex.oraclecorp.com where I login to a workspace provided for me.
    All I have done is attempt to run the application by connecting to apex.oraclecorp.com using my new PC.
    I don't understand why that should be any different than using my old PC.
    My new PC has no SSO problems when accessing mail or files online.
    My co-worker has used her PC to run my application - following the same steps I did - and is able to run the application w/ no problem.
    Another tidbit. I created a new test application using my new PC in the same workspace provided, and it runs fine.
    Any ideas?
    Thanks,
    Ron

  • Error in portal_sso_redirect missing application registration information:

    Hi,
    I am getting the following error message, when i run any of my APEX Page. Please help me to resolve this issue.
    Error in portal_sso_redirect missing application registration information:
    p_partner_app_name:g_listerner_token:HTML_DB:stbp5.oracle.com:80
    please register this application as described in the installation guide.
    What is the issue? What is the fix for that?
    Regards
    Balaji S

    Suhas,
    After you registered your application as a SSO partner application did you use the information from Oracle SSO (home URL, success URL, Logout URL, app_name etc) and loaded it into the APEX_SSO schema using the regapp.sql script from the ssosdk?
    Step 4 of http://www.oracle.com/technetwork/testcontent/sso-partner-app-100552.html#INSTALL
    Ricker

  • Cocoa Application Registration

    hello,
    just wondering: are there any online tutorials for creating a registration system for a cocoa application ? I've been googling and can't find any.
    *looking specifically for info for how to generate a code based on the user's mac address, and then to generate a working auth code, which the app will use to unlock the app.

    Hi
    Thanks for your reply.
    Now I have sucessfully created the plug-in and I have placed it in the internet - plugin directory as well. In addition to this I have configured the MIME type as well and set it to a custom type Simp. Now I want to try my plugin . How can I do this ? there is something given Here : http://developer.apple.com/DOCUMENTATION/InternetWeb/Conceptual/WebKitPluginProgTopic/Concepts/AboutPlugins.html#//appleref/doc/uid/30001248-198944
    Where it asks to add a piece of code under OBJECT tags in the HTML page. then I opened this page in safari but the plugin was not called. . What should I do to get this called.
    Thanks in advance
    Best Regards
    Sudeep

  • Interfacing a C++ Console Application Genetic Algorithm with LabVIEW

    Hi,
    I am have recently modified the GENESIS genetic algorithm using C++ so that it runs on a Windows machine (before it only ran under UNIX). In my experimental work the aim is to control everything using LabVIEW, including this Genetic algorithm.
    My problem comes from the fact that the Genetic Algorithm is set-up as a console application, a library file is created  containing the input parameters of the VI, then this is joined with an evaluation function that is dependant on the library file an an executable is created.
    I need to take some information collected from LabVIEW and give it to the genetic algorithm, but I don't know how to do this.
    Any Ideas?
    Thanks
    Alan Homer

    You can run most applications from a command line using the location/application.exe (where the location is where the executable is stored), all c++ applications run using:   int main (int argc, char **argv); where the argc is the number of arguments and argv is essentially a string table with the parameters passed to the program (will be used as code) the output if a command line application is the std out which can be piped to file or wired out from the standard out terminal.  To pass parameters from your LV code to the command line you should know the parameter list (sometimes empty). 
    Paul
    Paul Falkenstein
    Coleman Technologies Inc.
    CLA, CPI, AIA-Vision
    Labview 4.0- 2013, RT, Vision, FPGA

  • Transfer former application registrations/serials upon clean install

    Hi,
    I wasn't positive if this was the right forum for this post... I just reinstalled OS X (have done this often) and one problem I always run into is needing to re-enter all my serial codes. This isn't a problem for 99% of my applications (I just dig out my iWork box, hunt down my email to the folks at iBank from the last time I had to request my code...). What would help is to know as I'm migrating my data if there's a file where all of this is stored so I can just copy that file.
    iTunes for example, keeps thinking I'm copying my data onto a separate computer, so even though I'm just copying my music from my backup drive onto my clean install Music folder, I get the warning: 'You have now used this music on x of your 5 allowable computers' or something like that. I was up to 3 or so the last time, so I'm running out of times!
    Anyone know how to let the new install realize it's still me and keep all my former registrations and serial codes and such?
    -John

    Very, very cool. I read the page. I already re-installed Leo, so it's too late to wipe the 'old' computer, as in, I'm assuming iTunes will already see me as a 'new computer' since wherever it hides its authentication (maybe /Library /System or somewhere in /Users/Library??) is now wiped and reinstalled? I also don't know it's method... user name identification, matching UUID, some file stored once you authenticate??
    Anyway, I don't reinstall 5x per year, so I'll just wait until my 5 are done and then use the method you provided to de-authenticate all the computers iTunes thinks I'm on and then re-authenticate the current system.
    Thanks much for that reference!
    -John

  • Error while deploying an Agentry application on SMP 2.3 Server

    Hello Experts,
    I am trying to deploy a customized SAPWM application on the SMP 2.3 server.
    I am referring to the tutorial maintained at the following URL :http://scn.sap.com/docs/DOC-43353
    I have zipped the contents of the application folder (under Serverdev) and added the required DLLs and JAR files.
    While deploying using SCC (Control center), I get an error which says "Application registration failed".
    Under logs, I could find the following entry:
    [com.syclo.agentry.admin.implementation.ClientStatusSocket] [] []     [System Connections] not found - please use editor to publish application then restart the server.
    Thread-1128 [com.syclo.agentry.admin.implementation.ClientStatusSocket] [] []     11:25:31 04/25/2014 25 General 0 Unknown Exception [System Connections] section not found in Agentry.ini file (Publish from editor to correct), agent\ChickamingAgent.cpp#2423:ChickamingAgent::startup
    ERROR   MMS Thread-1128 [com.sybase.sup.agentry.service.AgentryServerListenerImpl] [] [] Agentry application [com.sap.agentry.sapwm] report error: [2014-04-25 11:25:24.151] errorClassCode=[2
    The deployed zip file looks like this:
    I also checked up another thread (Setup Work Manager on SMP2.3) on the same post, but the thread owner was able to resolve the issue after he stopped the server instance and deployed again. However, it didn't work for us.
    Questions:
    1) How can I export the application in ".agp" package?
    2) How can we resolve the deployment error? The Agentry.ini contained within the package does have system connections section with HTTPXML, JavaBE and SQL DLL files.
    Appreciate your help on the same.
    Best,
    Arihant Kothari
    Tags edited by: Michael Appleby

    Hello Abhishek
    thanks for your reply there.. We did get the app name as follows when we tried to deploy the application in SMP 2.3 "Even though it errored out saying - Unable to register the application"
    D:\SAP\MobilePlatform\Servers\UnwiredServer\Repository\Agentry\default\com.sap.agentry.sapwm53
    However we manually unzipped the agentry app into this folder as per instructions from agentry app deployment on SMP 3.0
    What do you mean by "After your appname you should not have any other folder" - clearly if that is the case then we have "Development" folder and some additional folders beneath this.
    Could you please suggest?
    Thanks,
    Raza.

  • HTMLDB -SSO- Partner application

    Hi,
    I have installed a database 10g/HTMLDB 1.5 and iAS 10g on two different boxes.
    Refered & successfully completed the steps from
    http://www.oracle.com/technology/products/database/htmldb/howtos/sso_partner_app.html
    to Configure an HTML DB Application as a Partner Application in Oracle AS Single Sign-On
    (TWICE From the Scratch)
    But, Getting error like
    "Error Error in portal_sso_redirect: missing application registration information:
    p_partner_app_name:g_listener_token:HTML_DB:indl097ba.idc.oracle.com:7777
    Please register this application as described in the installation guide."
    Please let me know what would be wrong in doing this.
    Feel free to ask for any further specific details or parameter values.
    As its @ customer's site, need to know the resolution very urgently.
    Thanks in advance.
    Regards,
    Nagadeep.

    Hi Scott,
    I am doing it from scratch now.
    Details are like this:
    C:\SSO_SDK\ssosdk307_032101\packages\oracle\security\sso>path
    PATH=D:\oracle\product\10.1.0\Db_1\BIN;D:\OraHomeOWB\bin;D:\OraHomeOWB\jre\1.4.2
    \bin\client;D:\OraHomeOWB\jre\1.4.2\bin;D:\oracle\product\10.1.0\Htmldb\bin;D:\o
    racle\product\10.1.0\Htmldb\jre\1.1.8\bin;D:\oracle\product\10.1.0\Htmldb\jre\1.
    4.2\bin\client;D:\oracle\product\10.1.0\Htmldb\jre\1.4.2\bin;D:\oracle\product\1
    0.1.0\Db_1\bin;D:\oracle\product\10.1.0\Db_1\jre\1.4.2\bin\client;D:\oracle\prod
    uct\10.1.0\Db_1\jre\1.4.2\bin;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;
    C:\Program Files\Symantec\pcAnywhere\
    C:\SSO_SDK\ssosdk307_032101\packages\oracle\security\sso>loadjava -user FLOWS_01
    0500/welcome1@orcl SSOHash.class
    C:\SSO_SDK\ssosdk307_032101\packages\oracle\security\sso>
    @ the Database Schema:
    SQL*Plus: Release 10.1.0.2.0 - Production on Wed May 18 20:49:33 2005
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL> conn flows_010500/welcome1
    Connected.
    SQL> @C:\SSO_SDK\ssosdk307_032101\packages\loadsdk.sql
    Package created.
    No errors.
    Package body created.
    No errors.
    Type created.
    Table created.
    Sequence created.
    Sequence created.
    Table created.
    No errors.
    Procedure created.
    No errors.
    Package created.
    No errors.
    Package body created.
    No errors.
    Package created.
    No errors.
    Package created.
    No errors.
    Package body created.
    No errors.
    Package body created.
    No errors.
    Package created.
    No errors.
    Package body created.
    No errors.
    SQL>
    Now, at the iAS10g registering HTMLDB application as a partner application.
    Let me know whether I have to create any DAD to specify in HOME URL?
    Regards,
    Nagadeep.

  • SSO regapp registration with multiple net names

    Hello!
    I succesfully configured my apex engine to work with SSO authentication.
    I used in regapp.sql
    l_listener_token := 'HTML_DB:myhostname.mydomanin.com:7777';
    and now the home page link works fine:
    http://myhostname.mydomanin.com:7777/pls/htmldb/f?p=504:1
    The problem is that I have some other network names (aliases) for the same IP (10.10.10.10) and I want these links to be functional as well:
    http://myhostname2.mydomanin2.com:7777/pls/htmldb/f?p=504:1
    http://10.10.10.10:7777/pls/htmldb/f?p=504:1
    But when using them I get this error:
    Error in portal_sso_redirect: missing application registration information:
    p_partner_app_name:g_listener_token:HTML_DB:myhostname2.mydomanin2.com:7777
    Please register this application as described in the installation guide
    I tried to reuse the tokens I have for myhostname.mydomanin.com and register again regapp.sql with:
    l_listener_token := 'HTML_DB:myhostname2.mydomanin2.com:7777';
    But this violates unique constraint WWSEC_SECI_UK1 on WWSEC_ENABLER_CONFIG_INFO$.SITE_TOKEN column.
    Question:
    Is there a way to make functional the alternate links without getting new tokens (new SSO registrations to iAS)?
    Thanks,
    Sorin

    Try this
    Replace the < and > with their corresponding HTML escape characters , &lt an &gt (The escape characters need a trailing ; )
    Under Column Formatting for this column
    <a hre="mailto:#IDS#">#IDS#</a> varad

  • EBS Registration issue

    Hi All,
    We have done the sso registration successfully , but sso login functionality is not working as expected.
    Please provide some inputs to fix this issue.
    Environment
    We are on 11gR2 database for both OID and EBS 11.5.10.2.
    OID version 11g on web logic server.
    SSO server version is 10.1.4.3
    In the front end it is showing the below error while login using the SSO URL.
    "The Single Sign-On server registration is invalid. Please contact the System Administrator. "
    When we run the below query in the backend (EBS R11 DB) it suppose to get the records without any error or it is suppose to show just “no rows selected”, but I got the “ORA-29275” error in the backend
    Query: select FROM FND_USER_PREFERENCES WHERE USER_NAME = '#INTERNAL'*
    and I ran the FND Log Query, found these messages..."END with errors for getSSOVerion"
    Query--> select * from fnd_log_messages where module like '%fnd.sso.FNDSSOLoginRedirect%' order by timestamp desc;
    out put:
    MODULE,LOG_LEVEL,MESSAGE_TEXT,SESSION_ID,USER_ID,TIMESTAMP,LOG_SEQUENCE,ENCODED,NODE,NODE_IP_ADDRESS,PROCESS_ID,JVM_ID,THREAD_ID,AUDSID,DB_INSTANCE,TRANSACTION_CONTEXT_ID
    fnd.sso.FNDSSOLoginRedirect,6,END with errors for getSSOVerion,-1,-1,7/7/2011 5:39:36 PM,16151017,N,agsos186,155.108.22.210,5161,8230:16210,Thread[Thread-17669,10,main],46984138,1,3762242
    I have run the below mentioned steps to register the sso with EBS R11.
    Registration Steps
    txkrun.pl -script=SetSSOReg -registersso=Yes
    txkrun.pl -script=SetSSOReg -registeroid=Yes -provtmp=$FND_TOP/admin/template/ProvBiDiNoCreation.tmp (Here basically I don’t want provision/create the users by default in EBS or OID). Even I tried default option its not working ( by default it provision /create in both places EBS and OID)
    LOG
    Oxxx(APPS2)$txkrun.pl -script=SetSSOReg -registersso=Yes
    Enter the host name where Oracle iAS Infrastructure database is installed ? xxxxxxxxx2.com
    Enter the Oracle iAS Infrastructure database port number ? 1510
    Enter the Oracle iAS Infrastructure database SID ? xxx2eee
    Enter Oracle E-Business apps database user password ? xxxxxxx
    Enter Oracle iAS Infrastructure database ORASSO schema password ? xxxxxx
    Enter Oracle E-Business SYSTEM database user password ? xxxxxxx
    Enter E-Business Suite existing SSOSDK schema password or choose a password to use with the new SSOSDK schema if the schema does not exist ? ssosdk
    *** ALL THE FOLLOWING FILES ARE REQUIRED FOR RESOLVING RUNTIME ERRORS
    *** Log File = /aifsd03/ifs/applmgr/xxxxcomn/rgf/xxxxxxxx_agsosxxx/sso/txkSetSSOReg_Fri_Jul_1_13_52_00_2011.log
    Program : /aifsd03/ifs/applmgr/Oxxx/fnd/11.5.0/patch/115/bin/txkSetSSOReg.pl started @ Fri Jul 1 13:52:18 2011
    *** Log File = /aifsd03/ifs/applmgr/xxxxxxxppl/rgf/xxxxxxxppl_agsos/sso/txkSetSSOReg_Fri_Jul_1_13_52_00_2011.log
    ######################## WARNING ########################################
    This application works with SSOSDK version 9.0.2 or higher. If lower version
    (3.0.9) of SSOSDK was installed in your system and you have a registered
    partner application, this process will remove the 3.0.9 version of the SSOSDK
    schema and install the 9.0.2 version.
    ######################## WARNING ########################################
    Beginning input parameter validation for SSO registration.
    Beginning loading SSO SDK into database if necessary.
    Loading of SSO SDK into database completed successfully.
    Input parameter validation for SSO registration completed.
    BEGIN SSO REGISTRATION:
    Beginning to register partner application.
    Partner application has been registered successfully.
    Single Sign-On partner application registered successfully.
    End of /aifsd03/ifs/applmgr/xxxxxxxppl/fnd/11.5.0/patch/115/bin/txkSetSSOReg.pl : No Errors encountered
    Oxxx(APPS2)$txkrun.pl -script=SetSSOReg -registeroid=Yes-provtmp=$FND_TOP/admin/template/ProvBiDiNoCreation.tmp
    Enter the host name where Oracle iAS Infrastructure database is installed ? XXXXXXXXXXXXX2.com
    Enter the LDAP Port on Oracle Internet Directory server ? 3010
    Enter Oracle E-Business apps database user password ? XXXXX
    Enter the Oracle Internet Directory Administrator (orcladmin) Bind password ? XXXXX
    Enter the instance password that you would like to register this application instance with ? XXXXXX
    *** ALL THE FOLLOWING FILES ARE REQUIRED FOR RESOLVING RUNTIME ERRORS
    *** Log File = /aifsd03/ifs/applmgr/xxxxxxx0comn/rgf/xxxxxxxxx_agsosxxx/sso/txkSetSSOReg_Fri_Jul_1_13_58_14_2011.log
    Program : /aifsd03/ifs/applmgr/xxxxxxxppl/fnd/11.5.0/patch/115/bin/txkSetSSOReg.pl started @ Fri Jul 1 13:59:50 2011
    *** Log File = /aifsd03/ifs/applmgr/xxxxxxxppl/rgf/xxxxxxxppl_agsosxxx/sso/txkSetSSOReg_Fri_Jul_1_13_58_14_2011.log
    Beginning input parameter validation for OID registration.
    Input parameters validation for OID registration completed.
    BEGIN OID REGISTRATION:
    Beginning to register Application and Service containers if necessary.
    Application and Service containers were found and thus not created.
    Beginning to register application in Oracle Internet Directory.
    Registration of application in Oracle Internet Directory completed successfully.
    Beginning to register instance password in Oracle Internet Directory.
    Registration of instance password in Oracle Internet Directory completed successfully.
    Beginning to test application registration in Oracle Internet Directory.
    Testing of application registration in Oracle Internet Directory completed successfully.
    Beginning to register provisioning profile in Oracle Internet Directory.
    Registration of provisioning profile in Oracle Internet Directory completed successfully.
    Application is now registered successfully with provisioning in Oracle Internet Directory.
    End of /aifsd03/ifs/applmgr/xxxxxxxppl/fnd/11.5.0/patch/115/bin/txkSetSSOReg.pl : No Errors encountered
    Edited by: reddy1198 on Jul 8, 2011 2:36 PM

    Please see if (The Single Sign-On server registration is invalid [ID 434752.1]) helps.
    Thanks,
    Hussein

  • HTMLDB as Partner Application to TWO OID instances - Authentication Schemes

    For reasons I won't go into here, we have TWO Oracle OID/SSO instances running - independently.
    I am interested in having HTMLDB / APEX applications capable of authenticate against either one. (one at a time, but on the same engine installation)
    We have done the PARTNER APPLICATION registration which works well against one of the OID instances. Records have been entered into the WWSEC_ENABLER_CONFIG_INFO$ table and everything works as expected.
    What option do I have to register the HTMLDB engine with a SECOND OID/SSO as a partner application and then allow the developers the ability to choose which authentication scheme applies?
    What I have observed is that the package given (custom_auth_sso) has built in
    g_partner_app_name varchar2(2000) := 'HTML_DB';
    Is it possible to duplicate that type of functionality, or is there something deeper ingrained into the engine that I do not understand?
    Regards,
    Tim

    Scott,
    I am working under a model similar to your case number two.
    Application 1 – uses OID A
    Application 2 – uses OID B
    I am going under the assumption that if there were two records in the config_info$ table, that I would need some type of ability to inform the WWV_FLOW_CUSTOM_AUTH_SSO package to switch between them.
    I guess what I am missing is the mechanics. I am trying to avoid having to re-write the WWV_FLOW_CUSTOM_AUTH_SSO package by hand. Besides the package body being compiled, I do not know how that authentication scheme is called by HTMLDB/APEX. I have been using the “Oracle Application Server Single Sign-On (HTML DB Engine as Partner App)” scheme. This leaves most of the Authentication scheme pretty blank with the exception of the Session Not Valid URL ( populated with –PORTAL_SSO-) and the logout URL. Magically it works though.
    If I had TWO schemes registered in the config_info$, how would I indicate which scheme to use?
    Do I have the capability of working with what has already been provided, or am I destined to writing a custom scheme because of the decision which needs to be made?
    Many thanks
    --Tim                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • No application into 'navigate' menu of workspace

    Hi All,
    After having researched into a lot of different forum topics, I couldn't find any answer that could help me solve this issue. Working with EPM 11.1.2.2, for maintenance reasons, I had to restart all services on our linux server. Since I have restarted the services, I'm not able to see any application under the navigate button of the workspace. Then, I tried to create a dummy application and register it and everything works fine (no error message), I can also access planning applications through HP direct weblink. But, unfortunately, can't see these applications under 'navigate' button.
    I've already tried to re-execute the configure web server of the config utility + stop-start services. I can also access to planning adminitration through workspace. No error when I execute the validation tool.
    Can also confirm this is not a display issue from IE (settings are correct).
    As I didn't do any changes except restarting services, I do not understand why I cannot see any HP application through workspace.
    Any ideas or suggestions ? It would be really helpful !! Thanks in advance !
    Regards,
    Laurent

    Ok, I checked the logs under the path you've mentionned in your post.
    What I found interesting are the following lines :
    [2013-08-30T10:00:57.502+02:00] [FoundationServices0] [NOTIFICATION] [00510] [oracle.bi.bifndnepm.workspace.security.AppsChecker] [tid: 11] [userId: <anonymous>] [ecid: 54004tVOig2E8Tk5Oz4Eyd0000vv00002E,0:1] [SRC_CLASS: com.oracle.workspace.security.AppsChecker] [APP: WORKSPACE#11.1.2.0] [SRC_METHOD: getAppRegistration:298] [URI: /workspace/modules/com/oracle/workspace/mode/modeApps.jsp] Fetching registration for product HP-11.1.2.0 application Plan
    [2013-08-30T10:00:57.524+02:00] [FoundationServices0] [ERROR] [02801] [oracle.bi.bifndnepm.workspace.security.CSSUtils] [tid: 11] [userId: <anonymous>] [ecid: 54004tVOig2E8Tk5Oz4Eyd0000vv00002E,0:1] [SRC_CLASS: com.oracle.workspace.security.CSSUtils] [APP: WORKSPACE#11.1.2.0] [SRC_METHOD: getTrustedSSOToken:86] [URI: /workspace/modules/com/oracle/workspace/mode/modeApps.jsp] Failed to authenticate a trusted CSS user.
    [2013-08-30T10:00:57.525+02:00] [FoundationServices0] [ERROR] [00509] [oracle.bi.bifndnepm.workspace.security.AppsChecker] [tid: 11] [userId: <anonymous>] [ecid: 54004tVOig2E8Tk5Oz4Eyd0000vv00002E,0:1] [SRC_CLASS: com.oracle.workspace.security.AppsChecker] [APP: WORKSPACE#11.1.2.0] [SRC_METHOD: getAppRegistration:370] [URI: /workspace/modules/com/oracle/workspace/mode/modeApps.jsp] There was an error fetching an application registration
    [2013-08-30T10:00:57.525+02:00] [FoundationServices0] [ERROR] [00509] [oracle.bi.bifndnepm.workspace.security.AppsChecker] [tid: 11] [userId: <anonymous>] [ecid: 54004tVOig2E8Tk5Oz4Eyd0000vv00002E,0:1] [SRC_CLASS: com.oracle.workspace.security.AppsChecker] [APP: WORKSPACE#11.1.2.0] [SRC_METHOD: getProvisionedApps:249] [URI: /workspace/modules/com/oracle/workspace/mode/modeApps.jsp] There was an error fetching an application registration
    I found these lines in a file called 'Workspace.log'. It looks like a possible cause of this issue, true ? Now the problem is that I did not found references onto the web about these errors... Any ideas ?
    Thanks in advance and Regards,
    Laurent
    P.S: sorry if my English looks bad... not my mother tongue :-)

Maybe you are looking for

  • FTP Adapter Unable to change directory 'inputDir'

    Hi all. I'm trying to put the file into BPEL Process, transform and put it to the output directory like in tutorial 129.FTPAdapter FTPDebatching. But I've got this message: <bindingFault xmlns="http://schemas.oracle.com/bpel/extension"> <part name="c

  • Flash Islands Tutorial I - Confusion with Flex/Flash Builder Versions

    Hi Guys, i am new to the Adobe Flex/Flash Islands technology and tried to implement Tutorial I by Thomas Jung. Unfortunately i am confused by the various different versions for flex and the corresponding IDE's. As far as i understood SAP at the momen

  • Support needed for my Satellite U840W-107

    Hi guys! Since it is impossible to contact Toshiba Bulgaria in any possible way I am forced to use this forum. Can someone tell me how to solve an issue with the Intel Management Engine Interface 9.5.24.1790? Upon starting the computer I am prompted

  • Designer/control item   :CG$CTRL.CGU$SYSDATE

    Good morning! Any lead as to why form generator does not included the control block CG$CTRL (which is part of the template) and it's generator items (CG$US...CG$DT...)in the generated form...? designer 6.5.91.0.10 with headstart template package 2.1.

  • Changing system currency after company copy using CopyExpress

    Hi! I have copied the dev database to test and would like to know if it is possible to change the system currency using the GUI (I have found tue way to do so using an SQL querry). Thanks!