Weblogic multiple Domain

I am working with WLS 6.1 SP1 & SP2. I defined two Domain and they are
working fine. In both Domains are different managed servers depending
the different security realms. I can already manage the two domain
from one Admin server. My Problem is how to monitor the two domain
from within one Admin Server?

Virtual hosting is currently not supported with WebLogic. It will be in our
next release.
What some people have done is extended our file servlet and write their own
to support virtual listing.
Thanks,
Michael
Michael Girdley
Product Manager, WebLogic Server & Express
BEA Systems Inc
"ÀåÈñ°æ" <[email protected]> wrote in message
news:[email protected]..
I wanna set into Weblogic with Multiple Domain Names!!!
For Example,
I have three domain names which are a.com, b.com, c.com.
And I have also three folders in Weblogic are a folder,b folder,c folder.
And then I want have different basic document(start document) for each
domain like below example.
------------- Below Example -----------
a.com - a folder - a.html
b.com - b folder - b.html
c.com - c folder - c.html
Who will be my helper? Can you tell me the answer?
Thank you! Bye!

Similar Messages

  • Start multiple domains simultaneously on 1 Weblogic server installation?

    Is it okay to start and run multiple domains simultaneously. Better yet, when having multiple domains on 1 WLS server, should each domain have a different port number in order to be run simultaneously?
    Here's my scenario - I installed Oracle Business Intellgence, which by default installs and configures WLS server for certain Business Intelligence applications (BI Publisher). This instance was running fine and good and still is.
    Then I had another application, Oracle Data Integrator, which has a Console piece that requires a domain on WLS. So instead of modifying the existing domain for Oracle Business Intelligence, I created a new domain via the Configuration Wizard and selected those components for Oracle Data Integrator.
    therefore current domains:
    ...\domains\bifoundation_domain --> installed automatically as part of Oracle Business Intelligence
    ...\domains\odi11g --> I created this domain after I
    Now I have 2 domains under 1 WLS Server (windows 7 64bit), but if I startWeblogic.cmd for the bifoundation_domain, and I startWeblogic.cmd for the odi11g...then only the components for the bifoundation_domain become available via the WLS Console.
    Questions:
    - Can I run both domains simultaneously?
    - Should I have modified the bifoundation_domain to include Oracle Data Integrator component; therefore only having 1 domain but having everything run under that domain?
    - Does the Port for each domain matter? both bifounddation_domain and odi11g domain use ports 7001
    Are there any other considerations? Thanks much.

    Hi,
    It is perfectly OK to run multiple domains on a single Weblogic server installation. Only constraint would be you have enough capacity available on your server to start multiple instances.
    Things to note is, if your domain1 is running on listen address : port { localhost : 7001 } then your other domain should be configured on a different port say {localhost : 8001 }. If you want both domain to run on same port then go for virtual IP's to be plumbed on your physical network interface and configure as,
    domain1 - { ip1 : 7001 }
    domain2 - { ip2 : 7001 }
    this way you will can access both domain admin console on same port.
    Remember, Weblogic resources cannot be shared between domain, however a single nodemanager will be enough to monitor both the domains.
    * rank it if answer is helpful :) *
    Thanks,
    Ranjan

  • Multiple Certs for multiple domains on one server

    Is it possible with WLS6 and WLCS3.5 to serve up multiple domains with their own certificates?
    i.e. https://www.foo.com and https://www.bar.com on the same box.

    Hi,
    for one WebLogic Server you can only specify one certificate. So to achieve
    this you will have
    to use different WLS instances for your domains - which is possible on the
    same box.
    Kind Regards
    Maria Salzberger
    Developer Relations Engineer
    BEA Support
    Mike Berger schrieb in Nachricht <3c21f5c3$[email protected]>...
    Is it possible with WLS6 and WLCS3.5 to serve up multiple domains withtheir own certificates?
    i.e. https://www.foo.com and https://www.bar.com on the same box.

  • Windows Server - Run multiple domains under different accounts

    Hi,
    I have multiple domains on a Windows Server. I'd like to run these under separate accounts for security reasons.
    My options I have so far:
    1) Install all Admin servers and managed servers as windows services and set logon appropriately
    2) If possible, use multiple node manager instances, one for each domain and set the log on for each node manager windows service
    I like the idea of multiple node managers but I can't find any reference in the documentation about this. I'd rather not use option 1 as I won't be able to restart servers from the WebLogic Console
    Has anyone had to do this before?

    First option might be the cleanest .
    For second option make sure that there are separate Node_Manager home directory for different node manager instances.
    Edited by: atheek1 on Jun 19, 2010 4:55 AM

  • Multiple domain in fusion 11g

    All,
    Soa : 11.1.1.3
    Similar to soa 10.1.3.4 where we can have multiple domains in oc4j, how do we maintain multiple domains in weblogic server in 11g? I know how to create multiple domains in 11g, but if I install soa 11g in single machine how do I start admin and managed servers for multiple domains?
    Please help me
    Thanks,
    Sen

    All,
    In 11g(11.1.1.3), this feature is called as partitions. To create partition is very simple, login to em (http://<localhost>:<port>/em), on your left extreme you can see SOA folder. Beneath that you can see soa_infra, right click and choose manage partitions and it prompt for creation of new partitions. thats all.
    Now on deploying your BPEL thru jdev, you can see the option at the last wizard you can choose which domain you want to deploy it.
    thanks,
    sen

  • Modifying the script to include multiple domains

    Hi,
    The below script will start the servers by connecting to node manager for a particular domain. How can I modify the below script to include multiple servers which are from multiple domains.
    from java.util import Properties
    from java.io import FileInputStream
    from java.io import File
    from string import split
    def carryFileProperties(serverName) :
    print 'carrying properties of: ' + serverName
    #properties file to be loaded
    myProps = Properties()
    #load properties file
    myProps.load(FileInputStream(File(serverName)))
    return myProps
    def serversList(fileProperties):
    print 'selecting servers from the properties'
    servers = []
    properties = fileProperties.propertyNames()
    while properties.hasMoreElements():
    key = properties.nextElement()
    element = split(key, '_')
    if element[0] == 'SERVER':
    servers.append(key)
    print'LIST OF servers to initialize'
    for server in servers:
    print 'Server ==>> ' + fileProperties.get(server)
    return servers
    def startInstance():
    user = fileProperties.get('USER_ADM')
    passwd = fileProperties.get('USER_ADM_PASSWD')
    nmIP = fileProperties.get('NODEMANAGER_IP')
    nmPort = fileProperties.get('NODEMANAGER_PORT')
    domainName = fileProperties.get('DOMAIN_NAME')
    domainDirectory = fileProperties.get('DOMAIN_DIRECTORY')
    nmConnect(user,passwd, nmIP, nmPort, domainName, domainDirectory, 'plain', 'true')
    for server in servers:
    print 'requesting the server startup ' + fileProperties.get(server)
    nmStart(fileProperties.get(server), domainDirectory)
    fileProperties = carryFileProperties('servers.properties')
    servers = serversList(fileProperties)
    startInstance()
    below is the properties file
    NODEMANAGER_IP=localhost
    NODEMANAGER_PORT=5559
    DOMAIN_NAME=base_domain
    DOMAIN_DIRECTORY=/opt/weblogic/base_domain/
    USER_ADM=weblogic
    USER_ADM_PASSWD=weblogic
    SERVER_1=managedServer1
    SERVER_2=managedServer2
    ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    I was able to answer myself

  • Error in Starting weblogic Portal Domain

    I have created weblogic portal domain using configuration wizard in Weblogic portal 9 and in weblogic portal 10.
    Weblogic portal 9 it is started fine and when started in weblogic portal 10 it throwed following exception.
    weblogic.security.SecurityInitializationException: Authentication denied: Boot identity not valid; The user name and/or password from the boot identity file (boot.properties) is not valid. The boot identity may have been changed since the boot identity file was created. Please edit and update the boot identity file with the proper values of username and password. The first time the updated boot identity file is used to start the server, these new values are encrypted.
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.doBootAuthorization(Unknown Source)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(Unknown Source)
         at weblogic.security.service.SecurityServiceManager.initialize(Unknown Source)
         at weblogic.security.SecurityService.start(SecurityService.java:141)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:200)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:172)
    Can some one help me in this exception
    Thank You

    I am not sure how you got into this state, but to clear it up you can edit the boot.properties file to enter (clear text) the username and password for the server (entered when running the Configuration Wizard).
    The boot.properties file is located in your domain at:
    <domain root>/servers/AdminServer/security
    Just enter the username and password in the file:
    username=myUserName
    password=myPassword
    WebLogic Server will boot up using these values and immediately encrypt the username and password in the file.
    An alternate approach would be to delete boot.properties in which case WLS will prompt you for the id/pw each time it is started/stopped.
    Brad

  • Issuing Multiple MYSAPSSO2 tickets for Multiple Domains

    Hi,
    I am having a problem understanding the SAP documentation on how to go about issuing SAP login tickets in multiple domains. In the documentation it states that in order to do so, you require either a IRJ or the SAP ISAPI Web Filter installed in on a server in the target Domain. I have now setup the IIS_SSO.dll ISAPI filter in the domain I require the SSO ticket to be issued in however when I make a request to that webserver I do not see the MYSAPSSO2 cookie being created in my browser, I do see in the ISAPI logs that the request has been filtered and the portal username extracted and set to the configured HTTP Header, but no new Cookie created in the DOMAIN.
    Can anyone help? Has anyone done something like this before?
    Basically I have a portal in the domain <b>myportal.subdomain.domain.com</b> and an ITS in the domain <b>myits.domain.com</b>. With this configuration the MYSAPSSO2 cookie is not sent to the ITS server as it is in a Super Domain. So what I want is to configure the portal to issue a Cookie in the super domain (domain.com) rather then subdomain.domain.com. I thought I could do this with the parameter login.ticket_recieving_hosts in the usermanagment.properties file (EP5) and the IIS ISAPI filter to SSO (IIS_SSO.dll) configured on a website in the super domain (domain.com).
    Any help would be greatly appriciated.
    Simon.

    I believe we had to set the domain relax level (ume.logon.security.relax_domain.level) but needed to make sure this was secure since it changes the domain scope of cookies that are valid for the system.
    See the following:
    http://scn.sap.com/thread/1534863
    http://help.sap.com/saphelp_nw70ehp3/helpdata/en/5e/473d4124b08739e10000000a1550b0/frameset.htm
    Hope this helps.

  • Multiple Domain files, Multiple Sites, Publishing Problems

    I am frustrated beyond belief. I'm an old hand-coder, coming from BBEdit, but I've been using iWeb almost exclusively since its release, because it really is a great product for quick, easy, stylish designs.
    However.... In that year, my collection of sites has grown to 12. Discovering that iWeb becomes a major dog when dealing with that much material, I found and followed the instructions - today - to separate my sites into individual domain files, and edit them individually. iWeb is much snappier and publishing goes much more quickly.
    The problem? Well... after editing, "Publish to .Mac" rarely works. Only "Publish All to .Mac" will get the site online (something about an error with the index.html file). But "Publish All to .Mac", I've just discovered, DELETES the other websites that I have previous published. All day I've been doing updates and publishing my sites, only to discover that the uploads have all been wiped out by the most recent one!
    I'm a big enough fellow to admit that my knowledge isn't total nor perfect - so please, would someone out there with a better handle on iWeb than I (preferably someone who actually deals with multiple domain files rather than someone who thinks they can guess the problem) please clue me into how we make use of this program non-destructively?
    I suppose I could always publish everything to folders and upload it to my iDisk (which itself remains ridiculously slow after how many years now? Sheesh!), but that detracts from the elegance of the .Mac integration, the counter features, - not to mention the little fact that I'm a paying .Mac customer and this darn thing should just work, no?

    Mark:
    I was where you were also. You should give iWebSites a try. It's to iWeb what iPhoto Library Manager is to iPhoto.
    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 Domain.sites files before starting the splitting process.
    This lets me edit several sites and only republish the one I want. Just remember to put a copy of your current Domain.sites file somewhere else on your HD in case the splitting gets messed up. It went very smoothly for me and I now manage 19 or so sites.
    Do you Twango?

  • How do I host multiple domains on a single Messaging Server?

    How do I host multiple domains on a single Messaging Server?
    <p>
    To host multiple domains on one Messaging Server, use the
    mailAlternateAddress attribute. If you want to host two domains
    (customer1.com and customer2.com) on your server mail1.domain.com,
    make sure that:
    The various domains (in DNS) point to the installed mail server
    (you must have the MX records that
    points mail for customer1.com to mail1.domain.com and
    customer2.com to mail1.domain.com)
    That each person receiving mail at customer1.com and
    customer2.com has an appropriate mailAlternateAddress
    attribute describing the appropriate email address. For
    instance, John Doe can have an email address (i.e. the value
    of the 'mail' attribute for the John Doe LDAP entry) of
    [email protected] and receive his mail on
    [email protected] (the value of the mailAlternateAddress
    attribute)
    With Messaging Server 3.5, mailAlternateAddress can take the
    form of @mail1.domain.com. If jdoe's mailAlternateAddress is
    set to @mail1.domain.com, mail sent to [email protected]
    will be delivered to [email protected]

    jaygatsby1123 wrote:
    So what exactly am I doing with virtual hosts?  There is a place for Aliases...  What would I put in the "Aliases" box?
    Any other host name that you want to resolve to the specified virtual host.  It's quite literally an alias.
    if you want www.example.com and www.example.org to end up at the same web site and you already have a virtual host — Apple refers to virtual hosts as sites — configured for www.example.com in Server.app, then you'd add www.example.org as an alias for the www.example.com virtual host (site).
    Virtual hosts are implemented in a web server using some details of the HTTP or HTTPS protocol, and what the web browser (client) specified.  The client gets handed an IP address or a domain name by the user, and the client then fetches the associated IP address for the target web server from the client's DNS services or local host database, and the client then connects to the IP address and passes over the text string that the user had requested — the IP address or domain name or even some local shortcut set up in the client system — via the HTTP or HTTPS protocol.  The web server receives and processes this arriving text string from the client, and uses it to select which web site to render back to the web client.   One subtle detail lurks here, too: the server's own DNS configuration really isn't involved in the selection of the virtual host.

  • How to create a muse site in various languages with multiple domains

    I have been asked to create a website for a product. A very simple website with maybe one or two pages and one product for sale for which the client would like Paypal as the payment gateway. Simple right?
    No! This client would like to market their product into Europe, they would like to purchase multiple European domains ( .fr, .de for example).
    So how on earth can I do this? I will be using Muse for build and Business Catalyst for hosting.
    Bearing in mind the client will not want to pay for separately hosted sites. Is there a way of translating the text for each domain. Or could I assign multiple domains but direct them to different home pages within the same site?
    I haven’t a clue how to problem solve this.

    Hi,
    Some links that might be useful,
    how to set up a multilingual website with Adobe Muse and push it live to Adobe Business Catalyst
    Re: How can i create different languages for my page?
    How can i create a multilingual website?
    how to create a multilingual site
    Do let me know if you have any question.

  • How to use the Load Balancer Plug-in to serve multiple domains

    In SJSAS8.1 SE/EE the asadmin commands that create and maintain a load balancer configuration operate within a domain. When the load balancer configuration is exported an xml file is created that contains all the information for that domain. To make the load balancer plug-in balance the load for multiple domains, the loadbalancer.xml files can be manually merged to conatin the data that is exported from each domain's load balancer configuration.
    For example, 2 domains are created, both having a load balancing configuration. After exporting both configurations using the asadmin export-http-lb-config command, the user would then cut and past the cluster information into the single loadbalancer.xml file that resides under the web server's config directory.
    An example of the manually merged loadbalancer.xml file follows:
    <?xml version="1.0" encoding="UTF-8"?>
    <loadbalancer>
    <cluster name="domain1">
    <instance disable-timeout-in-minutes="30" enabled="true" listeners="http://localhost:1026 https://localhost:38181" name="i1"/>
    <instance disable-timeout-in-minutes="30" enabled="true" listeners="http://localhost:1027 https://localhost:38182" name="i2"/>
    <web-module context-root="ab" disable-timeout-in-minutes="30" enabled="true"/>
    <health-checker interval-in-seconds="5" timeout-in-seconds="60" url="/"/>
    </cluster>
    <cluster name="domain2">
    <instance disable-timeout-in-minutes="30" enabled="true" listeners="http://localhost:1029 https://localhost:38189" name="i3"/>
    <instance disable-timeout-in-minutes="30" enabled="true" listeners="http://localhost:1030 https://localhost:38188" name="i4"/>
    <web-module context-root="webservice" disable-timeout-in-minutes="30" enabled="true"/>
    <health-checker interval-in-seconds="5" timeout-in-seconds="60" url="/"/>
    </cluster>
    <property name="response-timeout-in-seconds" value="60"/>
    <property name="reload-poll-interval-in-seconds" value="5"/>
    <property name="https-routing" value="false"/>
    <property name="require-monitor-data" value="false"/>
    <property name="route-cookie-enabled" value="true"/>
    </loadbalancer>
    Hope this helps - Mark

    Mark, be my savior, I work for SUN as subcontractor at client site. the only one at site ...so I depend on this forum for solutions........
    still having trouble failingover to second instance. I have two AccessManagers behind this loadbalancer.
    Here is what I saw......
    **************LOGS**********************
    [20/Jun/2005:14:22:47] failure (15102): for host 128.114.65.13 trying to GET /amconsole/base/AMA
    dminFrame, service-passthrough reports: timed out waiting for request body
    [20/Jun/2005:14:22:47] warning (15102): reports: lb.runtime: ROUT1014: Non-idempotent request /
    amconsole/base/AMAdminFrame cannot be retried.
    So I went and updated the loadbalancer.xml (see at the end of the msg). Now I get a different kind of problem...
    **************LOGS******************************
    [20/Jun/2005:15:25:18] failure (15295): for host 128.114.65.13 trying to GET /amconsole/base/AMA
    dminFrame, service-passthrough reports: timed out waiting for request body
    [20/Jun/2005:15:25:18] info (15295): reports: lb.runtime: RNTM3003 : Error servicing the request : NoVal
    Here is my loadbalancer.xml file...
    <loadbalancer>
    <cluster name="cluster1">
    <instance name="instance1" enabled="true" disable-timeout-in-minutes="1" listeners="http://idm-test-1.ucsc.
    edu:80 "/>
    <instance name="instance2" enabled="true" disable-timeout-in-minutes="1" listeners="http://idm-test-2.ucsc.
    edu:80 "/>
    <web-module context-root="amconsole" disable-timeout-in-minutes="1" enabled="true" error-url="sun-http-lber
    ror.html" >
    <idempotent-url-pattern url-pattern="/*" no-of-retries="3" />
    </web-module>
    <web-module context-root="amserver" disable-timeout-in-minutes="1" enabled="true" error-url="sun-http-lberr
    or.html" >
    <idempotent-url-pattern url-pattern="/*" no-of-retries="3" />
    </web-module>
    <web-module context-root="ampassword" disable-timeout-in-minutes="1" enabled="true" error-url="sun-http-lb
    error.html" />
    <web-module context-root="amcommon" disable-timeout-in-minutes="1" enabled="true" error-url="sun-http-lberr
    or.html" >
    <idempotent-url-pattern url-pattern="/*" no-of-retries="3" />
    </web-module>
    <health-checker url="/" interval-in-seconds="15" timeout-in-seconds="2" />
    </cluster>
    <property name="reload-poll-interval-in-seconds" value="60"/>
    <property name="response-timeout-in-seconds" value="30"/>
    <property name="https-routing" value="false"/>
    <property name="require-monitor-data" value="true"/>
    <property name="active-healthcheck-enabled" value="true"/>
    <property name="number-healthcheck-retries" value="3"/>
    <property name="route-cookie-enabled" value="true" />
    </loadbalancer>
    **************************************************************

  • How to configure multiple domains in Active directory

    HI,
    How can I configure multiple domains on Active Directory. When I installed AD it asked for a domain name, there I gave ravigupta.com as domain name. But now I find no way of creating another domain.
    I am a java developer and my task is to write a programme which returns all the domains available in LDAP server.
    To start with ,I tried to create few domains in LDAP server ( AD ) but stuck up ,as i found there could exist only one domain.
    Please tell me how to configure multiple domains in LDAP server ( Active Directory).
    I skiped DNS configuration while AD installation.
    -ravi

    I'm sorry, but you should be asking on a different forum. This has nothing to do with Java.

  • Multiple domains and multiple IPs in the same MacMini Server

    I am sure that this topic has been faced already but I cannot find enough information to really dig into a solution.
    I have a macmini server with two IPs let say x.x.x.12 and x.x.x.13 .
    The server is set up on the first IP. It has his primary zone, machine record, mail aslias and www alias.
    Lets call the server domain server.domain1.com
    Everything works fine I have a couple of local users and a couple of LDAP users. Just to test the machine setup.
    I can send and receive emails using any of the users as [email protected]
    Now I would like to have another domain, domain2.com in the same server .
    The final goal is to have users under different domains. They have their own email box, calendar, etc.
    It will be preferable that I can share the same username with different domains. But I can live without that option.
    My first test was to have the second domain called server.domain2.com using the second IP. x.x.x.13 .
    For that I created another Primary Zone with domain2.com as machine record of x.x.x.13 . To use the second IP I simply create another Ethernet interface on the macmini.
    In the Mail -> Advance settings I added the host aliases as well as virtual hosting domains for domains2.com.
    With this setting I can send emails as [email protected] or [email protected] but when I replay to their messages I get a "Relay access denied" error from server.domain1.com .
    I also tryed another domain pointing to x.x.x.12, the same as server.domain1.com . I did not create any extra Primary Zone but the local host aliases and the virtual hosting domains.
    Same issue. I can send but I get a "Relay access " error.
    As you might notice I am a novice on servers settings. I just try to recreate a similar environment common to Virtual Hosting providers for my own website playground but I cannot cut through this email configuration obstacle.
    Any significant meaning that can be leading me to learn how to do it will be very very appreciated . (beside lynda,com tutorials that I followed already but do not mention multiple domains for mails).
    Thanks

    the problem I try to solve is to manage multiple domains in one MacMini Server.
    Having two IPs is secondary.
    I would like that each domains has his own users with emails, iCals, Wiki and web sites.
    The main problem is having emails to work for any additional domain beside the default one on the machine IP.
    I also got an additional IP address to be used on the same server hoping that it make things easier but apparently is making things more difficult.

  • Multiple Domain Files

    A lot of questions are asked in this forum about managing multiple domain files and splitting existing ones.
    The "solutions" seem to be either to use an application such as iWebsites or to duplicate the domain file into folders and delete the appropriate sites.
    When I first loaded iWeb '08, I kept a copy of a blank domain file and use this to start a new site by duplicating it into a new folder and double clicking it to launch iWeb.
    My main reason for doing this was to overcome the inability of iWeb to create a new domain file from the "File" menu.
    I have stayed with this, not only for speed and convenience, but because I read this...
    http://11mystics.com/blog/2007/09/08/how-do-you-manage-multiple-domain-files-for -iweb/
    and also this....
    http://discussions.apple.com/thread.jspa?messageID=6261141&#6261141
    These comments are from two people who dig deep under the hood of iWeb and whose opinions I respect and have taken to heart.
    Is this the best way to create new domain files?
    Am I being over cautious?
    Am I totally deluded?
    The last question is open to psycho therapists only !

    UUIDs are like finger prints in Domain.sites2. There are ways to start new Domain.sites2 without duplicate an existing one:
    1) move the last accessed Domain.sites(2) from its location, or rename the holding folder.
    2) change com.apple.iWeb.plist setting, I post the procedure here:
    http://discussions.apple.com/thread.jspa?messageID=6007612&#6007612
    This can be done with AppleScript or Unix shell script. Doing so will get you new Domain with new UUID.
    When you duplicate a blank domain, you also duplicate its UUIDs, as of now there seems to be OK as long as you keep domain separate. However, we do not know what Apple will do in the future releases, here is UUIDs usage progression in iWeb:
    We did not see much of them in iWeb1, because iWeb1 Domain.sites is flat structure.
    We see UUIDs everywhere in iWeb2 Domain.sites2, from top to bottom; every page has it own UUID.
    So, I would be skeptic about having duplicate UUIDs; even in separate domain packages.
    I ran a cross this when a friend asked me to merge his Domain.sites2 packages, and I thought people should be aware of it.
    I ended up write Applescript applications to merge, extract sites and clean existing Domain.sites2 package by assign new UUIDs.

Maybe you are looking for

  • Do Office 365 integration now (2003) or after upgrade (2012 R2)?

    A client has Server 2003 Standard and are going to migrate to Office 365 very soon (from a hosted mail provider, POP). They are also due for a server upgrade, likely Server 2012 R2 Standard. To eliminate the hassle of managing two different systems f

  • How do you preview .dxf files in Outlook 2010?

    Is there something I can install that will allow me to preview .dxf files in my preview plane for Outlook 2010?

  • Failed Reinstall B1i intregation

    Dear Forum, Before i upgrade my MS SQL 2005, Bi runs well with dashboard and widget on my pc.  I upgrade my MS SQL 2005 into 2008, SAP B1core working ok but my dashboard got error massage about authentication user and password BI.  So i decide to cle

  • Adobe original settings

    In Develop module of Lightroom shift-click on Reset apply Adobe original settings to the image without saving Adobe original settings as default settings. There is an equivalent command in Camera Raw? Thank you. Mauro Boscarol

  • Upgrade to 10.4.6 - fail to boot - cannot see disk anymore

    G5 20 flat panel with 150 gig hard drive. Running 10.4.5 Downloaded 10.4.6 upgrade and system rebooted. Came up with grey screen, no apple icon. Let it sit for a couple of hours. Rebooted using install disk. Went into disk utility and my 150 gig driv