Creating Login Pages - Server Behavior Issues

Hello,
I been trying to find a solution to this problem for this
past week.
I'm having issues with creating a login page. First, I get
the page created with a username text box, password text box, save
username checkbox, etc. Next, I add the server behavior for 'User
Auth' - 'Login User'. Now..here's the problem. When I complete
that, I get this error (SEE BELOW). Somehow the server behavior
duplicates. I can't go on until I make one of them unique from the
other. I tried every which way to delete it, but I can't. Any
suggestions?
SERVER BEHAVIOR ERROR
"The server behavior panel cannot determine whether "Log In
User" or "Log In User" is applied to your page. Please select Edit
Server Behaviors and change one of the 2 behaviors to ensure that
each is uniquely identifiable."
NOTE: By using the "-" sign above the panel, I can't remove
the duplicate.
Also, when I create a login page, I do need to insert a form
first("form1") and then place the username, password, checkbox
inside that "form1" form I just created, correct?
Thanks for all your help!
Craig

GD WebDev wrote:
> Hi,
>
> I have set-up up a database based upon username,
password and security access
> level, the access level contains 3 types of groups.
group 1, group 2 and group
> 3.
>
> I've used the dreamweaver login user server behavior.
Looking at this it only
> allows you to go to one succeed page.
> Because i have got three user access levels, i'm looking
for it to send each
> set of users from each access level to three different
succeed pages.
> In other words, group 1 is sent to one succeed page,
group 2 is sent to a
> different and group 3 to another.
>
> Is there away of doing this?
>
You could do a redirect on the page that they do land on once
succeeded.
My personal preference would be to make one page, and only
show the user
groups parts of the page that they are allowed to see.
Steve

Similar Messages

  • An error occurred while creating a Page Server subprocess.

    I am using XI R2 SP5 on solaris.
    When we try to view any report on demand or schedule any report that has a parameter, the following error comes back:
    An error occurred while creating a Page Server subprocess.
    I have tried restarting the services. I have tried creating a new page server. It behaves the same way. In other online forms, I've seen with this error message, people have talked about fixing it by installing SP2 or by uninstalling and reinstalling everything. We're at SP5, so we should have anything that was fixed at SP2. An uninstall and then reinstall would be a nightmare given the amount of use on this system.
    Can anyone recommend anything at all? I'm about to have our unix admins reboot the server, but that is really nothing more than a stab in the dark. I saw someone else in an online posting claim that a reboot fixed the problem, but I've only seen that once.

    checked this SAP Note?
    1204013 - Error: "The Page Server is unable to create a child process" when viewing a Crystal report in InfoView on Solaris
    Symptom
    When trying to view a Crystal report in BusinessObjects XI Release 2 InfoView on Solaris, the following error message appears:
    "The Page Server is unable to create a child process"
    In the syslogs, you see the following error messages:
    "An error occurred while creating a Page Server subprocess."
    "The function PEOpenEngineEx failed. Reason: Report engine not opened."
    "Internal error for dll procreport."
    "Unable to load dll procreport."
    "Internal Job Server error."
    Cause
    The following file in the MainWin registry has become corrupt:
    bobje/enterprise115/solaris_sparc/crpe/mw/registry/core_data/servername/.mw/hklm_sunos.bin
    This has become corrupt due to the web application server running under a different account than the BusinessObjects Enterprise applications.
    Resolution
    Restore the hklm_sunos.bin file using a backup of that file. The backup file must be from before the corruption occurred. Also ensure that your web application server and BusinessObjects Applications are running under the same user account.

  • Unable to create login page

    i m trying to create login page for oracle adf (HTML) but while compile the application i am getting below error message
    [01:58:01 PM] ERROR: Unable to create user "oracleadf". Reason: MBean invoke failed: weblogic.management.utils.InvalidParameterException: [Security:090282]password cannot be null
    i m using below reference
    http://www.youtube.com/watch?v=C14FmuhTt8I
    please help me out.

    Hi arun,
    yes i provided but i found one strange this,
    when i entered my password in password then in the confirm password field.
    then confirm password field get frezzed then i click on save button after that both the password field get null automatically.

  • How to create Login page in Jdev11.1.1.4

    Hi All,
    can anyone please share how to create Login Page in Jdev11.1.1.4
    TIA,
    Bob
    Edited by: Bob on Feb 18, 2011 12:40 AM

    Bob,
    [url http://download.oracle.com/docs/cd/E17904_01/web.1111/b31974/adding_security.htm#BABDEICH]The documentation tells you how.
    John

  • Create login page using jsp, servlet  & Oracle

    hi,
    i need the sample application for creating login page using jsp, servlet & Oracle,can you please post one sample application.
    thanks
    sona

    See
    http://www.oracle.com/technology/products/jdev/collateral/papers/10g/adfstrutsj2eesec.pdf
    Frank

  • Creating login page - direct users to a unique file based on unique id?

    Hello - I am in the process of creating a login page that will direct users to a unique page based on their unique id.  I would normally go to Server Behaviors>User Auth>Log In User, but that gives me the option of browsing only one file for all usernames and that's not what I need.  So basically, if the user logs in with the Caterpillars username, it takes them directly to the Caterpillars page and if they log in with the Butterflies username, it takes them to the Butterflies page (yes, it's a preschool with goofy classroom names!).  If it matters, I'm using MySql and the page is .php.  I tried to upload the php, but it gave me an error "the content type of this attachment is not allowed" - not sure what that's all about - sorry.
    Thanks in advance!!

    I was trying to do the latter - store the path for each individual file (catepillars.html, butterflies.html, etc) in the database with the login info.
    My problem is that I can't get it to direct to that page in the code.  My understanding is that I have to tell it in within this code <?php echo $row_MM_Username['login']; ?> that if username is caterpillars then they go directly to caterpillars.html...
    For your desire you don't need extra database fields, recordsets, session variables or anything else if you want to direct username to a static username.html file
    Instead use a dynamic META redirect in <head> of success.php page based on session variable for Username and append .html to the username.
    <META http-equiv="refresh" content="0;URL=http://example.com/<?php echo $SESSION['MM_Username']; ?>.html">
    You could add the show if users is logged in server behavior to success.php and wrap the meta redirect in it so that if the user is logged in then you are redirected to username.html or just add a restrict access SB so that you can not visit success.php (and be redirected to username.html) unless you are logged in.
    Does that solve your problem?
    It may have been easier to explain if your original inquiry mentioned that you wanted logged in users to go to a static .html page based on their username like username.html (sighs). FWIW I would still follow my original recommendation of using one dynamic file to display different users info on one page because as mentioned you only have to maintain one file vs. multiple static files.

  • Apex 4.1 Login Page 101 Branching Issue

    Branching Issue from P101 based upon P101_USERNAME value entered..Please Help!
    I'm having the following code on Page101 main 'login' process. The goal is to go to page 100 if the user is a normal V_USER or go to page 200 if the user is V_ADMIN. For the P101_USERNAME value, I'm determining whether the user or admin variable in my login process. However, I'm NOT branching correctly to the expected page.
    The function calls to determine whether V_USER or V_ADMIN work correctly in my tests outside of APEX.
    To prove the following, I hard-coded the page no. to either 100 or 200 and both of them direct to the right page, upon login, in such instances. However, when I'm determining the branching path with the below function call, the branching fails and Always goes to Page 100..I'm totally perplexed. Please help.
    The thread on the forums was helpful but the user who potentially got his answer didn't show the final example as to how it worked for him.
    Re: Apex 4.1 Redirect after login
    My login process on P101 main apex login page..
    --Page101 'login' process
    DECLARE
    v_path VARCHAR2(40);
    v_role VARCHAR2(200);
    FUNCTION getUserRole RETURN VARCHAR2
    IS
    v_ret VARCHAR2(40);
    v_user VARCHAR2(40);
    BEGIN
    IF v_ret IS NULL THEN
    BEGIN
    v_user := LTRIM(RTRIM(HTF.ESCAPE_SC(v('P101_USERNAME'))));
    --//Tested these calls outside of apex and work as expected perfectly.
              IF (my_pkg.is_user(v_user) = 'Y' AND my_pkg.is_admin(v_user) = 'N') THEN
    v_ret := 'V_USER';
    ELSIF (my_pkg.is_user(v_user) = 'N' AND my_pkg.is_admin(v_user) = 'Y') THEN
    v_ret := 'V_ADMIN';
    END IF;
    EXCEPTION WHEN OTHERS THEN NULL;
    END;
    END IF;
    RETURN (v_ret);
    EXCEPTION WHEN OTHERS THEN RETURN v_ret;
    END getUserRole;
    BEGIN
    --//Set page path for user/admin. if not use default page 100
    v_role := getUserRole;
    --//Hardcoding works as expected. but the above line getUserRole doesn't compute properly
    --//The my_pkg.is_user, my_pkg.is_admin work and return values as expectd.
    --//I'm not sure whether P101_USERNAME value is available or not in this main 'login' procedure on P101
    --//v_role := 'V_ADMIN';
    if v_role = 'V_ADMIN' then
    v_path := ':200';
    :APPVAR_ROLE := 'V_ADMIN';
    :APPVAR_LOGIN_BRANCH := '200';
    :FSP_AFTER_LOGIN_URL := NULL;
         wwv_flow_custom_auth_std.login(
    P_UNAME => :P101_USERNAME,
    P_PASSWORD => :P101_PASSWORD,
    P_SESSION_ID => v('APP_SESSION'),
    P_FLOW_PAGE => :APP_ID||v_path);
    elsif v_role = 'V_USER' then
    v_path := ':100';
    :APPVAR_ROLE := 'V_USER';
    :APPVAR_LOGIN_BRANCH := '100';
    :FSP_AFTER_LOGIN_URL := NULL;
    wwv_flow_custom_auth_std.login(
    P_UNAME => :P101_USERNAME,
    P_PASSWORD => :P101_PASSWORD,
    P_SESSION_ID => v('APP_SESSION'),
    P_FLOW_PAGE => :APP_ID||v_path);
    end if;
    end;
    --------------------

    There is a simpler method to accomplish this.
    On your home page (typically page 1) create a branch with the branch point "on load before header"
    Set the action to your desired target page.
    Create a condition based on your user's role .
    Which I see are similar instructions to those suggested in your linked message.
    Scott

  • How to create login page for application with jheadstart

    Is there a how to section for jheadstart?
    After reviewing the jheadstart developer's guide. I am still left with lot of questions:
    1. how to create a login page to allow access to an application using username/password from a database table
    2. how to change the title graphic (jheadstart demo) to (my application)
    3. how to execute a query by hitting enter instead of a mouse clicking a button
    Any suggestion to search for such practical questions in this forum or other blogs and such is appreciated.

    Mahin,
    You can set Authentication Schemes for your applications. If you are using Application Express Authentication, you can create additional users from here:
    1. From Application Express home, click Manage Application Express users.
    2. Click Create to create users. To create end user, select "no" to developer and admin.
    - Christina

  • Problem creating login page in portal webapplication

    Hi all,
    I have been working with ADF for quite some years. Now, I have found webcenter portal on my path.
    I'm telling you this is square one all over again.......trying to figure out why the most simple things do not work like they should. like this one
    I'm on a project that has to build a new portal application. when you start it, you should be taken to a page where you have to log in.
    This is the only public page in the portal app. after logging in, you will see the start page of the portal app. From here you can go to other pages through a menu tree on the left side of the page (=within the page template).
    Anyway, I seem to no even get this to work........
    I have made two pages. a loginPage and a landingPage. I know you get a login.jspx and a home.jspx for free, but I want to make my own since I had problems attaching my custom pagetemplate. Some other thing that doesn't work........
    Anyway, I have made these two pages within the faces-config.xml I have tied the login_success action to my landingPage and the logout_success to the loginPage. I have also altered the login.html to redirect to my loginPage.jspx instead of the login.jspx On the loginPage Ideally, I would like to drag a login taskflow with a page-fragment where I have two inputfields and a button, which are connected to the o_w_s_l_LoginBackingBean. But that is for later, since it doesn't even work when I have put those two inputfields and button directly on my loginPage.jspx
    I have tried several different configurations using both the pages.xml file and the jazn-data.xml, but to no avail.
    What am I doing wrong? in the pages.xml, what should be the one with home as it's id? should both the loginPage and the landingPage be in there?
    Even when I manage to get the loginPage first at startup, the button (who's action is pointing to the doLogin of the o_w_s_l_LoginBackingBean) does nothing. Also nothing in the logs.
    Can anyone please tell me how I can get this to work?
    thanks a lot in advance.....

    Hi fisherman,
    custom login page can be created and it can be used in your custom template by simply creating your own login class :o_w_s_l_LoginBackingBean instead of using the default one.
    otherwise the second type of solution is :
    create a subform and write the following type of code in your jspx/jsff page.
    <af:subform id="sub_id">
    <af:panelFormLayout id="pt_pfl1" >
    <af:panelGroupLayout id="pgl1" layout="vertical" >
    <table>
    <tr>
    <td width="50%">
    <af:activeOutputText value="username"
    id="aot199"/>
    </td>
    </tr>
    <tr>
    <td width="50%">
    <af:inputText id="pt_it1" simple="true"
    value="#{o_w_s_l_LoginBackingBean.userName}"
    />
    </td>
    </tr><tr>
    <td width="50%">
    <af:activeOutputText value="password"
    id="aot198"/>
    </td>
    </tr>
    <tr>
    <td width="50%">
    <af:inputText id="pt_it2" simple="true"
    value="#{o_w_s_l_LoginBackingBean.password}"
    columns="30" secret="true"
    />
    </td>
    </tr>
    </table>
    </af:panelGroupLayout>
    </af:panelFormLayout>
    <af:spacer width="3" height="3" id="pt_s2"/>
    <af:panelGroupLayout id="pt_pgl14" layout="horizontal" halign="end" >
    <af:commandButton id="pt_logincb"
    action="#{o_w_s_l_LoginBackingBean.doLogin}"
    >
    </af:commandButton>
    this is a sample code,may be some errors are present.but it should work definity if you mention the login success page in faces-config.xml.
    Hope ,it will help you.
    Regards,
    Hoque

  • Creating Login Page

    Hi,
    I have create a Login page and after checking the user credentials, I displayed a new page.(say "Success.jsp")
    I have a Logout button on the new page displayed.
    When I clicked Logout button again Login page was displayed.(Login.jsp)
    But if I click back button on Internet explorer after doing Logout, the browser is displaying success.jsp.
    How to avoid that. I want to display Login.jsp even user clicks back button on explorer.

    The browser is display the page that it cached for you. Make sure you tell it not to cache the success.jsp or any other page you do not want to allow them to go back to. Have the servlet set it in the header or do it on the jsp. Lots of help is you google it
    response.setHeader("Cache-Control","no-cache");
      response.setHeader("Pragma","no-cache");
      response.setDateHeader ("Expires", 0);[http://www.google.com/search?q=preventing+browser+caching&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a]

  • How to create login page using OAF

    Hi,
    I am using Jdeveloper 11.1.1.6.0
    Plese give me Sample Code creating the log in page .
    Thanks
    Ram

    Hi,
    here i am using the webcenter application using the adf faces need secured login page using the OAM.
    Thanks
    Ram

  • OAM and Oracle Apps R12.1.1. Integration : Login page re-direction issue

    Iam facing redirection issue when I tried accessing the URL http://hostname:port/context/OAMLogin.jsp and its going to the page http://hostname:port/access/oblix/apps/webgate/bin/webgate.so but its not logging into the application
    Please help me in this issue.
    Thanks,
    Rajendra.

    Overlooked that you have already mentioned the version.
    Then your issue is same as pretty much everyone facing it.
    When Accessgate is deployed with script SSO_SERVER_RELEASE gets set to 10 in PLan.xml.
    And as per the design if the SSO_SERVER_RELEASE is 10, then SSO_SERVER_URL will be hardcoded as /access/oblix/apps/webgate/bin/webgate.cgi.
    If SSO_SERVER_RELEASE is 11, then SSO_SERVER_URL should be of format http://myoamserver.example.com:14100/oam/server/auth_cred_submit
    So technically with v11 in our cases, it should not even go to webgate.so
    So only option left is to deploy accessgate manually
    let me know if you need more information with this
    IK

  • Icloud: can't login, serious server side issues

    I'm having serious issues whith iCloud, can't sign in. I have two appleID's: 1 @mac.com and 1 @me.com (although the account name on appleid.apple.com is withouth the email-suffix "@me.com")
    I would like to login in on iCloud.com with my @me.com AppleID and on iTunes with @mac.com. Off course merging the two AppleID's would be better.
    Issue:
    Can't login on mac os x 10.7.3 (Safari icloud.com, system preferences) with neither AppleID's
    Safari icloud.com: Connection error, icloud error while connecting to server
    Sys prefs: you can't login this moment
    Depending where I login, It works with @me.com or without the mail-suffix
    Can login on iphone/ipad/ appleid.apple.com
    Tried:
    - little snitch not present
    - deleted ~/Library/AppSupport/iCloud/Accounts
    - emptying Safari cache
    - resetting passwords on appleid.apple.com
    Other observation:
    - could login with safari on other account (guest), no longer possible
    - after deleting account on iphone, recreating account logged in with me.com appleID, login works but shows @mac.com account name
    - on iOS password from mac.com appleID works with me.com
    - can login on appleid.apple.com with both appleid's (with correct passwords)
    - me.com accountname is NOT in the form of an email addres, when trying to change accountname in a me.com address, this gets refused

    Just upgraded to 10.7.4.
    Solved some issues.
    I can login via System Preferences and with iTunes with two different accoutns. Although. I have to use the password of the @mac.com AppleID to login with the @me.com AppleID (wiht mail-suffix). Like on my iPhone before.
    If I login on the Apple support site I have to use the @me.com (without the mail-suffix) and the correct password.
    Understand who can.
    Left to check: Fotostream, but first I have some real work to do. Thorough troubleshooting next week.
    I'm no programmer but I've administered servers (solaris, mac, win) for 8 years in a multi-tier environment and I'm rolling out an identity mgt system in a 40k employee organisation at the moment.

  • How to create login page in JDev

    Hi,
    First of all I'd like to apologize for posting this, but I just can't find what I'm looking for. I have a project to create an internal application to networked users via JDev/ADF that simply has a login and menu to run some reports and maybe a search screen. I am wondering the best approach since it's not a true web application and also wondering if anyone has a simple example to login to the database where the users are created as database users with assigned roles for table access? Any good advice will be appreciated!
    Thanks,
    Lee

    The link below will walk you through how to implement security in your ADF application.
    http://download-west.oracle.com/docs/html/B25947_01/adding_security.htm#BGBGJEAH

  • Restrict Access to Page Using a password.php Instead of Server Behavior

    I previously used "log in" and "restrict access to page" server behaviors for my client portal when I only had one client. I had my username and password stored in mySQL database. I recently have gained more clients that all needed to be redirected to their own customized landing page when logged in. Because of this, I used a password.php to store the usernames and passwords and to redirect to different pages. Now, I am wondering how I can restrict access to these pages (i.e. someone won't be able to access the pages by typing the url) since I will not be connecting to a database anymore.

    I'm also confused by your statements.
    >Now, I am wondering how I can restrict access to these pages
    >(i.e.  someone won't be able to access the pages by typing the url)
    >since I  will not be connecting to a database anymore.
    It doesn't matter where you store the credentials - database or php file - the techniques for restricting access will be similar. I really don't understand why you moved away from the database when you got more clients. The more data you need to manage, the more reason to store it in a database.
    After logging in, most sites direct users to the same page, yet pull user specific data from the database. If for some reason you can't do this and need to built individual pages for each client, then store the 'landing' page for the client in the php file or database. Restrict access to each page by comparing the logged in name with an allowed login name. Or a more dynamic approach would be to dynamically pass the page name to a database query that validates that it's ok for the logged in user to access.
    Also, these questions are more appropriate for the app dev forum.

Maybe you are looking for

  • Can't get laptop to recognize iPod: tried all "solutions".

    I have tried all the solutions here and I still can’t get a single iPod to properly work with my computer. I’ve pretty much come down to the conclusion that the only way I can get an iPod to work is to get a whole new PC. Granted I have an “ancient”

  • Detailed pop up screen in selection screen - urgent

    hai experts, how can we give a detailed pop up screen in selection screen. My requirement is, To display Details of spool Nos taken for current porogram to take print out from end user. from OWN SPOOL REQUEST displays all other programs........ can a

  • MBP 17" not remembering ICC color profiles in XP with 23" ACD

    I have a MacBook Pro 17" that I'm using in a dual-screen configuration (internal display and a 23" Cinema Display). I'm running Windows XP through Boot Camp, and I use a Gretag Eye-One calibrator to create color profiles for each display. On my PC us

  • Watched folders aren't watched!

    I have a main folder (and sub-folders) for my images selected but even though I know new images have been added to the folder PSE does not load them.  I can get them by using Get .. from files and folders, but why doesn't PSE actually watch the folde

  • Shortest path calculation in huge spatial network

    Looks like I have to load the whole network in order to perform shortest path calculation. such as NetworkManager.shortestPathAStar, NetworkManager.shortestPath Suppose the network is too big to be loaded at one time, what is the possible solution in