Would the java applications be affected if change verison of Java 2 SDK

This would be a very urgent information for me. Thanks a lot if you could help!!! :
If the source codes I want to reuse is previously developed and tested with Java 2 SDK, Standard Edition (1.2.1_04) Production Release for Solaris, could I directly reuse them with Java 2 SDK, Standard Edition 1.3.1 for Windows? If not, what could I do to make the old Java application with Solaris to be able to run with Windows?

If you application is pure Java (e.g. not running external programs or using JNI), then it should run w/o changes regardless of the platform. Of course, platform specific bugs may affect reality.

Similar Messages

  • Floor Plan Manager Webdynpro Java Application : Error Message area change

    Hello Experts,
                             We have a Java Webdynpro Application inside the  ESS business package ,delivered by SAP .
    Is there anyway we can control the Error message area at the top of the Java webdynpro applications using the configuration controller without changing the source code for a particular Java webdynpro application???
    I like to bold the error messsage and change the text color in the SAP Portal.
    If not possible using the configuration controller, what are steps that we need follow to do this change.
    Any help will be appreciated.
    Thanks,
    Greetson

    This cannot be done through personalization or any configuration.
    If you want to change look and feel of error message then assuming these are personal information applications....you will be required to make changes to ess~per DC in NWDI or application specific DC in NWDI.
    Still I believe...in web dynpro java....it will not be possible to change look and feel of standard error message area

  • Migrating to Sharepoint 2013 from 2010 - Can you use the same URL for the Web Application without affecting the 2010 environment?

    Hi,
    I am currently trying to migrate our SharePoint 2010 environment to SharePoint 2013. The first thing I'm doing is creating a 2013 development environment to verify that this migration goes smoothly. I'm also doing this so that we will have a testing environment
    after the upgrade to 2013 is complete. 
    So here is my question: I have a 3 tier farm including; 1 app server, 1 wfe, and 1 sql server. I have made a copy of our SharePoint 2010 database and installed that on our sql server 2012 sever (This new environment is on 3 completely separate servers from
    our 2010 environment). I have also installed the prereqs and configured SharePoint 2013 on the App server and wfe servers, as well as configuring the necessary service applications (I have created a completely new 2013 database where I will migrate my 2010
    database content when I'm ready).
    I am now at the point where I need to create a new web application on the 2013 app server, where I will be migrating the copied 2010 database.  (Also note that we have a 2010 development site called https://[email protected])
    When I go to create a new web application in our 2013 dev environment, can I use the same url (https://[email protected]) to create this web app, or will this screw up our current 2010 dev environment?
    I'm new to SharePoint migrations, so I apologize if this is a stupid question.
    Thanks in advance for any insight you can share on this!
    Boe Barlage

    So, what you are recommending is that before I create a web application in my new 2013 environment, I need go into my hosts file on my 2013 app server and alter it to point to my 2013 wfe.
    Then after I do that, then I can create my new web application on my 2013 app server with the same url as my 2010 testing environment
    (https://[email protected]). 
    Then after that I should be able to access my new sharepoint 2013 environment at the same URL (https://[email protected])?
    I must be missing something.
    In your first reply, you told me to alter the host file on my 2010 app server and point it to my 2010
    wfe (I guess I thought it probably already is). You also told me to alter the host file on my 2013 app server and point it to my 2013 wfe. 
    so I am confused on after I do this, what url would I access my 2010 test environment, and what url would
    I access my 2013 test environment?
    I am fine with having my test environment as a different URL until I am totally ready to roll everything over and kill the 2010 site. But I want to make sure that when I migrate my database, none of the site links are broken.
    I also want to make sure that if I proceed this way, I want to be sure that I will be able to modify the URL to what my 2010 environment is (without a lot of headaches) when I am ready to kill the 2010 site.
    Thanks again for your help, it's much appreciated!
    Boe Barlage

  • I keep getting a warnin that my pages document could not be auto saved. The file has been changed by another application. Click save anyway to keep your changes and save the changes made by the other application as a version, or click revert to keep the c

    I keep getting a warning stating that the document could not be auto saved in pages. The file has been changed by another application. Then it says click save any way to keep your changes and save the changes made by the other application as a version, or click revert to keep the changes from the other application and save your changes to a version.
    What in the heck does all that mean, and why are they trying to behave like a Windows product or a Microsoft office product. I just don't get it.
    Why is another application changing my documents? It's like they've created a virus within their own programs. It's a pain in the neck and makes no sense.

    I am also having the issue of a warning saying "could not be auto-saved in Pages. The file has been changed in another application. I then hit "save anyway", the warning will go away for a time, sometimes minutes, sometimes hourr, but then the warming reapprears saying the same thing. This is not the case with all Pages documents but it is the case with many.
    Working with a Retina Macbook Pro and current software
    These are newly created documents

  • Java application launching an other using Runtime.exec()

    I have a Gui java appication that starts an other Gui java application by this way:
    Runtime.getRuntime().exec("java -classpath ....")
    At first a MSDOS window appears.
    Then the new Gui window is display only if i change the size of the first Gui wiindow several times !
    I works on Windows NT with jre 1.2
    Is somebody knows the reason why the Gui not appears automatically and how to do it ?
    Thanks in advance.

    Yes, using javaw do not open MSDOS window but my problem is still the same:
    the window of the 2d Gui is displayed only if i change several ltimes the size of the 1st Gui window !
    An other sign: if i close the 1rst Gui after the 2d is launched , the 2d Gui is displayed !
    Nevertheless these two applications run in independent process ?
    Have you an idea ?

  • Knowing the identity of the calling application.

    I have a static object which can be shared between two applications, similar to a static object that can be shared between two applets. Now if the object has a method say myMethod() how can i know which application called the method. To be more clear.
    Let my object be MyObject.
    Now the static instance for the object would be
    static MyObject myObject = new MyObject().
    I have two applets appletA and appletB;
    Suppose appletA or appletB were to call myObject.myMethod(), how will i know that appletA called the method or appletB called the method.
    I need to know this for applications not applets if there is a difference in solution for both.
    Any help would be really very useful.
    Thanks
    Rishab

    Actually there is more to the problem. I have a static object reference in myClass. Okay now when ever the application calls myObject.myMethod() i need to update the reference to the calling application. I cannot change the method signature of myMethod() to pass the reference of the calling application, because this will be called by someone else. Also i forgot to write this , myMethod is a static method. So the only way this can be called are in the following ways.
    class myApplication {
    myApplication() {
    myObject.myMethod();
    myApplication b = new myApplication();
    myApplication c = new myApplication();
    Now in myMethod i need to know the following
    static void myMethod() {
    // Caller myApplication b or myApplication C ????
    I am not sure how to use, this but the Security Packages have some way to do this i think.
    I have tried the following, using two applets.
    System.getRuntime() in myApplet 1 or myApplet 2 returns the same object, so no use.
    The class loader used for both the applets is the system class loader so no use.
    One question, taking the case of two applets, they are running on the same browser VM. But wouldnt they be running in two different threads. The currentThread for both still is the same.
    RMI is out of question, cause i am not supposed to use the RMI package.
    Thanks for the help so far.
    regards,
    Rishab

  • Anyone have any idea which is the best application for taking notes and essay writting?

    im starting my first year of university and i was wondering what would the best application for taking notes on be? and also whats the easiest, most reliable and effective way to transfer documents off the ipad? Any thoughts on printing aswell?
    will be appreciating all the help i can get!

    You're going to get as many answers to that question as there are people to answer it. You don't state if you want to take handwritten notes or if you will be typing. For handwritten notes, I really like Noteshelf. It has lots of export options, my favorite being to Evernote (which you might want to look into as well for storage). For typing notes, I'd go with Pages, Documents to Go or QuickOffice. For working with PDFs, I like PDF Expert.
    I've recently heard good things about Note Anytime. It is free for a limited time, so it'st probably worth downloading to try out.

  • Removing removal of standard image from Top Left from java applications

    Hello All!
    i am working on java application. i have to remove image(standard java image in every frame , dialog box and JOption Pane etc....).
    I'll be very thankfull if anybody can help me.
    Looking forward for early response
    Asima

    Hi Asima ,
    you can use:
    setIconImage((new ImageIcon("yourIcon.gif").getImage())); for JFrame.
    For JOptionPane and others where setIconImage does not exist you have to use the constructor which specifies the owner (your JFrame with yourIcon) so it uses that same Icon. If you want to remove the Icon completely you have to create your own icon as a blue (0,0128) square and use that.
    HTH
    Phil

  • Controlling WDJ behaviour based on the Calling Application - Any Idea?

    Hi Folks,
    I have crated <u>two applications</u> to call the <u>one WDJ program</u>.. So that based on the calling application i need to change the behavior of the WDJ program.. that is displlay and not to display few UI elements based on the calling application..
    Can sone one pelase help me in this regards
    Thanks in advance,
    Srini.

    Hi Srinivas,
    please, follow these steps:
    1) in the url of your application send a parameter (e.g. 'a' for application 1 and 'b' for application 2).
    2) Into web dynpro create an inbound Plugs(Open your Interface View -> Plugs) as:
    Name : Default
    Event Handler: onPlugDefault
    Startup: yes
    This plug will read the value you sent in the URL.
    3) Assign to it a parameter in the Parameters Area, i.e. "param1" type string
    4) In the View you can capture the parameter value in the URL in the wdDoInit method, using this code:
    String par1 = WDWebContextAdapter.getWebContextAdapter().getRequestParameter("param1");
    5) Note that in the View you must add the interface (Properties -> Required Controllers)
    That's all. Hoper this help you.
    Regards,
    Vito

  • Running .bat files from java applications

    Has anyone tried to run a .bat file from a java application?
    I know I can run java commands by getting the application's runtime, but I've a number of *.bat files I like to run from the application without having to extract the commands from the .bat files.
    thks,

    Crikey! You were answered very shortly after you posted your question, and you STILL haven't bothered to come back. And are you going to create a new userid the next time you ask a question, since bat2004 seems tied to this particular question?

  • How java application can access other java application

    Hi everyone,
    Please help me, I need to know how I can make my java program,
    specifically a servlet, access other java application continuously running a single instance in java virtual machine, and vice-versa.
    thanks in advance

    A java application is just a bunch of classes with one designated as a main class. You can simply ensure the classes are available to the server's jvm and then load and run the "external" program as part of the servlet process.
    If you have full access, and which external program is to be run, you can simply import it in your source.
    If your don't have the details at run time use the java.reflect.* stuff to load and run the class dynamically.

  • Regarding java application

    Hi,
    I did some modifications in a java application by doing some validations in a java file and put the compiled class file back in a unix server.If i need to see the modifications which i did in the java file, do i need to restart the application server ?If yes , please tell me Why should i do it ?Also Please tell me the procedure how to do it ?

    Hi,
    I did some modifications in a java application by doing some validations in a java file and put the compiled class file back in a unix server.If i need to see the modifications which i did in the java file, do i need to restart the application server ?If yes , please tell me Why should i do it ?Also Please tell me the procedure how to do it ?

  • How to make a Java application that will change the client box's IP address

    HI how to make a Java application( that application would be run on the client ) that will change the client box's IP address ( IP address of itself )

    If you can do that through the command line, then use Runtime.getRuntime().exec(...) to execute your command.

  • How to change the font of java application?

    Hie... I have created a simple java application. Now , i need to change the font to my native language (Nepali Unicode), ie, i want to change the font of the buttons and message box to Nepali? Can anyone help?

    Component.setFont(...)

  • Patching/updating Java Applications in the WebLogic environment.

    Hi All,
    I'd like to get some feedback on our process and hear if there is some better/different
    ideas out there on how to handle patching/upgrading java applications in the WebLogic
    environment.
    Here is our process:
    1) We build using ANT our Enterprise application.
    2) We deploy our application using InstallAnywhere to drop the structure into
    an environment.
    If a patch or update is needed, we again build the Patch/Update using ANT, generating
    checksums for each file in every ear/war/jar file as well as any supporting files
    (.xml, .properties, .sh, etc.) used in the production structure. We then compare
    checksums against what is in production and come up with PATCH_(ear/war/jar) files
    with only the changed classes and duplicate production structure with the changed
    supporting files.
    Using ANT scripts and InstallAnywhere, we backup the files to be replaced in production,
    overwrite supporting files, extract packages (ear/war/jar), overwrite classes
    with new ones, re-package the ear/war/jar files into production environment and
    restart the server.
    We patch at a class level due to the configuration settings internal to the package
    files (ear/war/jar) that we don't want the customer to have to re-configure everytime
    we do a partial release.
    Right now, the whole process is automated except the creation of the Patch ANT
    script that extracts, overwrites updated classes, updates manifests, then re-packages.
    Any ideas on improvements or complete re-engineering of our process to help so
    we can get closer to 100% automation?
    Thanks,
    John

    The chances of two applications running at exactly the same time are miniscule. If they each have a connection to the database, and are both trying to modify the same table, then chances are one will be slightly after the other its changes would be committed last. In the case where one might delete a row just before another tries to access that row, you're going to have some sort of problem. However, those circumstances are pretty rare, and even so, some small amount of exception handling can deal with them gracefully.

Maybe you are looking for

  • CABLE CONNECTION FROM 6131 TO 3.5MM JACK PLUG INPU...

    I have recently acquired a 6131, for which I have ordered a 2GB microSD card and USB cable in order to transfer music files into the phone. I am unable to find a Nokia cable, which will output these music files from the phone via 1 3.5 mm jack plug i

  • FaceTime - Serious security issue with Beta

    I just had a quick play with FaceTime and too my horror have discovered that when you go to Preferences > View Account the summary screen shows the Date of Birth and the answer to your secret question in the clear. The Account password is obscured, b

  • XDK XSLT proccessor alternative

    Hi, I'm using XSL transformation build in XDK, but there is a bug admitted by Oracle. They try to fix it but it takes too long. My question is... Is there any alternative to XDK XSL processor? Something what can be called in PLSQL. ... Java, C++, wha

  • Updating a JTable by hiding/displaying columns

    I have a customizable JTable where I display/hide columns according to a users' selection criteria. My code works fine for hiding/displaying columns if the Jtable is opened for the fist time, but doesnot work if I want to hide columns in already disp

  • VIEWING CONSTRAINT NAME IN QUERY TOOL

    hi , i am using oracle lite 10g database lite R3 in windows platform . Now i have done a fresh client setup and datadownload in my machine. i am using query tool to view the datas . how to get the constraint names in the query tool of a particular ta