Where to find java version 1.4.2-b28

Hi,
I need to download the JSDK (exactly) for the java version 1.4.2-b28. Can someone send me the link?

Hi,
I need to download the JSDK (exactly) for the java
ava version 1.4.2-b28. Can someone send me the link?
Try this link:
http://java.sun.com/products/archive/index.html

Similar Messages

  • Where i find trail version of j2ee engine for client machine.

    Hi,
    I am new bee in sap netweaver . Now i have ecc 5.0 at my office. I need to make WebDyn pro application at my client side. For testing purpose i need to create java environment for running my dynpro applications. So please can any one tell me where i find trail version of j2ee engine for client machine.
    Please explain it and provide me paths where i download environment.
    Regards,
    Gurprit Bhatia

    "(also, my profile says that I'm running OS X 10.4.6, but I'm not really sure, that's just what one of the disks has written on it that came with my used and very cheap machine "
    Click on the blue Apple icon at the top left of your screen and choose About this Mac. That will tell you what your OS version is and what amount of RAM you have. The "More Info" button in the pop-up screen will give you the Apple System Profiler application and that will give you whole bunches of information on the drive space used etc.
    David

  • Where to find Java Class File Specification for Java 5.0?

    Where to find Java Class File Specification for Java 5.0?
    thank you in advance.

    same place you found it for 1.4Can u give more details? I thought the class spec for Java 1.4 is the same as Java 1.2.
    anyone can tell where to find Java Class File Specification for Java 5.0?
    Thanks.

  • Where Web Dynpro Java version of Adobe Forms are used in ESS MSS

    Hi, SDN Expert.
    I am working on research the use of Adobe Interactive Forms in the current processes of HCM ESS MSS.
    We are on ECC5.0, EP7.0, and ESS MSS SP21. We are in the midst of upgrading to ECC6.0.
    Do you know where Web Dynpro  Java version of Adobe Forms are used in ESS MSS are used? OR are they all in Web DYnpro ABAP version in ECC6.0?
    Thanks,
    KC

    Sergio,
    FYI.
    I am trying to see how the form I design/modify in TCode: SPF are working together to these piece of codes I found in NWDI WD4J pcui_gpisrsap.com --> VcISRShowForm DC --> ShowForm view:
    public void wdDoInit()
        //@@begin wdDoInit()
              InteractiveForm form =
                   (InteractiveForm) ((View) wdThis.wdGetAPI()).getElement("IsrForm");
              form.setDynamicPDF(true);
              form.bindPdfSource((IWDAttributeInfo) null);
        //@@end
    public static void wdDoModifyView(IPrivateShowForm wdThis, IPrivateShowForm.IContextNode wdContext, com.sap.tc.webdynpro.progmodel.api.IWDView view, boolean firstTime)
        //@@begin wdDoModifyView
              logger.pathT("Entering: wdDoModifyView");
              // Dynamic context generation
              // Bind context
              if (wdContext.nodeNewGenericChildNodes().size() > 0) {
                   if (wdContext.currentContextElement().getContextToBeReset())
                        wdContext.nodeData().getContext().reset();
                   IWDNodeInfo genericNode = wdContext.nodeData().getNodeInfo();
                   IWDNodeInfo origNode =
                        wdThis
                             .wdGetVcISRShowFormController()
                             .wdGetContext()
                             .nodeGenericNode()
                             .getNodeInfo();
                   IWDNodeInfo childNode;
                   IWDNodeInfo deepChildNode;
                   for (int i = 0;
                        i < wdContext.nodeNewGenericChildNodes().size();
                        i++) {
                        childNode =
                             origNode.getChild(
                                  wdContext
                                       .nodeNewGenericChildNodes()
                                       .getElementAt(i)
                                       .getAttributeValue("name")
                                       .toString());
                        deepChildNode = childNode.getChild("DATA");
                        genericNode.addMappedChild(
                             childNode.getName(),
                             null,
                             childNode.isSingleton(),
                             childNode.isMandatorySelection(),
                             childNode.isMultipleSelection(),
                             childNode.getPathDescription(),
                             false,
                             true);
                        genericNode.getChild(childNode.getName()).addMappedChild(
                             deepChildNode.getName(),
                             null,
                             deepChildNode.isSingleton(),
                             deepChildNode.isMandatorySelection(),
                             deepChildNode.isMultipleSelection(),
                             deepChildNode.getPathDescription(),
                             false,
                             true);
                        genericNode
                             .getChild(childNode.getName())
                             .getChild(deepChildNode.getName())
                             .addAttributesFromDataNode();
              // Avoid another context generation - all context have been generated
              wdContext.nodeNewGenericChildNodes().invalidate();
              InteractiveForm form = (InteractiveForm) view.getElement("IsrForm");
              //Set the template source of the form (if necessary)
              if (wdContext
                   .currentIsrParamsElement()
                   .getSetTemplateSourceNecessary()) {
                   form.setTemplateSource(
                        wdContext.currentIsrParamsElement().getTemplateSource());
                   wdContext.currentIsrParamsElement().setSetTemplateSourceNecessary(
                        false);
              logger.pathT("Exiting: wdDoModifyView");
        //@@end

  • Batch command to find java version

    Hi
    I need to get the version of java runtime env on a machine using command prompt (more specifically in a batch file). java -version at command prompt gives me the version and other stuff. But has anyone written a batch file that extracts values like 1.3.1 or 1.4.0 by executing a batch command??
    Any suggestions woul dbe helpful
    Thanks
    VP

    Here's my thoughtsjava -version 2>tmp.txt         //pipe version to file
    find "java version" tmp.txt|find "java version">tmp2.txt  //just get info
    del tmp.txt
    for /f %i in (tmp2.txt) do @set version=%i  // set a variable
    del tmp2.txt
    set version=%version:~10,5%                 // you get offsets
    @echo %version%You will need to debug this.
    P.S. IS this Java Programming?

  • Compiling Invocation Programs ? Where to find javai.lib ??

    Hello,
    I'm having J2SE 1.4, VC++ 4.0. I'm trying to compile the invocation programs given in the Java Tutorial but I'm unable to compile since I've not found javai.lib in my J2SE folder. Can anyone help me on how to compile. Where to find javai.lib ??
    Thanks
    Wah Java!

    The javai.lib/dll have been replaced by jvm.lib/dll
    since Java2 SDK 1.2. The javai.lib is in the "lib"
    directory of your JDK installation. Note that the
    invocation API has also changed, and you will probably
    need to update the method calls. See the JNI spec at
    http://java.sun.com/j2se/1.4/docs/guide/jni/spec/jniTOC
    doc.html.As you've said, I compiled the program and linked with jvm.lib but VC++ said that jvm.lib is incorrect file (or you can say corrupt file). Can you please help me how to compile with JVM.lib
    Thanks in advance,
    Ashish Shukla
    Wah Java!

  • Where 2 find java file that implements the subscription email notification?

    Hello KMC Gurus,
    I saw a reply of Patricio linking to an article relating to "How to customize mail notifications?".
    In that article I was able to see how to change the XML & XSL files and their locations.
    Can anybody tell me where to find this java/class file relating to this mail notifications?
    FYI, the link to the article is as below
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/90626697-0901-0010-2ca7-86e2a50ce70d
    Author is Darin Krasle.
    best regds,
    Vedu

    I've just installed JAVA into my computer.
    Then I found a folder called "Java 1.4.2 SDK" or
    something like that. but in the folder there wasn't
    any .exe file to run JAVA, os i would like to know how
    do i run JAVA after i installed it?
    Also i am runnung Java in Windows XP with SP1
    I think those information might help.Follow this link and do what it says. Generally, you do not need an IDE to run java, just a text editor and a DOS prompt :)
    http://java.sun.com/docs/books/tutorial/getStarted/cupojava/index.html
    Alpha

  • Finding java version used from compiled code

    Is there a way to find the java version used to compile the java file from the compiled files,i.e., class files?

    that information is encapsulated within the .class file, I don't think so.
    The class file has a minor_version/major_version field.
    However using jikes and sun jdk 1.3.1 both produce a version number of 45.3. According to a footnote in the JVM spec that corresponds to a class file format for java of 1.0.2. And both obviously are newer than that version of java.
    Based on that I don't think one can expect those numbers to changed based on the java version but rather on any changes in the class file itself.

  • Where to find older versions of Safari?

    I recently updated to Safari 5.0.2 and my computer is now constantly crashing. I want to revert back to 4.1.2 -- can anyone tell me where to find it (and ideally how to revert back)? Thanks!

    HI and welcome..
    If you want you can revert to Safari 4.0.5, instructions here. Downgrade from Safari 5.0 to Safari 4.0.5
    If your computer is crashing, it may not be Safari causing the problem. Boot from your install disc, run Disk Utility in case there are errors on the startup disk that need repairing.
    Insert your install disk and Restart, holding down the "C" key until grey Apple appears.
    Go to Installer menu and launch Disk Utility.
    (In Mac OS X 10.4 or later, you must select your language first from the installer menu)
    Select your HDD (manufacturer ID) in the left panel.
    Select First Aid in the Main panel.
    (Check S.M.A.R.T Status of HDD at the bottom of right panel. It should say: Verified)
    Click Repair Disk on the bottom right.
    If DU reports disk does not need repairs quit DU and restart.
    If DU reports errors Repair again and again until DU reports disk is repaired.
    When you are finished with DU, from the Menu Bar, select Utilities/Startup Manager.
    Select your start up disk and click Restart
    While you have the Disk Utility window open, look at the bottom of the window. Where you see Capacity and Available. *Make sure there is always 15% free space.*
    Carolyn

  • Where to find Java Trial Version

    Hi Experts please help, I cannot find the link on the SDN downloads
    for NW Java Trial Version, where can I download it?
    Thanks

    Hi Mark:
    I recommend you download the following files
    1. ftp://ftp.sap.com/pub/sdn/devkits/netweaver/java/SAPNW2004sJavaSP9_Trial.part1.rar
    2. ftp://ftp.sap.com/pub/sdn/devkits/netweaver/java/SAPNW2004sJavaSP9_Trial.part2.rar
    3. ftp://ftp.sap.com/pub/sdn/devkits/netweaver/java/SAPNW2004sJavaSP9_IDE.rar
    The third link is for NWDS -- for development of WebDynpros
    Thanks,
    GLM
    P.S: Pl mark the thread as answered and close if your issue is resolved

  • Where to find Java Real-Time System Evaluation

    Hello,
    I tried to download an evaluation version of the Java Real-Time System from this page: http://www.oracle.com/technetwork/java/javase/tech/rts-142899.html
    But, when i try to download the "Java RTS 2.2 - Academic Developer Use" for Linux x86 32bit, i get the following message: "The Java Real-Time System evaluation program is closed at this time."
    Is the evaluation program expired? Where could i find an evaluation version of JRTS?
    Thank you all for your attention,
    Greetings.
    Andrea

    Determinism is an important issue in my application. That's why page locking should be active in my application. When I'm determining the ScopedMemory size via VM like:
    ... -XX:ScopedSize=500000000 ...Then page locking works with a size of 500 mb very well. But when I try to set the ScopedSize value to 1 gb, then the exception (unable to lock page...) is thrown. So it seems as if I had all the required rights, but the huge size is not supported.
    The System has about 6 gb of DDR2Ram and minimum 5 gb are free during starting the VM. So are there any other parameters except ScopedSize that I can change, to allow the VM to lock memory with a size of about 1 gb? Or where is the problem with locking such big sizes?
    Thanks,
    Gordon

  • Where to find java source code on tiger?

    I'm taking a class on java, and i need to open up some of the java source code for classes like Abstractcollections and Abstractlist to see how their implementations work. Does anyone know where the java folder is located and how to open up the source on a mac? I've seen it done on windows( applications-java-java-sdk - unzip, or something like that), but it is not in the same place place on mac.
    I've searched through the folders named java but could not figure out which folder to open and how.

    Hmmm, are you trying to view the Source Code for Abstractcollections and Abstractlist, or find it, or compile it, or what exactly?
    Source code can be viewed in any text editor, but BBEdit, TextWrangler, & jEdit are really good...
    http://www.barebones.com/products/bbedit/threeway.html
    http://www.barebones.com/products/textwrangler/index.html
    http://www.jedit.org/index.php?page=download

  • Where can find java API to dwl

    does anyone know if i can download java API spec from sun.. since i cant find where I can dwl and i wish to use it offline....

    dwl?
    sure - its on the downloads page.

  • Where to find Java errors in the RAS server?

    Hi,
    I have a Java data source in the RAS server.  As I do development, there are plenty of issues I work through, but some take a while to troubleshoot because I haven't found where  Java exceptions are logged.  For example, if I don't have all the classes packaged up correctly in the RAS server, that would cause a class-loading exception.  However, I have not found where that exception is logged.  I looked in the D:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\Logging directory, but I don't see any Java errors there.
    Can anyone point me to where I can find the Java errors that occur in the RAS server?
    Thanks!,
    Eric

    Java data sources for Crystal Reports are handled by a separate process, the JavaServer, that communicates back to the Crystal engine via CORBA TCP/IP connectivity.  So the RAS server itself isn't in the flow path, but even then, the JavaServer would not send back details of the exception.  Typically what RAS server itself reports is something along the lines of "Unexpected Error".
    If your Java data source is custom code you can modify, are you able to log separately, if you haven't already? That won't resolve the classloader issue, but may help troubleshoot other issues.
    Sincerely,
    Ted Ueda

  • Where to find earlier versions of firefox

    aboutsynckey addon and show sync key addons won't insrall on FF 17.0 so I need an earlier version of android FF.
    Where would I find these?
    Thanks,
    Michael

    This is the only earlier version I could find: https://ftp.mozilla.org/pub/mozilla.org/mobile/releases/latest/android/multi/

Maybe you are looking for

  • Header Discount in PO ?

    Dear SRM Gurus, Whether can we have Header Discount in Purchase Orders, as in Config I am able to. But there is not Header Conditions tab. How can we emulate Header discount in PO? Thanks & Regards, Ramkumar

  • Can I store only my movies in an external drive and still sync them to iPod

    I have an 80GB ipod, and as I began ripping a few DVD sets of TV shows onto my computer I realized that I believe I can rip every single DVD I own and store it onto my iPod. I will be on the road constantly over the next year or more and would like t

  • Itunes crash then reopen with only half of library!

    i was about to check the itunes store in germany to see if a new album was released here, yet!  itunes closed!  then up came the window to reopen, and it took forever.  when it finally opened, half of my library was gone, including cd's i purchased a

  • Does iphoto hate the EOS Canon Rebel XT?

    I have a EOS Canon Rebel XT and recently bought a Mac Pro. When I plug it into the computer, iphoto opens, but it doesn't let me import any of the photos. I changed the settings on the camera back and forth from PC to Tiff, but still nothing is worki

  • Restricting Calendar in Search Mode

    Hi, I am displaying two bind parameters of type 'TimeStamp' in my ADF search page to query data in a particular date range. when user clicked on Calendar symbol beside these two parameters, it's displaying a calender to select date. The problem I am