Portal user registration Verification

Today, virtually all businesses collect personal information about customers, employees and others. This information is valuable to hackers – evidenced by the increasing frequency and severity of data breaches across the globe. Sourced through Scoop.it from: www.theglobeandmail.com SMEs are good…Read more ›The post Ten ways to prevent a data breach and protect your small business appeared first on Apptimate.
Read More

Lack of specialized training for developers and crypto libraries that are too complex lead to widespread encryption failures Sourced through Scoop.it from: www.csoonline.com There is also the option to start using developer tools that implement encryption in a robust way.…Read more ›The post Software developers are failing to implement crypto correctly, data reveals appeared first on Apptimate.
Read More

Similar Messages

  • Query : Addition of extra fields in the User Registration page of portal.

    Hi All,
    I have a query, about adding extra fields in the new user registration page of portal.
    If you can suggest the required source files in details,inorder to incorporate two more fields.
    Say, AGE and COMPANY,with the existing fields in the same page.
    Along with this,can you please send the details of retrieving those information from backend and the backend functionalities associated with the SUBMIT button on the registration page.
    Regards,
    Sudeep

    Hi,
    Your query is divided into two parts.
    The first part is adding new fields into existing form. This feature comes under Branding of portal. Plz use the link below understanding the same and related help :
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/79/affe402a5ff223e10000000a155106/frameset.htm
    The second part is retrieving the values from backend.Here it will be the UME database. You need to develop a logon.par file and replace the same in your portal.
    Happy Customizing.
    Sukanta Rudra

  • New user registration email verification

    We have a new requirement user registration , when a new user registers with us he has to fill out a simple form with email address username , password etc we save all this detail and a flag that his email verification is pending .Next our application has to verify he gave us right email address for that we send an email with a link, opening this link we update our database the flag as verified email address, something like posting to forums I have to confirm my subscription by replying to the email wicket forums sends , please suggest me is there anything available which I can use than doing all that stuff I mentioned above ?

    gimbal2 wrote:
    DrClap wrote:
    gimbal2 wrote:
    It has to work with an unknown database and update an unknown tableOkay, apparently I didn't read the problem description properly and still do not. I don't know where an unknown database comes into the picture.I was assuming that the user information, including the "verification pending" flag, would be stored in some kind of database. But yeah, I suppose it's possible the user information would be persisted in some other way. This just makes it more complicated to write a generalized system of the type the OP is looking for.Actually I meant that this was to be built into a known web application (or applications) and thus with known database(s); everything under personal control and thus no head aches at all. The only additional requirement I see is that it is to be used in multiple applications, but in that I say: reuse the trick, not the code.
    The code is boiler plate.
    JEE containers are much more generalized with more functionality.
    But the code isn't that difficult, by itself, but still isn't trivial. So as a stand alone library I doubt anyone would bother to create a framework.

  • 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

  • User registration email notice

    I am trying to get this working in our user registration form in portal where user will only get an email when she is approved or denied by our USER admin team BUT not when he first register at PORTAl.
    Right now user register himself on portal and he gets an email that his account is created. This new id comes in the PORTAL User notice tab where admin will approve or reject him.
    What i am trying to achieve is stop that first email which goes when user get resgiter but receive only a final email when his account is approved or rejected.
    I tried to change these property in config tool
    ==============================================================
    As per the Link. I have set these value
    ume.notification.selfreg_performed = FALSE
    ume.notification.create_approval = TRUE
    ume.notification.create_denied = TRUE
    and
    and on the portal page under TAB>SYSTEM ADMIN>SYSTEM CONFIG>UME
    CONFIG?NOTIFICATION EMAIL these are all checked.
    -Send E-Mail on Following Events:
    Administrator creates new user (->user)
    User requests new password (-> user)
    Administrator changes password (-> user)
    Administrator locks user account (-> user)
    Administrator unlocks user account (-> user)
    Administrator deletes user account (-> user)
    Import function creates new user (-> user)
    Import function updates user (-> user)
    ===============================================================================
    But this totally stop the email from coming . Looking by the property name it looks like they should make this change happen but it not. Can some one suggest what else can be done to achieve this.

    Hi,
    Uncheck the UME property 'Administrator creates new user.'
    Portal User Notice tab must be customized. Look for its code, and use javax.mail.internet.MimeMessage to send the final mail on click of accept or reject button.
    Regards,
    Atul

  • User registration portlet

    Hi
    I want to develop a custom User registration portlet in JSP. I'm using iAS 902.
    Everybody can give me a starting point, or a sample.
    I developed Java API-s, which receives user information from LDAP, but I think my portlet must invoke Portal API-s, which registers the user to the Portal to.
    Any idee?
    Thanks.

    I had the same problem and wrote my own method to add users. I'm using the oracle.ldap.util.jndi.ConnectionUtil that is provided by Oracle. Everything seems to work pretty good. I'm winging it here so I'm always open to suggestions:
    import oracle.ldap.util.jndi.ConnectionUtil;
    import javax.naming.directory.*;
    import javax.naming.*;
    public class LdapUser
    public LdapUser(){}
    public void addUser()
    try
    InitialDirContext ctx = ConnectionUtil.getDefaultDirCtx("host", "port", "orcladmin", "pwd");
    BasicAttributes attrs = new BasicAttributes();
    BasicAttribute oc = new BasicAttribute("objectclass");
    oc.add("top");
    oc.add("person");
    oc.add("inetOrgPerson");
    oc.add("organizationalPerson");
    oc.add("orclUser");
    oc.add("orclUserV2");
    attrs.put(oc);
    BasicAttribute gn = new BasicAttribute("givenName", "TestX");
    attrs.put(gn);
    BasicAttribute sn = new BasicAttribute("sn", "Account");
    attrs.put(sn);
    BasicAttribute cn = new BasicAttribute("mail", "[email protected]");
    attrs.put(cn);
    // Etcetera, etcetera...
    ctx.createSubcontext("cn=testx,cn=users,dc=whatever,dc=com", attrs);
    ctx.close();
    System.out.println("Success!!");
    catch (NameAlreadyBoundException nabe)
    System.out.println("Username is already in use. Please choose another.");
    catch (NamingException ne)
    System.out.println("NamingException: " + ne);
    catch (Exception e)
    System.out.println("User account was not created.");
    }

  • Custom user registration form and custom user attributes.

    I am wondering if anyone out there has any experience creating a custom portal user self registration form. This form would contain some default user attributes that are in the standard form, but it would also need to contain user attributes that are custom to the application we are deploying. Just wondered if anyone has any experience with this or how it might work.
    Thank you,
    Craig

    I know this question has reaped no answers, so I thought I'd toss in a second request for the information. I have found no documentation on how to do this. Has anyone succeeded?
    Thanks!
    Erik

  • Modify User Registration page ?

    Hello everyone,
    I want to modify User Registration page.
    I want to change the style of page ,
    and add an register agreement.
    Where to download the file of User Registration page
    on EP7 SP6 Server?
    Is there anbody had done it ?
    Thanks & Regards,
    Jianguo Chen

    I am not sure how this is EP 7, but i am sure this should be very similar as in EP 6.
    From one of SDN post:
    you can try:
    just find the file com.sap.selfreg.portal.par.bak ( rename it to com.sap.selfreg.portal.par) in usr directory of installed drive import the file in netweaver developer studio(add the required jar files from lib of the portal usr directory) and open its jsp/pagelet folder and add the required fields in the corresponding jsp. and again redeploy the file through the component portal browser and just restart the server.
    Hope this helps.
    Please make sure you take a back up of cocerned file to avoid any trouble
    regards,

  • How to find out portal user from sso cookie ?

    Hi,
    I want to find out the portal user id from Portal30_sso cookie. It is required for security in my java servlet.
    Thanks
    Vikas

    First of all, you can't get anything from the portal30_sso cookie or the portal30 cookie or the SSO_ID cookie. These are cookies established for (1) The login server session; (2) The Portal session; (3) The login server single sign-on cookie - visible only to the login server.
    When you want to know who the current user is, you need to establish the context. If your servlet is standalone and not a partner application to the login server and it's not a portlet, etc., then what context does it have? What concept of users does it have? If you are really asking what Portal is currently logged on, that is still a loaded question. The user's browser could be accessing several portal's at the same time, each with a different identity. What I am getting at is that your servlet needs to somehow be associated with a particular portal before it can even think of asking this question.
    The ways to associate your servlet with a portal would be
    [list=1]
    [*]Make it a partner application
    [*]Make it a portlet
    [*]Make it an external application
    [list]
    Hope that helps.

  • Unable to get Portal User in a Remote DB

    Hello,
    We are developing an application with Portal on Instance A and the application tables on Instance B. We have DB triggers on the application tables in B and would like to capture the Portal USER using wwctx_api.get_user. Have created a DB link and PUBLIC SYNONYM in B to access the package in A. However, when we call the function in B, we get the following error -
    ORA-00164: autonomous transaction disallowed within distributed transaction.
    Has anyone tried something similar?
    Thanks.

    Hi,
    If you submit your form to a procedure in the portal instance you can get the portal user inside of this procedure.
    you can then send this value to the table in the other instance.
    Regards
    Michael

  • How to get Portal User Context  in Web Dynpro application

    I have successfully integrate a web dynpro app into SAP Netweaver Portal.
    Within my web dynpro app, how can I get portal user context information such as first name, last name, job title or some newly created ume attibutes.
    Is there any programmatical approach to get portal user context in my web dynpro. I not sure whether I can use the following codes in web dynpro?
    IUserContext userContext = request.getUser();
    String firstName = userContext.getFirstName();
    String lastName = userContext.getLastName();
    If yes, can someone point me the name of the jar file I have to import.
    Note : The SAP Netweaver installation that runs my web dynpro app is same with the SAP Portal.

    Hi ,
    you can use the below code to get User details and  add com.sap.security_2.0.0 > lib > com.sap.security.api.jar
    try
              IWDClientUser clientUser = WDClientUser.getCurrentUser();
    String firstName = clientUser.getFirstName();
    String lastname = clientUser.getLastName();
    catch (WDUMException e) {
                wdComponentAPI.getMessageManager().reportException("Error Retrieving User"+e.toString(),true);
    Regards,
    Sunitha Hari

  • How to get Portal user from a standalone Java application

    Hi,
    I have a standalone Java application from where I need to fetch the Portal User Information like userid and email id.
    I am using the below line of code
    iUser = UMFactory.getUserFactory().getUserByLogonID("e017939");
    I have included the jar file com.sap.security.api , But it was giving me the below exception
    java.lang.NoClassDefFoundError: com/sap/tc/logging/Location
         at com.sap.security.api.UMFactory.<clinit>(UMFactory.java:55)
         at com.am.wcas.java.mailscheduler.kmaccess.FetchDataFromKM.getiUser(FetchDataFromKM.java:29)
         at com.am.ScheduleEmails.main(ScheduleEmails.java:89)
    and I am getting a pop Up message from the Java Virtual Machine Launcher, saying a Fatal Exception has occured and the Program will exit.
    Then I went throught he SDN threads and they asked me to include the
    logging.jar and com.sap.security.perm.api .
    I Included them, then also, it is giving me Exception
    java.lang.NoClassDefFoundError: com/sap/engine/lib/logging/LoggingHelper
         at com.sap.security.api.UMFactory.<clinit>(UMFactory.java:56)
         at com.am.FetchKMData.main(FetchKMData.java:30)
    Exception in thread "main"
    and I am getting a pop Up message from the Java Virtual Machine Launcher, saying a Fatal Exception has occured and the Program will exit.
    Kindly let me know if it is possible to access the User info using UMFactory in a standalone Java application. If yes kindly let me know where i am going wrong.
    Regards,
    Shilpa B.V

    Hi Shilpa,
    1. Check that you have added com.sap.security.api within the Your Project>Libraries folder (under navigation tab) and also added jars in the build path of the Your Project under project>properties>Build Path.
    2. In case you have a DC instead of Web Dynpro Project then you have to add the com.sap.security.api under Your DC>Used DCs and have compile time and runtime dependency added.
    Here java.lang.NoClassDefFoundError is caused basically due to only build time dependency added and reference to the jar missing at runtime. Rest the code to retrieve the current user id using UME API and getUserByLogOnID("....") method with/without portal environment would not be an issue at all.
    Regards,
    Tushar SInha

  • How to access a Portal User Info from a J2EE application?

    Hi,
    I have deployed a j2ee application in portal and its running fine.
    from that application i need to assign some roles to some users.i have the user id.
    so my doubt is can i access the portal user info from this j2ee application?i have some servlets in the j2ee application....can i get the portal user info from this servlet?
    plz help me
    regards,
    Visweswar

    Hi,
    Please check out this to get the portal user information from Java -
    WdClientUser class/Interface to aciehve this.
    Please check out these links on the same -
    WDClientUser.getClientUser IUser
    help needed
    Regards
    Lekha

  • Portal User details and credentials for a J2EE application?

    Hi,
    I am trying to access a J2EE application which is deployed in  SAP Web Application Server. I want to maintain the security of this application depending the portal user. So I want to get the user id of the portal login to my J2EE application. For Example:
    A user with id "super" is logging into portal I want the userid "super" in my J2EE application how to get the userid to my J2EE application's servlet. Is this possible? If possible please tell how I can acheive it?
    Can I do it by creating HTTP System? If possible can u tell me where can I set the URL?
    Thanks,
    Ashok.

    hi,
    Certainly you can get the user id of the portal login in your J2EE application by using UME api's
    IUserFactory userFact = UMFactory.getUserFactory();
    getUserFactory().getUser(String uniqueID)
    getUserFactory().getUserByLogonID(String logonID)
    Also have a look at this
    http://help.sap.com/saphelp_nw04/helpdata/en/15/abdc3ed98f7650e10000000a114084/frameset.htm
    Instead  of url iview, it would be better to use AppIntegrator
    Also have a look at this
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/events/webinars/using the user management api with ep applications.pdf
    Hope it helps...
    Regards,
    Ganesh N
    Hope it helps...

  • Webdynpro - Check if a portal user has a user in R/3 Backend

    Hi Experts,
    i have following problem, and maybe some of you can help me out with an idea or (much better) a solution:
    Our Company is running an Enterprise Portal on NW2004s (SPS 18). Currently i am developing a Java WebDynpro Application for the portal called Transactionstarter. Withhin this application a portal user can simply add a backend System (R/3), a transaction and a Description. This information will be stored in a xml file in userhome in KM. When the user clicks the description, SAP WinGui will open with the transaction he defined before. We use SSO for opening the transaction if the user has a backend user. If not, the loginscreen of the backend will appear.
    All this works fine.
    Now we have the requirement for an automated system check.
    The portal user can run an initial system check. This system check should check all configured backend systems if the portal user has a user in R/3 backend.
    But how can i check if my portal user exists in backend?
    I cannot use JCO because we have a lot of Systems (more than 300 all together) and i don´t want to create a destination for every system. Or did i misunderstood something with JCO?
    Does anyone of you have a solution, how i can check every system, if the portal user has also a backend user?
    Thanks in advance.
    Regards
    Pascal

    Hi Pascal,
    with JCO you can use also the method JCO.createClient:
    public static JCO.Client createClient(java.lang.String client,
                                          java.lang.String user,
                                          java.lang.String passwd,
                                          java.lang.String lang,
                                          java.lang.String mshost,
                                          java.lang.String r3name,
                                          java.lang.String group)
    Creates an instance of a client connection to a remote SAP system (with load balancing)
    Parameters:
    client - SAP logon client
    user - SAP logon user
    passwd - SAP logon password
    lang - SAP logon language
    mshost - Host name of the message server
    r3name - Name of the SAP system
    group - Name of the group of application servers
    Returns:
    the newly created client
    for connections to other systems. So you can avoid to create destinations
    Regards
    Matteo
    Edited by: Matteo Fusi on Apr 1, 2009 11:33 AM

Maybe you are looking for

  • Need help with a class project

    I'm new to Java and I'm having problems converting a small program to be more functional. Here is my original codeimport java.util.Arrays; public class Product // initialize arrays    private int cdNums[] = { 0,0,0,0 };    private String cdNames[] =

  • Debug from BW?

    Hi experts, I have some trouble and i need to debug an extractor to solve it. But when i debug it from rsa3 en R3 i works ok, it only works badly when i execute the infopackage from BW. So, is there a way to start the extraction process from BW and d

  • Dynamically updating Midlets

    Hi, I have made a Midlet which displays images on the mobile phone.(Packed the images into the Jar file) I want to dynamically update the images often. Is there an option of dynamically updating the images, when the application is live on the mobile?

  • No sound on games after 10.7.2 update. Are you gonna fix it?

    After the 10.7.2 update the sound on many games such as ''Heroes of Newerth'' fails. Is there a change to fix it soon?

  • ABAP or BI ?!!

    Dear friends, I have been working in ABAP from last 2 years.Can any body suggest me whether I have to do ABAP certification or learn BI. Regards Kota