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.

Similar Messages

  • EQG-30276 Unable to fetch login page

    I have set up a portal source, created a user in portal with view priveleges, succesfully registered the OID identity management plugin.
    But when I attempt to crawl the portal source, my crawl fails with the above message in the log. It displays the url it is attempting to fetch, and the url displayed is not our login page. There is a custom login form at this site. Is this the issue?
    The log is as follows:
    EQG-30276: Unable to fetch login page
    EQG-30025: https://test-sso.<removed>.com/pls/orasso/orasso.wwsso_app_admin.ls_login?site2pstoretoken=v1.2~DE163018~99DDE599DEFD2008E680EF5788E480B7064256ECFB58461AE39D93D6FD3FE4B5D9E6D3D2999BFF44D0C6E9F0E092C69625990CB3D0CCE46061F69A2CAC97D2CA63692C981879F25C57B714FF2E78AB6F14C3648A9560EE07CC585404C08C585FDACD12BCFE09D6DBBAAB881DFCC8268851B0834141B66490E76C21D7CB7E967E331839C221BE7ECAF158E6EB172F35FC12C45B7DB67D5B29544E934B93CB64822DF303A295A0AC5A2C8B43E78
    I removed the domain name.
    If I copy this url to a browser window, it fails as well. If I remove all but the base url (before orasso.wwsso_app_admin.ls_login), can at least get to the SSO home. Like I mentioned, we have a custom login form.
    Can I configure the Id managment to go to the custom form, or do I need to create a new Id management plugin?
    Thanks for any help!

    I have made a little progress on finding the answer to this, but would like a second opinion before I have our SA go down a path.
    It seems that we are have a problem with our certificate. If I paste the url into the browser, it returns a message saying that there is a problem with the certificate and asks if I want to continue. If I continue, it goes to the custom login page.
    Could the certificate issue be causing the problem I am seeing? I think it is, but would like a second opinion.
    Thanks

  • 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

  • Unable to open login page through internet explorer

    Hi,
    Configured Reverse proxy external tier. We are able to access login page through Mozilla but unable to access through IE8.
    Raised SR, but they have reverted saying it's browser problem & not in their scope.
    Please help for the following error message when redirecting to login page.
    You are trying to access a page that is no longer active.
    - The referring page may have come from a previous session. Please select Home to proceed.
    Thanks in advance

    Please post the details of the application release, database version and OS.
    Configured Reverse proxy external tier. We are able to access login page through Mozilla but unable to access through IE8.
    Raised SR, but they have reverted saying it's browser problem & not in their scope.Do you meet the requirements in these docs?
    Recommended Browsers for Oracle E-Business Suite Release 12 [ID 389422.1]
    Recommended Browsers for Oracle E-Business Suite 11i [ID 285218.1]
    Please help for the following error message when redirecting to login page.Can you find any errors in the application/apache/database log files?
    You are trying to access a page that is no longer active.
    - The referring page may have come from a previous session. Please select Home to proceed. Please see if these docs help.
    Session Error Raised Direct After Login when Using Two-Letter Domain Segments [ID 420573.1]
    Login Issue via Internet Explorer after EBS Upgrade from 11.5.10.2 to 12.0.4 [ID 828534.1]
    R12 Login Fails When A Cookie Using Comma Separated Values Is Set First [ID 946807.1]
    R12: Error "You are trying to access a page that is no longer active" When Attempting to Access Through Internet Explorer [ID 968839.1]
    Thanks,
    Hussein

  • 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.

  • 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]

  • 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

  • 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

  • Unable to load login page for university wifi

    I am in France, using the university wifi system (de la CROUS). I have a macbook from 2008 running Leopard 10.5 that connects perfectly (Safari), loads the login page and let's me surf normally. I now have a new macbook pro (2011) running Lion. It also connects to the wifi without a problem (Safari), but the login page will not load. I've checked all the settings I can find and verified that they're the same as my macbook. I've cleared the Safari cache and tried enabling/disabling pop-ups. The graphic for the login page loaded once, but then timed out. I have been trying for almost a week. I have went to see the people in charge of the connection, but no one there seems to know anything about macs (it's France, after all). Any thoughts? Any and all help with appreciated!

    I know for sure that both are up to date.
    Update: I downloaded firefox by tethering my phone and i AM able to access and login to the system using firefox. the problem then lies with safari. i tried google chrome and has the same problem. has anyone else encountered this issue with safari?

  • Unable to create a page which deleted from pages library

    hi,
    I want to create a page from my site collec's pages library. i have already created the page say one.aspx and i have deleted the same. and  again    i am trying to create the same page one.aspx. but i am getting 
    serevr error  in appln.

    Paul,
    thanks for your  reply.
    i have confirmed from the recycle bin also. 
    even i hav tested it with a console appln also : here is the code :
    namespace TestingConsoleApplication1
    public class myProgram
    public static void Main(string[] args)
    myProgram objmyprog = new myProgram();
    objmyprog.deleteonepage();
    public void deleteonepage()
    PublishingWeb publishingWeb = null;
    using (SPSite oosite = new SPSite("http://srvr1/sites/OPTC"))
    using (SPWeb ooweb = oosite.OpenWeb())
    if (PublishingWeb.IsPublishingWeb(ooweb))
    publishingWeb = PublishingWeb.GetPublishingWeb(ooweb);
    // get the pages collection
    PublishingPageCollection pages = publishingWeb.GetPublishingPages();
    if (pages[publishingWeb.Url + "/Pages/EditMetadataPage.aspx"] != null)
    // page exists so delete it
    PublishingPage page = pages[publishingWeb.Url + "/Pages/EditMetadataPage.aspx"];
    page.ListItem.Delete();
    can you pls help.
    scrn shot is attached.

  • Unable to Create a Page and an iView

    After creating a new model, I tried to create the page. But the Elements task panel at the right is empty.
    I am suppose to drag the Module icon onto the workspace. But no Module icon..
    What is missing in my installation?. Thanks
    MS XML 4.0 is installed.
    In the workspace, the Design tab, is displayed.
    I am able to connect to EP Successfully.
    When I created the model, SAP Portal User Interface Model, EP kit is selected.

    I was missing the Adobe SVG Viewer 3.0
    I have installed it and everything is working fine.

  • Unable to create a page content type

    Add-PSSnapin -Name Microsoft.Sharepoint.Powershell
    #$SiteURL = get-SPSite "http://srvr1:123/sites/ENGG/"
    $w = get-spweb "http://sRVR1:123/sites/ENGG/"
    $web = get-spweb "http://sRVR1:123/sites/ENGG/"
    try
    $cts =  $w.ContentTypes
    Write-Host "inside content types try block"
    $spId = new-object Microsoft.SharePoint.SPContentTypeId("0x010100C568DB52D9D0A14D9B2FDCC96666E9F2007948130EC3DB064584E219954237AF3900DCED8380ADA44ABB8411D56976A5F491")
    $spId
    $ct = new-object Microsoft.SharePoint.SPContentType($spId,$cts,"BIFPageCT")
    catch
      Write-Host "error occured in creation"
    Write-Host "going2 update web"
    $w.Update();
    #get all the ctypes from site collec
    ForEach($ctype in $w.ContentTypes)
    { #write-host $ctype.Name": "$ctype.ID
     if($ctype.Name -eq "BIFPageCT")
    {   write-host $ctype.Name": "$ctype.ID }else {  Write-Host "ctype not found" }}
     I  tried to create a  new content type in my new site collec in my portal. but it failed to  create.i have taken the content type id from my another site collc. where this content type is  successfully created!
    please help why i am getting content type not found error.

    Hi,
    We can use the following PowerShell script to create a page content type.
    $spWeb = Get-SPWeb http://sRVR1:123/sites/ENGG/
    $spWeb.AvailableContentTypes | Select Name
    $parent = $spWeb.AvailableContentTypes["Page"]
    $contentType = New-Object Microsoft.SharePoint.SPContentType -ArgumentList @($parent, $spWeb.ContentTypes, "BIFPageCT")
    $contentType.Group = "My Content Type"
    $contentType.Description = "BIF Page Content Type"
    $spWeb.ContentTypes.Add($contentType)
    $spWeb.Update()
    $spWeb.Dispose()
    Here is a blog for your reference:
    http://www.microsofttechnology.net/2012/03/how-to-create-content-type-site-column.html
    Best Regards
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

Maybe you are looking for

  • Print abap report

    Hi folks, I am getting abap display for my report which is also required as hard cpoy when I fire a printout for the same. But I need to increase the font size of the report. How can I achieve this

  • Version 8 configure error when opening Itunes after updating to V8

    I have contacted iTunes several times with no answer to this problem. Everything was fine until I updated to Version 8, now every time I try and open iTunes it starts with a green bar stops about 3/4 along bar then says you need to restart to configu

  • Class not found - was channel definition question

    I am much closer.  Tomcat is putting some key messages in the console and I overlooked them.  It looks like I am closer than I thought.  The request looks like its getting received, but my service blows up on response due to I think two class not fou

  • Two questions about Camera Raw and Lightroom

    I am now shooting in RAW image format only and cataloging those images into Lightroom. My first question is: How do I open an image in Camera Raw from Lightroom? When I right click on an image in Lightroom it gives me a choice to edit in > Photoshop,

  • Why does CC update .png files only some of the time?

    I am creating some lower thirds from a template in PS, saving them as .png files and bringing them into the project. When I get updates from our clients, I will make those changes in the .psd, and save over the original .png file. Sometimes CC will u