How to include content with MyFaces?

Hi.
I have what must be a common problem: I wish to include HTML content from a source file in a JSF file. I am using MyFaces, but I think the problem is more general.
I currently can include static content trivially, with a jsp:include tag:
<f:subview id="content">
  <f:verbatim>
    <jsp:include page="home.html" />
  </f:verbatim>
</f:subview>The problem occurs when I want to choose the content file dynamically, based on a value from the backing bean. This fails:
<f:subview id="content">
  <f:verbatim>
    <jsp:include page="#{backingBean.currentContent}" />
  </f:verbatim>
</f:subview>I understand why this fails: the JSP EL does not recognize the Faces value. I have tried various ways to circumvent this including trying to use various types of includes, using iframe tags (with and without the htmlTag tag), etc. But all these have failed. I know the HTML content itself needs to be wrapped in verbatim tags, but I can easily place those in the content files if needed.
What is the right way to include simple HTML source files from Faces? Searching various forums and documentation, I could not find any clear instructions that worked.
Thanks.
+ Richard

You could try using <c:import> instead of <jsp:include> (and remove the verbatims, of course). I haven't tried that with simple html though, but I think it should work.
jimbo

Similar Messages

  • How to include columns with a space in name in clientcontext load method in JSOM

    Hi Gurus,
    I have a situation where I need to read a list that has a column 'Repositary Name'.
    While I am reading the list in my JSOM I need to load this column in the clientcontext.load method.
    My code likes this below.
    this.collListItem = list.getItems(camlQuery);
        ctx.load(collListItem, 'Include(Title, 'Repositary Name')')
    The Issue is I can not load this 'Repositary Name' column. I tried with its internal name, removing the space, putting the name in single quote but nothing works.
    Please advice how to include a column in clientcontext.load method that has a space in its name .
    Changing the column is not a option and I have to have call it before I use it my Async Methods.

    Hi,
    If I am getting your issue correctly, I think you should put _x0020_ in place of space in your column name. In your case try Repositary_x0020_Name.
    ***If my post is answer for your query please mark as answer***
    ***If my answer is helpful please vote***

  • How to Include JRE with our Setup Package

    please help me,
    i have created one swing application.i successfully created setup.exe using installsheild 11.It is working in my machine.when i run this in another machine .it is not working.iam using some external jar also in the appln.i put that jars into the jre/lib/ext in destination machine's directory then it works.
    i want to include JRE with my setup package(first the setup should find whether the jre is installed or not ,if not it must insall JRE and put my external jar files into jre/lib/ext directory in destination machine then only my appln should insall).please give me a solution for this

    What?!! It isn't considered legal to access a
    root-level class from a higher level package?Well it's not now because your code won't compile, but
    prior to 1.4 you could. I think the JLS has been
    updated to say you can't import from the unnamed
    namespace.Hmm! I must have missed that bit (not that I read it in any great detail, anyway!). I suppose it forces you to use packages, which is a good thing, IMHO.
    What I was wondering about was, is the directory structure of classes strictly necessary, given that a class contains information on its package anyway? I know some IDEs don't require the source files to be in the right directory - they will check on the package statement, and locate the class file accordingly - but is it absolutely necessary for class files to be located according to their directory structure? I know the JLS says they have to be, but could the JLS be relaxed on this point, without breaking anything?
    RObin

  • How to display content with dynamic folder path

    Hi Experts,
    I have a folder with subfolders. This subfolders are named as weeknumbers. What we want is: depending on the weeknumber, the right folder with content is showing automatically. In week 1 we see the content of week 1 , in week 2 we see the content of week 2 etc.
    How to achive this, what is the best way?
    Thanks in advance,
    Joeri

    Hi Joeri,
    I would follow the below procedure...
    1. create a the KM navigation iViews for each of the folders in KM (Week1, Week2 etc).
    2. Create a JSP(PAR) or an HTML to access these iViews (as [Link1], [Link2] etc on a JSP or an HTML)
    3. Create an iView from PAR (if JSP-PAR)
        OR Create a KM Document iView for the HTML Page (Store the HTML Page in KM again)
    I hope this would help you.
    Cheers!!!
    Biroj Patro.

  • How to shift content with in cell in xml rules table

    Hi all scripters,
    I've created a table using xml rules with 3 nos of cells where first cell contain some data and so on but in next row first cell may of may not contain any data so in that row second cell data shifted to first cell and thired row data shifted to second cell which is very anxious for me since second cell data in each row should be in second cell only.
    For Instance-: Required output
    Title
    PageNo
    Subject
    Title
    46
    The Subject
    50
    Another Subject
    54
    Subject
    Title
    60
    Another Subject
    64
    The subject
    The out put I am getting by script-:
    Title
    PageNo
    Subject
    Title
    46
    The Subject
    50
    Another Subject
    54
    Subject
    Title
    60
    Another Subject
    64
    The subject
    myRuleSet = new Array ( new ProcessSec,
               new ProcessPara,
               new ProcessSecHead,
               new ProcessArt,
               new ProcessPG,
    with(myDocument){
        var elements = xmlElements;
         __processRuleSet(elements.item(0), myRuleSet);
    function ProcessSecHead(myXPath){
        this.name = "ProcessSecHead";
        this.xpath = myXPath;
        this.apply = function(myElement, myRuleProcessor){
       with(myElement){
                __skipChildren(myRuleProcessor);
                  var myNewElement = myContainerElement.xmlElements.item(-1).xmlElements.add(app.documents.item(0).xmlTags.item("Cell"));
         myElement.move(LocationOptions.atBeginning, myContainerElement.xmlElements.item(-1).xmlElements.item(-1));
        return true;
    function ProcessPara(){
        this.name = "ProcessPara";
        this.xpath = "//para";
        this.apply = function(myElement, myRuleProcessor){
                var myNewElement = myContainerElement.xmlElements.add(app.documents.item(0).xmlTags.item("Row"));
            return true;
    function ProcessArt(){
        this.name = "ProcessArt";
        this.xpath = "//para/aug";
        this.apply = function(myElement, myRuleProcessor){
            with(myElement){
                __processChildren(myRuleProcessor);
                var myNewElement = myContainerElement.xmlElements.item(-1).xmlElements.add(app.documents.item(0).xmlTags.item("Cell"));
                myElement.move(LocationOptions.atBeginning, myNewElement);  
            return true;
    function ProcessPG(myXPath){
        this.name = "ProcessPG";
        this.xpath = myXPath;
        this.apply = function(myElement, myRuleProcessor){
            with(myElement){
                __skipChildren(myRuleProcessor);
                var myNewElement = myContainerElement.xmlElements.item(-1).xmlElements.add(app.documents.item(0).xmlTags.item("Cell"));
                myElement.move(LocationOptions.atBeginning, myNewElement);
            return true;
    Any would be greatly appreciated
    Mac

    Wow, sorry for the delay.
    This paradigm is difficult enough to deal with, but Adobe's example code really does not encourage you to handle this reasonably at all.
    I've basically rewritten the entire process, and I've introduced a new paradigm for creating rules that I think is a lot more readable and flexible and allows for parametrization. Anyhow, here you go. Any questions?
    /*jslint undef: true, newcap: true, nomen: false, regexp: true,
            bitwise: true, onevar: true, indent: 4, white: false */
    /*global File, LocationOptions, PageSideOptions,
      UserInteractionLevels,
      __processChildren, __processRuleSet, alert, app */
    #include "glue code.jsx";
    // handy debugging function; e.g.: $.writeln(dumplist(x.xmlElements));
    function dumplist(l) {
        var i, rv = [];
        rv.push("has "+l.length+" elements:");
        for (i=0; i<l.length; i++) {
            rv.push("  "+i+"\t"+l[i].toSpecifier()+
                        "\t"+l[i].markupTag.name);
        return rv.join("\n");
    // Initialize a tags object to map strings to tags.
    function initTags(doc, tagnames) {
        var i, t, tags = {};
        for (i=0; i<tagnames.length; i++) {
            try {
                t = doc.xmlTags.add(tagnames[i]);
            } catch (e0) {}
            tags[tagnames[i]] = doc.xmlTags.itemByName(tagnames[i]);
         return tags;
    // Handy subtree functions
    function firstChildTag(node, tag) {
        var i, e = node.xmlElements;
        for (i=0; i<e.length; i++) {
            if (e[i].markupTag === tag) {
                return e[i];
        return node;
    function lastChildTag(node, tag) {
        var i, e = node.xmlElements;
        for (i=e.length-1; i>=0; i--) {
            if (e[i].markupTag === tag) {
                return e[i];
        return node;
    //// XML rule functions
    // Adobe's sample for how to define these is HORRIBLE.
    // Let's fix several of these problems.
    // First, a handy object to make clearer the return values
    // of XML rules:
    var XMLmm = { stopProcessing: true, continueProcessing: false};
    // Adobe suggest defining rules constructors like this:
    //   function RuleName() {
    //       this.name = "RuleNameAsString";
    //       this.xpath = "ValidXPathSpecifier";
    //       this.apply = function (element, ruleSet, ruleProcessor){
    //       //Do something here.
    //       //Return true to stop further processing of the XML element
    //       return true;
    //       }; // end of Apply function
    // And then creating a ruleset like this:
    //   var myRuleSet = new Array (new RuleName, new anotherRuleName);
    // That syntax is ugly and, and is especially bad if
    // you need to parametrize the rule parameters, which is the only
    // reasonable approach to writing reasonable rules. Such as:
    //   function addNode(xpath, parent, tag) {
    //       this.name = "addNode";
    //       this.xpath = xpath;
    //       this.apply = function (element, ruleProcessor) {
    //           parent.xmlElements.add(tag);
    //           return XMLmm.stopProcessing;
    // and then creating a ruleset like:
    //   rule = new Array (new addNode("//p", someTag));
    // So instead we introduce a makeRule function, that
    // allows us to leave behind all the crud. So then we can write:
    // addNode = makeRule("addNode",
    // function(element, ruleProcessor, parent, tag) {
    //     parent.xmlElements.add(tag);
    //     return XMLmm.stopProcessing;
    // and use:
    // rule = [ addNode("//p", someTag ];
    function makeRule(name, f) {
        return function(xpath) {
            var
                //xpath=arguments[0],
                   // "arguments" isn't a real array, but we can use
                   // Array.prototype.slice on it instead...
                   args=Array.prototype.slice.apply(arguments, [1]);
            return {
                name: name,
                xpath: xpath,
                apply: function(element, ruleProcessor) {
                        // Slice is necessary to make a copy so we don't
                        // affect future calls.
                    var moreargs = args.slice(0);
                    moreargs.splice(0, 0, element, ruleProcessor);
                    return f.apply(f,moreargs);
    // Create a new node at parent. Doesn't do
    // anything with the XPath context node.
    var addNode = makeRule("addNode",
    function(element, ruleProcessor, parent, tag) {
        parent.xmlElements.add(tag);
        return XMLmm.stopProcessing;
    // Create a cell for a table, adding a node to
    // the last node of the last node of the
    // table. Duplicate the context
    // node as a child of that cell.
    var makeCell = makeRule("makeCell",
    function(element, rp, table, outertag, innertag) {
        var
            cell = table.xmlElements[-1].xmlElements.add(outertag),
            copy = element.duplicate();          
        copy.markupTag = innertag;
        copy.move(LocationOptions.AT_BEGINNING, cell);
        return XMLmm.stopProcessing;
    // Apply from() to the context node to get
    // a source node. Copy that source node
    // to be the first child of the context node.
    var copyFromToChild = makeRule("copyFromToChild",
    function(element, ruleProcessor, from) {
        var copy = from(element).duplicate();       
        copy.move(LocationOptions.BEFORE,
          element.xmlElements[0]);   
        // __skipChildren(ruleProcessor);
        return XMLmm.continueProcessing;
    // We don't actually use this, but it was useful
    // in debugging. Essentially "rename" a node.
    // Set the tag of the context node to the
    // specified tag.
    var setTag = makeRule("setTag",
    function(element, ruleProcessor, newtag) {
        element.markupTag = newtag;
        return XMLmm.stopProcessing;
    // Apply from() to the context node to get
    // a source node. Apply to() to the
    // context node to get a destination node.
    // Move the source node in the specified
    // location (how) to the destination node.
    var moveFromTo = makeRule("moveFromTo",
    function (element, ruleProcessor, from, how, to) {
        __processChildren(ruleProcessor);
        var src = from(element);
        src.move(how, to(element));
        return XMLmm.continueProcessing;
    // end rule functions
    // It's just not worth rewriting some of Adobe's ugly functions...
    // but at least fix it up so it JSLints.
    function myGetBounds(myDocument, myPage){
        var
            myPageWidth = myDocument.documentPreferences.pageWidth,
            myPageHeight = myDocument.documentPreferences.pageHeight,
            myX1, myX2, myY1, myY2;
        if(myPage.side === PageSideOptions.leftHand){
            myX2 = myPage.marginPreferences.left;
            myX1 = myPage.marginPreferences.right;
        else{
            myX1 = myPage.marginPreferences.left;
            myX2 = myPage.marginPreferences.right;
        myY1 = myPage.marginPreferences.top;
        myX2 = myPageWidth - myX2;
        myY2 = myPageHeight - myPage.marginPreferences.bottom;
        return [myY1, myX1, myY2, myX2];
    function myGetScriptPath() {
        try {
            return app.activeScript;
        catch(myError){
            return new File(myError.fileName);
    // OK, the actual program.
    function main() {
        var
            doc = app.activeDocument,
            page = doc.pages[0],
            root = doc.xmlElements[0],
            //inputFile = new File(myGetScriptPath().path+ "/mac.xml"),
            inputFile = File.openDialog(),
            tags = {},
            p, table;
        if (app.documents.length<1) {
           alert ("Open a document and run the Script");
           return false;
         // Let's not use a seperate variable for each tag. Instead,
         // we'll keep an Object that maps strings to tags.
        tags = initTags(doc,
                             ["table", "para", "article",
                              "section", "section-head", "tr", "td", "p"]);
        doc.xmlImportPreferences.allowTransform = false;
        doc.xmlImportPreferences.ignoreWhitespace = true;
        app.scriptPreferences.userInteractionLevel =
              UserInteractionLevels.NEVER_INTERACT;
        doc.importXML(inputFile);
        app.scriptPreferences.userInteractionLevel =
              UserInteractionLevels.INTERACT_WITH_ALL;
        // For each <para>, copy the parent's <section-head> inside.
        // Next, move each <article> node to the end of the <para>,
        // placing it after the <page> node.
        __processRuleSet(root, [
            copyFromToChild(
                "//para",
                function(n) {
                        return firstChildTag(n.parent,tags["section-head"]);
            moveFromTo(
                "//para",
                function(n) { return firstChildTag(n, tags.article); },
                LocationOptions.AT_END,
                // This is more general than we need to be; we're moving
                // to "the end", but the end of WHAT? It need not be the
                // <para>, it could be some other node.
                function(n) { return n; })
        // Add a <p> node to hold the table we're about to create.  It's
         // not super-clear from the documentation, but
         // convertElementToTable creates a text node of the table in the
         // XLM structure. In order to then place that into a frame, there
         // has to be an enclosing XML node to do so. We choose <p> for
         // lack of a better tag.
        p = root.xmlElements.add(tags.p);
        table = p.xmlElements.add(tags.table);
        // For each para node, add a <tr> to the table.  For each
        // <section-head>, <page>, or <article>, add a <td> to the last
        // <tr> of the table
        __processRuleSet(root, [
            addNode("//para", table, tags.tr),
            makeCell("//para/section-head", table, tags.td, tags.p),
            makeCell("//para/page", table, tags.td, tags.p),
            makeCell("//para/article", table, tags.td, tags.p)
         // Make it a table and GO!
        table.convertElementToTable(tags.tr, tags.td);
        p.placeIntoFrame(page, myGetBounds(doc, page));
    main();
    I also tried to format this to 72 columns so that it doesn't scroll on the forums. Let's see if that works...Nope, not quite. Oh well. Close enough.

  • How to include assets with Flash Builder?

    with the flash IDE i can add additional assets in the iPhone OS Settings under "Included File"
    how do I do the same with the Flash Builder?

    Ah - stupid me. It's so simple - just give the filenames of all the files to be included as additional parameters to the adt tool

  • How to include attachments with e-mail and to verify that they have been sent.

    When I try to attach a document or photo to an e-mail and use "browse" to find the attachment, then click it. The only option is open. When I click that there is no evidence or indication that the attachment has been made. How can I attach photos or documents to e-mail messages? Then, how can I verify that the attachments have really been sent with the message?

    * Outgoing (SMTP) server: you need to use your ISP (Internet Service Provider) SMTP server. Call your ISP to know your SMTP (mail sending) server. In case you are unable to get SMTP server, you can use WebMail for email sending.
    For OUTGOING MAIL SERVER I am required to add the following:
    HOST NAME
    (usually looks like smtp.example.com - Since I have Comcast as my it would look like smtp.comcast.net)
    USER NAME optional
    PASSWORDptional
    Since you use comcast, you have comcast e-mail. You need to ask them what the correct settings are to set up your comcast e-mail account on a mobile device and plug in the same information for the outgoing (SMTP) server for the account you're trying to set up.
    Warning: I'll predict now that a lot of your e-mail will get filtered as spam on the receiving end because the domain name in your email address is NOT going to match the domain name of the server it's originating from.
    You might want to look into a mail service provider that actually provides their own outgoing mail servers.

  • How to include link with parameter in marketing emails?

    Hi, my client wants to send out personalized marketing emails to customers with a link back to the BC site that have a parameter on the end that passes the customer's email address the message was sent to. Then the landing page can parse that email off the end of the URL and insert it into the web form on the page where the customer can update his info, insuring he is using the same email that BC sent the message to rather than supplying a different one.
    If you insert a BC tag like {tag_recipientemail} into the body of the message it will replace that tag with the customer's email, but it doesn't work to use that BC tag within the HTML link in the email like this:
    <a href="https://mysite.worldsecuresystems.com/birthday?{tag_recipientemail}" > Click Here </a>
    That renders the TAG code {tag_recipientemail}on the end of the URL, not the email address.
    Anyone found a work around?
    If this was a web page I could use javascript to fix this, but of course email clients receiving messages don't allow javascript to run inside them, so this has to be fixed server side by BC.

    I suspect the same. That should work in the real campaign. I believe that it doesn't work in the e-mail me functionality because the user you are logged in is not connected to the CRM table, which is where that tag is pulling the info from.
    Cheers,
    -mario

  • How to download contents with specific URL

    assumption: URL "http://www.game.com/login.php?name=joeCruiz&pwd=123456")" will show the logined info about me.
    I try to get the logined info in pure java program with following codes:
    url = new URL("http://www.game.com/login.php?name=joeCruiz&pwd=123456");
    connection = (HttpURLConnection)url.openConnection();
    input = connection.getInputStream();
    dataInput = new BufferedReader(new InputStreamReader(input));
    while ((line = dataInput.readLine()) != null) {
    buffer.append(line);
    But I just get info shown with "http://www.game.com/login.php?".
    Thanks for any comment.
    Joe

    Hi there,
    forgive me my bad english...
    i guess you have to use something like this
    HttpURLConnection conn;
    conn = new HttpURLConnection(new URL("http://www.game.com/login.php?name=joeCruiz&pwd=123456"));
    conn.setRequestProperty("name","joeCruiz");
    conn.setRequestProperty("pwd","123456");
    conn.connect();
    input = conn.getInputStream();
    dataInput = new BufferedReader(new InputStreamReader(input));
    while ((line = dataInput.readLine()) != null) {
       buffer.append(line);
    }All trick is to use setRequestProperty(String, String) instead of pairs in url string.
    Hope this helps.
    With best regards,
    Selivanov Mike.

  • How do I Include content (another page) in a WEeb [page

    I need some help. I’ve been using MS Front Page for the
    last 6-7 yrs. In MS FP there is a way to include an html file into
    another html file. Example: I have a Web site that has 10 pages.
    Each page is made up of a 3 column table with a menu file in the
    left hand column of the table. I want the menu to be present in all
    10 pages. In MS FP you can add that menu (html file) in the table
    and in all 10 pages. It is called Include, content, page. (Page
    being the menu file) When you make changes to the menu file it is
    changed though out all 10 pages. It’s is a dynamic content.
    My question is how is this done in Dreamweaver?

    Search DW's F1 Help for "server-side include".
    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
    ==================
    "FoxWolf" <[email protected]> wrote in
    message
    news:echrtf$6ie$[email protected]..
    >I need some help. I?ve been using MS Front Page for the
    last 6-7 yrs. In
    >MS
    > FP there is a way to include an html file into another
    html file.
    > Example: I
    > have a Web site that has 10 pages. Each page is made up
    of a 3 column
    > table
    > with a menu file in the left hand column of the table. I
    want the menu to
    > be
    > present in all 10 pages. In MS FP you can add that menu
    (html file) in
    > the
    > table and in all 10 pages. It is called Include,
    content, page. (Page
    > being
    > the menu file) When you make changes to the menu file it
    is changed
    > though out
    > all 10 pages. It?s is a dynamic content. My question is
    how is this
    > done in
    > Dreamweaver?
    >

  • How to include in table of contents the list of figures and list of tables?

    How to include in table of content the "Table of contents", "List of figures" and "List of tables"? All are generated with function Table of contents, but they will not appear in generated table of contents even if they have proper style of headings - Heading 1, as other chapter.
    I get this in generated Table of contentes of my dissertaion thesis:
    Table of contents
    Preface
    Table of contents <- missing
    List of tables <- missing
    List of figures <- missing
    Introduction
    Main
    Conclusion
    Is it ok, that generated lists are not included in table of contents?

    You've just confused me.
    My understanding of how this is set up is that either:
    This is a book, and there is a master TOC that includes all book documents and a document-specific TOC in each component file, or
    This is a single file and there is one master TOC that includes all sections and a section-specific TOC that includes only the individual section.
    In the first case, I think you would want two TOC styles set up, one that includes the chapter heads (if I understood how you said this worked) for the for the master, and you would include all docs in the book when you generate it, and a second style for the individual chapters, with the subheadings you want to include.
    In the second case, it would be similar, but instead of only one style to cover the section TOCS, I think you would need to create a unique set of pargraph styles for the headings in each section (they can all be the same format, based one section, just with unique names), and then make a TOC style for each section that includes only the styles from that section.
    OK,  wait a sec. I just reread what you said: "Another thing: when the numbers are "linked" and updating well, they  display indide a little box. Not a text box, but a kind of little frame  around the numbers. That frame makes it imposible to delete just one  number: when the TOC says that Section 6.1 is in page 135, for example,  you cannot delete just the 5, it deletes, not just the 3 numbers, but  also the doted tab."
    I think these are NOT normal TOCs created by using Layout > TOC (but you could replace them with ones that are, if you set up your styles properly and the text you want to include is appearing on the pages). Those little boxes you mention sound like cross-references, which should update automatically without any intervention at all. Unfortunately, cross-refs can be flakey, especially if they point to another document. I'd open the cross-refs panel and see if you need to recreate a bunch of links.

  • How can I exchange my pc created documents on Excel, Word, and PowerPoint with my mac and my Pages, Numbers and Keynote created content with my pc?  I need to create and edit between both.

    How can I exchange my pc created documents on Excel, Word, and PowerPoint with my mac and my Pages, Numbers and Keynote created content with my pc?  I need to create and edit and exchange between both types of operating systems.

    Your Windows system will not open any Pages, Numbers or Keynote documents. No applications exist for Windows that can open those formats. You will need to export your documents in Word, Excel and PowerPoint formats, respectively, before you'll be able to view and edit the documents on your Windows system. The iWork documents can natively open Word, Excel and PP documents, though there are limitations on what can be imported (for instance, Numbers does not support all possible Excel functions). Consult the documentation for the relevant iWork application for details on importing and exporting.
    If you are asking how to get the documents from one system to the other, then there are several ways to do that, including file sharing, using an external drive (hard drive, USB flash drive), or emailing the documents to yourself. Which would be best for your situation I can't say without more details about your usage.
    Regarsd.

  • How do I deal with constant "error loading content" messages?

    I'm constantly seeing error messages on my Apple TV (2nd gen) on content I easily watch on my other iDevices. What gives? This thing is rapidly becoming a vy expensive paper weight. Possibly the worst Apple product I've yet purchased. Am I alone in this?  What can I do?

    You cannot connect to TC using USB.
    Plug the TC into the computer using ethernet.
    Press and hold the reset button on the TC for about 10sec.. until front led rapidly flashes.. release it.
    Open the airport utility and make sure you can locate the TC. Check the disk page that the disk started up without errors.
    When you say
    Sodrawi wrote:
    How do I deal with the error message at my Time Capsule saying "There is a problem to connect to server xxxx-Time-Capsule.local."
    I am guessing you mean Time Machine.
    If TM still cannot find the TC disk.. reset TM and redo the setup.
    Read A4 here.
    http://pondini.org/TM/Troubleshooting.html

  • How do i share content with my family without becoming responsible for payment of everybody's purchases? with familysharing i mean, not home sharing

    how do i share content with my family without becoming responsible for payment of everybody's purchases?
    with familysharing i mean, not home sharing
    i have set up a familyshare for my parents and 3 siblings, all mid twenties. everybody is used to paying their own way. how do i make that continue to be the case and still keep the sharing facility open?
    e.g I don't want to pay for my sisters' music purchases - half of it i don't like - but would like access to it now and then.

    -> Home Sharing is different than logging into the iTunes store.
    You enable Home Sharing using one AppleID. Doesn't matter which you use but all devices must use the same AppleID for Home Sharing.

  • How do I stop 10.9 caching servers sharing content with other peers?

    We have a problem on a school district network where Mac Servers are sharing their caching content with their registered peers. We have set MaxPeersToQuery to 1 but can't set that value to Zero. We have tried PeerRangeFilters array but that doesn't work either. Apple documentation seems to include a double negative. We have no access to the network, that is controlled by the Local Authority. We just need a Mac Server within a school to only serve the local subnet (The option is ticked) and not query any peers for assets. Any help appreciated.

    What was the values you set for PeerRangeFilters?  Based on the documentation, this sounds like it should be able to provide what you are looking for. 
    But it sounds like you are trying to control two different things here.  It sounds like you want to make clients from each subnet access the subnet's server.  That can be accomplished by using the ListenRange key on each server.  For example, if you have a server on a 172.16.0.0/24 you can define that server to listen only to client requests from that range.  Then your server on 172.16.1.0/24 can be configured to listen on that subnet range.
    The second thing you are trying to limit is the sharing across the servers based on peer sharing.  I have not attempted this before but the PeerRangeFilter sounds like the right thing.  Share what you configured.
    R-
    Apple Consultants Network
    Apple Professional Services
    Author "Mavericks Server – Foundation Services" :: Exclusively available in Apple's iBooks Store.

Maybe you are looking for

  • Landscape and portrait page orientation in forms.

    Could anyone let me know how to have both portrait and landscape page orientations in a form. Building an audit report and need (would be nice) to have both in one single form. Regards, Raffe.

  • Are there any differences between Server 2012 and Server 2012 R2 that might impact TFS or SQL server required for TFS?

    Hi, In the interest of just getting started and learning the basics of setting up TFS, I previously setup an IDE using a large workstation running Windows 8.  I set up the required servers for TFS using VM's through Hyper-V.  I am now transferring ev

  • Illustrator cc issue

    hello, any one can help me in this urgent case: HOW TO ENABLE ILLUSTRATOR CC TO WRITE ARABIC LIKE MIDDLE EAST VERSION? THERE IS ANY MIDDLE EAST VERSION FOR CC ? REGARDS

  • Incoming Invoice Parking through ALE

    Hello Gurus, We have a scenario in which we trigger a IDoc on saving of VF01 transaction( INVOIC01). We send this IDoc to the other SAP system. Here we have to park this Invoice through MIR7. Here the reference for parking Invoice is PO for Thirty Pa

  • MRP MD02 and MDBT

    Dear Experts, In our organization planned orders are getting generated through MD02 for a particular plant, but not getting generated through MDBT. Please suggest what could be the reasons..... Rgds