Migration between two environments which can't communicate with each other

My customer is intending to do migration from test environment to production environment using CCM.
But the two environments are not in the same network.
The environments' setting is as blew.
BO TEST Repository can communicate with Web BO Server.
BO PRODUCTION Repository (Cluster environment) can communicate with Web BO Server.
BO TEST Repository and BO PRODUCTION Repository (Cluster environment) are in the different network, they can't communicate with each other.
Setting Target Repository manually in CCM.
Questions are:
1. In CCM, as long as both Source Repository and Target Repository can communicate with Web BO Server, the migration will be successful.
   Is that right?
2. If 1 is not right, is there additional setting should I do?
   For example, If I need to open some firewall port?
3. Is there other attentions should I notice?
Thanks

Questions are:
1. In CCM, as long as both Source Repository and Target Repository can communicate with Web BO Server, the migration will be successful.
Is that right?
Yes that is correct
2. If 1 is not right, is there additional setting should I do?
For example, If I need to open some firewall port?
You have another option which is to use the BIAR files. Export your objects to a BIAR file in source environment, and import them from BIAR into the target environment
3. Is there other attentions should I notice?
when using BIAR files as solution, Make sure that you keep them < 1GB size to avoid corruption
you may have to increase or adjust timeouts on input and output repository servers as well

Similar Messages

  • How to create two UILoader that can be nested with each other and save the parent UILoader - as3

    Hi all,
    I am currently researching on the problem but I can't find any solution in the web.
    Here is my problem:
    I have two UILoader instance (loader_inner and loader_outer) I need to have loader_inner to be part of the loader_outer. I have also a button that will save all contents on loader_outer. Unluckily, when I trigger the save function, I only got  a white image file. I was expecting that the contents of loader_outer (with loader_inner) to be saved also.
    Note: background_1.jpg and rabbit.jpg are present in the directory. loader_outer and loader_inner where manually placed in the scene using UILoader component.
    Here is a code snippet:
    loader_inner.load(new URLRequest("background_1.jpg"));
    loader_outer.load(new URLRequest("rabbit.jpg"));
    loader_outer.addChild(loader_inner);
    var bitmapData:BitmapData = new BitmapData(loader_outer.width,loader_outer.height);
    bitmapData.draw(loader_outer);
    var jpgencoder:JPGEncoder = new JPGEncoder(100);
    var mybyte:ByteArray = jpgencoder.encode(bitmapData);
    var myfile:FileReference = new FileReference();
    myfile.save(mybyte,"test.jpg");
    My expected output should be that background_1.jpg and rabbit.jpg should be saved in an image file and must be positioned like the ones placed in the scene.
    Any ideas on this?
    Thanks ahead.

    the load method is asynchronous so you don't want to apply that draw method until both loads are complete.  ie, use a complete listener:
    loader_inner.addEventListener(Event.COMPLETE.loadcompleteF);
    loader_outer.addEventListener(Event.COMPLETE,loadcompleteF);
    var loadNum:int=0;
    loader_inner.load(new URLRequest("background_1.jpg"));
    loader_outer.load(new URLRequest("rabbit.jpg"));
    loader_outer.addChild(loader_inner);
    // you should declare these variables outside this function so there are no gc issues.
    function loadcompleteF(e:Event):void{
    loadNum++;
    if(loadNum==2){
    var bitmapData:BitmapData = new BitmapData(loader_outer.width,loader_outer.height);
    bitmapData.draw(loader_outer);
    var jpgencoder:JPGEncoder = new JPGEncoder(100);
    var mybyte:ByteArray = jpgencoder.encode(bitmapData);
    var myfile:FileReference = new FileReference();
    myfile.save(mybyte,"test.jpg");

  • How do I enable two wireless clients to communicate with each other?

    I have a WRT54GL with the latest firmware.  I have two computers which are both connected to the router, with IP addresses assigned via DHCP.  Neither has a firewall running.  I cannot get them to communicate with each other -- even ping doesn't work.  I can ping the router itself using the IP address assigned to it on the WAN side by my ISP.   Both computers have no problem reaching the internet through the router.
    What settings on the router will enable the communication to occur?  I can't find anything in the router's user interface which appears to control this. 
    Thanks.
    Solved!
    Go to Solution.

    Hi annie25,
    I think it would be best to check on netgear or belkin technical forums how to make these two talk. 
    Yesterday is history. Tomorrow is mystery. Today is a gift.

  • 2 J2EE RI servers which communicate with each other

    Hi all,
    I'm wondering whether the following scenario is possible, and if so, of course I would like to now how I have to achieve it.
    I want to run two j2ee ri application servers on two different machines. What I want, is that the applications on the two different servers can communicate with each other.
    Any help on this will be greatly appreciated.

    Greetings,
    that does the lookup, so I have the bean clasees in
    the classpath of the project (is that what you
    ment?).In addition to the bean classes, the client needs the stub files generated by deploytool - the reason for the ClassCastException is due to that the cast actually gets made against the server stub(s) which, in this case, isn't available to the client. The stubs are generated during deployment and have the same name as your interfaces with the suffix '_impl' (implementation). The first dialog of the deployment wizard has the option to "Return client jar" - select it (a checkbox) and add the resulting jar file (has the same name as your .ear file with the ending 'Client.jar'), to your client's CLASSPATH (just mount it as a filesystem in Forte4J ;). This file has the stubs along with the rest of your bean's associated classes.
    Can you help? I'm realy stuck.I hope this helps.
    Thanks.
    Oded "Shushu" HasidiRegards,
    Tony "Vee Schade" Cook

  • I have two apple id's because my hotmail account is no longer active. How can I delete the old one and use or update the new one?  Every time I try it won't allow me and now my iPad thinks there are two accounts and they are arguing with each other. Help!

    I have two apple id's because my hotmail account is no longer active. How can I delete the old one and use or update the new one?  Every time I try it won't allow me and now my iPad thinks there are two accounts and they are arguing with each other. Help!

    You can't merge accounts or copy content to a different account, so anything that you bought or downloaded via the old account is tied to that account - so any updates that those apps get you will only be able to download via that account. You can change which account is logged in on the iPad via Settings > Store

  • How can I have threads communicate with each other?

    I'm working on a project that requires a group of classes communicating with each other. I decided on using a server and carrying out communication that way. However, my app only has communication between the client and server. I need the clients to be able to communicate with each other. Does anyone know how I can do this or point me to a good tutorial?

    Sorry, here's a bone stock example of my server and client:
    <SERVER>
    package testserver;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    public class TestServer
    static int portOpen;
    public static void main(String[] args)
    portOpen=4000;
    try
    ServerSocket portListener = new ServerSocket(portOpen);
    TestServer userThreads = new TestServer();
    while (1==1)
    Socket userConnection=portListener.accept();
    userThreads.new PortConnection(userConnection);
    catch (Exception e)
    System.out.println("The server encountered a serious error. Server shut down.");
    e.printStackTrace();
    System.exit(0);
    class PortConnection extends Thread
    //Declare variables to handle connections.
    Socket ourConnection;
    BufferedReader serverInput;
    PrintWriter serverOutput;
    PortConnection(Socket userConnection)
    try
    ourConnection=userConnection;
    serverInput=new BufferedReader(new InputStreamReader(userConnection.getInputStream()));
    serverOutput=new PrintWriter(userConnection.getOutputStream(),true);
    start();
    catch (Exception e)
    System.out.println("An error occurred when a user attempted a connection.");
    public void run()
    serverOutput.println("Welcome to the Server.");
    try
    serverOutput.close();
    serverInput.close();
    ourConnection.close();
    catch (Exception e)
    </SERVER>
    <CLIENT>
    package testclient;
    import java.io.*;
    import java.util.*;
    import java.net.*;
    public class TestClient {
    static BufferedReader userInput;
    static Socket quizServer;
    static BufferedReader serverInput;
    static PrintWriter serverOutput;
    static String serverData;
    public static void main(String[] args) {
    userInput = new BufferedReader(new InputStreamReader(System.in));
    try {
    quizServer=new Socket("localhost",4000);
    catch (Exception e) {}
    try
    serverInput=new BufferedReader(new InputStreamReader(quizServer.getInputStream()));
    serverOutput=new PrintWriter(quizServer.getOutputStream(),true);
    catch (Exception e) {}
    try {
    serverData=serverInput.readLine();
    catch (Exception e) {}
    System.out.println(serverData);
    </CLIENT>

  • I have the iPhone and my own Apple ID. I would like the iPad to have my husbands Apple ID so we are able to communicate with each other (he is deaf). How can FaceTime and iMessage be set up to do this?

    I have the iPhone and my own Apple ID. I would like the iPad to have my husbands Apple ID so we are able to communicate with each other (he is deaf). How can FaceTime and iMessage be set up to do this?

    Log into each device with your own Apple ID's in Settings > iCloud.
    Then, so you can share preiously purchased apps, log into both devices using the Apple ID used to make those purchases, but ONLY in Settings > iTunes and Apps Stores.
    Verify that each device uses your own Apple IDs in Settings > Facetime and Settings > Messages.

  • Remote Access VPN users unable to communicate with each other

    Hi,
    We have configured Remote Access VPN on Cisco IOS router. Users are able to access the inside resources but cant communicate to each other. Any suggestions on the issue?
    Regards
    Saif

    Have you excluded the VPN traffic from being NATed when traffic is going between clients?
    Please post a full sanitised configuration of the router so we can check it for configuration issues.
    Please remember to select a correct answer and rate helpful posts

  • With two iPhones 4, turning on Facetime on both iPhones, turning on Data Roaming, Enable 3G, cellular data.  Wifi has been enabled on, Wi-Fi is on, 'ask to join networks' is on.  I cannot get the two iPhones 4 to do 'FaceTime' with each other.  Changes?

    May 16, 2011:  The two iPhone 4 phones, being next to each other, cannot do FaceTime.  with Data Roaming = On, Wi-Fi = On, 'Ask to join Networks' = On, Enable 3G = On, Cellular Data = On,
    Why is Facetime on one iPhone 4 not connecting to ther other iPhone 4 when both have the 'FaceTime' icon showing on both? 

    I will through that note and have applied the items in that note on both iPhones.  Both iPhones are in the same physical location.  Both appear to be connected to a wi-fi network.  Still no FaceTime connection.  Is it such that both iPhones must be connected to a Wi-Fi and that wifi must be a network without a password needed to join it?  I thought 'Data Roaming = On' was such that iPhone 4 would then find a wifi network without a password needed and one could use FaceTime. 
    Is that the incorrect assumption?   If yes or no, what specific items are needed to be checked before I do this again or be checked while attempting FaceTime.

  • My househoulse is full of Apple products. We have Ipad, Ipod, and Iphone, but they are all registered under same email. Therefore, we can not facetime with each other. Does anyone know how I could change this?

    How do I facetime with the same email address on the Apple product?

    The iphone identification should be its phone number, for other devices, such as ipad, ipod, imac you must generate a new e-mail address for each.  You can do this by using Yahoo mail, google mail, or perhaps the e-mail system that your internet service provider offers.  The point is, each unit needs its own id.

  • Two PCs connected via TC can't seem to communicate w/ each other

    I have two PCs running XP pro connected to a TC. The TC is also connected to a cable modem. Each PC has successfully obtained an IP address (10.0.1.2, 10.0.1.3). Each can retrieve web pages from the internet. However, they don't seem to be able to communicate with each other. I have re-run my network setup wizard on both PCs and created a home workgroup. When I try use My Network Places ... Home, I only see the local PC. If I ping the other address, the ping times out. I can ping the TC (10.0.1.1) however.
    Any ideas as to why the two computers would not be able to communicate w/ each other but can communicate w/ the internet?

    I just spoke with Apple Care. The support rep did some research and believes the problem is with settings on my computers. This network was working with a different router (and different private network addresses) before I swapped it out for the Time Capsule.
    Anyone have any ideas what might be blocking network replies (or incoming packets) on the various XP computers?

  • Two computers who can video chat with everyone but each other

    I don't get it, I can video chat with the apple test sites and anyone else who has left me their name on this site. My realtive in Seattle can do the same. But we can't video with each other. However, when I disconnect my cable modem and plug in my high speed wireless modem card, we connect. I have made all the setting changes to my Lyksys modem suggested on this forum with no success. Is it possible that her cable modem and mine are incompatible and just won't talk to each other? (we can text each other, just no video or voice)

    Have a look at this section on my Web page
    http://www.ralphjohnsuk.dsl.pipex.com/page15.html#CertainBuddy
    It suggest the steps Rj is talking about.
    Read the Bottom line.
    12:10 AM Friday; March 3, 2006

  • How to make 2 clients on same VLAN communicate to each other when tunnel-loop-prevention is enabled?

    Requirement:
    How to make two clients on same VLAN communicate to each other when tunnel-loop-prevention is enabled on tunneled-node configuration at controller?
    Whenever we enable tunnel-loop-prevention on controller while we configure tunneled-node, the communication between two tunneled-node client on same VLAN is blocked or dropped.
    If the tunneled-node clients are of different VLANs then they can communicate between them even when the tunnel-loop-prevention is enabled on the controller.
    Solution:
    To make two tunneled-node client on same VLAN to communicate between them, we need to enable "local-proxy-arp" for the interface VLAN on the controller.
    Once it is enabled now the tunneled-node clients on same VLAN can communicate between each other. 
    Configuration:
    To enable "local-proxy-arp":
    Get to the interface of the VLAN on the controller
    Example :
    (config)#interface vlan 5
    (config)#ip local-proxy-arp
    To enable tunnel loop prevention on controller
    (config)# tunnel-loop-prevention
    Verification
    Show commands:
    To check if tunnel-loop-prevention is enabled or disabled
    #show tunneled-node config
    Tunnelded node Server: Enabled
    Tunnel Loop Prevention: Enabled
    To check if local-proxy-ap is enabled:
    #show interface vlan 5
    Look for in the output "ProxyARP enable"

    streetfi8er wrote:
    Server ready,waiting for client:
    Exception in thread "New THREAD" java.lang.NullPointerException
         at server4$server4Thread.run(server4.java:88)
    Failed to accept client
    when i run the second client programme on different a console in the same system i get the error that:
    Unknown HostOK, I'm no socket programming expert; but I can see a few potential problems with what you've written.
    1. First off, which line is line 88? Line numbers would be useful. Also, indenting your code properly would make it easier to read.
    2. Your 'while(!str.equalsIgnoreCase("close"))' will always fail with a NullPointerException because 'str' is initially set to null.
    3. Your 'while(true)' loop worries me. How does it exit? Relying on an exception is usually very bad practise.
    4. You are not handling SecurityExceptions. While it's unlikely to happen on your machine; it could easily happen on another.
    5. It might be worth indicating the actual exception thrown in your "Failed to accept client" message. accept() can throw three different types of IOException.
    6. All the threads you create will be called "New THREAD", which doesn't provide much value.
    HIH
    Winston

  • Is there a way to have 2 threads communicate w/each other?

    I'm working on a program which requires 2 threads to communicate with each other. I was wondering how I can do this? How can I find out an id to reference a thread?

    I am not sure that there is .. not directly anyway. You can creat an intermediate class and pass copies of its objects to your threads. And then your threads can use it as a means of communication between them. For example:
    class A {
    // you have some private and public methods here.. which you can use to communicate between threads
    class B extends Thread {
    private A aVar;
    public B (A a) {
    aVar = a;
    //you have your run method here..
    class C extends Thread {
    private A aVar;
    public C (A a) {
    aVar = a;
    //you have your run method here..
    class D {
    public static void main(String [] args) {
    A a = new ();
    B b = new B (a);
    C c = new C(a);
    b.start();
    c.start();
    }

  • Copy RPD between two environments

    Hi,
    Can anyone help with the process of copying an RPD between two environments (e.g. development to production).
    Thanks

    See this link
    http://www.rittmanmead.com/2008/04/28/migration-obiee-projects-between-dev-and-prod-environments/
    Make sure that you have all TNS entries in TNSNames.ora file in new environment.Match the database details given in connection pool to TNS entries whether they are pointing to correct database.
    I hope RPD structure is same in both the environments ie users,groups are same.
    Regards,
    Sandeep
    Edited by: Sandeep Saini on 24-Nov-2010 08:56

Maybe you are looking for

  • How do I transfer my current iTunes Library for a 5th gen. Nano to a used iPod touch 2nd gen.?

    I was given a used iPod touch 2nd. gen because my old faithful 5th generation nano was tragically washed. But I'm scared to just plug the new one into my computer to see what happens. I want to make sure I don't lose all of the music I have on my nan

  • JRE not found, while installing Oracle 9i on Fedora Core 5

    I am installing Oracle 9i on Fedora Core 5 from the following site. http://ivan.kartik.sk/oracle/install_ora9_fedora.html The site asks me to Download the Java Runtime Enviroment (j2re-1_3_1_15-linux-i586.bin) from the Sun website. extract the file a

  • Problem with 'CONVERT_OTF'

    Hi, We send email confi to the customer along with a PDF attachment that contains the information regarding the material, quantity, price etc. In the program I used CONVERT_OTF to convert OTF format to PDF and sending the mail using 'SO_DOCUMENT_SEND

  • Get session id

    Hello experts, I would like to know if it's possible to get the sessionID of the current session of an user within an ABAP report - similar to getting other system-parameters, such as system time, username etc. I couldn't find a system-parameter-fiel

  • CS4: client wants 800 "different" versions

    Hi, I have designed a ticket for a client, which is almost done. Now, that client wants me to make 800 different versions of it: each will have number on it, going from 1 to 800. However, doing this by hand will take enormously much time... So is the