Page Accessibility

Hi,
I have a set up a page to be viewed by members of a specific group. I don't want it to be accessible to anyone outside of the group unless they are a content publisher or portal administrator.
However I am finding that as a non-privileged user, I still have access to the page and can see its content.
On the Access Tab for the Properties of the page, I have set
Specify access Settings
Enable Item Level Security
The name of the group to have View privileges.
The portal still lets me see both the link to the page and the contents of the page when I don't meet any of the criteria specified above.
I don't want to have to apply item level security to every item on the page.
In a portlet we use to provide dropdown menus for access to pages, the portlet sees the security restriction and does not include the link to the page, but if the user knows something about Oracle Portal, it is possible for him to get to the navigator, find the page, and the navigator even presents an Edit Action choice for the page. Fortunately, when the edit page is opened the user cannot change anything.
The only thing that keeps a user from the page is not being a logged in/ authenticated user.
Is there anything else that needs to be done? Is there something wrong possibly with how the portal is configured?
Thanks in advance,
Peter

Candace,
Thanks, but I already checked these issues and just rechecked to make sure. The check box for Display Page to Public Users is off on the page and in the template, the radio button for specifying access settings is set so the inherit settings from the template is off, and I opened a new browser session instead of creating another window of the same one. The portal shows the new session as belonging to the non-privileged user.
I have looked at other entries in the forum and it appears that similar problems have occurred in past versions of the portal, so I was hoping that someone might have overcome this issue previously. We have entered a TAR with Oracle, but we were hoping to find a more useful response than the "apply the latest patches and see if it is still broken", which we have been getting lately on other issues. We have and it is.
Thanks again,
Peter

Similar Messages

  • Page Access Protection -Arguments Must Have checksum question

    If we want to call popup page that is defined as "Page Access Protection -Arguments Must Have checksum", then HTMLDB_UTIL.PREPARE_URL has to be called for every used URL-OK!
    <br><br>
    This calculation is easy to perform in "OnLoad-Before region" process, where some hidden varible is assigned as:
    :P_HIDDEN_VAR_URL:= HTMLDB_UTIL.PREPARE_URL('*f?p=&APP_ID.:2:&APP_SESSION.::NO::P_PROCESS:1');<br>
    and later used in call:
    javascript:popupURL('&P_HIDDEN_VAR_URL.');<br>
    AFAIK, this approach has a limitation if popup links are placed in table grid. If in grid link is defined as:
    <*a href="*javascript:popupURL('*f?p=&APP_ID.:2:&APP_SESSION.::NO:RP,2:P_PROCESS:#ID#')">#SOME_FIELD#</a><br>
    then no "HTMLDB_UTIL.PREPARE_URL" cannot be used, because every value depend on each grid row (ID field).
    <br><br>
    So is there a solution in such a cases to call popup page that have mentioned type of page access protection?
    <br>
    THX!

    See results below for call to prepare_url in SQL*Plus. It doesn't do anything, as you can see. The function can only generate a secure checksum (to be ultimately verified later within the application context) if it has some secret knowledge that is known only within the application context. So to expect it to work outside that context may be a requirement that conflicts with security aims.
    Is your requirement to use apex_mail.send from a job? Maybe you could generate the links with user-level checksums from within the application (for every possible user/argument value combination) and save them off in a table for retrieval by the mailer program. Just a thought.
    SQL> select apex_util.prepare_url('f?p=211:2:5103232296113234:x') from dual;
    APEX_UTIL.PREPARE_URL('F?P=211:2:5103232296113234:X')
    f?p=211:2:5103232296113234:x::::
    SQL> select apex_util.prepare_url('f?p=211:2:5103232296113234:x','3') from dual;
    APEX_UTIL.PREPARE_URL('F?P=211:2:5103232296113234:X','3')
    f?p=211:2:5103232296113234:x::::
    SQL> select apex_util.prepare_url('f?p=211:2:5103232296113234:x','2') from dual;
    APEX_UTIL.PREPARE_URL('F?P=211:2:5103232296113234:X','2')
    f?p=211:2:5103232296113234:x::::
    SQL> select apex_util.prepare_url('f?p=211:2:5103232296113234:x','1') from dual;
    APEX_UTIL.PREPARE_URL('F?P=211:2:5103232296113234:X','1')
    f?p=211:2:5103232296113234:x::::
    SQL>
    Scott

  • JSP page access regular Java class

    I am new to JSP. But most of the time people say JSP page access Java Bean classes.
    I want to know what if I want to access regular Java classes?? Should I do like this
    in the code:
    <%
         NormalJavaClass cl = new NormalJavaClass();
         cl.process();
    %>
    <%-- JSP page access Java Bean -- %>
    <jsp:useBean scope="session" id="formDataBeanObj" class="formdatatest.FormDataBean"/>
    <jsp:setProperty name="formDataBeanObj" property="*"/>
    <HTML>
    <HEAD>
    <TITLE>page1.jsp</TITLE>
    <BODY>
    <FORM METHOD="POST" ACTION="page2.jsp">
         <H2>User Name = <jsp:getProperty name="formDataBeanObj" property="username"/></H2>
    <%
         NormalJavaClass cl = new NormalJavaClass();
         cl.process();
    %>
    <P><INPUT TYPE="SUBMIT" VALUE="submit here">
    </FORM>
    </BODY>
    </HTML>
    Please advise. Thanks!!

    Yes, you can instantiate and reference any class visible to the Java runtime from within a JSP just as you can in an "ordinary" Java class. Behind the scenes, a JSP is converted into Java source code for a servlet class, and then compiled into the .class file. When you insert code into JSPs using either taglibs or code delimiters (<% %>, <%= %>), the JSP/servlet "engine" inserts this code into the servlet source code verbatim, and all non-Java text from the JSP is inserted into the source code inside of JspWriter.write(xxx) statements.
    If you'd like to see the source code that your JSP is converted into, run your JSP in Tomcat and look in the "work" folder within the Tomcat folder after you access it the first time. Experiment around with the JSP and see how code within the <% %> and <%= %> blocks is inserted into the .java file.

  • OA Page access without attaching to any responsibility

    All,
    I have developed a page where employees can select the gift items. But this selection is possible only on their anniversary day. The page access link should not be available at any time.
    So the plan is to send the page access link to them by email on their anniversary date.
    The problem is, if I didnt attach this page function to any responsibility, the users will not able to access the page from the email link. (Insufficient privileges)
    Is there any way to achieve dis without attaching to any responsibility. Or after attaching to responsibility, is thr any way to hide the link for the user when thy login into APPS?
    thr r few workarounds like, give access to all, and on pageLoad check for their anniversary date and then allow if applicable..
    Lemme know if there is any way to achieve that before going for the abv mentioned workaround..
    - Senthil

    Hi,
    You want to develop a custom OAF page which can be accessed without login, You can develop using Anonymous or Guest Login implementation. If you want more details please give me your mail id i will send you the document about that.
    Mukul/Tapash,
    What i have told is about Anonymous or Guest Logins, i think i have discussed about this earlier.
    Page Supports Anonymous or Guest Logins :
    If you have a Guest user page to display that does not require a user to log in, then you should secure your page with a GUEST user permission. You should also have a explicit grant/function/responsibility assigned to the GUEST user. Note: GUEST is a special seeded user in the Oracle Applications Users form.
    In our example, the Benefits Registration Page is an example of a Guest user page. To create a Guest user page:
    Step 1: Set the Security Mode property of your page to Self secured.
    Step 2: Implement the validateParameters() method in your controllers to protect the integrity of the URL.
    Tip: Note that the above two steps are required because your page should exist outside a user's session, and is therefore "bookmarkable". You can find more information on how to set up bookmarkable pages in the Accelerated Validation topic.
    Step 3: Set a permission on the rendered attribute of your page layout region using a function security SPEL expression.
    So, in our example, let's create a permission called BENEFITS_GUEST, and set the expression ${oa.FunctionSecurity.BENEFITS_GUEST} on the Rendered property of the Benefits Registration Page. We will learn about how to associate this permission with a grant to the GUEST user in the subsequent steps.
    The OA Framework requires no authentication and authorization to run a page that is secured using a GUEST user-granted permission.
    Note: Although a GLOBAL-granted permission would seem logical to use, it actually is not appropriate in this case. All users except the GUEST user have access to pages that have a GLOBAL grant. In addition, GLOBAL users must first log in and be authenticated in order to access those globally-granted pages.
    Thanks.
    With Regards,
    Kali.
    OSSI.

  • Online login doesn't get rid of the page access (taken off from permlist)

    I have located the user ID and all it's 4 ( Nav homepage, Procs profile, Primary, Row security ) permlists
    As I am taking off pages access from the Primary permlist or even on all the other 3 permlist, I am expecting for that page access to disappear as i login as that user.
    I am wondering if there is another step missing to remove pages access from a user ID.
    As i am new to PS security.
    Thanks

    Found that roles of that user have permlist attached to themself

  • I accidentally selected "do note allow" Pages access to my photos. Now I can't insert photos. Message says go to settings and select Privacy - but there is no such option in the Settings. Help!

    I accidentally selected "do note allow" Pages access to my photos. Now I can't insert photos. Message says go to settings and select Privacy - but there is no such option in the Settings. Help! I want to be able to insert images in documents I create in the Pages app.

    Ok - I figured it out myself as soon as I posted this question. I went to my IPad settings - not the Settings in the Pages app. Problem fixed.

  • Error on page Access is denied

    Hi
    I created a URL iView to an application that runs on a computer in my internal network
    and attached the iView to a page.
    When I enter that page I get the application user&password to fill out.
    After filling the user&password I get an error on page:
    line: 113
    char:  2
    error: access is denied
    url: http://colsms/nihulit_web/custom/login.asp
    The strange thing is that if I open the IView in a new window (through the menu) I will not get this error and will be able to enter the application.
    I am working on EP6 SP12.
    For any suggestions ....
    Nitsan

    Hi Nitsan,
    I don't know the details of your problem, but in the end, it is more than probable that this is a JS-problem where some JS is referring to some iFrame (inner or outer) which does not come from the same domain.
    If you have your asp application at hand, try to add some domain-relaxing code into the application and make sure that the portal and the application run within the same domain (for instance the portal under portal.colsms.com and the app under app.colsms.com).
    Hope it helps
    Detlev

  • How do I stop Google from processing my browser's page access errors?

    Whenever I have trouble accessing any web page, I get several "404 Not Found" errors in quick succession followed by a "414 Request-URI Too Large" error from Google. My most recent example of the final URL is :-
    <u></u><u>==
    http://google.com.au/cgi/errors.cgi?q=http%3A%2F%2Fwww%2Egoogle%2Ecom%2Eau%2Fcgi%2Ferrors%2Ecgi%3Fq%3Dhttp%253A%252F%252Fwww%2Egoogle%2Ecom%2Eau%252Fcgi%252Ferrors%2Ecgi%253Fq%253Dhttp%25253A%25252F%25252Fwww%2Egoogle%2Ecom%2Eau%25252Fcgi%25252Ferrors%2Ecgi%25253Fq%25253Dhttp%2525253A%2525252F%2525252Fwww%2Egoogle%2Ecom%2Eau%2525252Fcgi%2525252Ferrors%2Ecgi%2525253Fq%2525253Dhttp%252525253A%252525252F%252525252Fwww%2Egoogle%2Ecom%2Eau%252525252Fcgi%252525252Ferrors%2Ecgi%252525253Fq%252525253Dhttp%25252525253A%25252525252F%25252525252Fwww%2Egoogle%2Ecom%2Eau%25252525252Fcgi%25252525252Ferrors%2Ecgi%25252525253Fq%25252525253Dhttp%2525252525253A%2525252525252F%2525252525252Fwww%2Egoogle%2Ecom%2Eau%2525252525252Fcgi%2525252525252Ferrors%2Ecgi%2525252525253Fq%2525252525253Dhttp%252525252525253A%252525252525252F%252525252525252Fwww%2Ecopyright%2Eorg%2Eau%252525252525252Fspecialinterest%252525252525252FG051%2Epdf%25252525252526type%2525252525253D404%25252525252526ISN%2525252525253D82A457E6FEDA4185837C1D0EF1FB9512%25252525252526ccv%2525252525253D130%25252525252526cnid%2525252525253D867034%25252525252526cco%2525252525253DUS%25252525252526ct%2525252525253D7%252525252526type%25252525253D404%252525252526ISN%25252525253D82A457E6FEDA4185837C1D0EF1FB9512%252525252526ccv%25252525253D130%252525252526cnid%25252525253D867034%252525252526cco%25252525253DUS%252525252526ct%25252525253D7%2525252526type%252525253D404%2525252526ISN%252525253D82A457E6FEDA4185837C1D0EF1FB9512%2525252526ccv%252525253D130%2525252526cnid%252525253D867034%2525252526cco%252525253DUS%2525252526ct%252525253D7%25252526type%2525253D404%25252526ISN%2525253D82A457E6FEDA4185837C1D0EF1FB9512%25252526ccv%2525253D130%25252526cnid%2525253D867034%25252526cco%2525253DUS%25252526ct%2525253D7%252526type%25253D404%252526ISN%25253D82A457E6FEDA4185837C1D0EF1FB9512%252526ccv%25253D130%252526cnid%25253D867034%252526cco%25253DUS%252526ct%25253D7%2526type%253D404%2526ISN%253D82A457E6FEDA4185837C1D0EF1FB9512%2526ccv%253D130%2526cnid%253D867034%2526cco%253DUS%2526ct%253D7%26type%3D404%26ISN%3D82A457E6FEDA4185837C1D0EF1FB9512%26ccv%3D130%26cnid%3D867034%26cco%3DUS%26ct%3D7&type=404&ISN=82A457E6FEDA4185837C1D0EF1FB9512&ccv=130&cnid=867034&cco=US&ct=7
    </u><u></u>==
    I would like to be able to stop this from happening, and instead get a basic error message from my browser as I used to.
    The problem with Google's handling of the error generating multiple subsequent errors leading to an overflow makes it difficult to edit an incorrectly typed URL to make corrections, and for other errors it makes it difficult to determine what the original problem was, let alone fix it.
    == This happened ==
    A few times a week
    == I set up Windows 7, installed Firefox, and set Google as my default search provider

    I don't know if this helps much, but Address Book was basically the same application in a previous version of the Mac OS. Folks still seem to use the terms interchangably though. Similarly, Calendar used to be "iCal."
    I believe syncing contacts with Google or iCloud is an either/or proposition - you can't do both. When you sync with either, a copy is saved to your Mac for faster access (like a web browser's cache). I believe there's still an option to save contacts exclusively to your Mac (HD), but I don't think it's either preferred or occurs by default if you have an account such as Gmail/google or iCloud already set up.
    I've never played with preferences in Contacts (Address Book), but I do have both google and iCloud accounts associated with my Mac. Under System Preferences:Mail, Contacts & Calendars, you can specify what accounts do on your Mac. If you have multiple accounts set up, a list will appear on the left side. As you select each one, a list of check boxes appear to the right for each service you want to associate with that account. For example, I have an iCloud account for mail, calendars, contacts, and Safari (among others). I have a Gmail account for mail, although it gives me the option of using this account for calendars, etc. For Gmail, the only item I have checked is mail. It's never asked me if I wanted to sync my addresses with Google.
    I hope this helps... at least a little. If nothing else, I hope I've solved the "Address Book" mystery ;-)

  • Need help with iPad 2 web page access requiring Adobe Flash Player

    New to apple have iPad 2 WiFi and need to access web pages that utilize adobe flash player what are my options since adobe and apple are not friends

    There are options in the app store, which may or may not work.  iSwifter and puffin are two you may try.......

  • BT Yahoo Home Page access

    Now that the Bt Yahoo login has now changed to BT.com I have lost access to my old BT Yahoo home page.
    This was a useful home page which was customisable with feeds etc.
    Now it just re-directs to the BT.com portal home page instead.
    Is there any way I can still get back to my old home page as I had a lot of useful stuff on there.
    Yesterday I could log in via Yahoo but today that's been redirected too.
    Does this mean that all BT Yahoo people will be booted off Yahoo completely...?

    Use
    Access your old Yahoo Notepad - e-mail and calendar
    Some Yahoo stuff will be moved across, the rest will be deleted.
    If you still want Yahoo, they you will have to create a new Yahoo normal account.
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • JSF 2.0 page navigation vs direct page access

    I've been experimenting with JSF for some time now and I still don't understand the page navigation part. I know that in JSF, if you aren't using the redirect option in navigation that the URL is one page behind the page you are on.
    I've seen articles where people say you should put your pages in a directory under WEB-INF to protect against directly accessing the page. I don't understand how you can create an application that is multiple pages using that option, because won't you run into the problem of having a form with an action URL of WEB-INF/somepage.xhtml?
    I've also read articles that say the way to fix this is to add security-constraints to web.xml that prevent "direct access" to pages, when you want your user to follow a page flow, such as start on page1.xhtml, then page2.xthml, then end on page2.xhtml. If page3.xhtml depends on page2.xhtml, the articles I've read say that a security constraint prevents users from simply requesting page3.xhtml out of sequence.
    And what happens if the page you are on encounters an error or the session times out, which page handles that? The one you're on, or the one from before that forwarded you to the page you're on?
    In this example, should page2.xhtml and page3.xhtml go in the root of the webapps directory, or in a directory under WEB-INF?
    Webapps
      index.xhtml
      page1.xhtml
      page2.xhtml
      page3.xhtml
      WEB-INF
        faces-config.xml
        web.xml
        page-directory
          page2.xhtml
          page3.xhtml

    A session timeout should actually net a view expiry exception.
    You do know that JSF 2.0 made page navigation that bit easier by not requiring you to do the XML configuration? There is now a convention built in plus some new components to add GET enabled requests to the JSF lifecycle (notably h:button and h:link). If you have an action method that returns the following:
    public String doSomething(){
      return "something";
    }then JSF will by default want to render a view 'something.xhtml' when you don't define any navigation rules. If you want to make that a redirect you can do this:
    public String doSomething(){
      return "something?faces-redirect";
    }(of course this is a prime target to turn into a utility method on a backing bean base class).
    Navigation rules are still necessary when you want to put views in a subdirectory, but at least this way you can greatly simplify general cases. Other than that I can only say: research research research because this material is vital to understand if you want to be productive using the framework; navigation and the 6 JSF lifecycle phases are two items you should put on the top of your list to hammer out until you really get it. A good JSF book will help you immensely there. Balusc's blog is also a good source of deeper understanding:
    http://balusc.blogspot.com/
    Most of his articles are on JSF 1.2 but most of the information still applies.
    Oh and its no surprise that you're a bit confused - this framework is not easy to pick up especially when you don't know any other web frameworks. If you keep running into a wall you should consider checking out something else like Wicket or Play framework. It might just be that JSF simply isn't the tool for the job you're trying to do.

  • Page Access via IP Address

    Hi,
    Can anyone help. We have an Intranet site which we are going to allow access to a group of external users by allowing certain IP addresses through our firewall. There are some pages on our site that we don't want them to have access to. If I don't' display those pages to the public (ie our own staff) then only logged in users will be able to see them. This is not feasible as we have 10,000 plus staff and we don't have the resources to issue/maintain that many accounts.
    Does anyone know of a way of not allowing certain IP addresses to have access to a page or group of pages?

    Bill,
    Using IP address as a method of enforcing a security protocol is frankly a very dangerous thing to do. Simply because it is far to easy to spoof the appropriate header. It was for this reason that we specifically did not allow for this in the product. Our secured inside/outside model is based on the definition of a "unsecured" server which indicates to the Portal where the request was coming from. A white paper available on OTN discusses this topology.
    http://www.oracle.com/technology/products/ias/portal/pdf/PS_S745_273745_106-1_FIN_v2.pdf
    However in your case it sounds like you will be allowing the external users direct access to the Intranet. IP spoofing aside the issue you will run into is that a "Public" page does not implement any security checks (as you defined it as public) hence there is no check point in order to test the IP address. Security would only be implemented with authenticated pages (which you could implement globally using the AUTHENTICATED_USERS group). The use of the self registration feature may allow you to decrease the load by getting the users to create their own accounts for the page.
    One solution (again recommend not using simply the IP address) would be using an authententicating gateway (such as COREid Webgate) which could implement the appropriate policy and either block the URL or forward it accordingly. This solution would be transparent to the portal itself as the external requests would be blocked prior to hitting the application server.

  • XMII home page Accessing problem

    Hi,
    We tried to access the xmii server from another network outside of our LAN. we are able to access the XMII login URL. but after giving username and password it is going into goservice.jsp and showing error "Unable to load home page, java.lang.NullPointerException " and stopped.
    How to solve this problem?
    Regards,
    Senthil

    Hi,
    This is some additional information to my query.
    We went through the log. It is showing error in log as "Unable to read XSL document [http://<virtual IP address:port>/XMII/Stylesheets/IllumRowsetHTML.xsl]#".
    But if we give this xsl URL (http://<virtual IP address:port>/XMII/Stylesheets/IllumRowsetHTML.xsl) directly in browser outside LAN network, it is showing the xsl file.
    Regards,
    Senthil
    Edited by: senthil kumar on Nov 17, 2009 1:36 PM

  • Why a tab page show while I specified  tab page access??

    I want to restrict access to the tab to specific users.
    I edit grant access in tab,select Specify Access Settings and
    then select user that I want him to see. And I don't mark the
    check box, Display Tab To Public Users. But when I access this
    page like the user that doesn't have privilege to see this tab
    page, I can see this tab page. Am I do anything wrong? Or
    forget something? Pleaseeeeee help me.
    Thank you,
              Sirin

    hi sirin,
    i tested this with 9.0.4.1 and it works fine there.
    here is what i did.
    i granted user A view rights on the page the contains the tabs.
    then i edited the tab and explicitly set access settings for the tabs that i want user A have view rights. by default the tabs are inheriting the ACL information from the page. this means that you have to edit the access settings for every tab and change it from inheriting to explicit ACL definitions.
    after doing this user A could only see the tabs on this page where he has explicitly set the view permission.
    regards,
    christian

  • Can anyone please help with this problem... (home page access)

    read other articles and here is some data for your to go over.
    =====================================================================
    SQL*Plus: Release 10.2.0.1.0 - Production on Tue Nov 28 09:37:18 2006
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    SQL> connect / as sysdba
    ERROR:
    ORA-12631: Username retrieval failed
    SQL>
    ==================
    C:\>lsnrctl status
    LSNRCTL for 32-bit Windows: Version 10.2.0.1.0 - Production on 28-NOV-2006 08:19
    :39
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC_FOR_XE)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for 32-bit Windows: Version 10.2.0.1.0 - Produ
    ction
    Start Date 27-NOV-2006 16:14:11
    Uptime 0 days 16 hr. 5 min. 27 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Default Service XE
    Listener Parameter File C:\oraclexe\app\oracle\product\10.2.0\server\network\a
    dmin\listener.ora
    Listener Log File C:\oraclexe\app\oracle\product\10.2.0\server\network\l
    og\listener.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC_FOR_XEipc)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=jantar)(PORT=15
    21)))
    Services Summary...
    Service "CLRExtProc" has 1 instance(s).
    Instance "CLRExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully
    Also netstat does not show anything running on port 8080.
    ============================================
    C:\Documents and Settings\N0139838>net start
    These Windows 2000 services are started:
    Alerter
    COM+ Event System
    Computer Browser
    DHCP Client
    Diskeeper
    Distributed Link Tracking Client
    Distributed Transaction Coordinator
    DNS Client
    EPAService
    Event Log
    Infrared Monitor
    Logical Disk Manager
    Machine Debug Manager
    Messenger
    Net Logon
    Network Connections
    OracleServiceXE
    OracleXETNSListener
    Plug and Play
    Print Spooler
    Protected Storage
    Remote Access Connection Manager
    Remote Procedure Call (RPC)
    Remote Registry Service
    Removable Storage
    RunAs Service
    SafeBoot Configuration Manager
    SavRoam
    Security Accounts Manager
    Server
    SMS Agent Host
    SMS Remote Control Agent
    SU Service
    Symantec AntiVirus
    Symantec AntiVirus Definition Watcher
    Symantec Event Manager
    Symantec Settings Manager
    System Event Notification
    Task Scheduler
    TCP/IP NetBIOS Helper Service
    Telephony
    Windows Management Instrumentation
    Windows Management Instrumentation Driver Extensions
    Windows Time
    WMDM PMSP Service
    Workstation
    The command completed successfully.
    ===========================================
    Ping 127.0.0.1 or localhost is successfull.
    ===============================================
    C:\Documents and Settings\N0139838>netstat -a
    Nothing is running on port 8080.

    Hi,
    Have you install Oracle XE as an Administrator or member of Administrators group?
    Have you ever started the Oracle home page?
    Do you have any other Oracle installation?
    What kind of OS do you use? I can see Windows 2000.
    Those two services OracleServiceXE and OracleXETNSListener are enough to run XE.
    You could check by the Task Manager:
    - OracleServiceXE should be about 50K
    - OracleXETNSListener – 6K
    Turn those services to Manual. Restart the computer and Start Oracle database.
    You can check the LISTENER.ORA. Host should be your host name. Same into TNSNAMES.ORA. If the HOST = YourComputerName there are OK.
    Then you should check for any firewall. For instance, Zone Alarm could prevent to access your database.
    I hope that would help.
    Konstantin

  • JSF Page Access Denied for Jdeveloper 12 C

    I had using J developer 12 C and Created one JSF page with Displaying two tables on that page... The content not displaying it shows Access Denied.

    Is it related webcenter portal.I don't think so. If it is pure ADF problem.You can post this in jdeveloper forum too.
    Is there any security restriction on the table by adf security or some other security.
    In the table source code in empty text property it is mentioned as
    <af:table   emptyText="#{bindings.abcTable.viewable ? 'No data to display.' : *'Access Denied.'*}"

Maybe you are looking for

  • Notes app hangs and quits when I unpin a sticky note

    Hi, I had pinned 2 notes on the desktop. I deleted one of those from the main notes window. Later when I tried unpinning that note from the desktop the application hung and then closed. Now neither of the 2 notes can be unpinned, even though these ca

  • Logging to sqlplus

    Hi guys, I just installed Oracle 8i personal Edition so that I can practice PL/SQL. I have three system created accounts (INTERNAL, SYS AND SYSTEM)and their passwords. But when I connect to SQLPlus, it also asks me Host String alongwith userid and pa

  • Function keys

    just getting started on motion, first time i worked with it the function keys worked fine. next time i opened it, the only one that worked was F1. most of the other ones just beep and didn't do what they're supposed to do. i have the commands set for

  • What is the latest version of VLC for Mac OS X 10.4.11?

    I can't play FLV files in Quicktime so I wanted to get VLC for my Mac. I tried downloading a few but none of them were supported by my Mac? What version of VLC should I download? Thanks

  • My music shows up in the library but not in my playlist. When added to playlist it deletes itself.

    I add music to a playlist it shows a number at the top of songs but doesn't actually show the songs. Then you add a song, play that song and it deletes the whole playlist!