One domain in different mailhost

Sorry for my english: it's very terrible!
I have Sun Java Communication Suite with
Sun Java(tm) System Messaging Server 6.3-0.15 (built Feb 9 2007)
libimta.so 6.3-0.15 (built 18:37:56, Feb 9 2007)
Linux public23.dmz.ritanet 2.6.9-55.ELsmp #1 SMP Fri Apr 20 16:36:54 EDT 2007 x86_64 x86_64 x86_64 GNU/Linux
There is a domain, example.it , with two users: User1 (mail: [email protected]) is in my mailhost, User2 (mail: [email protected]) is in another mailhost, in another mail server. I want that a mail to @example.it get to my messaging server and:
1. if the mail is for user1, my messaging (slave program? master program? I don't know it) dequeue the message to the local message store
2. if the mail is not for user1 (or, if it is for user2) my messaging enqueues the message to the appropriate channel message queue for other mail server
It is possible? Help me, please!
Thank you

Hi,
afiordipelle wrote:
I have Sun Java Communication Suite with
Sun Java(tm) System Messaging Server 6.3-0.15 (built Feb 9 2007)
libimta.so 6.3-0.15 (built 18:37:56, Feb 9 2007)You should be looking to test & upgrade to the latest linux messaging patch (120230-23) which will fix a number of known issues.
There is a domain, example.it , with two users: User1 (mail: [email protected]) is in my mailhost, User2 (mail: [email protected]) is in another mailhost, in another mail server. I want that a mail to @example.it get to my messaging server and:
1. if the mail is for user1, my messaging (slave program? master program? I don't know it) dequeue the message to the local message storeThis it the default behaviour. Messaging server does a directory search for the email address ([email protected]), if the mailhost: attribute matches the hostname of the current system the email is delivered locally (I skipped a lot but that's the two second overview).
2. if the mail is not for user1 (or, if it is for user2) my messaging enqueues the message to the appropriate channel message queue for other mail serverThat is also the default behaviour if the mailhost: for the user is set to the other mail server. Is this 'other' mail server also Sun messaging or some other product?
Regards,
Shane.

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).

  • AD Migration from one domain to another domain between different Forest.

    Dear Team,
    We have a domain named "test.gov.in" .Now we want migrate all the users,computers,groups,GP ....etc in to our new domain "abc.net".Operating system of the source DC and destination Dc is same (Windows 2003 32 bit)..
    Pls provide me the steps to migrate one  domain to another domain between different forest
    Thanks
    Anurag

    Would agree with Christoffer and migrate using ADFS but before you can do this you will need to set up a trust between the two domains.  Once this has been accomplished then you can run ADMT.
    http://technet.microsoft.com/en-us/library/cc740018(v=WS.10).aspx
    Downloading ADMT is a free tool from Microsoft
    http://www.microsoft.com/en-us/download/details.aspx?id=8377
    ADMT Guide
    http://www.microsoft.com/en-us/download/details.aspx?id=19188
    Paul Bergson
    MVP - Directory Services
    MCITP: Enterprise Administrator
    MCTS, MCT, MCSE, MCSA, Security, BS CSci
    2012, 2008, Vista, 2003, 2000 (Early Achiever), NT4
    Twitter @pbbergs http://blogs.dirteam.com/blogs/paulbergson
    Please no e-mails, any questions should be posted in the NewsGroup.
    This posting is provided AS IS with no warranties, and confers no rights.
    I think you mean ADMT and not ADFS :)
    Enfo Zipper
    Christoffer Andersson – Principal Advisor
    http://blogs.chrisse.se - Directory Services Blog

  • Lync 2013 mobile app does not work internally, SIP domain is Different than users UPN. not sure if that matters.

    using the lync client connectivity tester on a pc on the same lan as my mobile client everything is green and it says its ready for use.
    using my android galaxy s5 client on wifi on the same lan i get a screen with waiting to sign in spinning and an error at the top "we cant connect to the server check your network connection and server address, and try again."
    i have uploaded the full client log files
    here: client log file
    some errors that stand out from this log file are:
    1. ERROR HttpEngine: Certificate check fails: java.security.cert.CertPathValidatorException: Trust anchor for certification path not found.
    2. <h2>401 - Unauthorized: Access is denied due to invalid credentials.</h2>
      <h3>You do not have permission to view this directory or page using the credentials that you supplied.</h3>
    i am using the correct creds, same creds i used on the analyzer tool.
    in the analyzer tool i did have to fill in the username field because my sip domain is different then my users UPN. which from what ive read its required to use the username field.
    i also filled in the username field in the mobile app with domain\username
    3. ERROR LYNC: ERROR TRANSPORT /Volumes/ServerHD2/buildagent/workspace/200604/tps/ucmp/platform/networkapis/privateandroid/CHttpConnection.cpp/295:CHttpConnection exception: java.lang.NullPointerException
    Jan 14, 2015 8:40:49 AM INFO LYNC: INFO TRANSPORT /Volumes/ServerHD2/buildagent/workspace/200604/tps/ucmp/ucmp/transport/requestprocessor/private/CHttpRequestProcessor.cpp/173:Received response of request(UcwaAutoDiscoveryRequest) with status = 0x22020001
    Jan 14, 2015 8:40:49 AM INFO LYNC: INFO TRANSPORT /Volumes/ServerHD2/buildagent/workspace/200604/tps/ucmp/ucmp/transport/requestprocessor/private/CHttpRequestProcessor.cpp/201:Request UcwaAutoDiscoveryRequest resulted in E_ConnectionError (E2-2-1). The retry
    counter is: 0
    4. Jan 14, 2015 8:40:50 AM ERROR LYNC: ERROR TRANSPORT /Volumes/ServerHD2/buildagent/workspace/200604/tps/ucmp/ucmp/transport/authenticationresolver/private/CAuthenticationResolver.cpp/431:Failing the original request as we weren't able to get the token
    this is the same type of error i was getting in the lync connectivity analyzer until i filled in the username field. but its filled in, in my client.
    again you can see the full log file is `HERE
    thank you in advance for any help. im trying to get internal working before i try external.

    Eric,
    I am trying to configure a reverseproxy on my netscaler which is in a 2 arm mode(dmz/internal) but I keep getting an error when configuring the monitor.
    i used this guide to configure it
    http://www.lynced.com.au/2014/04/configure-citrix-netscaler-vpx-as.html
    but continue to get this error in the netscaler monitor "Failure - TCP connection successful, but application timed out"
    so the virtual server is never up, thinking about just changing it to tcp as a monitor so it stays up and i can at lesat get the vip up.
    Also your link to the diagram shows it going to the reverse  proxy but the one im using has it going directly to the front end servers.
    http://www.lync-solutions.com/Documents/Lync_2013_protocol_poster_v6_7.pdf
    I'm guessing Microsoft's is the correct one but wonder why the config differential?
    I see that your diagram says "mobility url", what is the mobility url? i though that was the lyncdiscoverinternal.internal.com
    current setup is
    2 fe servers on internal
    1 edge server on dmz
    1 almost done reverse proxy netscaler load balancer.
    also this ms link i used to configure dns entries, along with the pdf linked above.
    http://technet.microsoft.com/en-us/library/jj945644.aspx
    i currently have these external dns entries and they all point to the edge server on the dmz.
    dialin .external.com
    lync .external.com
    lyncweb .external.com
    lyncdiscover.external.com
    meet .external.com
    sip .external.com
    webconf .external.com
    av .external.com
    _autodiscover._tcp.external.com.
    the internal dns links point to 1 of the front end servers
    1. lyncdiscoverinternal.internal.com
    2. lyncdiscover.internal.com
    3. _sipinternaltls._tcp.internal.com
    4. _sipinternal._tcp.internal.com
    5. sipinternal.internal.com
    6. sip.internal.com
    thanks again for your help.

  • One domain, multiple users

    I use iWeb with MobileMe/iDisk to host www.mydomain.com with no problems. I use the custom domain feature in MobileMe and the domain is registered with GoDaddy. I would like to set up a subdomain for my brother so that he could use iWeb from his own computer to publish to hisname.mydomain.com using whatever method would work best. I know how to set up the subdomain forwarding but the thing that I can't figure out is if there is any way for him to publish his web site to my iDisk. The only thing I can come up with would be to give him my password and then have him publish the site to a folder in iWeb.
    I also have a MobileMe family pack with an unused account. Is there some way that this could help me? I could give him his own account and he could publish it to his own iDisk but then the URL isn't going to look right? Any suggestions are appreciated. Has anyone else come up with a good solution for letting multiple users publish to the same domain from different computers with iWeb?

    Hello Chet,
    MobileMe only supports one personal domain per MobileMe login.
    If your goal is to give your brother his own personal domain (www.example.com) for use with his own iWeb site then assigning him his own MobileMe member name from your family pack would be the way to go.
    If you are both using the same computer, make sure he is using iWeb and publishing from a separate user account. Publish from one user login to two separate MobileMe member names can get confusing.
    Hope that helps
    ~ Mr. Madison
    Do you have a backup?
    Mac OS X v10.5, v10.6: How to back up and restore your files

  • Lync login issue with one domain but started working when domain is changed.

    we have two domains in lync 2013 infra.i have enabled user id with one domain but its not allowing user to login.If we change user id to other domain it start working. it seems user id already existed somewhere in lync or active directory database. can
    anyone tell how to remove complete user database so that the id can be assigned to other new users.

    Hi,
    Did the user account also be deleted or disabled in AD? Disable account is different form remove account. If you disable an account the account is still stored in AD, whenever you need to enable it you can find it. So if you only disable the account who
    leave the company, please remove the account and try again.
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • Issue with authentication of users of one domain while logging on to EPM/HFM(we have 3 domains in total)

    EPM Version - 11.1.2.3.500.7
    We have 3 domains and users are authenticated via the Active Directory, the users of all the domains are able to log on to EPM except one Domain.
    What may be the reason?
    The setup was running fine for the last x months and suddenly we see this issue.
    Did anyone encounter this kind of Issue? Any help ?
    1) The Error what the users get :
    EPMCSS: 00301: Failed to authenticate user. Invalid Credentials. Enter Valid Credentials
    2) Error Admin gets when he is trying to search the users in shared services Error what Admin gets :
    EPMCSS:00706: Failed to get users from user directory xx. Error getting connection from connection pool, Verify user Directory Configuration.
    Thanks
    RK.

    We encountered this issue when the User DN's password was changed or when the id was moved to a different folder within Active Directory.

  • 450 host down to only one domain

    GW7.0.4 on SLES10 patch level 3--email to one domain
    (nationwideplanning.com) results in a 450 host down result. No complaints
    with any other recipients. An nslookup from the GW server results below, so
    there is an answer. As a workaround, users are sending this recipient email
    from their personal Gmail, AOL and AT&T accounts without fail. I am not
    sure where to look for a cause of this failure and appreciate any thoughts
    or clues. I have a ticket open with Verizon our ISP and verified out
    reverse pointer record is OK, but they have not been very helpful.
    Thanks.
    # nslookup
    > set type=mx
    > nationwideplanning.com
    Server: 198.6.1.142
    Address: 198.6.1.142#53
    Non-authoritative answer:
    nationwideplanning.com mail exchanger = 0 mail.nationwideplanning.com.
    nationwideplanning.com mail exchanger = 10 mail2.nationwideplanning.com.
    Authoritative answers can be found from:
    mail2.nationwideplanning.com internet address = 173.220.139.156
    mail.nationwideplanning.com internet address = 96.57.118.76

    forgot to add GWIA log entry:
    13:22:18 104 MSG 319619 Analyzing result file:
    /media/nss/VOL3/cmgw/cmgwdom/wpgate/gwia/result/rd2b06fc.447
    13:22:18 104 MSG 319619 Detected error on SMTP command
    13:22:18 104 MSG 319619 Command: nationwideplanning.com
    also, the A record in the GWIA config is just our domain name, but our
    pointer record is listed a mailhost.<domain name>. Could this cause a
    problem for few and random recipients?

  • EJB call from one domain to another, authentication problem

    Two Weblogic servers. WLS A and WLS B. Different domains. Trust relationship between the domains can't be established.
    I have an EJB in WLS B and there is a Web Application deployed to WLS A. There are method-permission declarations in the EJB descriptor xml.
    Step 1. User authenticates to Servlet in Web Application (WLS A). Authentication is done with Http Basic Authentication.
    Step 2. Servlet makes a JNDI lookup to get a handle to the EJB. Handle can not be fetched with the authentication information which was provided by user to servlet. This means that I need to specify a different username and password, which should be used for authentication at WLS B.
    Step 3. After getting a handle to the EJB Servlet calls a method of the EJB.
    Everything seems extremely simple. And it should be. But no.
    At step 2 servlet propagates authentication information from WLS A to WLS B. This authentication information is valid only inside WLS A, not in WLS B. Result: SecurityException: Invalid Subject.
    Setting SECURITY_PRINCIPAL and SECURITY_CREDENTIALS to InitialContext while creating it still results in propagation of authentication information. Same exception.
    So I tried something else.
    Tthe code doing the JNDI lookups and EJB calls was wrapped inside Security.runAs(new Subject(), ....) -block. Authentication information is no longer propagated to WLS B. So JNDI lookup succeeds, excellent!
    But we only got one step further. Now we still need to make the call to EJB method at step 3.
    Now that EJB method call results in Security Violation: User: <anonymous> has insufficient permission to access my method.
    It's a bit strange, because username and password (for WLS B) were provided for InitialContext while creating it. If the password is invalid, the InitialContext can't be created. So it seems that atleast the username and password ARE checked at WLS B.
    Any help and/or suggestions would be highly appreciated.
    Here is a misc list of some misc wondering:
    -Step 2. Should we make the JNDI lookup to JNDI tree of WLS A instead of WLS B. If we do so, then we should use ejb-ref's at web.xml. This was also quickly tested with no results.
    -Would run-as-identity (or some similar element) help? Maybe we could set up some Credential Mapper to WLS A, which would provide username/password when making calls to EJB's of WLS B. Documentation about Credential Mappers seems to be quite useless.

    There was a time, and it was quite some time ago when something similar was tried and it didn't meet with much success. Sure, it may not have been Domain files, it may have been something more like, say, rocks, but the general principle still applies. If you look at the XML and media parts that make up a Domain file, you can think of those pieces as analogous to the atoms in your average run-of-the-mill rock. Though the atoms in two given average run-of-the-mill rocks may seem quite similar, and cracking them open reveals innards that are almost entirely, but not quite, the same, it's still quite difficult to make one whole rock out of the two.
    Now, some say alchemists might be able to accomplish this quite daunting task, but, until a study of use for Domain files (perhaps XMLchemy?) is initiated and studied most earnestly, we shall probably remain unable to bring about the union of one Domain file and another. Or were we talking about the rocks? (You can't melt Domain files, can you? The thought just hit me is all...)
    How's that for a long answer?

  • All components of fusion middleware in one domain - is this better approach

    Pls advise, is this better approach to have all the components of Fusion Middleware (SOA, B2B, BPM, WebCenter, Content server) in one domain itself in cluster environment for production. If not, pls advise the better architecture for production environment..
    Regards,
    Suneel Jakka

    Suneel,
    It's a good idea to use split domain approach (multiple domains in one MW Home) for large enterprise deployments as it makes maintenance very easy. Lot of customers have been using this approach and they are quite happy about it. Following benefits you get while using split domain approach -
    1. Patching becomes flexible where patching of one component will not affect other
    2. System downtime will decrease as because of issue with one component, only one domain will be affected
    3. Reduced risk of incompatibility or classpath issues which arise because of different components (jars and third party utilities) being used in each product
    4. Modular integration and more layers of security
    If you are using all SOA, B2B, BPM, WebCenter, Content server and they have significant load then better have below domains -
    1. Dedicated domain for B2B (as it is a gateway product and will be having communication over internet)
    2. Shared domain for BPM and SOA (if load is high on both then better have separate domain for each)
    3. Shared domain for WebCenter & Content server (if load is high on both then better have separate domain for each)
    I also recommend to install Webcenter and SOA products in separate middleware home itself so that you may also upgrade them independently.
    Regards,
    Anuj

  • From one domain to another....

    If I have 2 domain files with different sites in each, Is it possible to copy site A from Domain A to Domain B?
    I know the short answer is no, but is there peerhaps a long answer...?
    cheers,
    s

    There was a time, and it was quite some time ago when something similar was tried and it didn't meet with much success. Sure, it may not have been Domain files, it may have been something more like, say, rocks, but the general principle still applies. If you look at the XML and media parts that make up a Domain file, you can think of those pieces as analogous to the atoms in your average run-of-the-mill rock. Though the atoms in two given average run-of-the-mill rocks may seem quite similar, and cracking them open reveals innards that are almost entirely, but not quite, the same, it's still quite difficult to make one whole rock out of the two.
    Now, some say alchemists might be able to accomplish this quite daunting task, but, until a study of use for Domain files (perhaps XMLchemy?) is initiated and studied most earnestly, we shall probably remain unable to bring about the union of one Domain file and another. Or were we talking about the rocks? (You can't melt Domain files, can you? The thought just hit me is all...)
    How's that for a long answer?

  • How to manage one domain from another domain

    I have created 2 domains domain1 and domain2. I deployed a web application in domain2 and created a managed server "newManagedserver-1" to run the application. From admin console of domain1, I need to control ie start/stop managed server "newManagedserver-1" created in domain2 by using the Node manager.
    Please let me know if its possible and if so, please let me know the steps.

    855557 wrote:
    Ok thanks for information. I have following questions:
    1)Is it possible for same domain to exist on more than 1 physical machine. I mean lets consider I create a domain domain1 in physical machine1 and same domain1 in physical machine2. Can I monitor managed servers of physical machine2 from admin console of physical machine1. Paths of the domain1 on both the physical machines being same(C:\bea\user_projects\domains)
    2)If the paths of domain1 on both physical machines is different(for eg C:\CLOSR\install1\appserver\autodeploy\domain1 and C:\CLOSR\install2\appserver\autodeploy\domain1), then will the node manager functionality with admin server of machine1 and managed servers on machine2 work?---We can create one domain (domain1) and have different managed servers on two different physical machines.
    Which means create a domain on machine1,and while adding a managed servers to that domain,
    1)create 1 managed server (MS1) and provide the IP address of the same box(machine1)
    2)create second managed server (MS2) and provide the IP address of the second box(machine2)
    In this way we can create two managed servers on two different machines (machine1 and machine2), and as per your requirement monitor/manage the managed servers from machine1.
    We don’t need to create a domain on another machine explicitly,however this configuration need few steps to be performed.
    This concept is called Horizontal cluster,Following forum link will explain the same in detail.
    Vertical and Horizontal Clustering
    ---Regarding having different paths for the same domain on machine1 and machine2,
    We will not create a domain on machine 2 explicitly; the concept is creating one domain but distributing it on different machines.
    So paths of the installation or the directory where we have the managed sever will not matter here.
    The node manager functionality will work, provided we configure it correctly.
    Following link will help you understand this in a better way.
    http://download.oracle.com/docs/cd/E13222_01/wls/docs90/server_start/nodemgr.html
    If you need the guidelines in node manager configuration (bit tricky) please let me know.
    Edited by: user123456 on May 2, 2011 9:32 PM

  • 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

  • Dns issues with one domain (Resolved)

    i'm currently having dns issues with one domain, in that it won't resolve when I use bt's dns servers.
    The domain is owned by a friend in the US who runs his own server for irc, web, and I also have a server that is on his connection, and resolves fine from other machines on different networks, and also resolves fine when I set windows to use the opendns servers, but when it's set to either my routers ip (using bt's dns), or set to automatic (using bt's dns via the homehub), this one domain will not resolve.
    I'm pretty certain it's not a windows issue, as it's a clean install of windows 7 that I did yesterday. I've tried rebooting the homehub, and also flushing my dns on windows, but this has not solved the issue.
    As I say, it resolves fine on other networks, and also when I use the opendns servers, so I know it's definately a dns issue.
    Using bt's dns servers:
    C:\Users\admin>ping chatnsn.com
    Ping request could not find host chatnsn.com. Please check the name and try agai
    n.
    Using opendns:
    C:\Users\admin>ping chatnsn.com
    Pinging chatnsn.com [68.51.24.74] with 32 bytes of data:
    Request timed out.
    Request timed out.
    Request timed out.
    Request timed out.
    Ping statistics for 68.51.24.74:
        Packets: Sent = 4, Received = 0, Lost = 4 (100% loss),
    (The timeouts are normal...he has his router set to not respond to ping requests).
    Has anyone got any ideas on how to sort this out? Preferably without having to phone the helpdesk...lets just say i've done it in the past, and according to the poeple I spoke to in india, I knew nothing about my own systems, and it was a problem at my end...which was not the case, and I proved this several times.
    Edit: This issue appears to have resolved itself, and the domain is now resolving again using the homehub for dns resolution.

    Hi,
    When NSLOOKUP starts, before anything else, it checks the computer's network configuration to determine the IP address of the DNS server that the computer uses.
    Then it does a reverse DNS lookup on that IP address to determine the name of the DNS server.
    If reverse DNS for that IP address is not setup correctly, then NSLOOKUP cannot determine the name associated with the IP address.
    http://support.simpledns.com/kb/a90/nslookup-cant-find-server-name___-default-server-unknown.aspx
    Also refer to:
    How to fix NSLOOKUP Default Server: UnKnown?
    http://www.randika.info/2013/01/how-to-fix-nslookup-default-server.html
    Regards.
    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 Support, contact [email protected]

  • My serial number for Logic Studio doesn't work. I used one from a different box and it worked. How can I get a new number?

    My serial number for Logic Studio doesn't work. I used one from a different box and it worked. How can I get a new number?

    http://support.apple.com/kb/TS2005
    http://support.apple.com/kb/HT1861
    https://ssl.apple.com/support/proapps/serialnumbers/

Maybe you are looking for

  • Error while opening Oracle Form

    Dear All, Presently I am using Oracle R12.1.1 on Windows XP SP2 - Operating System. Now when I am opening any form within any application within Oracle I am getting the below error. FRM -92050: Failed to connect to the Server: /forms/lservlet:-1 Kind

  • //remove this line if you want to edit the code by hand? um which line?

    Several of my pages are locking up and I don't know why. As I work through the code, I remembered that I altered some text in a SendEmail by directly altering the page rather than using the Server Behavior. Don't understand why that would matter but

  • What's wrong with my battery?

    My macbook air keeps telling me to replair my battery.    But here's my battery health. w What's wrong with my battery?

  • How to bring the hyperlink in a JLabel object ?

    How to bring the hyperlink in a JLabel object ? I tried the following--> [ this is a sample ] JLabel label; label=new JLabel("<HTML><A HREF='file://D:/Examination/calc.exe'>Calculator</A></HTML>");Using this JLabel object in an JDialog the label come

  • Autoplay movie (with no theme or menu) AND have additional data on disc

    I've made a slideshow in iPhoto and dropped it in the autoplay field of the DVD map view. I've edited the DVD ROM contents so I can include some Word docs and JPEGs on the disc. But there doesn't seem to be a way to eliminate that annoying "Revolutio