Pages not showing up in navigation

Hello,
I am having a problem where some of my pages that I add to the navigation model are not displaying in my application at run-time.
See below for source code. The allresources.jspx page is not displaying at run time and I don't know why.
My default-navigation-model.xml:
<?xml version="1.0" encoding="US-ASCII" ?>
<navigationDefinition description="Default Navigation"
id="default-navigation-model"
name="Default Navigation"
xmlns="http://xmlns.oracle.com/adf/rcs/catalog" visible="#{true}"
definitionFilter="">
<contents>
<customFolder id="pages"
factoryClass="oracle.webcenter.page.view.rc.PageServiceContextFactory"
visible="#{true}" insertFolderContents="true">
<attributes>
<attribute value="Page Hierarchy" attributeId="Title" isKey="false"/>
<attribute value="/adf/webcenter/pagegroup_qualifier.png"
attributeId="IconURI"/>
</attributes>
<parameters>
<parameter id="path">/oracle/webcenter/portalapp/pagehierarchy/pages.xml</parameter>
<parameter id="pageTemplate">/oracle/webcenter/portalapp/pagetemplates/pageTemplate_globe.jspx</parameter>
</parameters>
</customFolder>
<url visible="#{true}"
url="page://oracle/webcenter/portalapp/pages/allapplications.jspx"
factoryClass="oracle.webcenter.portalframework.sitestructure.rc.AdfPageResourceFactory"
id="allapplications">
<attributes>
<attribute isKey="false" value="Applications" attributeId="Title"/>
</attributes>
<contents>
<url visible="#{true}"
url="page://oracle/webcenter/portalapp/pages/IOLapp.jspx"
factoryClass="oracle.webcenter.portalframework.sitestructure.rc.AdfPageResourceFactory"
id="IOLapp">
<attributes>
<attribute isKey="false" value="International Online" attributeId="Title"/>
</attributes>
<parameters>
<parameter id="pageTemplate">/oracle/webcenter/portalapp/pagetemplates/applicationTemplate.jspx</parameter>
</parameters>
</url>
</contents>
</url>
<url visible="#{true}"
url="page://oracle/webcenter/portalapp/pages/allresources.jspx"
factoryClass="oracle.webcenter.portalframework.sitestructure.rc.AdfPageResourceFactory"
id="allresources">
<attributes>
<attribute isKey="false" value="Resources" attributeId="Title"/>
</attributes>
</url>
<url id="allcommunities"
url="page://oracle/webcenter/portalapp/pages/allcommunities.jspx"
visible="#{true}"
factoryClass="oracle.webcenter.portalframework.sitestructure.rc.AdfPageResourceFactory">
<attributes>
<attribute value="Communities" attributeId="Title" isKey="false"/>
</attributes>
<parameters>
<parameter id="pageTemplate">/oracle/webcenter/portalapp/pagetemplates/generalPageTemplate.jspx</parameter>
</parameters>
</url>
</contents>
<schema resourceBundle="oracle.adf.rc.attribute.nls.AttributeBundle">
<descriptor multivalue="false" shortLabelKey="TITLE.SHORT_PROMPT_KEY"
labelKey="TITLE.PROMPT_KEY" attributeId="Title"
searchable="true" endUserVisible="true"/>
<descriptor multivalue="false" shortLabelKey="ACCESS_KEY.SHORT_PROMPT_KEY"
labelKey="ACCESS_KEY.PROMPT_KEY" attributeId="AccessKey"
searchable="true" endUserVisible="true"/>
<descriptor multivalue="false" shortLabelKey="DESCRIPTION.SHORT_PROMPT_KEY"
labelKey="DESCRIPTION.PROMPT_KEY" attributeId="Description"
searchable="true" endUserVisible="true"/>
<descriptor multivalue="false" shortLabelKey="ICON_URI.SHORT_PROMPT_KEY"
labelKey="ICON_URI.PROMPT_KEY" attributeId="IconURI"
searchable="true" endUserVisible="true"/>
<descriptor multivalue="true" shortLabelKey="SUBJECT.SHORT_PROMPT_KEY"
labelKey="SUBJECT.PROMPT_KEY" attributeId="Subject"
searchable="true" endUserVisible="true"/>
<descriptor multivalue="false"
shortLabelKey="REDIRECT_FLAG.SHORT_PROMPT_KEY"
labelKey="REDIRECT_FLAG.PROMPT_KEY" attributeId="Redirect"
searchable="true" endUserVisible="true"/>
<descriptor multivalue="false" shortLabelKey="TARGET_FRAME.SHORT_PROMPT_KEY"
labelKey="TARGET_FRAME.PROMPT_KEY" attributeId="Target"
searchable="true" endUserVisible="true"/>
<descriptor multivalue="false" shortLabelKey="TOOL_TIP.SHORT_PROMPT_KEY"
labelKey="TOOL_TIP.PROMPT_KEY" attributeId="ToolTip"
searchable="true" endUserVisible="true"/>
<descriptor multivalue="false" shortLabelKey="MODIFIED.SHORT_PROMPT_KEY"
labelKey="MODIFIED.PROMPT_KEY" attributeId="Modified"
searchable="true" endUserVisible="true"/>
<descriptor multivalue="false"
shortLabelKey="CHANGE_FREQUENCY.SHORT_PROMPT_KEY"
labelKey="CHANGE_FREQUENCY.PROMPT_KEY"
attributeId="ChangeFrequency" searchable="true"
endUserVisible="true"/>
<descriptor multivalue="false" shortLabelKey="SIGNIFICANCE.SHORT_PROMPT_KEY"
labelKey="SIGNIFICANCE.PROMPT_KEY" attributeId="Significance"
searchable="true" endUserVisible="true"/>
<descriptor multivalue="false" shortLabelKey="EXTERNAL_ID"
labelKey="EXTERNAL_ID" attributeId="ExternalId"
searchable="true" endUserVisible="true"
resourceBundle="oracle.webcenter.navigationeditor.view.resource.NavigationEditorBundle"/>
</schema>
</navigationDefinition>

I am in JDeveloper 11.1.1.5
Here is my re-formatted code
<?xml version="1.0" encoding="US-ASCII" ?>
<navigationDefinition description="Default Navigation"
id="default-navigation-model"
name="Default Navigation"
xmlns="http://xmlns.oracle.com/adf/rcs/catalog" visible="#{true}"
definitionFilter="">
<contents>
<customFolder id="pages"
factoryClass="oracle.webcenter.page.view.rc.PageServiceContextFactory"
visible="#{true}" insertFolderContents="true">
<attributes>
<attribute value="Page Hierarchy" attributeId="Title" isKey="false"/>
<attribute value="/adf/webcenter/pagegroup_qualifier.png"
attributeId="IconURI"/>
</attributes>
<parameters>
<parameter id="path">/oracle/webcenter/portalapp/pagehierarchy/pages.xml</parameter>
<parameter id="pageTemplate">/oracle/webcenter/portalapp/pagetemplates/pageTemplate_globe.jspx</parameter>
</parameters>
</customFolder>
<url visible="#{true}"
url="page://oracle/webcenter/portalapp/pages/allapplications.jspx"
factoryClass="oracle.webcenter.portalframework.sitestructure.rc.AdfPageResourceFactory"
id="allapplications">
<attributes>
<attribute isKey="false" value="Applications" attributeId="Title"/>
</attributes>
<contents>
<url visible="#{true}"
url="page://oracle/webcenter/portalapp/pages/IOLapp.jspx"
factoryClass="oracle.webcenter.portalframework.sitestructure.rc.AdfPageResourceFactory"
id="IOLapp">
<attributes>
<attribute isKey="false" value="International Online" attributeId="Title"/>
</attributes>
<parameters>
<parameter id="pageTemplate">/oracle/webcenter/portalapp/pagetemplates/applicationTemplate.jspx</parameter>
</parameters>
</url>
</contents>
</url>
<url visible="#{true}"
url="page://oracle/webcenter/portalapp/pages/allresources.jspx"
factoryClass="oracle.webcenter.portalframework.sitestructure.rc.AdfPageResourceFactory"
id="allresources">
<attributes>
<attribute isKey="false" value="Resources" attributeId="Title"/>
</attributes>
</url>
<url id="allcommunities"
url="page://oracle/webcenter/portalapp/pages/allcommunities.jspx"
visible="#{true}"
factoryClass="oracle.webcenter.portalframework.sitestructure.rc.AdfPageResourceFactory">
<attributes>
<attribute value="Communities" attributeId="Title" isKey="false"/>
</attributes>
<parameters>
<parameter id="pageTemplate">/oracle/webcenter/portalapp/pagetemplates/generalPageTemplate.jspx</parameter>
</parameters>
</url>
</contents>
<schema resourceBundle="oracle.adf.rc.attribute.nls.AttributeBundle">
<descriptor multivalue="false" shortLabelKey="TITLE.SHORT_PROMPT_KEY"
labelKey="TITLE.PROMPT_KEY" attributeId="Title"
searchable="true" endUserVisible="true"/>
<descriptor multivalue="false" shortLabelKey="ACCESS_KEY.SHORT_PROMPT_KEY"
labelKey="ACCESS_KEY.PROMPT_KEY" attributeId="AccessKey"
searchable="true" endUserVisible="true"/>
<descriptor multivalue="false" shortLabelKey="DESCRIPTION.SHORT_PROMPT_KEY"
labelKey="DESCRIPTION.PROMPT_KEY" attributeId="Description"
searchable="true" endUserVisible="true"/>
<descriptor multivalue="false" shortLabelKey="ICON_URI.SHORT_PROMPT_KEY"
labelKey="ICON_URI.PROMPT_KEY" attributeId="IconURI"
searchable="true" endUserVisible="true"/>
<descriptor multivalue="true" shortLabelKey="SUBJECT.SHORT_PROMPT_KEY"
labelKey="SUBJECT.PROMPT_KEY" attributeId="Subject"
searchable="true" endUserVisible="true"/>
<descriptor multivalue="false"
shortLabelKey="REDIRECT_FLAG.SHORT_PROMPT_KEY"
labelKey="REDIRECT_FLAG.PROMPT_KEY" attributeId="Redirect"
searchable="true" endUserVisible="true"/>
<descriptor multivalue="false" shortLabelKey="TARGET_FRAME.SHORT_PROMPT_KEY"
labelKey="TARGET_FRAME.PROMPT_KEY" attributeId="Target"
searchable="true" endUserVisible="true"/>
<descriptor multivalue="false" shortLabelKey="TOOL_TIP.SHORT_PROMPT_KEY"
labelKey="TOOL_TIP.PROMPT_KEY" attributeId="ToolTip"
searchable="true" endUserVisible="true"/>
<descriptor multivalue="false" shortLabelKey="MODIFIED.SHORT_PROMPT_KEY"
labelKey="MODIFIED.PROMPT_KEY" attributeId="Modified"
searchable="true" endUserVisible="true"/>
<descriptor multivalue="false"
shortLabelKey="CHANGE_FREQUENCY.SHORT_PROMPT_KEY"
labelKey="CHANGE_FREQUENCY.PROMPT_KEY"
attributeId="ChangeFrequency" searchable="true"
endUserVisible="true"/>
<descriptor multivalue="false" shortLabelKey="SIGNIFICANCE.SHORT_PROMPT_KEY"
labelKey="SIGNIFICANCE.PROMPT_KEY" attributeId="Significance"
searchable="true" endUserVisible="true"/>
<descriptor multivalue="false" shortLabelKey="EXTERNAL_ID"
labelKey="EXTERNAL_ID" attributeId="ExternalId"
searchable="true" endUserVisible="true"
resourceBundle="oracle.webcenter.navigationeditor.view.resource.NavigationEditorBundle"/>
</schema>
</navigationDefinition>

Similar Messages

  • IWeb Main Page Not Showing

    I've researched to death and tried everything but can't fix this.
    Recently did a clean install on my iMac and since then iWeb won't work.
    I have :
    - Reinstalled from original disc then updated to latest version 3.0.4
    - Deleted the com.apple.iWeb.plist file and com.apple.iWeb Cache Folder, restarted, and tried opening again
    - I have removed my domain.sites2 file to try and open iWeb and initiate making a new site
    iWeb is fully loaded and operational - in Activity Monitor it does not have a red flag - shows as being operational. I can access iWeb's Preferences, open and close various Inspectors, but the main window is simply not visible.
    I am on Lion 10.7.2
    I had updated my website using iWeb while on Lion 10.7.1
    I have a small business and my website is outdated and will be losing me new customers at this point who will think I don't have the latest stock and information.
    Any help appreciated - naturally no need to reply if 'fixes' are as per other posts and noted as having been tried above.

    Where is the main page not showing?  In iWeb or online?
    In Lion the Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and hit the Enter button - 10.7: Un-hide the User Library folder.
    For opening your domain file in Lion or to switch between multiple domain files Cyclosaurus has provided us with the following script that you can make into an Applescript application with Script Editor. Open Script Editor, copy and paste the script below into Script Editor's window and save as an application.
    Just launch the application, find and select the domain file you want to open and it will open with iWeb. It modifies the iWeb preference file each time it's launched so one can switch between domain files.
    do shell script "/usr/bin/defaults write com.apple.iWeb iWebDefaultsDocumentPath -boolean no"delay 1
    tell application "iWeb" to activate
    You can download an already compiled version with this link: iWeb Switch Domain or from  Toad's Cellar.
    WARNING: iWeb Switch Domain will overwrite an existing Domain.sites2 file if you select to create a new domain in the same folder.  So rename your domain files once they've been created to something other than the default name.
    OT

  • MovieClips actions not showing in the navigator of Actions panel

    I'm using Mac and Flash CC
    MovieClips actions not showing in the navigator of Actions panel
    Steps i tried..
    1) new Symbol
    2) open actions panel
    3) input stop() in the actions
    4) symbol definitions not showing in the the actions navigator..
    i can add scripts for stage and can be selected from the actions panel..
    see screenshot..
    anyone has idea what matter with this issue? many thanks.!!!

    I can only speak for myself, but your explanation of what you did and whatever problem you are having is not clear to me.  The image doesn't appear to show anything as an issue.  What are you trying to do and what do you expect to see?

  • Getting error when having slideshow page not show in Navigation list

    Hi,
    I'm the web manager for a motorcycle club (Honda GoldWings) and people in the club love to send pictures for me to upload to the website. I've been doing that with HomePage for a few years now. The thing is they've never liked the albums showing up in the navigation list because it makes it so long.
    Now comes iWeb (yeah!) and one of the options is to now show certain pages in the navigation list. Ok, so I use iPhoto to create a slide show and publish it to iWeb. I then created an "About me" page and added the slideshow to that page. The slideshow works as long as the slideshow is in the navigation list. As soon as I take it out I get "page not found".

    OK, so the parts you're having problems with are the 'Ride to Canada' links on the Photo Albums page, right? What's happening is that the link is corrupted in each case. If you mouse over either of the hyperlinked images and hold your cursor there for a moment you'll see that the address which is displayed includes Chapter%2520WA-A. This should be Chapter%20WA-A (with %20 replacing the space in your page name). This is beginning to look like an iWeb bug. I've experienced something similar when attempting to link to an URL which already contains a special character, and have reported it to Apple.
    How did you link to Canada_Trip.html and CanadaTrip_inBlack.html? Did you use the Link Inspector and choose the relevant page from the 'One of My Pages' list? (I'm pretty sure this is what you did; just trying to narrow down where things might have gone wrong.)

  • Firefox does not show url in navigation toolbar while loading webpage (in new tab)

    Firefox 3.6 when opening a link in new tab the url does not show in navigation toolbar while loading the web page. All ypu see is "Type a Web Adress" until the page load.
    Before with my older version the URL was visible in navigation toolbar even before page started loading. How can I get this back?

    A couple of possible causes. First check for an incompatible add-on, for details of how to do that see the [[troubleshooting extensions and themes]] article.
    Another possible cause is a problem with the file that stores bookmarks. One of the symptoms is the URL not being updated in the Location Bar as you browse. For details on this see [http://kb.mozillazine.org/Locked_or_damaged_places.sqlite locked or damaged places.sqlite].

  • HELP, please! iWeb Album Pages not showing up at all

    My ftp uploaded pages are not showing up on either safari or firefox! I tried to fix the javascript via Wyodor's previous posts, but it's still not showing anything.
    http://www.lakewilde.com
    Thank you!

    Yay, that was it! Thanks Roddy, I appreciate it. Have a great day

  • Problems with page not showing up in Internet Explorer

    I uploaded my page. All was fine. Looked good in all
    browsers.
    home.gci.net/~larry-and-jackie/index.htm
    Now all of a sudden my index.htm page (also have default.htm
    page) shows up as a black screen only no pictures. No words.
    All of the sub pages show up fine if you add that to the
    address. Just the Index. is not showing up in Internet Explorer.
    Looks good in Firefox, Netscape and Safari.
    example home.gci.net/~larry-and-jackie/index3.htm
    Anybody have any suggestions?
    J Whedbee

    I'm seeing the entry page at:
    http://home.gci.net/~larry-and-jackie/
    with no problems.
    I'm also seeing
    http://home.gci.net/~larry-and-jackie/index.htm
    with no
    problems... pics, black background.
    http://home.gci.net/~larry-and-jackie/default.htm
    is just the same as
    index.htm
    http://home.gci.net/~larry-and-jackie/Index.htm
    (note the capital "I" )
    can't be seen .... no such file.
    Not sure why you would have an index.htm and a default.htm
    both really
    aren't needed.
    Have you tried clearing your browser cache?
    Nadia
    Adobe® Community Expert : Dreamweaver
    Tutorials |SEO |Templates
    http://www.DreamweaverResources.com
    http://www.perrelink.com.au
    CSS Tutorials for Dreamweaver
    http://www.adobe.com/devnet/dreamweaver/css.html
    "J L Whedbee" <[email protected]> wrote in
    message
    news:enccnu$n4t$[email protected]..
    >I uploaded my page. All was fine. Looked good in all
    browsers.
    >
    > home.gci.net/~larry-and-jackie/index.htm
    >
    > Now all of a sudden my index.htm page (also have
    default.htm page) shows
    > up as
    > a black screen only no pictures. No words.
    >
    > All of the sub pages show up fine if you add that to the
    address. Just the
    > Index. is not showing up in Internet Explorer.
    > Looks good in Firefox, Netscape and Safari.
    >
    > example home.gci.net/~larry-and-jackie/index3.htm
    >
    > Anybody have any suggestions?
    >
    > J Whedbee
    >
    >
    >

  • Page not found error when  navigating in Iview  application

    Hi,
    I have developed an application,and I am able to view a sucessfull preview of the Page as well.There are htmlb links on the page.When clicked,they navigate to the next jsp page.This iview was assigned to a user,and the portal was logged in though a local ip address.The application works fine.
    In trying to access the portal though an external Url,the initial page comes up perfectly fine.However the next page,does not come up,when a link on the first page is clicked.I get initially a popup with the message:
    "This page contains both Secure and Non secure Items
    .Do you want to display the non secure Items."
    The options on the Popup were yes,no,More Info.
    When I clicked yes then I get the display page not found error.The error is:
    " <b>The page cannot be found
    The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.</b> "
    The Information I get when I click on More Info is-
    <b>Downloading non-secure content from a secure Web site
    The Web site you are viewing is a secure site. It uses a security protocol such as SSL (Secure Sockets Layer) or PCT (Private Communications Technology) to secure the information you send and receive.
    When sites use a security protocol, information that you provide, such as your name or credit-card number, is encrypted so that other people can’t read it. However, this Web page also contains items that do not use this secure protocol.
    Given what you know about this Web site and your computer, you must decide whether to continue working with this site.
    If you do not feel confident about working with this site, click No.</b> "
    This problem occurs only to a particular user.If I add the role to another user,and view the iview I am able to navigate without problem(there is no popup as well).Even for this User,it is happening only when,I access through extrenal url,not when I access the portal through the local IP Address.
    Regards,
    Harish

    Hi,
    This is a further Update.The problem described above has  something to do with the roles.When some roles(cusom) are assigned the navigation occurs.Can you please let me know if there is any role related configuration with SSL.
    Regards,
    Harish

  • Pages not showing up in web search

    I am a newbie to DW 8 (I am a photographer).
    Like everyone, I would love to find my pages in a web search
    with google or yahoo, but they are not showing up.
    Here is an example of the info (from the web page) for one of
    my pages (classes I teach):
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
    Transitional//EN"
    http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1">
    <title>Digital photography classes with Richard
    Sjolund</title>
    <link href="file:///Scanner-1/Dream Program and
    sites/ws2.css" rel="stylesheet" type="text/css">
    <style type="text/css">
    <!--
    .style1 {color: #FF0000}
    .style2 {color: #0000FF}
    .style3 {
    color: #000066;
    font-weight: bold;
    the title is correct- anad what I want. But, if I search on
    that title information - I find nothing.
    Is the information better off in something other than the
    page title?
    Here is the web site:
    http://www.naturephotostudio.com
    many thanks.
    Dick

    How long has the site been up? If you search for this
    Photography Shows
    Richard Sjolund it comes up first in google.
    Search for this Richard Sjolund was born in the Upper
    Peninsula of Michigan
    and it comes up as duplicate content an other website
    http://www.artsiowacity.com/artist/RSjolund/rsjolund.htm
    so could be a
    problem from the search engines point of view. Hard to say
    looks like a lot
    of competition in this field.
    Dave
    "DickSj" <[email protected]> wrote in
    message
    news:e79puk$c7m$[email protected]..
    > I am a newbie to DW 8 (I am a photographer).
    >
    > Like everyone, I would love to find my pages in a web
    search with google
    or
    > yahoo, but they are not showing up.
    >
    > Here is an example of the info (from the web page) for
    one of my pages
    > (classes I teach):
    >
    > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
    Transitional//EN"
    > "
    http://www.w3.org/TR/html4/loose.dtd">
    > <html>
    > <head>
    > <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1">
    > <title>Digital photography classes with Richard
    Sjolund</title>
    > <link href="file:///Scanner-1/Dream Program and
    sites/ws2.css"
    > rel="stylesheet" type="text/css">
    > <style type="text/css">
    > <!--
    > .style1 {color: #FF0000}
    > .style2 {color: #0000FF}
    > .style3 {
    > color: #000066;
    > font-weight: bold;
    >
    > the title is correct- anad what I want. But, if I search
    on that title
    > information - I find nothing.
    >
    > Is the information better off in something other than
    the page title?
    >
    > Here is the web site:
    >
    >
    http://www.naturephotostudio.com
    >
    > many thanks.
    >
    > Dick
    >

  • Some Photo Pages not showing no  matter the browser

    I'm using iWeb '08 and have 2 separate sites. I noticed last night that, only on one of the sites, the photo pages are not showing the photos. Yet, on the other site, the photo pages are fine. It's really weird.
    Anybody have any thoughts?
    BTW, I tried to view them in both Safari and FF.
    Thanks!

    Are those 3 pages constructed like the other with photos placed on the page rather than a photos page with a slideshow? Those three pages don't show the photos being uploaded. They are not listed as missing, just not included on the page (go to Window->Activity menu option). In the sites that do display correctly the photos are listed as shapeimage_3.png or something like that.
    You might try republishing the entire site to see if that will jump start those three pages.

  • Iweb web page not showing full page on the web

    I have a web site that I build using iweb. I have installed intense debate for a commenting system. I have two problems. My comments are not showing up even after i approve them even though i chose to not monitor comments and when you view the page most of the comment box is missing. I have changed the height and width of the page, changed the height and width of the age layout in iweb, nothing seems to help. I have contacted there support team but they just keep saying the same things. Apparently i need to do this to get the commenting system working "looks like you don't have any JavaScript variables set. You'll need to set some postid's and URLs." That is copied directly from the email they sent me. I don't know what any of that means...And please don't say read the tutorial they offer because i cant fallow that either. This is the address of the website please look at it and tell me what you see. http://www.siobhanbyron.com/SiobhanByron/The_Outlying/TheOutlying.html

    I did. I clicked the link you left and it brought me to another discussion similar to this one and then i clicked on the link that was within that conversation (http://home.cyclosaurus.com/CyclosaurusBlog/Entries/2011/2/12Dynamically_ResizeiFrame.html) and it brought me to here (http://home.cyclosaurus.com/CyclosaurusBlog/Entries/2011/2/12Dynamically_ResizeiFrame.html) here, your blog. Which is an excellent example of what i a trying to do. I will instead try to add the code that you had already placed in the prior conversation. I wasn't sure if the code you were speaking of was in your blog or in the actual conversation...ill try that

  • OHS 11gR1 web-page not showing up after creation, registration of webgate

    Hello there,
    The OHS webpage on host:7777 is not showing up after I created, registered the webgate on oam 11g console. I copied the 2 artifacts into the ohs proxy server box in the webgate/config folder and restarted OHS instance but now, the ohs page won't show up. The opmn status says its alive but it doesnt show up in the browser.
    I have oam 11.1.2 installed with webgate 11.1.2 and ohs webtier 11.1.1.6.0. Am I missing any step? Do I need to create a authentication scheme before I check it? Please advise to the earliest convenience.
    Thanks!!

    Hi,
    You need to create authentication scheme. also create resourse for index.html page in OAM console and add it to protected resourse list. So when you will access OHS with 7777 port it will redirect to OAM SSO page, after successful login it will take you to the home page of OHS.
    mark, if this helps.
    Regards,
    Kishore

  • Web pages not showing up correctly

    I performed a typical daily update to my website last night, and when I reviewed it online, the typical links do NOT shot up. They are often words that are linked to news sites. These 'hot' words do not show up now…only bluish rectangular boxes with blue question marks in them. When the page loads, it seems to NOT load most of the links. Some links still do show up and it seems that all of them work if clicked on. Any ideas?
    For reference: www.njnaturenotes.com
    This might help if others see what I am seeing.

    Rich:
    Just visited your site and everything looks as it should. There are not blue boxes and the counter is displaying all 5 digits. Clear your browser's cache and reload the page. See if that will help.
    OT

  • "Pages" not showing in list of purchased apps on iPad

    My wife bought "Pages" for her laptop - i want to download it on her iPad, too, but it's not showing on the list of her "purchased" apps. Where do i find her purchase of "Pages" on the iPad?

    Pages for iOS and Pages for OS X are two different programs, two separate purchases.
    Pages for the iPad is sold in the iTunes App Store.
    Jerry

  • APS metrics page not showing all CPU's

    I have installed BO 4.0 SP02 patch 11. I have seperated the CR
    Scheduling service as a seperate job server form AJS.
    My CR jobs are running fine however, I have 8 CPU on that machine but
    in matrics page of Job server, it is showing
    only 4 CPU. Why it is not showing all the 8 CPU?
    does it mean that its limited to work for 4 CPU only.

    Hi Atul,
    Would it be possible that you have in fact 4 CPUs which are all dual cores?
    So it's like you have 8 CPUs but in reality it's only 4 CPUs?
    Regards,
    Philippe

Maybe you are looking for

  • Calculating opening and closing stocks at a plant (on specific dates)

    Hi, I am to develop an ABAP-report. On the selection screen, I'll have plant, material, and a date range (date_1 and date_2). The report should show opening stock on date_1, closing stock on date_2, and then there is more segregation based on movemen

  • Font embedding and font fallback

    I am attemping to use Myriad Pro as an embedded font in my Flex application. Unfortunately, this application must support international input and Myriad Pro does not have the necessary glyphs to display, e.g. Japanese. Text using glyphs not in the fo

  • Powermac G4 spontaneous startup

    Hi to all on the forums! My G4 800 Quicksilver has developed a problem following shutdown, after about 15 minutes, the machine starts up spontaneously. This has happened a handful of times in the last months. Most recently, the spontantous startup le

  • Adobe X repair question

    should i repair adobe X through adobe reader or through Windows control panel?  When I start the repair through adobe reader,  I get a prompt once complete to restart my computer but I do not get a prompt to restart if I repair through control panel.

  • Send PDF file directly to printer

    Hi, I have a requirement. I need to send a PDF file to a printer directly for printing. Printer name will be fetched dynamically based on a parameter of report. Please let me know how can we do it. Regards, Guddan