Issue with login page

Hi,
Can anyone help me with the following issue: When I try logging into the login page using the URL_*(http://hostname.domainname)*_ the page is re-directed to the same URL but with https:_ in front of the URL but the login page is not displayed/shown.
But when i remove the 's' from https:_ and press enter i get the login page.Once i Login with the credentials also it is again re-directed to the https:hostname.domainame_.
Again only if i remove the 's' from (https:hostname.domainame) and press Enter do i get the responsibility page.This is happening each and every time when i click on responsibility its re-directed to https: link and i need to remove the 's' from https and press Enter to get the responsibility displayed.
Can anyone help me out with this issue.
Apps version :11.5.10.2

Do you have SSL implemented? If not, please review the application context file for any referenced to https and change it to http then run AutoConfig and bounce the services.
Also, check if any of the profile options is set to https and change it to http -- How to Search all of the Profile Options for a Specific Value [ID 282382.1]
Thanks,
Hussein

Similar Messages

  • Home page opening with Login page

    Hi,
    Today we are facing a peculiar case, when we login to Unifier application. On successful login, the home is displayed with login page again. Please let me know hw to resolve this.
    Regards,
    Deepak

    Try ditching Dreamweaver and switching to Notepad ++, less bugs, less control from big brother, more nimble, less crashes ... simply better than this pile of junk.
    Ok - put your style sheet in a separate file and link it.
    If you're going to use styles then don't use attributes if you can get away with it.  (Have a look at CSS Zen garden - such a great site.  May be a little complicated for a beginner, but it gives you something to aim for.)
    Ditch the table format - it makes everything far, far more complicated; try using DIVs instead.
    NEVER nest tables if you can at all avoid it.  Usually you can - it's just a case of looking at column and row spans.
    NEVER use something like DreamWeaver in design mode - it's a huge waste of time.
    Try starting with something more basic and build it up a step at a time.  Test every change stage by stage - if you're painting a picture you never paint the whole thing then take a step back and look, you always paint a piece, step back and look, paint another piece etc...
    Most importantly - research which setting (relating to tags, CSS and attributes) actually performs what operation, and which affects which browser.  The classic example of this is the Internet Explorer 6.0 box model problem.
    But most importantly, ditch DreamWeaver.  Hell!  VI is better!

  • Having an issue with a page in the internet

    Hello,
    I registered to the forum a few days ago but did not introduce myself. Please accept my apology.
    I have a Blackberry style 9670 model, of which I am very happy with.
    I was having an issue with a page in the internet, in which I was receiving errors on my device. My daughter has a Blackberry Curve and she was able to access the page without any errors. I can not figure out why I do.
    Thanks

    I am not sure if this is the same issue but there was a bug that caused small exchange numbers to become negative which was resolved in one of the 11.1.1.3 patches, it is worth logging into My Oracle Support and having a look at the patches available.
    9588147 – In exchange rates table, entering very small values become negative after you save the data forms. For example, 0.000071 becomes –7.1E-5 after you save the exchange rate.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Issue with normal page link redirecting to SSO page / forbidden page

    Hi,
    I am having an issue with a number of pages within my portal.
    I have a 'List of Objects' that has been working for some time, each link in the list linked to another page.
    Just lately a number of pages that are linked to within this list are not loading correctly.
    When one of the items is selected, the correct page is initially displayed, but then after a couple of seconds the page is redirected to the 'Single Sign-On' page, or alternatively the page is redirected to a 'Forbidden' page with this error:
    Forbidden
    You don't have permission to access /pls/orasso/orasso.wwsso_app_admin.ls_login on this server.
    (This page will also show up after the user tries to login when the page is redirected to the SSO page).
    As well as this issue occuring at the front end, the same issue is happening when the pages are loaded from the back end, in the Navigator.
    This issue is even happening when the page is opened up in 'edit' mode using the ORCLADMIN user.
    Any help is greatly appreciated!!
    Amanda.

    Figured it out...

  • Issue at login page using cookies

    Hello all
    I have some issue with my first cookies-jsp.
    Basically i have a homepage and i would like it to prompt a login form in case no cookies are found, and display the userName in case a cookie is found(and stored the name)
    In case the user have to log in, the data entered in the form are sent to a "Register" servlet.
    I will paste both the jsp and the servlet code, in the bottom i will explain then the problem
    The jsp
    <body>
            <h1 align="center" style="font-style:italic; color:olive">Welcome</h1>
            <%
            Cookie[] cookies=request.getCookies();
             if(cookies==null || cookies.length==1){
            %>
            <form action="Register" method="post">
            <table cellspacing="5" border="0" align="center">
               <tr>
                   <td align="right">Name:</td><td align="right"><input type="text" name="name"></td>
               </tr>
               <tr>
                   <td align="right">Email:</td><td align="right"><input type="text" name="email"></td>
               </tr>
               <tr>
                   <td align="right">Submit</td><td align="right"><input type="submit" value="submit"></td>
               </tr>
            </table>
            </form>
            <%
              else {
             String cookieName="userName";
             String cookieValue="";
              for(int i=0; i<cookies.length; i++){
                  Cookie cookie=cookies;
    if(cookieName.equals(cookie.getName())){
    cookieValue=cookie.getValue();
    %>
    <h3 align="center" style="font-style: italic; color:#6666FF">Welcome back <%=cookieValue%></h3>
    <%
    %>
    </body>
    The servlet (the relevant part, the doPost() method):protected void doPost(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    //get the user details
    String name=request.getParameter("name");
    String email=request.getParameter("email");
    //create the cookie and add to response
    Cookie userName=new Cookie("userName",name);
    userName.setPath("/");
    userName.setMaxAge(60*60*24);
    response.addCookie(userName);
    //prepare for forwarding
    String url="/home.jsp";
    RequestDispatcher dispatcher=this.getServletContext().getRequestDispatcher(url);
    dispatcher.forward(request,response);
    The problem is that when i enter the userdetails the first time in the form (because no cookies was found), the login page with the form  is redisplayed, and if i click on refresh or reclick on th submit button then the message with the name is displayed.
    I dont understand this behaviour, since the amount of cookies after the first login is made will be "2", the homepage with the username should be redisplayed and not the one with the login form.
    Any advice?
    p.s:
    the  if(cookies==null || cookies.length==1){ its to prevent that the jsp will consider the JSESSIONID as "logged in" cookie
    Edited by: enrico on Jan 23, 2011 10:36 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Turn off the cache in your browser or set an expire header in your servlet.
    Also, you might want to consider using the servlet session instead of manipulating the cookie directly.

  • I'm using Firefox 3.6.23 on my windows 2000 and lately i've been having issues with web pages loading and need help figuring out why.

    Some of the issues : '''1'''. Page loads blank showing web address in tab. Try reloading usually with no results.(problem have the most!) '''2'''. Message appears "problem loading page, server not found" (diff times & diff websites). '''3.''' Pg with msg "oops link broke, DNS error, server not found" then lists suggested links to sites for fix though all links connect to site IGEARED.COM. (new issue) I don't know what to do please help me identify and fix my issue(s) in english, kind of a newbie : ). thx

    Try this.
    Type in the address bar about:config.
    Accept the warning.
    In the page that appears, in the Filter box, type network.http.max-connections. Change the value to 32 (which is probably set to 256 in your case).
    Close that page. Restart the browser.

  • Issues with having pages display correctley. It does this in multiple browsers, Chrome, IE, and FF. Some pages display correctley.

    I have been having trouble viewing pages in multiple browsers since last night. It has done this with me before. I am using an Acer Aspire and also Firefox version 23. I've tried looking online and following suggestions such as clearing the cache, retarting in safe mode, etc. Nothing seems to work. It's only on certain pages. For example- Facebook works and displays fine. It's when I go to websites like Amazon, Wix, Ebay, and others that I get the issue. The pages are displaying with a white background and just text/links and basic images. I've checked the page style and it is on Basic Page Style. Here is what I have:
    http://i45.photobucket.com/albums/f78/DovesPaintedJewel/screen2.png
    http://i45.photobucket.com/albums/f78/DovesPaintedJewel/screen1-1.png

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Resizing issue with login boxes in Captivate 5

    Hi
    I am recording a software simulation where the user has to enter their login detail in a demonstration.
    I have to record it fullscreen (1152 X 864) and then resize it to 750 x 545. That works fine but when I view the resized slides the typed information (login and password) have not shifted relative to the login box and so appears as a field half way down the page instead of inside the box(s).
    Has anyone experienced this and is there something I can do apart from recording in 750 x 545 (not ideal as half the login page is cut off) or leaving the whole thing at the higher resolution (when published it means the user will have to scroll to view the entire slide so not ideal either).
    I have done it many times in Captivate 4 and it works fine.
    thanks

    Hello,
    This is a known issue and the Adobe Team is working on it, this is what I read in this thread:
    http://forums.adobe.com/thread/754748?tstart=0
    Lilybiri

  • Having issues with loading pages with large web articles..

    I'm having issues with pages loading all the way when I read articles off of wikipedia. Mainly from pages that have tons and tons of text, but it doesn't make sense. The browser indicates that the page is loaded all the way, but when I make it half way down the page, everything becomes completely white. Like LITERALLY everything becomes white. This prevents me from reading any further down the page, even though I would force the page to scroll down all the way, that doesn't help one bit.
    Does anyone have a solution or a fix to this? I would like to continue reading my web articles, without being interrupted with these white pages/bugs.
    Post relates to: HP TouchPad (WiFi)

    Try clearing the cache for the web browser. While the browser is open, go up to Web/Preferences and choose "Clear cache".
    Also try rebooting the TouchPad via Device Info/Reset Options/Restart.
    WyreNut
    I am a Volunteer here, not employed by HP.
    You too can become an HP Expert! Details HERE!
    If my post has helped you, click the Kudos Thumbs up!
    If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

  • HT204407 Is anyone else having issues with login for Find My Friends App?

    I keep getting the error message "either login name or password is incorrect. I have reset the password but I still get the same error message. Does anyone know the fix for this? Thanks, Terry

    I just got the same message myself. Which I have only had 2 times in three years, so I checked here.
    http://www.apple.com/support/systemstatus/
    There is an issue with the iTunes Store on Apple's end, so I assume that is why we cannot connect.

  • Https with login page

    Hi,
    How can I make the default APEX login page secure (https)? The other pages will remain http. Is this possible? or I need to make the whole application https.
    I think, in future APEX releases, it will benefit if there are options for declarative control over http/https in the same application.
    Thanks.
    Andy

    Hi Andy,
    just having HTTPS for the login page is insecure, because if you use HTTP for all other pages your session cookie can be stolen by a man-in-the-middle attack. Just remember a year or two ago when somebody released a Firebug plug-in to steal the session cookie for Facebook, Twitter, ... when those user are on the same WiFi.
    Regards
    Patrick
    My Blog: http://www.inside-oracle-apex.com
    APEX Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • Mission Control/ Expose issue with stacked pages hard to view. Please help

    Is it just me or is there a real issue with the way Mission Control/ Expose displays these stacked windows? For instance, I had about 6 finder windows open, showing 6 different folders on my Desktop. If I then use Mission Control to quickly access a particular folder, it displays all my finder windows together, stacked up on one another and this makes it almost impossible to view which particular folder i want. It doesnt have the folder names displayed so this is seriuosly time consuming now. Is this something im doing wrong, or is it a valid issue?
    many thanks

    If you are just trying to see all the Finder windows which are available, just invoke App expose. I use a 4 finger swipe down. If you are in finder, just swipe. If you are in another application, hover your mouse over the Finder icon in the dock and swipe. All the windows are easy to see.
    (You can, of course, do this with any application, not just the Finder.)
    charlie

  • Intermittent issues with Login using OAM-OIF

    Hello
    We are using OIF (11.1.1.3), OAM (10.1.4.3) for authentication mechanism, it's observed that the login functionality fails intermittently when authnoam request redirects to the login form ( we are using form based authentication in OAM), the request /fed/usr/authnoam is being protected by the OAM in the policy configurations.
    Is there any pointer you can provide to pin point where the issue is occurring and why the authnoam request is resulting in the login form page.
    We do following
    1. The /fed/idp/initiatesso request is fired from webcenter along with returnurl and the providerid parameter are passed in the query string parameter
    2. OIF then redirects the request to the authnaom request
    3. the credentials are post for the authnoam request.
    Your inputs are highly appreciated.
    Regards
    Prashant

    Hello,
    BY enabling the trace logging on Webgate and AccessServer we found that the /fed/usr/authnoam request is getting malformed with credential information. Now we are looking as to why this malformed URL is getting generated and there by causing the authentication failure.
    Regards,
    Prashant

  • Strange Issue with Login into SDN

    Hi,
    I am facing a strange issue. If I click on the blog link [Blogs|http://www.sdn.sap.com/irj/scn/weblogs] without login in to SDN, I am able to see the blog page. But once I login to SDN and click on the same link the blog page is not displayed (even though the top header and the left side bars are displayed correctly).
    Am I the only one facing this. Could this be some setting with my browser? I am using IE6.

    I sometimes get this with IE6 - apparently the most popular browser in the corporate world.  I find that completely closing IE6 and then restarting - then login and then go to the blogs will resolve the problem.  As I understand it, IE6 is probably the worst version of the software that exists - it improves after that.  But at home I use firefox.
    matt

  • Issue with running pages through jDev, wls starts but no target url is provided.

    Hi all,
    I recently downloaded an older version of jDev for a new assignment - Studio Edition Version 11.1.1.6.0 - Build JDEVADF_11.1.1.6.0CLOUD_GENERIC_121118.1600.6229.
    I created a basic wls domain and I've tried running simple jspx pages, at which point a weblogic appears to have started without issue. However, my page never runs and no target domain is provided. Below is how my log appears and it just seems to hang. I'm my experience a window always popped up in my default browser with the domain and it is also shown in the log. Going to my expected default domain (http://127.0.0.1:7101/Home.jspx for example) results in a 404. I sure its something stupid, but I'm not sure how to address this issue. Any advice would be appreciated.
    *** Using port 7101 ***
    <Jul 7, 2013 5:01:48 PM EDT> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <Jul 7, 2013 5:01:52 PM EDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STANDBY>
    <Jul 7, 2013 5:01:52 PM EDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Jul 7, 2013 5:02:19 PM EDT> <Notice> <LoggingService> <BEA-320400> <The log file C:\Users\dslack\AppData\Roaming\JDeveloper\system11.1.1.6.38.62.29\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Jul 7, 2013 5:02:19 PM EDT> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to C:\Users\dslack\AppData\Roaming\JDeveloper\system11.1.1.6.38.62.29\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log00017. Log messages will continue to be logged in C:\Users\dslack\AppData\Roaming\JDeveloper\system11.1.1.6.38.62.29\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log.>
    <Jul 7, 2013 5:02:19 PM EDT> <Notice> <Log Management> <BEA-170027> <The Server has established connection with the Domain level Diagnostic Service successfully.>
    <Jul 7, 2013 5:02:19 PM EDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN>
    <Jul 7, 2013 5:02:19 PM EDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RESUMING>
    <Jul 7, 2013 5:02:19 PM EDT> <Notice> <Server> <BEA-002613> <Channel "Default" is now listening on 127.0.0.1:7101 for protocols iiop, t3, ldap, snmp, http.>
    <Jul 7, 2013 5:02:19 PM EDT> <Notice> <WebLogicServer> <BEA-000331> <Started WebLogic Admin Server "DefaultServer" for domain "DefaultDomain" running in Development Mode>
    <Jul 7, 2013 5:02:19 PM EDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RUNNING>
    <Jul 7, 2013 5:02:19 PM EDT> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>
    Regards - Dylan

    Hi dslack,
    Please delete the default domain from the following path. Close Jdev before deleting and restart , it will create a new domain.
    C:\Users\dslack\AppData\Roaming\JDeveloper\system11.1.1.6.38.62.29\DefaultDomain
    Thanks
    Sandeep

Maybe you are looking for