How to make J2EE work after moving harddrive to different laptop shell

Hi Everyone,
After moving the harddrive from one laptop on which NWDW(developer workplace) is installed, to another laptop, my local J2EE engine is not working anymore with Red color.  I guess the hardware key is different for different laptop shell although they have the same harddrive?  Is there a way to change hardware key?  Is there a way to make my local J2EE work without reinstalling NWDW? 
Any Advise/ suggestions?
Thanks, Jin

Hi Jin
Yes , Hardware key is different for different installation (and its key part when we extend the validity of the server), Send the log file.
Is there a way to change hardware key : You can try one workaround here that send the request for extend the validity of the server which will ask for H/W key once get  put it in Instance.(try this)
At the time of installation It play with OS level ,Service registry etc ,I dont think so change the hard drive will work.
Best Regards
Satish Kumar

Similar Messages

  • How to make J2EE work after moving harddrive to different laptop -

    Hi Everyone,
    After moving the harddrive from one laptop on which NWDW(developer workplace) is installed, to another laptop, my local J2EE engine is not working anymore with Red color.  I guess the hardware key is different for different laptops although they have the same harddrive?  Is there a way to change hardware key?  Is there a way to make my local J2EE work without reinstalling NWDW? 
    Any Advise/ suggestions?
    Thanks, Jin

    Jin,
    As your J2EE engine is not comming up for a second then you can't do anything.  May be you have to install temporary Licence or you have to get new one.
    You should ask this question in section Application Server --> SAP Newtweare AS, General forum.
    Why you do not want to reinstall J2EE Application Server?
    If you reinstall J2EE web AS then you have to redeploy your project from NWDS. Just reconfigure your J2EE engine setting in NWDS after you reinstall and just redeploy.
    Or may be you do not have to reinstall Basis person can install new j2ee license.
    Regards.
    eCommerce Developer

  • How to make Matlab work after loading Yosemite ?

    How to make Matlab work after leading Yosemite on a Macbook pro ?

    R2014b should work with Yosemite. What version do you have?

  • How to make gmail working after mavericks?

    how to make gmail and hotmail  working after mavericks?

    G-Mail and Mavericks are having issues working together, however  you did not bother to complete a profile so we don't even know the version of Mavericks you are running. Run Software Update if you are still on Mavericks 10.9.0, Mavericks 10.9.1 is now available and may address your issue. Otherwise you will need to wait until a fix is available.

  • How to make iMovie working after update to iOS5?

    I made the update to iOS5 and now iMovie can't see or use video and songs.... Somebody knows how to fix it?

    I think that iOS5 is a beta version.
    Expect iMovie to be updated when it iOS5 is released later this year.
    Until then your on your own.
    We cannot help you.
    You will have to talk to Apple via your developer account.

  • TS1292 i got an itune card after I hit the pin in it show invalid number, so how to make it work?

    I got an itune card after I hit the pin in, it show invalid number so how to make it work?

    See Here  >  iTunes Store: Invalid, inactive, or illegible codes
    http://support.apple.com/kb/TS1292

  • How to make this work with Firefox, HELP!

    Downloading for Real-player, after watching the full movie, I click download and it has to reread the movie from the internet. When using explorer, after downloading the movie, it reads it from memory, which makes it a fast download. How to make this work with Firefox, I like not to use Microsoft products, and I really like Firefox 7.0.1!!!! HELP!

    -> click '''Firefox''' button and click '''Options''' (OR File Menu -> Options)
    * Advanced panel -> Network tab
    * place Checkmark on '''Override Automatic Cache Management''' -> under '''Limit Cache''' specify a large size of space
    * Remove Checkmark from '''Tell me when websites asks to store data for offline use'''
    * click OK on Options window
    * Restart Firefox
    Check and tell if ts working.

  • DVR with fms3 , how to make it work?

    Hi
    I am trying to look for documentation on how the DVR functionality is working in fms3. It seems that I need to implement som server-side scripting to make DVR even work. In Flash Live Encoder there is an option to Record DVR, but it when I press the button, all I get is:
    Thu Apr 30 2009 13:15:38 : Start DVR command received
    Thu Apr 30 2009 13:15:38 : Requested DVR command has been successfully issued to Primary FMS server for stream ob1stream
    Thu Apr 30 2009 13:15:38 : Primary - Network Status: NetConnection.Call.Failed error Method not found (DVRSetStreamInfo).
    Does anyone know how to make this work?
    Best Regards Niclas

    ok i'm back for a second......so uhhh....class is in session here is a basic example of a video encoder
    use this to stream your video while recording.....what makes it record?and not live? this line here:
      ns.publish("thefilename", "record");
    the second parameter.....to make it stream live without recording it to file you change it to "live"....the first parameter is what you name your file...
    after this you use your client player to connect to the same connection as outlined.....and to play the same file ..ie   stream.play("thefilename");
    package
        import flash.display.*;
        import flash.media.*;
        import flash.net.*;
        import flash.events.*;
        public class SimpleEncoder extends Sprite
            var nc:NetConnection;
            var ns:NetStream;
            var mic:Microphone;
            var video:Video = new Video();
            var camera:Camera;
            public function SimpleEncoder():void
                NetConnection.defaultObjectEncoding = 0;
                nc = new NetConnection;
                nc.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
                nc.connect("rtmp://localhost/video/myvids");
            private function publishLiveStream():void
                ns = new NetStream(nc);
                ns.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
                ns.client = this;
                camera = Camera.getCamera();
                mic = Microphone.getMicrophone();
                if (camera != null){
                    camera.addEventListener(ActivityEvent.ACTIVITY, activityHandler);
                    video = new Video();
                    video.attachCamera(camera);
                    ns.attachCamera(camera);
                if (mic != null) {
                    mic.addEventListener(ActivityEvent.ACTIVITY, activityHandler);
                    ns.attachAudio(mic);
                if (camera != null || mic != null)
                // start publishing
                // triggers NetStream.Publish.Start
                // "thefilename" is the name of the file you use after you connect to stream in client player   stream.play("thefilename");
                ns.publish("thefilename", "record");
                else
                    trace("Please check your camera and microphone");
                addChild(video);
            public function onBWDone():void
            private function netStatusHandler(event:NetStatusEvent):void
                trace(event.info.code);
                switch (event.info.code)
                    case "NetStream.Buffer.Full":
                        break;
                    case "NetStream.Buffer.Empty":
                        break;
                    case "NetConnection.Connect.Success":
                        trace("Congratulations! you're connected");
                        publishLiveStream();
                        break;
                    case "NetConnection.Connect.Failed":
                    case "NetConnection.Connect.Rejected":
                       // trace ("Oops! the connection was rejected");
                        break;
                    case "NetStream.Play.Stop":
                        break;
                    case "NetStream.Play.StreamNotFound":
                        trace("The server could not find the stream you specified");
                        break;
                    case "NetStream.Publish.BadName":
                        break;
                    case "NetStream.Publish.Start":
            private function statusHandler(event:StatusEvent):void {
                trace("statusHandler: " + event);
                trace(mic.activityLevel);
            private function activityHandler(event:ActivityEvent):void
                //trace(mic.activityLevel);
            public function onFault(e:Object)
                //trace(e.info);
                //nc.close();
        }//end class
    }//end package
    thelegendaryghost

  • E540 SSD caching - how to make it work

    Hello. Does anyone know how can I rebuild E540 SSD caching? The problem is, that I formatted the whole notebook (1TB HDD + 16 GB SSD) and now after fresh install of Windows 8.1 it doesn't seem to use the 16 GB SSD as cache. I installed Intel Rapid Storage, but I can't install Intel Smart Response (which seems to do the SSD-caching) because it needs the RAID to be enable in BIOS but I don't have such an option. Any idea how to make it work?
    Thanks in advance!

    ColonelONeill wrote:
    I think you need the ExpressCache package.
    Well that seems to do the trick. The quiestion is  - why? On lenovo expresscache download page (http://support.lenovo.com/en/downloads/ds035460) my model (E540) isn't listed in the supported models. That's why I didn't even try it. Although I was considering this until I saw, that my model is not supported.

  • I cannot connect a Sony ILCE6000 camera for wireless downloading. Sony feels I need DLNE? They do not know how to make it work. Can anyone help OS10·9·5

    I cannot connect a Sony ILCE6000 camera for wireless downloading. Sony feels I need DLNE? They do not know how to make it work. Can anyone help OS10·9·5

    I cannot use the software.. so you need to figure out where the problem is..
    But let me suggest.. the Mac is not the issue and likely the info from Sony is also up the creek.. they make PC's after all.
    It is far more likely the camera is having issues with the wireless network.
    Do you know you have a connection to the home network on the camera.. ?? You have an IP address and some internet or local access at least?
    How you will discover those things is by fiddling.. but if you can tell me what wireless AP you are using that will help.

  • HT4898 how do you syn mail after moving to icloud

    How do you syn mail after moving to iCloud?

    Yes, you can use iCloud mail with OS X 10.6.8. However you need to enter the account details manually using the Mail Server Information  

  • Macbook pro to HDTV, video is working but audio is not working, how to make audio work as well

    Macbook pro to HDTV, video is working but audio is not working, how to make audio work as well

    If you use an HDMI cable, the audiostream will be integrated, so there will be sound when using an HDMI cable!
    Not necessarily.  That only works as stated if you have one of the most recent MBP's that has a built-in HDMI port.
    If the MBP only has a Thunderbolt or miniDisplayPort, you need an appropriate adapter cable and even if you use an HDMI adapter or cable to connect to your HDTV there is no guarantee it will carry audio.  You have to determine if your specific MBP model supports audio out through its miniDisplayPort or Thunderbolt output, and whether the adapter does likewise.

  • TS2634 I bought a composite AV cable with 30 pin connector at a proper apple store for my ipad 2 which no longer works now i have updated to ios7 - please advise how to make this work ?

    I bought a composite AV cable with 30 pin connector at a proper apple store for my ipad 2 which no longer works now i have updated to ios7 - please advise how to make this work ?

    I have the same problem.
    Two similar discussions:
    https://discussions.apple.com/message/23081658#23081658
    https://discussions.apple.com/message/23281391#23281391
    I have not yet seen any official response to the question: "Is the Apple AV Composite cable fully supported with 30pin connector devices upgraded with iOS7 - specifically ? - eg. iPad 2, iPhone 4, iPhone 4s"
    If it is not currently supported is that then due to a bug / oversight and in that case is it something that will be fixed in the near future?
    Please let us know what feedback you got from asking Apple support.

  • How to make buttons work in Interactive Adobe Forms

    Hi Experts,
    I am new to interactive form. Though i have worked in normal/non-Interactive form, i do not know how to make buttons work in interactive adobe forms using ABAP  (I don't know JAVA). Can any one help me out and walk me through to how to code in ABAP to make buttons work.
    Kind Regards,
    Sharat.

    Please refer to my earlier post ... You will get an idea
    Please refer to the below thread for detail solution
    Sample Interactive form example ?....urgent...
    Cheers
    Satya

  • HT4515 How to make sure that after browsing that the webpage is not running in the background, but totally closed down

    How to make sure that after browsing that the webpage is not running in the background, but totally closed down

    Double tap the Home button, tap & hold the Safari icon until it starts to wiggle, tap the red minus sign to remove it from the Multi-Tasking bar. Tap the Home button when finished.

Maybe you are looking for

  • How come my macbook pro wont play dvds?

    how come my macbook pro wont play dvds?

  • OK final question - can it be a simple bridge

    Can a second AEBS be used as a simple bridge. No WDS, no Relaying, just basically a 3 port hub with a wifi card... I thought that selecting extend wireless network facilitated this - but apparently it's apples fool proof wds. I just want the second A

  • Change special Attributes of generated Dynpro 1000 in Reports

    Hello! Does anybody know how to change the special Attributes of Dynpro Fields on a (automatically) generated Dynpro 1000 (Normal Report)? I need to change the Attribute "Without Template" for two Select-Option Fields Regards, Martin

  • Installing 6.0.1

    I currently have version 4.7.1 installed. When I go to download the latest version, I arrive at the screen that says: "Thank you. Your iTunes download will start automatically." Yet nothing happens. Do I need to uninstall 4.7.1 first or something? I'

  • Billing Request Editor - "Customizing missing for Characteristics"

    Our Production system is getting the following error when users are trying to access the Billing Request Editor; This same error doesn't exist in our lower landscapes and I've validated that the Characteristics for Billing Request Editor are in sync