More than one domain?

I have been running a website for many years where I purchased the domain. I created the page in iWeb and have it forwarded. I would like to publish another page under another domain name. Is there a way to do this with iweb?

Welcome to the Apple Discussions. Yes. You can have multiple sites with domain names on one MMe account. However, only one domain can be forwarded to the MMe account using the CNAME method. The others must use the simple URL forwarding.
You would need to forward the second domain name to: http://web.me.com/YourMMe_Account_Name/Site#2Name/
The following are some good info sites in addition to the one Alancito listed:
http://discussions.apple.com/thread.jspa?threadID=1164519&tstart=0
http://docs.info.apple.com/article.html?path=MobileMe/Account/en/acct17114.html
http://docs.info.apple.com/article.html?path=MobileMe/Account/en/acct17114.html
You don't need a family plan to host multiple domain names.
Unique Way to Maintain a Site from Multiple Computers

Similar Messages

  • [Fwd: Client accessing MBeanHome for more than one domain receives SecurityException]

    Fwd'ing to security newsgroup
    -------- Original Message --------
    Subject: Client accessing MBeanHome for more than one domain receives
    SecurityException
    Date: 4 Mar 2004 07:27:33 -0800
    From: Dinesh Bhat <[email protected]>
    Reply-To: Dinesh Bhat <[email protected]>
    Organization: BEA NEWS SITE
    Newsgroups: weblogic.developer.interest.management
    Hi,
    When a client accesses MBeans of more than one domains (Weblogic 8.1)
    that have
    different passwords, it receives a SecurityException. This occurs when
    the MBeanHome
    for each domain is looked up at initialization and reused for each
    request ( to
    access MBeans ). The security exception does not occur if the MBeanHome
    for each
    domain is looked up for each request. On initial review, this behavoir
    seems inconsistent.
    Looking up the MBeanHome for each request may introduce a significant
    overhead.
    I am not sure if concurrent lookups would also cause the same problem.
    I have read on another post that we can work around this problem by
    establishing
    a trust relationship between the servers, but this may not be feasible
    when one
    is monitoring a lot of servers and the overhead of configuration may be
    an issue.
    I have attached code that can reproduce the problem.
    Please advise on the correct approach.
    Thanks
    Dinesh Bhat
    Panacya Inc.
    import java.util.ArrayList;
    import java.util.Set;
    import java.util.HashMap;
    import java.util.Iterator;
    import java.util.Hashtable;
    import javax.management.MBeanServer;
    import javax.naming.Context;
    import weblogic.jndi.Environment;
    import weblogic.management.MBeanHome;
    * This class reproduces the Security Exception that is caused when a client tries to access
    * MBeans of more than one domain with different weblogic passwords. Here is the stacktrace of the
    * exception
    * java.lang.SecurityException: [Security:090398]Invalid Subject: principals=[weblogic, Administrators]
         at weblogic.rjvm.BasicOutboundRequest.sendReceive(BasicOutboundRequest.java:108)
         at weblogic.rmi.internal.BasicRemoteRef.invoke(BasicRemoteRef.java:138)
         at weblogic.management.internal.AdminMBeanHomeImpl_811_WLStub.getDomainName(Unknown Source)
         at WLSecurityTest.getWeblogicInfo(WLSecurityTest.java:140)
         at WLSecurityTest.runTest(WLSecurityTest.java:75)
         at WLSecurityTest.<init>(WLSecurityTest.java:66)
         at WLSecurityTest.main(WLSecurityTest.java:51)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.intellij.rt.execution.application.AppMain.main(Unknown Source)
    Caused by: java.lang.SecurityException: [Security:090398]Invalid Subject: principals=[weblogic, Administrators]
         at weblogic.security.service.SecurityServiceManager.seal(SecurityServiceManager.java:682)
         at weblogic.rjvm.MsgAbbrevInputStream.getSubject(MsgAbbrevInputStream.java:181)
         at weblogic.rmi.internal.BasicServerRef.acceptRequest(BasicServerRef.java:814)
         at weblogic.rmi.internal.BasicServerRef.dispatch(BasicServerRef.java:299)
         at weblogic.rjvm.RJVMImpl.dispatchRequest(RJVMImpl.java:920)
         at weblogic.rjvm.RJVMImpl.dispatch(RJVMImpl.java:841)
         at weblogic.rjvm.ConnectionManagerServer.handleRJVM(ConnectionManagerServer.java:222)
         at weblogic.rjvm.ConnectionManager.dispatch(ConnectionManager.java:794)
         at weblogic.rjvm.t3.T3JVMConnection.dispatch(T3JVMConnection.java:570)
         at weblogic.socket.NTSocketMuxer.processSockets(NTSocketMuxer.java:105)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:32)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    * Note: the exception is caused only when the MBeanHome for each domain is cached and used for subsequent
    * transactions. The exception does not occur if the MBeanHome for each domain is looked up for each transaction. This
    * would significant overhead in practice. Also the transactions across the various domains occurs serially, hence
    * the effect of concurrent lookups has to be tested.
    * Usage:
    * This class has been tested with weblogic 8.1
    * The class needs weblogic.jar in its classpath
    * One can specify the weblogic details as System properties. The properties need to be specified in
    * the following format:
    * wls.host.n, wls.userId.n, wls.password.n where n is the weblogix instance number. Also specify
    * the boolean system property reconnect.each.iteration to toggle between reconnecting or not reconnecting
    * for each iteration. When not reconnecting for each iteration, the MBeanHome is reused and the Security Exception
    * occurs.
    * Following is the example of system properties
    * -Dwls.host.0=localhost:7001 -Dwls.userId.0=weblogic -Dwls.password.0=weblogic
    * -Dwls.host.1=localhost:7011 -Dwls.userId.1=weblogic -Dwls.password.1=weblogic1
    * -Dwls.host.2=localhost:7021 -Dwls.userId.2=weblogic -Dwls.password.2=weblogic2
    * -Dreconnect.each.iteration=false
    public class WLSecurityTest
    ArrayList wlsDetailsList = new ArrayList();
    HashMap connectionMap = new HashMap();
    public static void main(String[] args)
    try
    WLSecurityTest wlSecurityTest = new WLSecurityTest();
    catch (Exception e)
    e.printStackTrace();
    * Constructor
    * @throws Exception
    public WLSecurityTest() throws Exception
    int noOfTries = 10;
    getWLSDetails();
    for( int i=0; i <= noOfTries; i++)
    runTest();
    * Runs the test
    private void runTest()
    for (int i = 0; i < wlsDetailsList.size(); i++)
    WLSDetails wlsDetails = (WLSDetails) wlsDetailsList.get(i);
    getWeblogicInfo(wlsDetails);
    * Get Weblogic details from System properties
    * @throws Exception
    private void getWLSDetails() throws Exception
    wlsDetailsList = new ArrayList();
    String hostKeyTmpl = "wls.host";
    String userIdKeyTmpl = "wls.userId";
    String passwordKeyTmpl = "wls.password";
    boolean done = false;
    for (int i = 0; !done; i++)
    WLSDetails wlsDetails = new WLSDetails();
    String hostKey = hostKeyTmpl + "." + Integer.toString(i);
    String userIdKey = userIdKeyTmpl + "." + Integer.toString(i);
    String passwordKey = passwordKeyTmpl + "." + Integer.toString(i);
    wlsDetails.hostName = System.getProperty(hostKey);
    done = (wlsDetails.hostName == null) || (wlsDetails.hostName.length() == 0);
    if (!done)
    wlsDetails.userId = System.getProperty(userIdKey);
    wlsDetails.password = System.getProperty(passwordKey);
    connect(wlsDetails);
    wlsDetailsList.add(wlsDetails);
    * Lookup the MBeanHome for the specified weblogic server
    * @param wlsDetails
    * @throws Exception
    public synchronized void connect(WLSecurityTest.WLSDetails wlsDetails) throws Exception
    Context ctx = null;
    MBeanHome mbHomeLocal = null;
    try
    Environment env = new Environment();
    env.setProviderUrl("t3://" + wlsDetails.hostName);
    env.setSecurityPrincipal(wlsDetails.userId);
    env.setSecurityCredentials(wlsDetails.password);
    Hashtable hashtable = env.getProperties();
    System.out.println(hashtable.toString());
    ctx = env.getInitialContext();
    wlsDetails._mBeanHome = (MBeanHome) ctx.lookup(MBeanHome.ADMIN_JNDI_NAME);
    catch (Exception e)
    e.printStackTrace();
    * Gets weblogic information using MBeans
    * @param wlsDetails
    public synchronized void getWeblogicInfo(WLSDetails wlsDetails)
    try
    boolean reconnectEachIteration =
    Boolean.getBoolean("reconnect.each.iteration");
    if( (reconnectEachIteration) || ((wlsDetails._mBeanHome == null) && (!reconnectEachIteration) ))
    connect(wlsDetails);
    MBeanHome mbHomeLocal = wlsDetails._mBeanHome;
    String domainName = mbHomeLocal.getDomainName();
    Set allMBeans = mbHomeLocal.getAllMBeans();
    System.out.println("Size: " + allMBeans.size());
    Set clusterMBeans = mbHomeLocal.getMBeansByType("Cluster", domainName);
    System.out.println(clusterMBeans);
    MBeanServer mBeanServer = mbHomeLocal.getMBeanServer();
    catch (Exception ex)
    ex.printStackTrace();
    * Class that holds weblogic server details
    class WLSDetails
    String hostName = "";
    String userId = "";
    String password = "";
    MBeanHome _mBeanHome = null;

    If Server version is 61.
    Make user "system" password of all weblogic servers same.
    If Server version above 61(70,81)
    In the Security Advanced Settings un check generated credential and specify a common credentail for all the weblogic servers(domains).

  • More than one domain name

    Hello.
    I have more than one domain name that I want re-route to one web address. How can I do this with i-web? I also want to know how to set up a personal email address for my web site, (ex. [email protected]) Im not sure how to do this either with i-web.
    Thanks!!!!
    Alan

    You need to enter a personal domain name in your .Mac account and then you have the option of using CNAME once and then web forwarding for the rest. You need to go to your domain name registrar/hosting company and alter the DNS setting for this and also use the masked or unmasked web forwarding options.
    If you want to use the e-mail option, then this will also be done through your hosting company. .Mac just hosts the site, not the domain name.

  • MORE THAN ONE DOMAIN NAME WITHIN MY MOBILEME ACCOUNT ?

    I own more than one domain name. Can Mobileme host more than one of them and keep them separate for viewers so that somebody logging in to website 1 does not also get the files etc for website 2 ?

    mrs green wrote:
    Can Mobileme host more than one of them...
    Welcome to the discussions, Mrs Green. MobileMe doesn't host domain names +per se+ — MobileMe accepts a re-direction of a domain name to its servers. MobileMe will accept only one domain name re-directed via CNAME, but can accept more re-directed domain names via "WebForwarding".
    ...and keep them separate for viewers so that somebody logging in to website 1 does not also get the files etc for website 2 ?
    See +"WebForward with Cloaking (or masking)"+ here:
    http://iwebfaq.org/site/iWeb_Domains.html

  • Configure workflow notification mailer for more than one domain

    Hi ,
    Is it possible to configure workflow notification mailer for two different Domains ?
    We are using more than one domain so the notifcations/mails has be to be directed to more than one domain .
    please guide me through some docs .
    Regards .

    Duplicate thread (please post only once)
    plz help me...!!!! Workflow Notification Mailer
    plz help me...!!!! Workflow Notification Mailer

  • .mac host more than one domain at a time????

    can . mac host more than one of my domains at a time?????
    thanks

    can . mac host more than one of my domains at a time?????
    .Mac doesn't host domain names. If you are talking about web sites, you can have as many sites as will fit in your storage space. You can also use url forwarding to point to as many sites as you want.
    The right place to ask questions about .Mac and domains is probably:
    http://discussions.apple.com/forum.jspa?forumID=1163

  • Config more than one Domain SIP on Presence Server

    Hello,
    We are doing integration between CUPS and LYNC. we have a client that have many domains example:
    [email protected]
    [email protected]
    [email protected]
    so, in service parameters I configure the domain grupocopisa.com for the sip proxy. Also configure de network domain with grupocopisa.com
    I "THINK" I need to conf more than one domainsip proxy because the sip invites from is well treated. no?
    [email protected]
    [email protected]

    Hello,
    I read and see that this integration manual not aplied for my project. We are not remplacing the LYNC with jaber. We are integration the CUPS and LYNC but using only the LYNC client. This manual is for remplacing the lync client for jabber client, and doing step by step mainteing the presence feature between jabber and lync during the migration of remote head quarters. please correct me if im wrong.
    http://www.cisco.com/en/US/docs/voice_ip_comm/cups/8_6/english/integration_notes/Federation/Intradomain_Federation/Overview_chapter.html
    Partitioned Intradomain Federation
    More and more enterprises are choosing Cisco Unified Presence as their  IM and Availability platform. These enterprises already have Microsoft  Office Communications Server (OCS) or Microsoft Live Communications  Server (LCS) deployed and want to move their users from Microsoft Office  Communicator to a Cisco Unified Presence supported client. During the  transition, it is important that these users who migrate to a  Cisco Unified Presence supported client can continue to share presence  information and instant messages with those users who are still using  Microsoft Office Communicator. For more information about supported  Cisco Unified Presence clients, see Software Requirements.
    Partitioned Intradomain Federation enables Cisco Unified Presence client  users and Microsoft Office Communicator users within the same  enterprise domain to exchange presence Availability and IM.
    This integration supports users within an enterprise domain who are  either configured on Cisco Unified Presence and use a  Cisco Unified Presence supported client as their desktop client, or are  enabled on OCS or LCS and use Microsoft Office Communicator as their  desktop client.

  • Why can't I display content from more than one domain in my web app?  Is there a workaround?

    I'm trying to display 2 datasources in different views of my web app, an rss from twitter, and an rss from wordpress,  but for some reason dashcode doesn't allow this.  Is there code that can fix this?  A source paramater change code (shown below) is provided in dashcode, but I don't know how to implement this, or if it will even solve the problem.  Can anyone help?
    // Retrieves data source. Sets a query parameter "category" to "Apple"
    var dataSource = dashcode.getDataSource("detailRequest");
    dataSource.setValueForKeyPath("Apple", "parameters.category");

    If you have the Creative Cloud and the Photoshop subscriptions in the same ID, then that's the issue:
    http://www.adobe.com/products/creativecloud/faq.html
    Can I buy more than one membership to an individual offering of Creative Cloud? 
    No, Adobe has moved to identity-based licensing with a technology that will not support multiple same-product licenses, so you can buy only one membership per Adobe ID. If you need two Creative Cloud memberships, you will need to purchase each with a unique Adobe ID. You can also purchase a Creative Cloud for teams membership, which allows you to purchase and manage multiple seats under one account.
    Just talk with Adobe customer's support and they will help you sort it out.
    Cheers,

  • More than one domain in the same library?

    I use two Macs. In one I use iWeb to maintain two blogs and in the other I use iWeb to maintain two sites. I am giving one of the Macs to one of my sons and would like to use one Mac to work with both domains. Can I copy both domains to the same iWeb application support folder or will one copy over the other and destroy it? Will the same folder hold two Domain files or do I need to rename one of them? Thanks!

    To add to Roddy's post I use iWebSites to manage multiple sites.. It lets me create multiple sites and multiple domain files.
    If you have multiple sites in one domain file here's the workflow I used to split them into individual site files with iWebSites. Be sure to make a backup copy of your original Domain.sites files before starting the splitting process and move it to another location on your HD until you're satisfied the separation process is completed and what you want.
    This lets me edit several sites and only republish the one I want.
    OT

  • More than one domain name on mobileme

    I have made two websites with iweb which I have hosted on my MobileMe account. I bought one domain name from godaddy to link with my first site and this worked well, however when I bough a second name for the other web site I encountered lots of problems, I could link the site but no include the www and then was confronted with the sign in form although I have not ticked the 'make my site private box'
    Will MobileMe only except one domain name, if so I will have to try and find another hosting site.

    You can have only one domainname with Personal Domain at MobileMe. To use the other one you have to enable URL forwarding, with or without masking where you host your domainname.
    There's [a forum dedicated to MobileMe, Personal Domain and iWeb|http://discussions.apple.com/forum.jspa?forumID=1163] where these questions are asked and answered daily.
    All your pages on MMe are accessible by that domainname and by the web.me.com/username address.
    Configuring a domainname is beyond iWeb.

  • Want to include more than one domains for SSO

    I have 3 authentication sources (3 NTLMs).I have hooked one to SSO and want to do same to the other 2. Do i need to do anything special in the PTconfig settings or anywhere else.Like what will happen to DefaultAuthCourcePrefix --<!-- This is the default auth source prefix that will be prepended to the login name when users log into your system, unless they pick another auth source from the drop down box on the login page. In the case of SSO, this is the auth source category for all of your SSO users. --> <DefaultAuthSourcePrefixvalue="1stdomain"/>

    Actually, 5.0 will support multiple auth source prefixes with SSO out of the box, if the SSO itself provides the domain/prefix and the prefix of the portal user accounts is the same as the one the SSO provides.
    In the case of NTLM, since Windows provides the domain name, you just need to make sure your authentication sources use the domain name as the Plumtree prefix:
    http://portal.plumtree.com/portal/server.pt/gateway/PTARGS_0_13271_574734_0_0_18/windows_integrated_authentication_sso_with_multiple_nt_domains.htm

  • Issue with navigate to more than one domain within the same app

    We would like to create an application for Excel, starting page of which redirects user to other domains (we have separate domain for each customer).
    We followed the instructions described here: https://msdn.microsoft.com/en-us/library/office/jj715716.aspx?ppud=4
    But they helped us only for Desktop version of Excel, in Excel Online we have problems with conversationId.
    If during redirect we keep only window.location.search - exception about null conversationId appears. 
    If during redirect we pass window.location.search and window.location.hash - we have error during call to ContextActivationManager_getAppContextAsync with message 'Failed origin check'.
    Manifest example:
    <?xml version="1.0" encoding="utf-8"?>
    <OfficeApp
    xmlns="http://schemas.microsoft.com/office/appforoffice/1.1"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:type="ContentApp">
    <Id>01eac144-e75a-45a7-b6d7-f1cc60ab0129</Id>
    <Version>1.0.0.0</Version>
    <ProviderName>XYZ</ProviderName>
    <DefaultLocale>en-US</DefaultLocale>
    <DisplayName DefaultValue="XYZ Excel app" />
    <Description DefaultValue="XYZ Excel app" />
    <AppDomains>
    <AppDomain>https://a.xyz.net</AppDomain>
    <AppDomain>https://b.xyz.net</AppDomain>
    </AppDomains>
    <Hosts>
    <Host Name="Workbook" />
    </Hosts>
    <DefaultSettings>
    <SourceLocation DefaultValue="https://xyz.net/index.html" />
    <RequestedWidth>400</RequestedWidth>
    <RequestedHeight>300</RequestedHeight>
    </DefaultSettings>
    <Permissions>ReadWriteDocument</Permissions>
    <AllowSnapshot>false</AllowSnapshot>
    </OfficeApp>

    Hi Edward,
    Thank you very much for your response.
    Main problem is that after redirect we will be on the page, that wants to behave like app for Office and have access to Office JS api. But initialization of Office JS api fails.
    Here is sample code, used bubbles application as example:
    <html>
    <head>
    <title>Redirect test</title>
    <script src="https://appsforoffice.microsoft.com/lib/1.1/hosted/office.debug.js" type="text/javascript"></script>
    <script type="text/javascript">
    Office.initialize = function (reason) {
    console.log('Office.initialize called');
    var APP_URL = "https://bubbles.azurewebsites.net";
    function redirect() {
    performRedirect(APP_URL);
    function redirectWithSearch() {
    performRedirect(APP_URL + window.location.search);
    function redirectWithHash() {
    performRedirect(APP_URL + window.location.search + window.location.hash);
    function performRedirect(url) {
    console.log('url = ' + url);
    window.location.href = url;
    </script>
    </head>
    <body>
    <button type="button" onclick="redirect()">Redirect to bubbles app</button>
    <br/>
    <button type="button" onclick="redirectWithSearch()">Redirect to bubbles app with search</button>
    <br/>
    <button type="button" onclick="redirectWithHash()">Redirect to bubbles app with search and hash</button>
    </body>
    </html>
    Beat regards,
    Mary

  • Hosting more than one domain on mobile me? subdomain?

    can and if yes how does one host a second site thru iweb/mobileme account...

    HI,
    Post in the iWeb forum here.
    http://discussions.apple.com/category.jspa?categoryID=188
    Carolyn

  • How to add more than one server in emanager

    Hi All,
    In Java CAPS6, If I add more than one domain that is GlassFish server, how can I add these server in emanager. I am able to add only one server in eManager.
    Please let me know if any one knows.
    Thanks & Regards,
    B

    Hi,
    I have the same problem. I succeeded in adding the default domain (on the default port 4848) but when I try to add another domain on a different admin port, the connection cannot be established. Here is the manager log :
    2009-02-18 10:41:23,867 ERROR [http-15000-Processor24] com.stc.emanager.deployment.actions.AddNewServerAction - java.security.PrivilegedActionException: com.sun.xml.messaging.saaj.SOAPExceptionImpl: Bad response: (404Not Found due to Connection Failed. Please check the following: <br>   &nbsp - Server Type is correct. <br>   &nbsp - Server is running. <br>   &nbsp - Hostname and Port number(s) are correct. <br>   &nbsp - Server SSL configuration.
    The manager and appserver are on the same server.
    As someone resolved the problem ?

  • Applying SSO for more than one Weblogic Servers on the same Windows domain

    I've more than one Weblogic servers (developers machines, test servers, test clusters, clusters and etc.) on my windows domain.
    I'm going to configure SSO to all of them. However I want to ask something about SPNs.
    For standalone machines (Which are not clustered, developer machines & test machine) :
    Do I have to create a new Active Directory user like "wlskerberos" for each machine on my domain?
    For cluster machines
    Do I have to create more than one Active Directory user account for each cluster member like "wlskerberos"?
    For clusters, users don't see the managed servers' HTTP address which are behind the Oracle HTTP Server.
    Therefore am I going to add only one SPN and map it to the Oracle HTTP Server adress?
    Lastly for the keytab files, does it enogh to create only one keytab for all machines?

    Do I have to create a new Active Directory user like "wlskerberos" for each machine on my domain?
    yes, and u register the spn with that user
    For the other question, refer to this link
    http://weblogic-wonders.com/weblogic/2010/03/05/kerberos-in-a-proxyload-balancer-weblogic-cluster/
    Hope this answers!

Maybe you are looking for

  • How do I remove App Store account that isn't mine?

    I open App Store application and it shows that I have 1 update available for an app I never purchased. I try clicking the update button and get the message "You have updates available for other accounts: Sign in to [email protected] to update applica

  • Probably the mother of all stupid display questions...

    I just bought a Gateway 22" widescreen for my PowerMac. Max resolution is 1680 by 1050 which is the default the Mac set it to (DVI connection btw). I was messing around playing UT2004 with this new display. My question is this...would the display or

  • How to enable callback

    Hi Netpros, I have 3660 router with NM-16AM, Modem type is microcom_mimic. I was interested in configuring callback facility on this so that I could connect to this Router from my home. How can I achive this. I am able to dial into the router succesf

  • Firefox crashes when too many images are opened

    Okay, so, a problem that appeared in 4.0 for me, and hasn't gone away ever since. The problem is basically summarized in the short description - whenever too many heavy images are in the browser's tabs simultaneously, it slows down to a halt; then so

  • Read proxy class data

    HI All , there is webservice which is defined on j2ee (had logical port on lpconfig and proxy class ) and we need to read it in report how i can do it ? I am new for this topic Regards Chris Edited by: Chris Teb on Oct 8, 2009 11:08 AM