Portal Self registration issue

Hi guys,
I had activated Portal self registration with companies feature. what i did is ,  i assigned one role (ess portal role in which all my ess screens are covered) to authenticated group and  every_user_core_role to anonymous group and did necessary configuration in configtool . The problem i am facing is that my self registered users are able to see my portal role without any approval (via approve/ deny in user administration) which i want to show them after approval . PLs guide what might me the issue.
Regards,
Shwetang Saxena.

Hello Soni!
Please review and follow the steps mentioned here:
Companies and Self-Registration with Approval (SAP Library - User Management of the Application Server Java)
https://cw.sdn.sap.com/cw/docs/DOC-110636
Hope this helps,
Edison

Similar Messages

  • Portal self registration - modifying email messages sent from database

    Hi,
    Using Self Registration feature of Portal, we need to modify the text sent to approved users by email.
    current message:
    The account that you requested at https://mysite/portal/pls/portal/ has been approved. You may now log on to the portal using the username (blaaablaa) and the password that you specified during registration.
    I need to change this to something more appropriate/user friendly
    Does anyone have experience of this? Could I use UTL_MAIL to modify these messages?
    TIA
    Kevin

    Hi
    Thought I'd give an update to this. The portal was sending from an unrecognised account on our mail server. Setting the Approvers account and page group contact email recitified this.
    Kevin

  • Steps to provide supplier self registration link on portal

    Hi,
    We deployed the supplier collaboration business package on portal. We want to provide the self-registration link on the portal, from where the vendor/suppliers would register.
    i have the link, now my question is., What are the steps we need to follow from here to set up the self registration link on portal which eventually takes the supplier or vendor from logon page to registration to portal.
    Please provide any cookbooks available.
    Thanks,
    Raghavendra Pothula

    Hi Masa,
    Can you please provide further details on this...
    Did you have a custom interface built between the HTML form and the Enterprise Portal self registration form to capture all the information entered. If you used the standard self registration form, how did you make the self registration form available anonymously on your corporate home page.
    Any Inputs would be appreciated.
    Thanks,
    Sundeep

  • Individual Mail Notification for Self-Registration

    Hello,
    i want to use the portal self registration feature. The mail notification is not correct (URL) and the mail recipient cannot show his username/password in the mail message. Is there a way to customize this message(individual text), and where can i do this?
    thnx in advance.

    mmiller thank you for answer
    Allow the user to create a stub profile based on the data provided. I’m new to Oracle Access Manager. :-)
    Could you tell me what do you mean by stub profile?
    Now, user is allowed to add himself to directory using self registration.
    Using a post process, generate a GUID and store it on the new profile. Send an email to the user that includes the GUID key.If you are using a post processing you wrote a program which sends mails and you don’t use a mail notification. Is it true?
    Many Thanks
    Pavel

  • User self-registration in the portal

    I am developing an Intranet site for a very large organization using OPortal 3.0. Since is impossible to manage personally every request to add users to the portal (over 3000 potential users) I need to provide a self-registration procedure so users can register themselves to the portal with certain basic privileges.
    Does anybody knows how can I implement such a procedure..?
    Fernando

    Hello Fernado,
    Look topic name "Using API's for Single Sign On" at this forum.There is an answer to your question.Also you can:
    'Create a procedure which does insertion to the tables portal30.wwsec_person$ and portal30_sso.wwsec_person$'.My procedure is:
    CREATE OR REPLACE PROCEDURE PORTAL30_SSO.CREATE_USER
    (username IN VARCHAR2)
    as
    begin
    insert into portal30.wwsec_person$
    (user_name,db_user,created_by_dbuser,created_by_user,password,sso_user_type)values (upper username), 'PORTAL30_PUBLIC','PORTAL30_PUBLIC','PORTAL30','guest','USER');
    insert into portal30_sso.wwsec_person$
    (user_name,db_user,created_by_dbuser,created_by_user,password,sso_user_type) values (upper(username),'PORTAL30_SSO_PUBLIC','PORTAL30_SSO_PUBLIC','PORTAL30','hy?<K2K0~4FA810F520ACB67945FFFA7F03925269','USER');
    end;
    After that create a form to this procedure and publish as portlet.Now put this portlet your 'Welcome' window.Here they will have default password 'guest'.Also you can take another parameters like name,lastname,address,etc.
    Don't forget to give public privilege to this procedure.

  • Portal authentication failing intermittently post self registration

    We are in the process of upgrading from EP6 to EP7 and have hit a critical authentication problem that is proving difficult to diagnose and resolve.
    Our self registration process leads straight into user logon:
    1) the user fills in the registration form with their user ID, password etc and selects Submit which creates the user ID in our R/3 user store
    2) the user is presented with text informing them that their registration has been successful and a Proceed button which when selected authenticates them with the portal with their newly created user ID
    Step 2) above is working intermittently in our EP7 system - sometimes the process works exactly as expected others an exception is raised (com.sap.security.core.logon.imp.UMELoginException: USER_AUTH_FAILED).
    It seems as though the cause is that the user creation process has not completed fully before the logon step.
    We tried implementing a wait step (10 seconds) following selection of the Proceed button which reduced the incidence rate of the problem but didn't cure it entirely.
    A possible contributing factor is hardware performance as we are testing the upgrade on an impact analysis system which is not as efficient as our live portal landscape.
    I've pasted the code which performs the authentication and extracts from the DIAGTOOL portal logs below which show the login module configuration (SAP standard I believe).
    Any help/advice what to try next would be greatly appreciated as we are running out of ideas.
    Thanks,
    Alan
    The following code performs the authentication and redirection to the portal user's home page:
    public void onRedirect(Event event) throws PageException {
                   getBean();
                   //Get resource bundle
                   ResourceBundle rbSetup =
                        ResourceBundle.getBundle(
                             "setup",
                             ((IPortalComponentRequest) this.getRequest()).getLocale());
                   ILogonAuthentication logonAuthentication =
                        UMFactory.getLogonAuthenticator();
                   HttpServletRequest req =
                        ((IPortalComponentRequest) this.getRequest())
                             .getServletRequest();
                   HttpServletResponse res =
                             (IPortalComponentRequest) this
                                  .getRequest())
                                  .getServletResponse(
                             true);
                   req.setAttribute(
                        ILoginConstants.LOGON_UID_ALIAS,
                        SelfRegBean.getLogonUid());
                   req.setAttribute(
                        ILoginConstants.LOGON_PWD_ALIAS,
                        SelfRegBean.getPassword());
                   Subject subject = null;
                   try {
                        subject = logonAuthentication.logon(req, res, AUTHSCHEME);
                        if (null != subject) {
                             res.sendRedirect(rbSetup.getString("REDIRECT_URL"));
                   } catch (LoginException e) {
                        SelfRegBean.setError(rb.getString(LOGIN_FAILED));
                   } catch (IOException e) {
                        SelfRegBean.setError(rb.getString(REDIRECT_FAILED));
    Full exception thrown when the authentication process fails:
    com.sap.security.core.logon.imp.UMELoginException: USER_AUTH_FAILED at com.sap.security.core.logon.imp.SAPJ2EEAuthenticator.logon(SAPJ2EEAuthenticator.java:949) at uk.ac.ncl.SelfRegistration$SelfRegistrationDynPage.onRedirect(SelfRegistration.java:507) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at com.sapportals.htmlb.page.DynPage.doProcessCurrentEvent(DynPage.java:172) at com.sapportals.htmlb.page.PageProcessor.handleRequest(PageProcessor.java:115) at com.sapportals.portal.htmlb.page.PageProcessorComponent.doContent(PageProcessorComponent.java:134) at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209) at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114) at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328) at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136) at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189) at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215) at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:645) at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328) at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136) at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189) at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753) at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:240) at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:524) at java.security.AccessController.doPrivileged(Native Method) at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:407) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java:156) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401) at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266) at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386) at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364) at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039) at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265) at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95) at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175) at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33) at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41) at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37) at java.security.AccessController.doPrivileged(Native Method) at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102) at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172) -
    Key log extracts from DIAGTOOL:
    Exception on login: 
    [EXCEPTION]
    com.sap.security.core.server.userstore.UserstoreException: Could not refresh user postsp15p
    Caused by: com.sap.security.api.NoSuchUserAccountException: USER_AUTH_FAILED: User account for logonid "postsp15p" not found!
    LOGIN.FAILED
    User: N/A
    Authentication Stack: ticket
    Login Module                                                               Flag        Initialize  Login      Commit     Abort      Details
    1. com.sap.security.core.server.jaas.EvaluateTicketLoginModule             SUFFICIENT  ok          false                 true      
            #1 ume.configuration.active = true
    2. com.sap.engine.services.security.server.jaas.BasicPasswordLoginModule   REQUISITE   ok          exception             true       Authentication did not succeed.
    3. com.sap.security.core.server.jaas.CreateTicketLoginModule               OPTIONAL    ok                                true      
            #1 ume.configuration.active = true
    com.sap.security.core.logon.imp.UMELoginException:
    ObjectID handed over is 'null'!
    Guest | LOGIN.ERROR | null |  | Login Method=[uidpwdlogon], UserID=[null], IP Address=[10.64.65.191], Reason=[Authentication did not succeed.]
    USER_AUTH_FAILED

    We are in the process of upgrading from EP6 to EP7 and have hit a critical authentication problem that is proving difficult to diagnose and resolve.
    Our self registration process leads straight into user logon:
    1) the user fills in the registration form with their user ID, password etc and selects Submit which creates the user ID in our R/3 user store
    2) the user is presented with text informing them that their registration has been successful and a Proceed button which when selected authenticates them with the portal with their newly created user ID
    Step 2) above is working intermittently in our EP7 system - sometimes the process works exactly as expected others an exception is raised (com.sap.security.core.logon.imp.UMELoginException: USER_AUTH_FAILED).
    It seems as though the cause is that the user creation process has not completed fully before the logon step.
    We tried implementing a wait step (10 seconds) following selection of the Proceed button which reduced the incidence rate of the problem but didn't cure it entirely.
    A possible contributing factor is hardware performance as we are testing the upgrade on an impact analysis system which is not as efficient as our live portal landscape.
    I've pasted the code which performs the authentication and extracts from the DIAGTOOL portal logs below which show the login module configuration (SAP standard I believe).
    Any help/advice what to try next would be greatly appreciated as we are running out of ideas.
    Thanks,
    Alan
    The following code performs the authentication and redirection to the portal user's home page:
    public void onRedirect(Event event) throws PageException {
                   getBean();
                   //Get resource bundle
                   ResourceBundle rbSetup =
                        ResourceBundle.getBundle(
                             "setup",
                             ((IPortalComponentRequest) this.getRequest()).getLocale());
                   ILogonAuthentication logonAuthentication =
                        UMFactory.getLogonAuthenticator();
                   HttpServletRequest req =
                        ((IPortalComponentRequest) this.getRequest())
                             .getServletRequest();
                   HttpServletResponse res =
                             (IPortalComponentRequest) this
                                  .getRequest())
                                  .getServletResponse(
                             true);
                   req.setAttribute(
                        ILoginConstants.LOGON_UID_ALIAS,
                        SelfRegBean.getLogonUid());
                   req.setAttribute(
                        ILoginConstants.LOGON_PWD_ALIAS,
                        SelfRegBean.getPassword());
                   Subject subject = null;
                   try {
                        subject = logonAuthentication.logon(req, res, AUTHSCHEME);
                        if (null != subject) {
                             res.sendRedirect(rbSetup.getString("REDIRECT_URL"));
                   } catch (LoginException e) {
                        SelfRegBean.setError(rb.getString(LOGIN_FAILED));
                   } catch (IOException e) {
                        SelfRegBean.setError(rb.getString(REDIRECT_FAILED));
    Full exception thrown when the authentication process fails:
    com.sap.security.core.logon.imp.UMELoginException: USER_AUTH_FAILED at com.sap.security.core.logon.imp.SAPJ2EEAuthenticator.logon(SAPJ2EEAuthenticator.java:949) at uk.ac.ncl.SelfRegistration$SelfRegistrationDynPage.onRedirect(SelfRegistration.java:507) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at com.sapportals.htmlb.page.DynPage.doProcessCurrentEvent(DynPage.java:172) at com.sapportals.htmlb.page.PageProcessor.handleRequest(PageProcessor.java:115) at com.sapportals.portal.htmlb.page.PageProcessorComponent.doContent(PageProcessorComponent.java:134) at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209) at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114) at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328) at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136) at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189) at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215) at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:645) at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328) at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136) at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189) at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753) at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:240) at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:524) at java.security.AccessController.doPrivileged(Native Method) at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:407) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java:156) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401) at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266) at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386) at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364) at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039) at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265) at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95) at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175) at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33) at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41) at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37) at java.security.AccessController.doPrivileged(Native Method) at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102) at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172) -
    Key log extracts from DIAGTOOL:
    Exception on login: 
    [EXCEPTION]
    com.sap.security.core.server.userstore.UserstoreException: Could not refresh user postsp15p
    Caused by: com.sap.security.api.NoSuchUserAccountException: USER_AUTH_FAILED: User account for logonid "postsp15p" not found!
    LOGIN.FAILED
    User: N/A
    Authentication Stack: ticket
    Login Module                                                               Flag        Initialize  Login      Commit     Abort      Details
    1. com.sap.security.core.server.jaas.EvaluateTicketLoginModule             SUFFICIENT  ok          false                 true      
            #1 ume.configuration.active = true
    2. com.sap.engine.services.security.server.jaas.BasicPasswordLoginModule   REQUISITE   ok          exception             true       Authentication did not succeed.
    3. com.sap.security.core.server.jaas.CreateTicketLoginModule               OPTIONAL    ok                                true      
            #1 ume.configuration.active = true
    com.sap.security.core.logon.imp.UMELoginException:
    ObjectID handed over is 'null'!
    Guest | LOGIN.ERROR | null |  | Login Method=[uidpwdlogon], UserID=[null], IP Address=[10.64.65.191], Reason=[Authentication did not succeed.]
    USER_AUTH_FAILED

  • Synchronization of R/3 User with self Registration in Portal

    Dear All,
    In Enterprise portal, we have activated self registration. So that user can register to the portal. We have a scenario that once the user is created in the portal through self registration, the same user Id should be generated in R/3. How do we achieve this in the portal?
    Kindly help us for the same.
    Regards,
    Alpa

    I was reading SAP certification material just now and have a similar question from my client and looking for answers.
    I am writing part of information here so that you can do further research: Please update here what was the result of future understandings and if this worked? Ahh have to type all cant copy from the file
    To enable sso b/w sap ume and abap based system, users should ideally have same user id's in both the systems. Replicating usre accnts to relevant sap systems is one meathod to ensure the same user ids.
    The data is replicated only from ume to sap system and nt vice versa.
    UME accmplishes replication by transmit of XML documents.'
    Prerequisites:
    Ume supports replication of user data to abap sys with release 4.6D or higher. you can replicate to a maz of 3 systems.
    users are created with a de-activated pwd in backend so they shud always logon thru ume in portal and access backend by sso logon tickets.
    Procedure:
    start config tool
    2. choose swich to config editor mode
    3. navigate to cluster_data_server_cfg_services
    4.switch to edit mode
    5.double click on com.sap.security.core.ume.services property sheet
    6.specify receiving sys, sending sys, and define sys conn. info. for sap sys
    7 save property sheet
    8 restart cluster for changes
    9. add the sending sys. to sap sys acl list. this is done in sap sys via a data browser against the table smum_acl
    After all these steps, create a user in EP and see it being present in R3.
    PLZ write back for clarfications or doc, or just to let us know the results and conclusions.
    Thanks
    ANkur agarwal
    SAP Portal consultanat

  • Supplier Self registration error in SUS Portal

    Dear Experts,
    Environment SRM 7.0 PPS 3.0 and ECC 6.0 ep4.
    We are getting an abort error when completing and submitting the supplier self registration form in the SUS Portal.
    During  debug we found that the abort is happening in the class CL_UWS_FORM_RUNTIME  and method  SETGENXSLTPROG.
    The problem is it is not able to find the XSLT program and the line of the abort has the following 
    message:  x006(uws_forms).
    Please let me know if anyone has faced a similiar situation and its resolution.
    Thanks in advance,
    RK

    HI
    it is a standard error. Without particular OSS notes.
    Try to manage your XLST transformation with program XSLT_TOOL, inside you will find some errors into construction of the page html (i think a very large string or an ">" of more....)
    Check anyway note 1053680
    regards
    andrea

  • Portal----Enable Self-Registration

    I want to configure Self-Registration on 10g portal
    Following the congiguration guide on OTN, I checked the Enable Self-Registration option .And then go to configure the Login portlet to enable Self-Registration .
    Bu I didn't see the enable Self-Registration besides the Login porlet the guide had mentioned.
    Has anyone configured this before?
    Give me a clue ,Thanks!

    Hi
    Not sure whether ROS (Registration of new supplier process defined in your organisation). See below high level process over view for New supplier creation .
    Strategic Sourcing - Supplier Self-Registration
    New suppliers can self-register using a web based application, which potentially can be accessed from the homepage of a company./Basic information is captured in the self-registration form, additional general and category specific information can be gathered in questionnaires. Purchasers then check the data and approve potential suppliers. When searching for new suppliers purchasers can transfer potential suppliers into operational suppliers using a standardized interface (OPI).
    In addition to that external supplier databases can also be connected using the OPI - interface.
    After being transferred into SRM an admin user in SUS can be generated automatically. In SUS these suppliers have the possibility to maintain the admin user data and create additional users.
    Therefore before creation of any new supplier /user there should be a defined process.
    regards
    Narahari

  • Customizing the Self Registration module in the Portal

    All,
    I am looking to customize the standard Web Dynpro application of self registration.  I can find the iView in the PCD but how can I download the WD application locally to modify it.  Also once modified is deploying it back to the portal the same?
    thanks,
    Clint

    Hi Abdul
    Please could you explain how you created your custom self-registration page? I'm in a similar situation, and I'm a little unsure of the security implications.
    Effectively you're giving anonymous users access to create users in the UME (even if not directly) - so I want to make sure it's done correctly.
    Any help would be very much appreciated!
    Thanks
    Stuart

  • Not Register after Self Registration in Portal

    Hi everybody,
    We are using the self registration functionality, but we don´t want to register after registration. We want that the self registration sends the e-mail with an auto generated password, and after the user checks the mail and know the password, he login to the portal.
    Is this possible?
    Thanks in advance,
    Luis Jorge Castro

    what do u mean by we dont want to register after registrations...
    The email thing can easily be done either from you SAP R3 system configurations or else configure SMTP in you EP landscape.
    in sys admin you need to give the settings and path to you smtp server.
    Thanks
    Ankur

  • Issue with example "Self Registration" workflow

    Hi,
    I am using OIM 11.1.1.5 on exalogic platform. I am trying to register the "Self Registration" workflow (http://www.oracle.com/webfolder/technetwork/tutorials/obe/fmw/oim/oim_11g/Request_Workflow_for_Self_Registration/request_workflow_for_self_registration.htm), and I am currently stuck on step 13 of section "Registering the Custom Approval Process". When I run the ant script, the following error occurs:
    [java] Exception in thread "Main Thread" oracle.iam.platform.workflowservice.exception.IAMWorkflowException: Tasklist mapping failed for workflowdefinition: default/SelfRegistrationApproval!1.0 due to Invalid Token Error in Verification Service.
    [java] Invalid Token Error in Verification Service. Received invalid token in createContext.
    [java] Verify that correct token is passed.
    [java]
    [java] at weblogic.rjvm.ResponseImpl.unmarshalReturn(ResponseImpl.java:234)
    [java] at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:348)
    [java] at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:259)
    [java] at oracle.iam.platformservice.api.WorkflowRegistrationServiceEJB_f4otyb_WorkflowRegistrationServiceRemoteImpl_1035_WLStub.registerWorkFlowDefinitionx(Unknown Source)
    [java] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [java] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    [java] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    [java] at java.lang.reflect.Method.invoke(Method.java:597)
    [java] at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.invoke(RemoteBusinessIntfProxy.java:85)
    [java] at $Proxy2.registerWorkFlowDefinitionx(Unknown Source)
    [java] at oracle.iam.platformservice.api.WorkflowRegistrationServiceDelegate.registerWorkFlowDefinition(Unknown Source)
    [java] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [java] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    [java] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    [java] at java.lang.reflect.Method.invoke(Method.java:597)
    [java] at Thor.API.Base.SecurityInvocationHandler$1.run(SecurityInvocationHandler.java:68)
    [java] at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    [java] at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    [java] at weblogic.security.Security.runAs(Security.java:41)
    [java] at Thor.API.Security.LoginHandler.weblogicLoginSession.runAs(weblogicLoginSession.java:52)
    [java] at Thor.API.Base.SecurityInvocationHandler.invoke(SecurityInvocationHandler.java:79)
    [java] at $Proxy3.registerWorkFlowDefinition(Unknown Source)
    [java] at oracle.iam.platformservice.workflowregclient.WorkflowRegistration.main(WorkflowRegistration.java:42)
    [java] Caused by: oracle.iam.platform.workflowservice.exception.IAMWorkflowException: Tasklist mapping failed for workflowdefinition: default/SelfRegistrationApproval!1.0 due to Invalid Token Error in Verification Service.
    [java] Invalid Token Error in Verification Service. Received invalid token in createContext.
    [java] Verify that correct token is passed.
    [java]
    [java] at oracle.iam.platform.workflowservice.impl.WorkflowRepositoryImpl.mapWorkflow(WorkflowRepositoryImpl.java:132)
    [java] at oracle.iam.platform.workflowservice.impl.WorkflowRepositoryImpl.registerWorkFlowDefinition(WorkflowRepositoryImpl.java:113)
    [java] at oracle.iam.platform.workflowservice.impl.WorkflowServiceImpl.registerWorkFlowDefinition(WorkflowServiceImpl.java:230)
    [java] at oracle.iam.platformservice.impl.WorkflowRegistrationServiceImpl.registerWorkFlowDefinition(WorkflowRegistrationServiceImpl.java:38)
    [java] at oracle.iam.platformservice.api.WorkflowRegistrationServiceEJB.registerWorkFlowDefinitionx(Unknown Source)
    [java] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [java] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    [java] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    [java] at java.lang.reflect.Method.invoke(Method.java:597)
    [java] at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
    [java] at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
    [java] at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    [java] at com.bea.core.repackaged.springframework.jee.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:37)
    [java] at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54)
    [java] at com.bea.core.repackaged.springframework.jee.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:50)
    [java] at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    [java] at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
    [java] at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    [java] at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
    [java] at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    [java] at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
    [java] at $Proxy452.registerWorkFlowDefinitionx(Unknown Source)
    [java] at oracle.iam.platformservice.api.WorkflowRegistrationServiceEJB_f4otyb_WorkflowRegistrationServiceRemoteImpl.__WL_invoke(Unknown Source)
    [java] at weblogic.ejb.container.internal.SessionRemoteMethodInvoker.invoke(SessionRemoteMethodInvoker.java:40)
    [java] at oracle.iam.platformservice.api.WorkflowRegistrationServiceEJB_f4otyb_WorkflowRegistrationServiceRemoteImpl.registerWorkFlowDefinitionx(Unknown Source)
    [java] at oracle.iam.platformservice.api.WorkflowRegistrationServiceEJB_f4otyb_WorkflowRegistrationServiceRemoteImpl_WLSkel.invoke(Unknown Source)
    [java] at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:668)
    [java] at weblogic.rmi.cluster.ClusterableServerRef.invoke(ClusterableServerRef.java:230)
    [java] at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:518)
    [java] at weblogic.rmi.internal.wls.WLSExecuteRequest.run(WLSExecuteRequest.java:119)
    [java] at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    [java] at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    BUILD FAILED
    /u01/app/test/products/oracle/oiam/iam/iam/server/workflows/registration/registerworkflows-mp.xml:51: Java returned: 1
    at org.apache.tools.ant.taskdefs.Java.execute(Java.java:108)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
    at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
    at org.apache.tools.ant.Task.perform(Task.java:348)
    at org.apache.tools.ant.Target.execute(Target.java:357)
    at org.apache.tools.ant.Target.performTasks(Target.java:385)
    at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1337)
    at org.apache.tools.ant.Project.executeTarget(Project.java:1307)
    at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
    at org.apache.tools.ant.Project.executeTargets(Project.java:1191)
    at org.apache.tools.ant.Main.runBuild(Main.java:758)
    at org.apache.tools.ant.Main.startAnt(Main.java:218)
    at org.apache.tools.ant.launch.Launcher.run(Launcher.java:257)
    at org.apache.tools.ant.launch.Launcher.main(Launcher.java:104)
    The (partial) output for the OIM and SOA logs show more info about the error:
    -> Log file: /u01/app/test/config/domains/iam_domain/mserver/iam_domain/servers/WLS_OIM1/logs/WLS_OIM1-diagnostic.log
    [2012-10-19T15:39:57.247+11:00] [WLS_OIM1] [ERROR] [] [OIM Authentication Provider] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000JdrKWszBp2OMyizW6G1GWDJc00000Z,0] oracle.iam.platform.auth.providers.wls.OIMSignatureLoginModule login() Invalid Input username/password
    [2012-10-19T15:39:58.242+11:00] [WLS_OIM1] [ERROR] [IAM-2010023] [oracle.iam.platform.workflowservice] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: aa237de71e3bd332:5124202d:13a773e1e57:-8000-0000000000001525,0] [APP: oim#11.1.1.3.0] Tasklist mapping failed for workflowdefinition: default/SelfRegistrationApproval!1.0 due to Invalid Token Error in Verification Service.[[
    Invalid Token Error in Verification Service. Received invalid token in createContext.
    Verify that correct token is passed.
    -> Log file: /u01/app/test/config/domains/iam_domain/mserver/iam_domain/servers/WLS_OIM1/logs/WLS_OIM1.out
    <Oct 19, 2012 3:39:57 PM EST> <Error> <OIM Authentication Provider> <BEA-000000> <oracle.iam.platform.auth.providers.wls.OIMSignatureLoginModule login() Invalid Input username/password>
    <Oct 19, 2012 3:39:57 PM EST> <Warning> <JNDI> <BEA-050006> <An attempt was made to look up versioned object "ejb.stateless.ClientLoginSessionService#oracle.iam.platformservice.api.ClientLoginSessionServiceRemote" from an external client or another application. This can potentially cause in-flight work of the application version not being tracked properly and thus being retired prematurely.>
    ORABPEL-30503
    Invalid Token Error in Verification Service.
    Invalid Token Error in Verification Service. Received invalid token in createContext.
    Verify that correct token is passed.
    at weblogic.rjvm.ResponseImpl.unmarshalReturn(ResponseImpl.java:234)
    at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:348)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused by: ORABPEL-30504
    Internal error in Verification Service.
    Internal error in Verification Service for user weblogic_idm. hasPermission.
    Check the underlying exception and correct the error. If the error persists, contact Oracle Support Services.
    at oracle.bpel.services.workflow.verification.impl.VerificationService.hasPermission(VerificationService.java:3711)
    at weblogic.rmi.cluster.ClusterableServerRef.invoke(ClusterableServerRef.java:230)
    ... 3 more
    <Oct 19, 2012 3:39:58 PM EST> <Error> <oracle.iam.platform.workflowservice> <IAM-2010023> <Tasklist mapping failed for workflowdefinition: default/SelfRegistrationApproval!1.0 due to Invalid Token Error in Verification Service.
    Invalid Token Error in Verification Service. Received invalid token in createContext.
    Verify that correct token is passed.
    >
    -> Log file: /u01/app/test/config/domains/iam_domain/mserver/iam_domain/servers/WLS_IAM_SOA1/logs/WLS_IAM_SOA1-diagnostic.log
    [2012-10-19T15:39:58.035+11:00] [WLS_IAM_SOA1] [ERROR] [] [OIM Authentication Provider] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: aa237de71e3bd332:5124202d:13a773e1e57:-8000-0000000000001525,1:29948] oracle.iam.platform.auth.providers.wls.OIMSignatureLoginModule login() Invalid Input username/password
    [2012-10-19T15:39:58.121+11:00] [WLS_IAM_SOA1] [ERROR] [] [OIM Authentication Provider] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: weblogic_idm] [ecid: aa237de71e3bd332:5124202d:13a773e1e57:-8000-0000000000001525,1:29950] [APP: soa-infra] oracle.iam.platform.auth.providers.wls.OIMSignatureLoginModule login() Invalid Input username/password
    [2012-10-19T15:39:58.217+11:00] [WLS_IAM_SOA1] [ERROR] [] [oracle.soa.services.workflow.verification] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: weblogic_idm] [ecid: aa237de71e3bd332:5124202d:13a773e1e57:-8000-0000000000001525,1:29950] [APP: soa-infra] <.> hasPermission: error: access denied (oracle.security.jps.service.policystore.PolicyStoreAccessPermission Context:APPLICATION Context Name:soa-infra Actions:getApplicationPolicy)
    [2012-10-19T15:39:58.217+11:00] [WLS_IAM_SOA1] [ERROR] [] [oracle.soa.services.workflow.query] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: weblogic_idm] [ecid: aa237de71e3bd332:5124202d:13a773e1e57:-8000-0000000000001525,1:29950] [APP: soa-infra] <.> Internal error in Verification Service.[[
    Internal error in Verification Service for user weblogic_idm. hasPermission.
    Check the underlying exception and correct the error. If the error persists, contact Oracle Support Services.
    ORABPEL-30504
    Internal error in Verification Service.
    Internal error in Verification Service for user weblogic_idm. hasPermission.
    Check the underlying exception and correct the error. If the error persists, contact Oracle Support Services.
    at oracle.bpel.services.workflow.verification.impl.VerificationService.hasPermission(VerificationService.java:3711)
    at oracle.bpel.services.workflow.verification.impl.VerificationService.createContextS(VerificationService.java:916)
    at oracle.bpel.services.workflow.verification.impl.VerificationService.createContext(VerificationService.java:898)
    at oracle.bpel.services.workflow.verification.impl.VerificationService.createContext(VerificationService.java:852)
    at oracle.bpel.services.workflow.verification.impl.VerificationService.authenticateUser(VerificationService.java:692)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused by: java.security.AccessControlException: access denied (oracle.security.jps.service.policystore.PolicyStoreAccessPermission Context:APPLICATION Context Name:soa-infra Actions:getApplicationPolicy)
    at java.security.AccessControlContext.checkPermission(AccessControlContext.java:374)
    at java.security.AccessController.checkPermission(AccessController.java:546)
    at oracle.security.jps.util.JpsAuth$AuthorizationMechanism$3.checkPermission(JpsAuth.java:436)
    at weblogic.rmi.cluster.ClusterableServerRef.invoke(ClusterableServerRef.java:230)
    ... 3 more
    [2012-10-19T15:39:58.224+11:00] [WLS_IAM_SOA1] [ERROR] [] [oracle.soa.services.workflow.verification] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: weblogic_idm] [ecid: aa237de71e3bd332:5124202d:13a773e1e57:-8000-0000000000001525,1:29950] [APP: soa-infra] <.> getContext: error: Internal error in Verification Service.[[
    Internal error in Verification Service for user weblogic_idm. hasPermission.
    Check the underlying exception and correct the error. If the error persists, contact Oracle Support Services.
    [2012-10-19T15:39:58.225+11:00] [WLS_IAM_SOA1] [ERROR] [] [oracle.soa.services.workflow.query] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: weblogic_idm] [ecid: aa237de71e3bd332:5124202d:13a773e1e57:-8000-0000000000001525,1:29950] [APP: soa-infra] <.> Invalid Token Error in Verification Service.[[
    Invalid Token Error in Verification Service. Received invalid token in createContext.
    Verify that correct token is passed.
    ORABPEL-30503
    Invalid Token Error in Verification Service.
    Invalid Token Error in Verification Service. Received invalid token in createContext.
    Verify that correct token is passed.
    at oracle.bpel.services.workflow.verification.impl.VerificationService.createContext(VerificationService.java:903)
    at oracle.bpel.services.workflow.verification.impl.VerificationService.createContext(VerificationService.java:852)
    at oracle.bpel.services.workflow.verification.impl.VerificationService.authenticateUser(VerificationService.java:692)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused by: ORABPEL-30504
    Internal error in Verification Service.
    Internal error in Verification Service for user weblogic_idm. hasPermission.
    Check the underlying exception and correct the error. If the error persists, contact Oracle Support Services.
    at oracle.bpel.services.workflow.verification.impl.VerificationService.hasPermission(VerificationService.java:3711)
    at oracle.bpel.services.workflow.verification.impl.VerificationService.createContextS(VerificationService.java:916)
    at oracle.bpel.services.workflow.verification.impl.VerificationService.createContext(VerificationService.java:898)
    ... 70 more
    Caused by: java.security.AccessControlException: access denied (oracle.security.jps.service.policystore.PolicyStoreAccessPermission Context:APPLICATION Context Name:soa-infra Actions:getApplicationPolicy)
    at java.security.AccessControlContext.checkPermission(AccessControlContext.java:374)
    at weblogic.rmi.cluster.ClusterableServerRef.invoke(ClusterableServerRef.java:230)
    ... 3 more
    -> Log file: /u01/app/test/config/domains/iam_domain/mserver/iam_domain/servers/WLS_IAM_SOA1/logs/WLS_IAM_SOA1.out
    <Oct 19, 2012 3:39:58 PM EST> <Error> <OIM Authentication Provider> <BEA-000000> <oracle.iam.platform.auth.providers.wls.OIMSignatureLoginModule login() Invalid Input username/password>
    <Oct 19, 2012 3:39:58 PM EST> <Error> <OIM Authentication Provider> <BEA-000000> <oracle.iam.platform.auth.providers.wls.OIMSignatureLoginModule login() Invalid Input username/password>
    <Oct 19, 2012 3:39:58 PM EST> <Error> <oracle.soa.services.workflow.verification> <BEA-000000> <<.> hasPermission: error: access denied (oracle.security.jps.service.policystore.PolicyStoreAccessPermission Context:APPLICATION Context Name:soa-infra Actions:getApplicationPolicy)>
    <Oct 19, 2012 3:39:58 PM EST> <Error> <oracle.soa.services.workflow.query> <BEA-000000> <<.> Internal error in Verification Service.
    Internal error in Verification Service for user weblogic_idm. hasPermission.
    Check the underlying exception and correct the error. If the error persists, contact Oracle Support Services.
    ORABPEL-30504
    Internal error in Verification Service.
    Internal error in Verification Service for user weblogic_idm. hasPermission.
    Check the underlying exception and correct the error. If the error persists, contact Oracle Support Services.
    at oracle.bpel.services.workflow.verification.impl.VerificationService.hasPermission(VerificationService.java:3711)
    at oracle.bpel.services.workflow.verification.impl.VerificationService.createContextS(VerificationService.java:916)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused By: java.security.AccessControlException: access denied (oracle.security.jps.service.policystore.PolicyStoreAccessPermission Context:APPLICATION Context Name:soa-infra Actions:getApplicationPolicy)
    at java.security.AccessControlContext.checkPermission(AccessControlContext.java:374)
    at java.security.AccessController.checkPermission(AccessController.java:546)
    at oracle.security.jps.util.JpsAuth$AuthorizationMechanism$3.checkPermission(JpsAuth.java:436)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    >
    <Oct 19, 2012 3:39:58 PM EST> <Error> <oracle.soa.services.workflow.verification> <BEA-000000> <<.> getContext: error: Internal error in Verification Service.
    Internal error in Verification Service for user weblogic_idm. hasPermission.
    Check the underlying exception and correct the error. If the error persists, contact Oracle Support Services.
    >
    <Oct 19, 2012 3:39:58 PM EST> <Error> <oracle.soa.services.workflow.query> <BEA-000000> <<.> Invalid Token Error in Verification Service.
    Invalid Token Error in Verification Service. Received invalid token in createContext.
    Verify that correct token is passed.
    ORABPEL-30503
    Invalid Token Error in Verification Service.
    Invalid Token Error in Verification Service. Received invalid token in createContext.
    Verify that correct token is passed.
    at oracle.bpel.services.workflow.verification.impl.VerificationService.createContext(VerificationService.java:903)
    at oracle.bpel.services.workflow.verification.impl.VerificationService.createContext(VerificationService.java:852)
    at oracle.bpel.services.workflow.verification.impl.VerificationService.authenticateUser(VerificationService.java:692)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    >
    From these logs, it seems that the user "weblogic_idm" either has an incorrect password set or does not have permission. I am still trying to work it out....any input would be much appreciated.
    regards,
    Evangelo

    Thanks Asif!!
    Steps mentioned in the meta link note were already taken care but the issue still exists.
    Once we've added our custom page functions to the UMX_REG_UI_PERMS permission set in order to grant access to GUEST and GLOBAL users,the login issue was gone.
    But when the go button in first page is clicked,it is again asking for credentials.
    Do we need to do take care of any other setups/grants for this?
    Please suggest!!
    Thanks,
    Siva

  • Self Registration in Enterprise Portal 7.0

    Hi all,
    I have done the steps for doing Self Registration.
    I have configured the SMTP Server.
    Also, the email notification in case of successful
    Self Registration is enabled.
    The action UME.Selfregister_User is added with the Everyone role.
    The SAP Application Server has been restarted but I am not getting the
    Self Registration link.
    What is needed to enable the url in the portal?
    Regards
    Neha Singh

    Neha,
    Check this out.
    http://help.sap.com/saphelp_nw70/helpdata/en/44/0761cea5c610b3e10000000a11466f/content.htm
    http://wiki.sdn.sap.com/wiki/display/EP/Self-RegistrationinPortal
    HTH,
    Cheers!
    Sandeep Tudumu

  • How to enable self-registration in Oracle10g Portal.

    Hi,
    How to enable self-registration in Oracle10g Portal.
    while I have already enabled self registration from Global settings, but still I'm unable to make users to register theirself because always initial SSO Login Page is Displayed. I think there must be additional steps.
    OR
    Is there any alternative way, PLSQL API's,Java Portlets or other scripts for user registration.
    awaiting for response
    regards

    Hi,
    How to enable self-registration in Oracle10g Portal.
    while I have already enabled self registration from Global settings, but still I'm unable to make users to register theirself because always initial SSO Login Page is Displayed. I think there must be additional steps.
    OR
    Is there any alternative way, PLSQL API's,Java Portlets or other scripts for user registration.
    awaiting for response
    regards

  • ISE 1.2 Self Registration

    Hi
    I have set up self registration on an ISE 1.2 and am using a customised portal.
    Everything works OK except for one annoying element.
    Although I have assigned a time profile of 30 days as a test - the self registered accounts always expire after 5 days.
    Any ideas about this?
    Regards
    Roger

    Hi Roger, 
    I have done this before and don't recall having issues. Can you post some screenshots of the ISE guest configuration and time profiles screens?
    Also, what patch are you on?
    Thank you for rating helpful posts!

Maybe you are looking for

  • My iPod Touch 4th Gen won't connect to the internet!

    Recently whenever I try to connect to our home wifi it hasn't been connecting, all that comes up is that loading spinning circle thing that means it's trying to connect. No matter how long I leave it, it doesn't connect. I don't think it is the route

  • IPod commands in phone not working in 7 as they did in 6

    I upgraded my phone to ios7 and since then I've rarely been able to turn on the ipod app using the earbuds or by bringing them up on the screen without opening the phone and going into iPod.  These always worked ok in the previous ios.  When I open t

  • Apex 3.1.2 Question on Radio Button

    Dear all, I have this requirement to display "READONLY" RadioGroup or disabled with one of the button being selected. The problem is that I can achieve via Jquery and Javascript but on submission of the page the value of the radiogroup id is always n

  • Printing photos I am confused, please help

    I am a little confused as to how to best send you the prints in the correct format. If I go through and under the edit function of each individual photo I want to send to be printed manually crop it and constrain it to 4X£ (as recommended by Apple) d

  • Cannot Change Event Title

    Greetings, This seems a bit odd... but for an unknown reason I'm no longer able to edit the Event Title text. When I click on the field to change the event title, I see the field change to a text strip but without a cursor. I can however use the text