How to create a login Jsr portlet?

Hi
I'm trying to work with portlets at the Oracle WSRP Verification Portal
I want to make a portlet that could log in to a site I have made (the site is based on jsp pages and java beans).
Is there any advice or direction from where to start, because I haven't found any relative material yet!
Any advice will be greatly appreciated!

Hi Peter
The site I want to login uses a bean that is responsible for the verification of user name and password and it provides then a userID, which I add to a session object along with some other info, and then I use a redirect to a page of my site. This page checks the info that exist in the session object and lets you have access.
About your question for the users identities I believe that I just need to use one user identity on my remote system for every Oracle Portal user.
If based on the above you have to give me some advice-directions I would be gratefull!
Thanks
Stratos

Similar Messages

  • How to create a login portlet?

    anyone can tell me how to create a login portlet?
    I'm created a JSR286 portlet use "weblogic.security.services.Authentication",that can login only in the portlet application.The portal can't Authentication.

    Hi.
    Portlets are consumed via WSRP 2.0 (Remotelly).
    I recommend you create an ADF Task Flow for your login process of your Portal instead of a Portlet.
    Regards.

  • How to create a login interface in labview PDA module?

    How to create a login interface in labview PDA module? So that it checks with a list of usernames and passwords and allow to go to another VI?
    Anu

    Anu,
    I've attached a really short example that does something like what you're talking about.  It just compares the user's username and password a pre-determined username and password and then "logs the user in" based on that comparison.  Like Greycat said, you probably want to store this username and password info in some sort of file on the PDA that's in an encrypted format for both security and flexibility of your application.
    I hope this helps,
    Justin D.
    Applications Engineer
    National Instruments
    Attachments:
    LoginVI.vi ‏17 KB

  • Does anyone here knows how to create a login page thru JDBC?

    Anyone here knows how to create a login page which connect to database thru JDBC but not JDBC-ODBC bridge?

    Hi..pls you'll do people here a great good if you could explain yourself better..!
    Anyway if you are trying to connect to an Oracle Database you dont need the jdbc-odbc bridge as oracle provides a special driver for java applets/applications that is "the thin driver" and the "oci driver"..so if you are connecting to Oracle your connection will look like this:
    Class.forName("oracle.jdbc.driver.OracleDriver"); //not sun.jdbc.odbc.JdbcOdbcDriver
    Connection con = DriverManager.getConnection ("blah blah, blah");
    no need for the jdbc-odbc bridge.
    I hope i've answered your question.
    Thanks.

  • How to create a login module

    Hi Everyone.
    How to create a login module which like www.sdn.sap.com
    the module is on the top left corner

    http://help.sap.com/saphelp_nwce10/helpdata/en/46/3ce9402f3f8031e10000000a1550b0/frameset.htm

  • How to create a LOGIN Form & LOGIN ID & PASSWORD for END USERS

    hi,
    i have just created a Database and Forms & Reports using developer 6i.
    now i want to deleiver that Database to end users, but i dont know that how to create a LOGIN Form for the end users and also i want to assign each user a Login ID & Password.
    Plz help me to solve out this problem.

    1. Create the user accounts on the database CREATE USER ... IDENTIFIED BY...
    2. Grant CONNECT Role to the Users
    3. in the main form (the one which is being called initially at runtime) in the ON-LOGON-Trigger create a CALL_FORM() to the Login Form
    4. The Login Form will be called; build a Block with username, password and a Button
    5. In the Button call the LOGON Built-In
    6. Control will be passed to the initially called form again
    I also noticed a thread in here explaining this in more detail...
    Message was edited by:
    user434854

  • How to create a login to users in PHP

    How to create a login for users to access their data,
    currently I can only see the first user everytime I login even with
    a different username. I know I need session stuff but don't know
    how to use, add or where to put them in.
    Thanks in advanced.

    I also am wrestling with the same problem. Session variables
    have not worked. I have determined that if the GET method is used,
    then the recordset of the users records are there. If the POST
    method is used, the recordset is blank. It appears to be something
    inherent in the Log In User behavior.
    I am trying to have a customer log in and then only see their
    particular inventory records. I do not want them be directed to a
    page with a listing of all the various customers and then select
    from that. Not suitable at all.
    If I find an answer, will let you know.
    Thanks and good luck,
    Dale :-)

  • How to create a custom search portlet that groups results by category

    Hello,
    Is it possible to create a custom search portlet whose search results are displayed on a page grouped by Category? Basically the results page should have Category heading followed by search results.
    I realize this is not canned functionality but any ideas on how to accomplish this using PLSQL APIs is also welcome.
    Thanks.

    hi,
    one workaround i could think of is using the CM views to search for content that belongs to a category and display it in a custom way.
    http://www.oracle.com/technology/products/ias/portal/html/plsqldoc/pldoc904/wwsbr_api_view.html
    this only allows you to search for the meta-data available in the CM views but not the content of an item that is available when doing a search.
    in the next major portal release we will have a publich search API that can be used for these type of requirements. you can execute your search and format the results in the way you want.
    regards,
    christian

  • How to create Jaas Login module !! Urgent

    <b>Hi developers</b>
                        I want to make some changes in logon messages. Right now we are getting only error <b>user authentication failed </b> on the portal even if user is locked or some other reason is there for failed authentiaction. I want proper message should be displaying based on user input. For it I hope its good to <b>create Jaas logon module</b> so that i can modify it accordingly .
    kindly if any one can give me way out , its urgent.
    how to create it step by step. it would be highly appriciable.
    any inputs are appriciated .
    Thanks in advance
    <b>Abhay</b>

    Hi Abhay,
    1.) Every question is "urgent"... Please read https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/rulesofEngagement - section "Use a Good Subject Line"
    2.) For JAAS Login Modules examples, see https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/4d65ed90-0201-0010-3aba-9209836e8242
    Hope it helps
    Detlev

  • How to create a login............

    Hi
    i am new to using JSP and i don't know how to create a user login page. A DBHandler holds all the connection and SQL queries to my database. Within the DBHandler i have Login.java which carries the login info for the JDBC connection. Login.java code is below. Can i use something like for my user login?
    public class Login
    private String username;
    private String password;
    Constructor to create a new login object
    @param u valid database username.
    @param p valid database password.
    public Login(String u, String p)
         username = u;
         password = p;
    Gets the username.
    @return the username as a string
    protected String getUser()
         return username;
    Gets the password
    @return the password as a string.
    protected String getPassword()
         return password;
    Thanks

    With what you have, you can have a login page that is simply a basic HTML page with form fields for login and password. You can post this form to another JSP page to actually do the validation. Once you've validated that the login/password they provided you can then either forward back to the logn page if it is incorrect, or store an attribute in the session to record that they have successfully logged in, and forward to the main page using session.setAttribute("user", userName) or something like that.
    Then every page can include a simply jsp that checks to see if the attribute "user" exists in the session, and if not, it can forward to the login page. When the user clicks logout, a simple call to session.invalidate() will invalidate the session, and any further attempts to access pages would result in being forwarded back to the login page.

  • How to create a Login/Password page?

    Anyone know how to create a page where I can say - create a hyperlink on a text file and by clicking on that text file it takes them to a new page with a login screen? (from there I would create a page that once logged in takes to another page). just interested in the login page as default. I know i can password protect, create new site, etc. thats not what im looking to do....thanks.

    Drop.io is an easy to use, online file sharing service that provides users with a simple and private way to share images, video, audio, documents and other digital content through unique, user-created and controlled sharing points called 'drops' which are are protected from search engines...
    http://drop.io/about
    ...And there's a how-to video here:
    http://drop.io/howto

  • How to Create a XML Publisher Portlet using OmniPortlet

    Hi,
    Please help me. I have a project that needs to create an XML Publisher portlet using omni portlet. Is there any complete documents here or anyone can give more details on this? Appreciate to those will help..
    Thanks,
    Russel

    Hello Srini,
    Thank you very much for the reply but I'm not into OBIEE... I want the required query to be processed and the output to be shown in xml layout to load into RTF document. The rest I can manage.. but please let me know how to get the .xml output with out using the report builder or the apps environment(concurrent prg submission)..
    Please let me know if any... urgent
    Thanks in advance
    Krishna

  • How to create pdk java struts portlet in jdeveloper 11g

    Hi All,
    Im newbie ,I am unable to follow the steps in creating struts portlet on using Oracle portal developers guide in Jdeveloper 11g .can any one tell me the step by step procedure of creating struts portlet or any other related links.
    FYI:I stuck up in the guide which didn't explain how to create struts-config.xml( and its structure) and also how to create view and page flow .
    In the book they gave as :"To create a new view, first create a new set of ActionMappings (page flow) that will redirect the various actions and requests to Portal-specific JSPs. "
    Please help me on this, Thanks in Advance,
    Regards,
    siva
    Edited by: siva on Sep 25, 2011 10:51 PM

    You are mixing versions.
    JDev 11g needs the 11g SOA version (download from here )or use JDev10g together with Oracle SOA Suite 10.1.3.1.0
    Timo

  • How to create a "clone" of portlets to another schema?

    I want to create a clone of the portlets I have, for example copy SchemaA -->SchemaB. SchemaB have the same that SchemaA.
    How could I have the same forms portlets and reports portlets of the SchemaA tables in SchemaB? Could I create automatic the same portlets in SchemaB?
    Regards

    Hi,
    I will explain you more in details my case:
    Before starting I have SchemaA and APP_A and I will create during the following process SchemaB and APP_B.
    I have SchemaA.Clients and I export SchemaA into file. Afterwards, I import SchemaA's file into SchemaB and I have SchemaB.Clients that is the same SchemaA.Clients.
    Afterwards
    I have APP_A.FormClients y I copy APP_A.FormClients into APP_B.FormClients. APP_A and APP_B are in different schemas.
    After copying, APP_B.FormClients continues pointing at the SchemaA.Clients. How can I do so that APP_B.FormClients points at the SchemaB.Clients?
    Regards

  • Plz help! How to create a login page

    Hi!
    is there anyone who knows to create a login page from java

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <title>login1.html</title>
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="this is my page">
    <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
    <!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
    <SCRIPT LANGUAGE="JavaScript">
    function validate(){
    if(document.form1.text1.value.length<1){
    alert("Please enter UserName");
    return false;
    if (document.form1.pwdtext.value.length<3){
    alert("please enter the Password");
    return false;
    return true;
    </SCRIPT>
    </head>
    <body>  <br>
    <form method="get" name="form1" style="" action="./logdb1" enctype ="text/plain" onSubmit = "return validate(this);">
    <p> </p><p> UserName:    <input type="text" maxlength="20" name="text1"></p><p> Password:      <input type="password" maxlength="20" name="pwdtext"></p><p>            <input type="submit" value="Login" name="loginbutton">    <input type="reset" value="Cancel" name="cancelbutton"></p><p> ForgotPassword?     SignUp</p>
    </form>
    </body>
    </html>

Maybe you are looking for

  • RequestFocus() not working for JTextArea

    requestFocus() is not working for JTextArea. A validation message is displayed and when clicked on 'ok', requestFocus() does not work. Cursor is not shown in the text area. Any suggestions/solutions pls?

  • Help in removing XML tag !!!1

    Hi All, i have wrote the following query SELECT '<ns0:Employee_Details xmlns:ns0="http://BizTalk_Server_Project1.Employee_DesirableFormat">' ||chr(10)||dbms_xmlgen.getxmltype('SELECT xmlforest(emp_id, name, dept_id, xmlforest(add1,add2) AS Address,ci

  • Problems with filters and jsp pages.

    I have the following simple filter that checks if there is user information in the session object and redirects accordingly: import java.io.*; import javax.servlet.*; import javax.servlet.http.*; public class LoginFilter implements Filter      public

  • DirectAccess client enables IPHTTPS interface when inside corporate network at remote sites

    We have 4 offices connected via an MPLS network. I've installed the DA server in the main office. We're using a PKI for NLS and IPsec certs and a self-signed cert for IPHTTPS. For the most part everything works great. When a DA client is in the main

  • Solution Architecture diagram for a SP 2010 intranet portal

    hi, Can any one plz provide a  solution architecture  diagram for a SP 2010 intranet portal. want to use news , events, doc libs, Custom WPs, timer jobs, info.mgmnt policies,discussion forum. So how the diagram would be. also want to know whats the d