Static field for apps running on different machines

Hi:
Let us say I have a class
public class Client(){
private int static someField;I know if you are running Client.java on a single machine, obviously you will only get ONE incarnation of someField because it is static.
Now, let us say I run the Client.java on different machines, then there will be one someField genearted per each JVM , is that right??
can someone confirm??
I did a serach on Static field on the Forum, but nobody really touched on running it on different machines, so I thought I ask...

There will be one instance of the static variable per JVM regardless of whether the JVMs are running on the same machine or different machines.

Similar Messages

  • Can more than one LV app running on different machines have open references to the same device at the same time?

    I want to control a bunch of FP devices from one PC and serve this info to some satelites PC who will be on the same network. Most of the time,only the one PC will be interacting with all of the FP devices.
    In the event this main PC fails, I want to be able to quickly tell all of my FP devices to go into a safe state. I have a mechanism that will tell me the main is down. When this happens, I want to write the correct state to all of the output relays.
    To pull this off, I wanted all of the satelites to open FP connections to the relays that have to be driven to the safe state at starrt-up. When the failure of the main is detected, I want to be able t
    o drive the relays to the correct state with a minimal amout of delay. My experiments with using FP explorer with a single PC controlling a FP device in a LV app has showed that I can write from ether place any time I wantedwith no apparent interfearence. I this same functionality available from multiple machines?
    The alternative to this approach would target a watch-dog app at each of the FP controllers and have them fail-safe their outputs but this means I need to include support of RT in this app, and I was hoping to keep this simple. Each of the FP controllers would also have to be smart enough to know which if outputs should be acted on. i would alsolike some mechanism of knowing this has happened (for trouble-shooting purposes)
    I thought I read this was built into FP, but that may have applied to specific devices. I am not sure.
    Question:
    What is the simplest approach to setting my outputs quickly to a safe state when then main PC goes down?
    Thank you for reading,
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

    Ben,
    The FP-100X, FP-160X and FP-20XX series of network modules all have communication watchdogs. The communication watchdogs are used to monitor the communications between host computers and the network module. If there are no communications within the timeout period, pre-programmed settings can be applied to each channel as desired. For proper operation, a communications watchdog has to be enabled in three locations; in the network module (enable/disable and set timeout period), in the I/O module (Enable/Enable on Use (FP-100X series only)/Disable) and on each individual channel. For relays/discrete outputs, you can program what state the channel goes to (on/off), for analog outputs, you can set the exact output value the channel goes to.
    For more in
    formation, please see the following tutorial. It explains in detail how the watchdogs work.
    http://zone.ni.com/devzone/conceptd.nsf/webmain/FB7AABACC2BAB99686256C7E0080E60A?opendocument&node=11590_US
    Regards,
    Aaron

  • RMIRegistry and rmiserver running  on different machines

    hi,
    Is it possible that RMIRegistry and rmiserver run on different machines?

    Its possible, but you cannot bind objects into the registry from a remote machine, due to security restrictions in force in Sun's RMI implementation.

  • RMI client running from different machine giving error

    HI all
    I am trying to run the sample application getStart hello world.
    I am able to run the java applet from the same machine ....
    but i am get error when i am trying run client applet from the different machine .
    (HelloApplet exception: access denied (java.net.SocketPermission)
    client applet on machine1 and server and registory on machine2 in same lan .
    i copied the Helloapplet.class and Helloclient.html to machine1.
    appletviewer Helloclient.html
    but the java version is different in both machines.......
    can any one give some idea ....
    the errror i am geting is :
    HelloApplet exception: access denied (java.net.SocketPermission Neind-ws-003 res
    olve)
    java.security.AccessControlException: access denied (java.net.SocketPermission N
    eind-ws-003 resolve)
    at java.security.AccessControlContext.checkPermission(AccessControlConte
    xt.java:272)
    at java.security.AccessController.checkPermission(AccessController.java:
    399)
    at java.lang.SecurityManager.checkPermission(SecurityManager.java:545)
    at java.lang.SecurityManager.checkConnect(SecurityManager.java:1042)
    at java.net.InetAddress.getAllByName0(InetAddress.java:559)
    at java.net.InetAddress.getAllByName0(InetAddress.java:540)
    at java.net.InetAddress.getByName(InetAddress.java:449)
    at java.net.Socket.<init>(Socket.java:100)
    at sun.rmi.transport.proxy.RMIDirectSocketFactory.createSocket(RMIDirect
    SocketFactory.java:25)
    at sun.rmi.transport.proxy.RMIMasterSocketFactory.createSocket(RMIMaster
    SocketFactory.java:120)
    at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:499)
    at sun.rmi.transport.tcp.TCPChannel.createConnection(TCPChannel.java:190
    at sun.rmi.transport.tcp.TCPChannel.newConnection(TCPChannel.java:174)
    at sun.rmi.server.UnicastRef.newCall(UnicastRef.java:318)
    at sun.rmi.registry.RegistryImpl_Stub.lookup(Unknown Source)
    at java.rmi.Naming.lookup(Naming.java:84)
    at examples.hello.HelloApplet.init(HelloApplet.java:23)
    at sun.applet.AppletPanel.run(AppletPanel.java:344)
    at java.lang.Thread.run(Thread.java:484)
    The helloapplet.java code is :
    package examples.hello;
    import java.applet.Applet;
    import java.awt.Graphics;
    import java.rmi.Naming;
    import java.rmi.RemoteException;
    public class HelloApplet extends Applet {
    String message = "blank";
    // "obj" is the identifier that we'll use to refer
    // to the remote object that implements the "Hello"
    // interface
    Hello obj = null;
    public void init() {
         try {
              System.out.println("Path looking: " +getCodeBase().getHost());
         //obj = (Hello)Naming.lookup("//" +
              //     getCodeBase().getHost() + "/HelloServer");
                   obj = (Hello)Naming.lookup("//Neind-ws-003/HelloServer");
         message = obj.sayHello();
         } catch (Exception e) {
         System.out.println("HelloApplet exception: " +
                        e.getMessage());
         e.printStackTrace();
    public void paint(Graphics g) {
         g.drawString(message, 25, 50);
    The helloclient.html code:
    <HTML>
    <title>Hello World</title>
    <center> <h1>Hello World</h1> </center>
    The message from the HelloServer is:
    <p>
    <applet
              code="examples.hello.HelloApplet"
    width=500 height=120>
    </applet>
    </HTML>

    Your problem is at the following line.
    obj = (Hello)Naming.lookup("//Neind-ws-003/HelloServer");
    The line you had commented beforehand is
    //obj = (Hello)Naming.lookup("//" +
    // getCodeBase().getHost() + "/HelloServer");
    This worked because the applet was being retreived from the same server where the RMI server exists.
    Remember, applets can only connect themselfs to the same host they are stored in and retreived from. This is because of VM, the sandbox does not allow you to connect to other machines other than the server where it resides on. If you use a applet viewer it might work if you loosen the security features. On a browser i do not belive it can be done. Maybe if you modify your security options for the VM you are able to achieve something, but personally i'm going for the "It cannot be done " answer because of what I said before.
    Hope this helps
    If any trouble then reply and I'll answer later.
    Rui P.

  • Help required to put message to a queue running on different machine.

    Hi,
    I need to put a message to a queue which is on Queue manager running at different server. What I have are name of queue manager, name of queue and message to be put on the queue.
    Can you please help me as I m new to this area.
    Thanks alot.
    Omesh

    Your question is not about scripting. It is about how to use a third party system utility.  Post your questions here:
    http://forum.sysinternals.com/miscellaneous-utilities_forum11.html
    ¯\_(ツ)_/¯

  • Running a Java App on 2 different machines

    Hello all
    I have a very interesting java application that gathers information and saves it to a database.
    To scale the application, I would like to run it on 2 different computers. I have a 400MHz W2K desktop and a 800Mhz W2k laptop.
    They will have to share the 2 static vectors. -- to ensure they are not doing/repeating the same work
    how would you guys approach this
    how would you approach this
    stephen

    Thanks 3 questions.
    1. RMI seems to be a quick way to go -- could someone give me an example of how that would work -- if i know just the 2 ip address of the box ? I'm also under the impression i would have to set permission for that kind of access to the computers.
    2. What does JSD stand for and how would it work ?
    3. How would the JMS solution work ?
    4. What is the maximum information I can store in javanamespaces -- i might have to loop through 1 million objects in a vector and make decisions based on that.
    stev

  • RemoteApp on Win 2008 R2 Enterprise apps run in different remoteapp sessions

    I have a user that is running Sage 50 and Sage Exchange (to perform Credit card transactions) in remoteapp on a mac airbook
    There are two remoteapp icons one for each program. I have to start the sage exchange remoteapp, then the sage 50 remoteapp. On the mac-air the programs run in two different session ( as viewed in task manager on the server) so the sage exchange program can't
    communicate with the sage 50 program. When I run it on a windows client it has the two Sage program remoteapps in the same session on the server. This configuration was on a previous hosting server that we used to use so I know it can be done (the hosting
    service used hyper-v and remoteapp as well).
    Any ideas why two remote apps on a windows client would function properly (both programs running in the same session) where as the same remoteapps on a mac air book run in two different sessions on the server.
    Thanks for any idea / thoughts

    Hi,
    Thanks for your caring. Glad to hear that you got it working. 
    Thank you for sharing your experience here. It will be very beneficial for other community members who have similar questions. 
    If you want any more solution in future, kindly place your post in Forum.
    Thanks.
    Dharmesh Solanki
    TechNet Community Support

  • How to open Ports for App running in VPC

    Trying to open ports for a Windows app that I am running via VPC but the application still shows the port is unreachable.
    So far I have, opened the port in Mac OSX Firewall, opened ports on my D-Link DSL504G router, disabled the Windows firewall (plus opened the ports in case it became enabled).
    Have also redirected the ports to the IP address within VPC Windows and the Mac itself.
    Have run out of ideas as nothing seems to work.
    Regards
    Alan

    Try the following ...
    AEBSn - Port Mapping Setup
    To setup port mapping on an 802.11n AirPort Extreme Base Station (AEBSn), either connect to the AEBSn's wireless network or temporarily connect directly, using an Ethernet cable, to one of the LAN port of the AEBSn, and then use the AirPort Utility, in Manual Setup, to make these settings:
    1. Reserve a DHCP-provided IP address for the host device.
    Internet > DHCP tab
    o On the DHCP tab, click the "+" (Add) button to enter DHCP Reservations.
    o Description: <enter the desired description of the host device>
    o Reserve address by: MAC Address
    o Click Continue.
    o MAC Address: <enter the MAC (what Apple calls Ethernet ID if you are using wired or AirPort ID if wireless) hardware address of the host computer>
    o IPv4 Address: <enter the desired IP address>
    o Click Done.
    2. Setup Port Mapping on the AEBSn.
    Advanced > Port Mapping tab
    o Click the "+" (Add) button
    o Service: <choose the appropriate service from the Service pop-up menu>
    o Public UDP Port(s): <enter the appropriate UDP port values>
    o Public TCP Port(s): <enter the appropriate TCP port values>
    o Private IP Address: <enter the IP address of the host server>
    o Private UDP Port(s): <enter the same as Public UDP Ports or your choice>
    o Private TCP Port(s): <enter the same as Public TCP Ports or your choice>
    o Click "Continue"
    (ref: "Well Known" TCP and UDP ports used by Apple software products)

  • ODI, can't start scenario running in different machines

    Hello All
    Well i am working in a consulting proyect where I need ODI and BPEL to connect each other.
    I have installed Oracle SOA Suite for weblogic 9.2 in a machine with ip 192.168.1.108
    I have installed ODI as a server in another machine ip 192.168.1.109
    I have installed Oracle Data Base in the of ODI 192.168.1.109
    Then I installed ODI CLIENT in my laptop (i mean, the topology manager, designer, operator all in my laptop)
    I have made a simple example where i created a "interface in odi" using ODI designer and the a package in which a call a bpel process and it works fine
    Now i need to create a bpel process to call a ODI SCENARIO...but i am stock in it.
    I have done the following:
    1. I deployed the AXIS2 webservice and it's working ok.
    2. I have started and ODI agent and I tested it using the topology manager and it is OK
    3. I created and deployed a bpel process to call the ODI scenario
    When i execute the instance of bpel, i get the following error in the AGENT (which is running in the same machine where ODI SERVER is installed 192.168.1.109)
    Server Launched
    java.lang.NullPointerException
            at com.sunopsis.dwg.dbobj.SnpScen.getObjectLst(SnpScen.java)
            at com.sunopsis.dwg.dbobj.SnpScen.getScenarionByCodeAndVersion(SnpScen.java)
            at com.sunopsis.dwg.cmd.DwgCommandScenario.b(DwgCommandScenario.java)
            at com.sunopsis.dwg.cmd.DwgCommandScenario.treatCommand(DwgCommandScenario.java)
            at com.sunopsis.dwg.cmd.DwgCommandBase.prepare(DwgCommandBase.java)
            at com.sunopsis.dwg.cmd.e.t(e.java)
            at com.sunopsis.dwg.cmd.h.y(h.java)
            at com.sunopsis.dwg.cmd.e.run(e.java)
            at java.lang.Thread.run(Thread.java:595)
    java.lang.NullPointerException
            at com.sunopsis.dwg.cmd.DwgCommandScenario.treatCommand(DwgCommandScenario.java)
            at com.sunopsis.dwg.cmd.DwgCommandBase.prepare(DwgCommandBase.java)
            at com.sunopsis.dwg.cmd.e.t(e.java)
            at com.sunopsis.dwg.cmd.h.y(h.java)
            at com.sunopsis.dwg.cmd.e.run(e.java)
            at java.lang.Thread.run(Thread.java:595)
    And of course, the Scenario doensn't start.
    I have done many many tests, but i can't make it work.
    In my last test, I tried to invoke an odi scenario using the STARTSCEN.bat
    I followed the instructions in the otn thread {thread:id=839508}
    I modified the odiparams.cmd like this
    set ODI_SECU_DRIVER=oracle.jdbc.driver.OracleDriver
    set ODI_SECU_URL=jdbc:oracle:thin:@192.168.1.109:1521:soadesa
    set ODI_SECU_USER=ODIMASTER
    set ODI_SECU_ENCODED_PASS=ccfHG.0VJJ73yntbtLhr7xxbls
    set ODI_SECU_WORK_REP=ODIWORK
    set ODI_USER=SUPERVISOR
    set ODI_ENCODED_PASS=fJyH6P1neaZHeWG1cxpicApI Launched the agent in my laptop (local)
    and i got the same error in the ms-dos console where I use the startscen.bat program
    startscen CREATE_BPEL_HWF_TASKS 002 Global
    Starting scenario CREATE_BPEL_HWF_TASKS 002 in context Global ...
    java.lang.NullPointerException
            at com.sunopsis.dwg.dbobj.SnpScen.getObjectLst(SnpScen.java)
            at com.sunopsis.dwg.dbobj.SnpScen.getScenarionByCodeAndVersion(SnpScen.java)
            at com.sunopsis.dwg.cmd.DwgCommandScenario.b(DwgCommandScenario.java)
            at com.sunopsis.dwg.cmd.DwgCommandScenario.treatCommand(DwgCommandScenario.java)
            at com.sunopsis.dwg.cmd.DwgCommandBase.prepare(DwgCommandBase.java)
            at com.sunopsis.dwg.cmd.e.t(e.java)
            at com.sunopsis.dwg.cmd.e.y(e.java)
            at com.sunopsis.dwg.DwgJv.treatCmd(DwgJv.java)
            at com.sunopsis.dwg.DwgJv.main(DwgJv.java)
            at oracle.odi.Agent.main(Agent.java)
    java.lang.NullPointerException
            at com.sunopsis.dwg.cmd.DwgCommandScenario.treatCommand(DwgCommandScenario.java)
            at com.sunopsis.dwg.cmd.DwgCommandBase.prepare(DwgCommandBase.java)
            at com.sunopsis.dwg.cmd.e.t(e.java)
            at com.sunopsis.dwg.cmd.e.y(e.java)
            at com.sunopsis.dwg.DwgJv.treatCmd(DwgJv.java)
            at com.sunopsis.dwg.DwgJv.main(DwgJv.java)
            at oracle.odi.Agent.main(Agent.java)
    java.lang.NullPointerException
            at com.sunopsis.dwg.cmd.DwgCommandScenario.treatCommand(DwgCommandScenario.java)
            at com.sunopsis.dwg.cmd.DwgCommandBase.prepare(DwgCommandBase.java)
            at com.sunopsis.dwg.cmd.e.t(e.java)
            at com.sunopsis.dwg.cmd.e.y(e.java)
            at com.sunopsis.dwg.DwgJv.treatCmd(DwgJv.java)
            at com.sunopsis.dwg.DwgJv.main(DwgJv.java)
            at oracle.odi.Agent.main(Agent.java)Does anyone know what could the possible problem be???
    I have tested the connection to the schemas/user of the database (ODIMASTER and ODIWORK repositories) and it's OK
    I am kind of new using ODI, but i have made the same TEST in a Virtual Machine installed in my laptop, where i use a Express Edtion Database, a BPEL console, and ODI CLIENTE (everything local) and all the tests works ok.
    1. Call a bpel web service from ODI ....OK
    2. Call a ODI scenario from BPEL using the AXIS2 web service ....OK
    3. start an scenario using the msdos console STARTSCEN ....OK
    I also checked that the SNP_REM_REP and SNP_LOC_REPW columns are the same in the master and work repositories, but it's OK
    What could be my problem?
    I think i can be related to the MASTER and WORK repositories, but i don't know what more could i check
    Thanks in advance

    It was a mistake with the parameters using the ODIparams.sh

  • Help!!  Two Apps running 2 different versions of Java 1.3 &1.4

    I work in the IT dept for a IBM service provider. Recently IBM has changed their web quoting tools. The main config tool runs on Java 1.3.1_08 and their new maintenance quoting tool runs on 1.4.1_2.
    I have both versions of java installed and neither program will work. When I try to launch the maintenance tool that runs 1.4.1_2. The web start screen appears and then disappears and my processor performance maxes out at 100%. I have to control alt delete and then end task. When trying to run the main quoting tool , the Java applet never starts. I have tried to get technical support from IBM but they keep pushing it back to me stating that it is Java, or the machine, and they do not support that. The machine has been freshly imaged with Windows XP Professional, the system is a p3, 1.2GhZ with 512MB ram. Is there a way to make these programs work in the same environment? Thanks.

    This sounds quite a bit like the problem I've been having. So far the most informative thread I've seen is here: http://forum.java.sun.com/thread.jsp?forum=32&thread=363105&tstart=0&trange=15 , but the fact remains that there are a lot more people with questions than answers on this one.

  • Using Mac as X11 display server for app running on Linux

    Hello all,
    I am in the midst of learning Arabic, and am trying to get to the point of becoming comfortable with computing on Arabic screens with Arabic menus, etc. The Mac doesn't support this for Arabic, although it does for many other languages. (Neither does the Windows box, apparently, on a user by user basis. It looks like I would have to install Arabic Windows to get Arabic GUI. Somebody please correct me if I'm wrong.)
    On my Linux server, however, I have most of my applications set up for multiple languages, and this works fine. I have a user set up who is my Arabic-speaking alterego with his default language set to Arabic and most applications respect it. However, the display for my Linux server is in a cramped corner, while the iMac, of course, sits proudly on my desk. It occurs to me that I should be able to use X11 for Mac so I can learn to think in Arabic in regal splendor.
    I have X11 installed on here - I use it for OpenOffice locally - but am having trouble getting an application on the Linux box to see my display. Here is what I am doing:
    - I do xhost + on the Mac side (merepoint) to permit remote connections.
    - From the X11 terminal program on the Mac, I ssh over to my Linux server (openocean). I have tried ssh with no command line switches and with -X and with -Y. None of them appear to set the DISPLAY environment variable on the Linux box.
    - I run a Gnome or KDE application in the Linux session and it immediately doesn't find a display. It indicates an empty display string. (What a surprise.)
    - I run the command over there specifying -display merepoint:0 and it pauses and then doesn't find the display. This feels like the Mac isn't listening for remote connections or listens on some other port or display ID. I can ping back to my iMac just fine so it isn't confused about IP address or naming.
    What do I need to do (at either end) to allow the connection to go through?
    There appear to be no hardware issues. I'm not sure how the security, etc. works with X beyond opening or closing stuff from the display server with xhost. ssh and .Xauthority also comes into the mix somewhere, I think, but I'm confused as to the role they play and how they interact. I don't know if the X stuff on the Mac needs some special tweak to listen for remote connections. I didn't see any switches about that in the X11 preferences.
    Eventually, I'd like to use Command-Opt-A to switch between my Mac screen and full-screen kdm login to the Linux box so I don't need to run over there. Any hints for getting that arrangement working - beyond the obvious user preference for full-screen, which works fine - would be valuable as well.
    RalphM
    iMac G4 20"   Mac OS X (10.4.4)  

    Thank you! Setting up "X11Forwarding yes" on the server side and restarting sshd did the trick. Now from my ssh session, I can do "LANG=ar_LB gedit" on the command line and get gedit with Arabic menus.
    I found that I could even get my whole desktop up, albeit with some amusing things happening with sound across the room, using startkde. Is there a better way to get this effect?
    Now I can just log in as my Arabic alterego and it should all work pretty well.
    RalphM

  • "Security error accessing url" - Accessing HTTP service   running on another machine

    Flex app is hosted as web service and is trying t access data
    from HTTP Service
    running on different machine. It throws following error
    [RPC Fault faultString="Security error accessing url"
    faultCode="Channel.Security.Error" faultDetail="Destination:
    DefaultHTTP"]
    at
    mx.rpc::AbstractInvoker/
    http://www.adobe.com/2006/flex/mx/internal::faultHandler
    at mx.rpc::Responder/fault()
    at mx.rpc::AsyncRequest/fault()
    at ::DirectHTTPMessageResponder/securityErrorHandler()
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunctio
    n()
    at flash.events::EventDispatcher/dispatchEvent()
    But when I run the HTTP Services (data provider) on same
    machine application
    works fine.
    Already used crossdomain.xml

    Sorted the cross domain problem by using mx:Webservice rather
    than an httpservice.

  • Static fields on different machines

    Hi:
    Let us say I have a class
    public class Client(){private int static someField;
    I know if you are running Client.java on a single machine, obviously you will only get ONE incarnation of someField because it is static.
    Now, let us say I run the Client.java on different machines, then there will be one someField genearted per each JVM , is that right??
    can someone confirm??
    I did a serach on Static field on the Forum, but nobody really touched on running it on different machines, so I thought I ask...                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    

    Yes, that's right.

  • Problem running Automator .app on different machine

    Hello,
    I have written an Automator application (QuitTunes.app) that resides on my Mac No 1 machine. It quits iTunes when invoked for my Mac No 1.
    I have another Automator application (RunQuitTunes.app) that resides on my Mac No 2 machine. It runs QuitTunes.app which is located on Mac No 1.
    When I run RunQuitTunes.app from Mac No 2 both apps run, but the problem is that iTunes quits on machine Mac No 2 instead of Mac No 1.
    Any ideas....
    Thanks

    Hi, sorry.. i was a little busy..
    i tried a simple hello world, and it DID work..
    is there anything i need to take into account for
    vista?

  • Error when running clone for app tier

    Has anyone seen this? I'm getting the same error on each tier (seperate servers). I get a hit on Metalink but it does not match my situation. It states I'm missing a tag in the source context file but it is there. Any assistance would be appreciated.
    $perl adcfgclone.pl appsTier
    Enter the APPS password [APPS]:
    xxxxxxxxxxx
    First Creating a new context file for the cloned system.
    The program is going to ask you for information about the new system:
    RC-50004: Error occurred in CloneContext:
    null
    Check logfile CloneContext_06280945.log for details.
    ERROR: context creation not completed successfully.
    Please check /tmp/iasit13/adcfgclone.err file for errors
    [136] appl13@green- [t13sw/oraappl01/iasicomn/clone/bin]
    $more /tmp/iasit13/adcfgclone.err
    [137] appl13@green- [t13sw/oraappl01/iasicomn/clone/bin]
    $ls -l /tmp/iasit13/adcfgclone.err
    -rw-r--r-- 1 appl13 oradba 0 Jun 28 09:45 /tmp/iasit13/adcfgclone.err
    [138] appl13@green- [t13sw/oraappl01/iasicomn/clone/bin]
    $ls -lrt
    total 318
    -rwxrwxr-x 1 appl13 oradba 27900 May 31 11:54 adclonectx.pl
    -rwxrwxr-x 1 appl13 oradba 83889 May 31 11:54 adclone.pl
    -rwxrwxr-x 1 appl13 oradba 3273 May 31 11:54 adchkutl.sh
    -rwxrwxr-x 1 appl13 oradba 34334 May 31 11:54 adcfgclone.pl
    -rwxrwxr-x 1 appl13 oradba 7396 May 31 11:54 adaddnode.pl
    -rwxrwxr-- 1 appl13 oradba 1149 Jun 27 15:28 CloneContext_06270327.log
    -rw-r--r-- 1 appl13 oradba 1149 Jun 27 16:05 CloneContext_06270405.log
    -rw-r--r-- 1 appl13 oradba 1149 Jun 28 09:45 CloneContext_06280945.log
    [139] appl13@green- [t13sw/oraappl01/iasicomn/clone/bin]
    $more CloneContext_06280945.log
    #------Log File created at: 06280945------------
    # $Header: CloneContext.java 115.167 2005/03/03 16:10:14 dvijayas ship $
    # Running CloneContext on machine - green
    Initializing the Apps Service Context varibale Hash
    DEBUG: Apps Service Status context variable extracted from the given Apps context file
    s_apcstatus
    s_apc_restrict_status
    s_apcstatus_pls
    s_tnsstatus
    s_tcfstatus
    s_concstatus
    s_formsstatus
    s_reptstatus
    s_metcstatus
    s_metsstatus
    s_icsmstatus
    s_jtffsstatus
    s_icxblkstatus
    s_discostatus
    DEBUG: Getting all the AppsContext involved in this Merging
    StackTrace:
    java.lang.NullPointerException
    at oracle.apps.ad.context.CloneContext.getAllAppsContext(CloneContext.java:6649)
    at oracle.apps.ad.context.CloneContext.initServiceStatus(CloneContext.java:6581)
    at oracle.apps.ad.context.CloneContext.doClone(CloneContext.java:489)
    at oracle.apps.ad.context.CloneContext.main(CloneContext.java:5222)
    RC-50004: Error occurred in CloneContext:
    null
    Context file creation not succesful
    TIA

    Hi there !
    In case you haven't sorted out this issue.
    Have you done cloning of the environemnt before?
    Just wonder if you have complitted steps described in
    Note:230672.1
    Subject:      Cloning Oracle Applications Release 11i with Rapid Clone
    Section 2: Clone Oracle Applications 11i
    1. "Prepare the Source System":
    Yury
    Check this out:
    A.
    http://www.freelists.org/archives/ora-apps-dba/05-2006/msg00000.html
    B.
    - Users can subscribe to the list by sending email to
    ora-apps-dba-request_at_freelists.org with 'subscribe' in the Subject field
    C.
    http://www.freelists.org/archives/ora-apps-dba/05-2006/threads.html
    http://www.freelists.org/archives/ora-apps-dba/06-2006/threads.html

Maybe you are looking for

  • Find opening stock as on date storage locationwise.

    Hi,   Whether below mentioned logic is correct to find out storage locationwise stock.If its wrong please reply. TABLES : WB2_V_MKPF_MSEG2,MACKW.   RANGES : O_DATE FOR SY-DATUM.   DATA : BEGIN OF ITAB OCCURS 0.         INCLUDE STRUCTURE WB2_V_MKPF_MS

  • How to update a Date attribute type?

    Hello! I have several Date attributes in some categories that I need to update with the Oracle Content API. I saw that OCDB returns a GregorianCalendar object to retrieve the date value, but I can't update it with the same object, I used this java co

  • Trying to re install sound blaster

    I have only one cd says installation cd when I try to download error message says cannot locate audilgy 5 make sure hardware is connected properly which it has been for 3 years. Anyone know if I need a second cd or what I'm doing wrong?

  • Edit PHP files without extension

    Hi, I'm currently developing a website with DW CS3 and I'm using apache's mod_rewrite so I have clean URL's. The thing is that doing this forces me to rename my php files e.g. index.php to index. Is there a way that DW recognizes these files as PHP f

  • What to do with all the disks left on my computer after application install

    I have been using the Mac for a year now (very happy overall), but am still a bit confused by what exactly the whole disk icon left over after an install is about. And then what about the .dmg and .pkg scene? After I install a new application I have