Site Structure review

Hi guys, i'm working on a site, using tables with css, still
working on design issues, but at this point am interested in
comments regarding the structure of the site. I do have nested
tables, which depending on the source seems like this can be ok, as
long as it doens't go to far, however i do have one colspan, not
sure if this is serious enough for me to get rid of.
any comments appreciated.
thanks, mike
http://www.connectedelements.com/fish3/index.htm

Hi Mike,
The site breaks badly in Firefox. I suspect it's the colspan
and table height mix.
Table height is invalid HTML and you should get rid of those.
Let the image's dimensions and your other content control
that for you.
Rather than have the horizontal part of the image across the
top take up 3 table cells, one of which is merged, why not put one
larger image in a single <td>?
Essentially, you could have one "big" table that is 1 column
with 3 rows.
In the first row, your big horizontal image.
In the second row, nest a table inside with two columns. The
left column for your navigation and the right column for the
content text.
The 3rd row could be the footer.
If you need to make the height of the middle row taller but
don't have enough content, you have a few options.
You can add a bottom margin to the last element in the column
to push the bottom of the table down, or, make the nested table 3
columns instead of 2 and use the third column to insert a
transparent gif image as a spacer. Make it 1 px wide by "x" pixels
tall.
One other thing you might want to change. You have a CSS
class named .body.
It's not a good idea to use id's and classes with the same
name as html tags.
You could call the big table .container, for example.
Hope that helps.
Tim

Similar Messages

  • Building the site structure for a dynamic website with JSF

    Hi,
    I am still a JSF-beginner.
    I try to build a fully-functional base-demo-application with a fix and a dynamic part.
    Fix part for menu, dynamic part for site-content.
    At the moment, the JSF-hyperlinks of the main menu work, but any JSF-parts in the included documents of the dynamic part are not shown. I guess, this is dued to inclusion of subviews, but I cannot find any similar examples in the web to come one step further.
    Here my complete demo:
    faces-config.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE faces-config PUBLIC "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.0//EN"
    "http://java.sun.com/dtd/web-facesconfig_1_0.dtd">
    <faces-config xmlns="http://java.sun.com/JSF/Configuration">
    <navigation-rule>
    <from-view-id>*</from-view-id>
    <navigation-case>
    <from-outcome>site1</from-outcome>
    <to-view-id>/site1.jsp</to-view-id>
    <redirect>
    </redirect>
    </navigation-case>
    </navigation-rule>
    <navigation-rule>
    <from-view-id>*</from-view-id>
    <navigation-case>
    <from-outcome>site2</from-outcome>
    <to-view-id>/site2.jsp</to-view-id>
    <redirect>
    </redirect>
    </navigation-case>
    </navigation-rule>
    </faces-config>
    web.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
    http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <context-param>
    <param-name>com.sun.faces.verifyObjects</param-name>
    <param-value>false</param-value>
    </context-param>
    <context-param>
    <param-name>com.sun.faces.validateXml</param-name>
    <param-value>true</param-value>
    </context-param>
    <context-param>
    <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
    <param-value>client</param-value>
    </context-param>
    <servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>*.jsf</url-pattern>
    </servlet-mapping>
    <session-config>
    <session-timeout>
    30
    </session-timeout>
    </session-config>
    <welcome-file-list>
         <welcome-file>
    index.jsp
    </welcome-file>
    </welcome-file-list>
    </web-app>
    index.jsp:
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <% response.sendRedirect("/jsfportal/site1.jsf"); %>
    site1.jsp:
    <?xml version="1.0" encoding="UTF-8" ?>
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <% String site = "1"; %>
    <%@ include file="base.jsp" %>
    dynamic_site1.jsp:
    <h1>Welcome to site 1</h1>
    Have fun visiting our portal
    site2.jsp:
    <?xml version="1.0" encoding="UTF-8" ?>
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <% String site = "2"; %>
    <%@ include file="base.jsp" %>
    dynamic_site2.jsp:
    <h1>Welcome to site 2</h2>
    Go to site 1: *<!-- And this is the JSF-link that is NOT shown: -->*
    <f:view>
    <h:form>
    <h:panelGrid border="0" columns="0">
    <h:commandLink id="p1" action="site1" value="Site 1" />
    </h:panelGrid>
    </h:form>
    </f:view>
    base.jsp:
    <%@ page language="java" %>
    <%@ page import = "java.io.*" %>
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <%
    String title = "";
    int siteInteger = 0;
    String dynamic_site = "";
    if ( site != null )
    if (
    ( site.length ( ) > 0 )
    ( site.length ( ) <= 30 )
    if ( isNumeric ( site ) )
    siteInteger = Integer.valueOf ( site ).intValue ( );
    switch ( siteInteger )
    case 2: title = "Site 2";
    dynamic_site = "dynamic_site2.jsp";
    break;
    default:
    title = "Site 1";
    dynamic_site = "dynamic_site1.jsp"; // Start page
    %>
    <html xmlns="http://www.w3.org/1999/xhtml"
    lang="de" xml:lang="de">
    <head>
    <title>
    <%= title %>
    </title>
    <meta name="description" content="test site" />
    <meta name="keywords" content="test site" />
    </head>
    <body>
    <div width="100%" style="text-align:left">
    <table width="970" border="0" cellspacing="0" cellpadding="0" style="background-color:#ffffaa;margin-top:25px;">
    *<!-- this is not good style putting CSS directly into HTML but it is a demo now ;) -->*
    <colgroup>
    <col width="970" />
    </colgroup>
    <tr>
    <td valign="top" align="left" style="padding:25px;">
    +<h1>+
    JSF portal
    +</h1>+
    </td>
    </tr>
    </table>
    <table width="970" border="2" cellspacing="0" cellpadding="0" style="background-color:#f5f5f0">
    <colgroup>
    <col width="270" />
    <col width="700" />
    </colgroup>
    <tr>
    <td valign="top" align="left" style="padding:25px; padding-left:40px;padding-bottom:320px;">
    <f:view>
    <h:form>
    <h:panelGrid border="0" columns="0">
    <h:commandLink id="p1" action="site1" value="Site 1" />
    <h:commandLink id="p2" action="site2" value="Site 2" />
    </h:panelGrid>
    </h:form>
    </f:view>
    </td>
    <td valign="top" align="justify" class="haupttext" style="padding:24px;">
    <p align="justify">
    <f:subview id="subview1">
    <jsp:include page="<%= dynamic_site %>" flush="true">
    <jsp:param name="" value="" />
    </jsp:include>
    </f:subview>
    </p>
    </td>
    </tr>
    </table>
    </div>
    </body>
    </html>
    <%!
    public boolean isNumeric ( String myInput )
    if (myInput == null || myInput.length() < 1)
    return false;
    int start = 0;
    if (myInput.charAt(0) == '-')
    start = 1;
    for(int i = start; i < myInput.length(); i++)
    if (!Character.isDigit(myInput.charAt(i)))
    return false;
    return true;
    %>
    Who can name me that code positions responsible for that the JSF link in the dynamic part is not shown?
    It is not that it does not work it is not shown. The JSF tree seems to be cut because of wrong use of view and subview etc.
    (To put view tags in site1.jsp and site2.jsp does not help.)
    (Once having afforded an example it should go... (*Then* with JSTL, external CSS, etc. ;) )
    Dynamical site structure with include files is the big problem at the moment.)
    bye, Maik

    I found your following suggestions for such cases (seems you are the only profound JSF freak in the world...? :-) )
    Switch between subviews in one main page
    http://balusc.blogspot.com/2007/01/dynamic-jsf-subviews.html
    But the main problem for me is that I never find complete examples, but always fragments and it would be important for a beginner to have at least once a complete JSF example over a few subviews, especially here where it is very easy to corrupt the internal tree.
    (Some examples use the subview tags in the calling JSP, some in the called e.g.... Does not matter where to put it? Some use verbatim tags for HTML code outside JSF, some don't... and so on)
    Can anyone give me an URL for a complete example of a JSF site (with all files as possible, I am not very patient, too, but in this case it makes sense to have it entire ;-) ) with dynamic switches of subviews as preferentially used for bigger portal sites?

  • Search query not able to find node under a specific site structure (eg. 2013/05)?

    Hi,
        We are saving our data on a node under year/month site structure, eg. (2013/05/node1) but when we search for the data using a query in a custom workflow., it does not fetch any results.The query being fired is something like :
       SELECT * FROM [nt:base] AS s WHERE ISDESCENDANTNODE([/content/hm/NewsroomSection/en/NewsRoom/NewsroomDetails/2013/05/node1]) .
       On trying to run this query directly in crxde, it shows no result. But when we change the site structure to 2013/5/node1, it is able to fetch results.
       I am not sure if the problem is because of the '0' digit in the month in site structure (2013/05).
       Please provide your input if any of you have come across something like this before ..
    Thanks
    Abhishek

    Hi Abhishek,
    In case of nodes with numbers, any node starting with 0, this 0 gets omitted in the search query.
    So, if your node name is like 02013 for year, when it searches it omits 0 and searches for 2013.
    In case you want to search for your node, your SQL2 query should be like below:
    SELECT * FROM [nt:base] AS s WHERE ISDESCENDANTNODE(['/content/mysite/en/products/2013/05'])
    See screenshot for reference. This should return you the results.
    Hope this helps.
    I guess for more reference on SQL2 queries, you can refer to JCR 2.0 spec.
    http://www.day.com/specs/jcr/2.0/6_Query.html
    Also, you might want to look at the railroad diagrams and some examples from Jackrabbit's test cases:
    http://www.h2database.com/jcr/grammar.html
    http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-spi-commons/src/test/resources/or g/apache/jackrabbit/spi/commons/query/sql2/test.sql2.txt?view=markup
    Hope this helps.

  • Is there a web site that reviews Android apps?

    I'm new to Android.  When looking for apps -- in this case software to scan business cards -- I'm overwhelmed by the number of apps.  The info on Google Play isn't very helpful.  Are there web sites that review Android Apps?

        Hi RJLweb! You ask the same question that I've asked when shopping apps. Yes, we do have a site for application reviews of some of the more popular apps. You can check them out at this link: http://vz.to/1izJFxO
    DionM_VZW
    Follow us on Twitter www.twitter.com/vzwsupport

  • Quickly Plan your Site Structure | Adobe Muse Feature Tour | Adobe TV

    Set up your site structure and website layout quickly, by adding and arranging pages with easy-to-use visual site planning tools.
    http://adobe.ly/I5cQoN

    It would be great to get an explanation of child and sibling pages - what do they do, what's the difference, etc.

  • Using other site structure storage instead on index.portal

    Hi.
    The question is quite simple. All data about WebLogic portal structure is stored in index.portal XML file. Are there any ways to move data storage from this XML to database, actually to force portal to retrive data about site structure and portlets on pages from database?
    Thanks for all responces.

    Maksim Galushka wrote:
    The question is quite simple. All data about WebLogic portal structure is stored in index.portal XML file. Are there any ways to move data storage from this XML to database, actually to force portal to retrive data about site structure and portlets on pages from database?Yes, use the Portal Administration Tool to create a streaming desktop from the
    .portal file. A streaming desktop is stored in the database so that it can be
    modified and changed at runtime.
    Gerald

  • Quickly Plan your Site Structure | CS6 & Creative Cloud Feature Tour for Design | Adobe TV

    Set up your site structure and website layout quickly, by adding and arranging pages with easy-to-use visual site planning tools.
    http://adobe.ly/Ms4x9j

    Also would be nice if you let everyone know how to export from Animate as this might be confusing. You need the OAM file when placing in Muse or Dreamweaver, to get that, you will have to go into your publish settings in Animate and check Animate Deployment Package... Hope this is helpful...

  • Site structure in google results

    Hi there, I would relaly appreciate your help ,not sure what happened but  , the structure of my site is not showing anymore in google results .
    Meaning the homepage is showing alone as a first entry, then each item in the navigation is showing as a seperate entry instead of being a sub title under the homepage, as in the screenshot.
    I am using a macbook pro, OS X
    safari 6.0.2
    Dreamweaver CS 5.5
    Here is the index page: www.roulasorour.com
    Many thanks,
    roula

    @piixy,
    These are called 'Sitelinks' in Google terminology. Google decides how they cache and display sub-pages as Sitelinks when your main URL is displayed under their Search results. A lot of factors influence this - occurence of your sub-pages, ranking, relevance of content, content updates, etc...
    There is no way you can ask Google to add Sitelinks to your main site. However, Google gives you an option to 'Demote' a sitelink if it is irrelevant.
    To find out how you could optimize your website's SEO, sign into Google Webmaster Tools - http://www.google.com/webmasters
    Once you sign in, you can add & authorize ownership of your domain to start seeing critical data that will help you optimize your ranking.
    This link gives you more details about 'Sitelinks': https://support.google.com/webmasters/bin/answer.py?hl=en&answer=47334
    Good luck.
    -ST

  • Site structure using JSOM

    Hi,
    What I am trying to do is write some Javascript that will  display A site collection on top and all its descendant sites below using JSOM.
    Parent child relation ship should be indicated either by indentation or by Collapse / Expand functionality. Is this possible using JSOM?
    Please help..
    I have following code but this displays all subwebs as a flat structure, instead i want some sort of differentiation between a parent web and a child web.
    <script type="text/ecmascript" language="ecmascript">
    ExecuteOrDelayUntilScriptLoaded(runCode, "sp.js");
    var webCollection = null;
    function runCode() {
    var clientContext = new SP.ClientContext.get_current();
    if (clientContext != undefined && clientContext != null) {
    var web = clientContext.get_web();
    this.webCollection = web.getSubwebsForCurrentUser(null);
    clientContext.load(this.webCollection);
    clientContext.executeQueryAsync(Function.createDelegate(this, this.onQuerySucceeded), Function.createDelegate(this, this.onQueryFailed));
    function onQuerySucceeded() {
    var webInfo = '';
    var webEnumerator = this.webCollection.getEnumerator();
    while (webEnumerator.moveNext()) {
    var web = webEnumerator.get_current();
    webInfo += "<a class='list-group-item' title='click to navigate' href=\'" + web.get_serverRelativeUrl() + "\' target='blank'>" + web.get_title() + "</a>";
    $(".list-group").append(webInfo);
    function onQueryFailed(sender, args) {
    alert('Request failed. ' + args.get_message() + '\n' + args.get_stackTrace());
    </script>
    techie

    Hi,
    According to your description, my understanding is that you want to display subsite with Collapse / Expand style under the root site.
    I suggest you can do  some customization with Jquery and CSS to achieve it.
    Here is a code snippet for your reference:
    <script type="text/javascript">
    // Expand/Collapse Buttons
    // Feedback and questions: [email protected]
    function WPToggle(thisId, ImageId)
    if (document.getElementById(thisId).style.display=="none")
    document.getElementById(thisId).style.display="";
    document.getElementById(ImageId).src = "/_layouts/images/minus.gif";
    else
    document.getElementById(thisId).style.display="none";
    document.getElementById(ImageId).src = "/_layouts/images/plus.gif";
    function ExpandCollapseBody()
    var i = 1;
    var WPid = "WebPartWPQ1" ;
    var WPtitleid = "WebPartTitleWPQ1" ;
    var Toggleid = "ToggleImage1" ;
    do
    try
    document.getElementById(WPtitleid).innerHTML = '<IMG id="' + Toggleid + '" onClick="WPToggle(\'' + WPid + '\',\'' + Toggleid + '\')" alt="Expand/Collapse" style="margin:6px 5px 0px 2px; float:left; cursor:pointer;" src="/_layouts/images/minus.gif" />' + document.getElementById(WPtitleid).innerHTML ;
    if (document.getElementById(WPid).style.display=="none")
    document.getElementById(Toggleid).src = "/_layouts/images/plus.gif";
    catch(err) {}
    i = i + 1;
    WPid = "WebPartWPQ" + i ;
    WPtitleid = "WebPartTitleWPQ" + i;
    Toggleid = "ToggleImage" + i;
    } while (document.getElementById(WPid))
    _spBodyOnLoadFunctionNames.push("ExpandCollapseBody()");
    </script>
    Here is a detailed code demo, I suggest you can take a look for reference:
    http://blog.pathtosharepoint.com/2008/10/25/expandcollapse-buttons-for-your-web-parts/
    Best Regards
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Zhengyu Guo
    TechNet Community Support

  • Site structure

    Hi All,
    This is my first posting. I am creating a website and would
    like to include a navigation area with drop down menus at the top
    of most of the pages. Thereby allowing users to navigate to
    anywhere from anywhere. I have first created Templates with the
    navigation at the top of the page. I have since had trouble adding
    drop downs to the template and found tech notes 15088 and 15573
    stating that drop down menus need to be placed on pages before they
    are made into templates. Then I had someone suggest frames. But
    have since read the archives of this forum and found a couple of
    sites with lots of warnings for using those. What general direction
    would be good for my stated goal of navigation. Do people usually
    have repetitive code for navigation on all the pages?
    Thanks for any wisdom. I'm looking forward to being an active
    and hopefully helpful participant in this forum.

    > Do you think purchasing the pmm ($90) is necessary or
    will I find the
    > tutorials etc sufficient? ( I will have some vertical
    and some horizontal
    > nav,
    > as well as some multiple levels to some of the drop
    downs)
    I did. But as Nadia has suggested, you may want to also make
    sure you go
    through the tuts as well. That bit of knowledge will come in
    handy more
    times than you know.
    > Letting go of DW/FW pop up menus is advice I welcome..it
    seems impossible
    > with
    > Templates.
    It's not impossible, but it is stupid. The method is broken
    both in concept
    and execution and should have been dispensed with in the
    first update.
    > Murray can you reference places for me to learn more
    about server side
    > includes?
    http://www.bignosebird.com
    > And as a recap...you use templates not frames to have
    consistent
    > navigation on all pages?
    Definitely - I haven't used frames in years, and doubt that I
    would even use
    them again except for some very specialized application.
    > Is this possible without understanding the server side
    > includes?
    Yes, but adding SSI is icing on the cake, and enhances your
    flexibility.
    > Where do I send the thank you cookies?
    Directly into my feverish maw, please.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "pbsue" <[email protected]> wrote in message
    news:[email protected]...
    > Murray *ACE* and Ian -
    >
    > Thanks for your replies. Sounds like you both think
    Project Vll is a
    > useful
    > resource. I've spent a bit of time reviewing that site
    and the others
    > Murray
    > suggested. (will tackle with a fresher mind in the
    morning...I can work
    > evenings/nights but on things I at least have a basic
    grasp of)
    >
    > Do you think purchasing the pmm ($90) is necessary or
    will I find the
    > tutorials etc sufficient? ( I will have some vertical
    and some horizontal
    > nav,
    > as well as some multiple levels to some of the drop
    downs)
    >
    > The CSS ones look good to me.
    >
    > Letting go of DW/FW pop up menus is advice I welcome..it
    seems impossible
    > with
    > Templates.
    >
    > Murray can you reference places for me to learn more
    about server side
    > includes? And as a recap...you use templates not frames
    to have consistent
    > navigation on all pages? Is this possible without
    understanding the server
    > side
    > includes?
    >
    > Where do I send the thank you cookies?
    >
    > pbsue
    >

  • Server Error in '/' Application. Requested URL: /Site Membership Review List/AllItems.aspx

    Hi,
    So from some time I am getting following message when try to access some of "site settings" options:
    This all happened after editing Master Page for Google Analytic script.
    Does anyone have an idea how to fix it?

    Hello,
    have you modified the master page? Also check below similar threads:
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/a4fd7615-9069-4e87-9725-0107c77e13f4/server-error-after-editing-master-page?forum=sharepointcustomizationlegacy
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/f5ae3e73-2ca7-4bea-acbe-f35041bad403/the-file-catalogsmasterpagecontroltemplateswelcomeascx-does-not-exist?forum=sharepointgeneralprevious
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • Creating Site Structure

    I'm trying to figure out how to manage different websites in
    dreamweaver . should i put all the sites in one folder or
    what?

    > I'm trying to figure out how to manage different
    websites in dreamweaver .
    > should i put all the sites in one folder or what?
    press f1 to open the help files, and search on define site.
    you define a "site" in dreamweaver for each specific project.
    Each project
    will have it's own "Local Site Folder".
    for convience, most people put all these site folders inside
    one parent
    folder so it's easy to find them or make backups.
    hard drive:mysites:siteOne
    hard drive:mysites:siteTwo and so on.
    Alan
    Adobe Community Expert, dreamweaver
    http://www.adobe.com/communities/experts/

  • Managing Site Structure

    I help maintain a website that has over 125 html pages.
    Currently we log each page into an Excel file and record its file
    name, page title, description and keywords. We have separate
    worksheets for our library items, templates, etc. Each time we
    create something new, rename or move something, we have to remember
    to add it to our site index file. Is there a better solution for
    managing our site's content?

    >Is there a better solution for
    > managing our site's content?
    Purchase/build a content management system to handle all of
    that for you.
    -Darrel

  • Using XML to generate site structure

    Well. I'll describe my problem in brief.
    I want to generate XML in my servlets and then perform XSL-transformation. This allows me to separate data from the representation. For example:
    <menu>
      <item name="Home">http://nome.com</item>
    </menu>and then I'll create a stylesheet that will generate proper left column with beautiful menu. The idea seems to be beautiful and probably is not a new one. I don't know if there some similar solutions. I'm interesting in a XML-dictionary and XSL stylesheets. Of course, I can make my own dictionary and stylesheet, but may be there are some powerful examples?

    It is possible to use an xml document to build a
    graphic. The web3d.org is working on that project.
    As VRML Viewer can view and edit vrml 3D file, a well-designed Java3Dviewer can visualize the scene defined in a XML file.
    The plug-in allows programs to run inside web browser, if you design a Java program to view 3D data defined in a XML file, users can run this program in their desktop with Java plug-in.
    So research Java3d API and do it.
    regards,
    Louis

  • CA / NDES Virtual Directory Structure Missing in IIS 7 unable to implement SSL for ADMIN sites

    We've recently finiallized both an Enterprice 2008 R2 CA and NDES service installtion configuration.  All services are running, to include web enrollment for both.  CA sits on a DC, as required, and the NDES roll sits on a standalone machine. 
    All service generated certificates / templates are in place and or issued including SSL certificates for service web front ends.
    I'm trying to take the next step in hardening both of the web front ends by requiring SSL web validation and client SSL authentication.
    Problem:  When examining the site structures, CA and NDES, within the IIS7 configuration manager the following inconsistancies are present:
         Enterprise CA:
                   o  No virtual directory is configured or listed under the Certsrv or Enrollment sub-sites, however as previously stated all servies are up and operational.
        2.        NDES:
                   o  IIS7 configuration manager doesn't list any Certsrv sub-site, but once again all services are up and runniing.  I can process SCEP requests via the web. 
                       The following 2 items are listed under the default site on the NDES service machine:  Rpc and RpcWithCert    
                       In past experience I would expect those items to be associated with Exchange, but since NDES is new to me they may be standard.
    Not to state the obvious but all Sys32 files and folders  are correct as both services are running properly.  Can anyone tell me if I've missed some critical article on AD CS or IIS7 that tells me why these 2 conditions are present. 
    Since the Certsrv sub-site exists on the CA I would assume a normal SSL bind will work, but with critical items missing from within IIS7 (at least from my view) i don't want to compound the problem..  Since there is no Certsrv
    structure on the NDES machines I'm not sure what the best way to proceed is.  Any help would be greatly appreicated.
    V/R BE

    CA / NDES all function properly.  I'm still reseaching proper IIS 7 SSL implementation, when the virtual directory and sub-site structer is either missing or imcomplete when viewed from within the IIS7 manager.
    These services where put into production without a thurough configuration check prior to implementation, so I don't have a test environment setup at the moment to just start playing.  I'm thinking this weekend I'm going to have to VSS the current
    machines and throw them on the Dev network and see how badly I can break them.
    V/R BE

Maybe you are looking for

  • Attachments visible in all steps of GP

    Hello SDN Community, I have got a question concerning Attachments in GP: At the customer we implemented, that A user is able to add an attachment in the step, which has been assigned to him. In the next step another user should be able to have a look

  • Migrating Keyboard Shortcuts

    I have custom keyboard shortcuts in CS6 which I use with my Wacom Tablet. Is there any way I now can migrate them to my new CC version, or do I have to re-enter them all manually? Any gudance appreciated. Roy Sletcher (Newby to CC)

  • How do I Auto Page NOT starting from page 1?

    Please help. I need to Auto Page successive documents, each document starting with a page following the last page of the previous document. How???

  • What's up with auto tone?

    What's up with auto tone? It doesn't seem very smart or useful. It always blows out the exposure for me, midtones in particular. I do have a hardware calibrated NEC SV monitor. I would much rather Adobe bring over the algorithims for auto contrast, a

  • RE: Setting initial DropList selection

    Gary writes... > Does anyone know how to set the initially displayed selection of a DropList to something other than the first element of the array. <DropList>.IndexValue is supposed to be settable according to the documentation, but it doesn't seem