Bug fix for "Java Hangs When Converting 2.2250738585072012e-308" for SAPJVM

Hi All,
There is a new java runtime security alert found (see URL below) :
Java Hangs When Converting 2.2250738585072012e-308
http://www.exploringbinary.com/java-hangs-when-converting-2-2250738585072012e-308/
I'm wondering if any of you noticed this bug ? Does SAP JVM (various versions) also exsibit this
bug too ?
Thanks,
Ying-Jie Chen

Just to add:
Note 1556366 - Java Runtime hangs when converting a certain number
Markus

Similar Messages

  • Itunes hangs when trying to uncheck encryption for iphone backup.

    Itunes hangs when trying to uncheck encryption for iPhone backup. The iTunes software becomes unusable and unresponsive after entering correct password (only set up today) All i want to do is backup my iPhone before trying update to the latest ios. I have tried uninstalling all Apple software and re-installing, all unsuccessfully - still have the same problem! Essentially i have to use ctr+alt+del to even close the iTunes program, so I'm assuming there must be some sort of corruption with the encryption / password setup - neither of which have been used at all, all previous backups are on iCloud and don't have encryption. I obviously don't want to attempt a backup with these sort of issues occurring as i don't think i could trust it. Can anyone suggest a way to fix the problem, Ive tried googling all afternoon without any success - most answers I can find relate to people who have lost their passwords but don't have the software issues i am having.

    Further to the issue - i thought I'd try and run an encrypted backup for fun (since that's the only option available atm) and the backup hangs as well - in fact it doesn't even technically start other than saying its backing up. The progress bar never moves at all?

  • When we have to go for session method, when we have to go for call transact

    when we have to go for session method, when we have to go for call transaction method if i have a 3000 records in flat file. which is better? why

    Data Transfer
    During the process of data transfer, data is transferred into the SAP R/3 System. This transfer is from an external system to SAP R/3 system. Whenever you transfer data from an external system into an R/3 System, you can use data transfer because it is installed and regularly transfers data from an external system into an R/3 System.
    As discussed, with the help of BDC, you can transfer the required data from a non-SAP system to an SAP system. For this kind of data transfer you are required to write an ABAP program. This ABAP program would help to export the concerned data to a sequential dataset file. The data in this file has to be stored. This should be stored in a format, which is acceptable to SAP batch input program. But, to transfer data from a SAP system to another SAP system, you can take the aid of RFC or CPI-C.
    SAP application supports the data transfer of numerous SAP business objects. The said data transfer program specifies the data format definition, which is necessary to import the data into the R/3 System. There are three methods available for transferring data:
    Direct Input:
    In this method the SAP function modules execute the consistency checks. However, there are other means of checking with the help of screens. The Direct Input Method has considerable performance advantages.
    Call Transaction:
    In this method you can check the data consistency with the help of screen logic.
    Batch Input Session:
    In this method data consistency is checked with the help of screen logic.
    Direct Input Method
    Among the methods of data transfer through BDC, direct input method is the one that is used, especially in case of transferring large amount of data. In order to enhance the batch input procedure, the system offers you with the direct input technique.
    There is a distinction between the batch input technique and this technique. Unlike batch input technique, this technique does not create sessions. Instead, it stores the data directly. Moreover, it does not process screens. The data has to be entered directly into the corresponding database tables. The system calls a number of function modules which execute necessary checks, if any required. In the case of errors, the direct input technique has a facility to restart the entire mechanism. However, if you want to restart the entire mechanism in case you faced an error, then direct input programs must be executed in the background only. One has to use program RBMVSHOW or Transaction BMV0 to maintain and start these programs.
    Call Transaction Method
    Call Transaction method is another method used for Data Transfer. In this type of method your program will use the ABAP statement CALL TRANSACTION USING in order to run a SAP transaction. In this type external data need not be deposited in a session for being processed later on. Instead, the entire batch input process takes place inline in your program.
    Here, the data transfer program must convert the data that has to be transferred into the SAP system. This is as per requirement by the SAP data structure or the transaction which is using it. It is to be remembered that a conversion of the data types may be necessary at different times during the process.
    Suppose there is a data type mismatch then you have to convert the data types to type C. In this regard the data transfer program should be capable of exporting the data in SAP format to the sequential file. At the time of uploading the data into the SAP system, the BDC program reads the data from the abovementioned sequential file.
    Batch Input Session Method
    This is the third method for data transfer. If you use the batch input method to transfer data, then you should remember that an ABAP program has to read the external data which is to be entered in the R/3 System. Subsequently, it stores the concerned data a "batch input session." The batch Input session records the actions which are required in the process of transferring data into the system. This can be done by using normal SAP transactions.
    As soon as the program generates the said session, you will be able to run the session in order to execute the SAP transactions in it. Moreover, you can start the session, and at the same time, can monitor a session with the help of batch input management function. For this you have to choose:
    System à Services à Batch input. Moreover, you can have the session run in the background processing.
    Writing a Data Transfer Program
    If you want to write a data transfer program, you have to follow the steps mentioned below.
    Firstly, you will analyze the structure of the existing data. Subsequently, your job is to specify the conversions, which are essential to fill the SAP data structures.
    Secondly, you have to generate the SAP data structure. In case the program is written in ABAP, you will require only the required tables in the concerned program with the help of TABLES statement.
    Thirdly, you will have to initialize the SAP data structure.
    Fourthly, fill the structure with data, performing any conversions and error checking that are required.
    Finally, you will write the sequential file. In the SAP system this sequential file is typically required for making the data available to the batch input program.
    Batch Input Method
    Batch input method is a type of data transfer method. It is used for bulk data transfer; it is one of the primary ways by which data can transferred into the R/3 System. This method is not for near real-time data transfers.
    There are various typical uses of batch input. One of the ways includes the one-time import of data. This import of data is from a legacy system into a newly installed R/3 System. In addition to it, another typical use is for periodic (i.e. hourly, daily..., and so on) transfers of data. These transfers are from external systems or legacy systems which are still in use into R/3 system where all enterprise data is consolidated.
    The R/3 applications deliver different programs for batch input, which are ready to be used. However, in some cases a customer has to write his or her own batch input program. This is required in order to convert the concerned data from a legacy System or from a proprietary format into an R/3 data format.
    The process flows for a batch input are discussed below.
    Data Transfer Decision-Making: It is with a decision to transfer data from an external source into R/3 that the process of batch input begins. It is probable that the external source may be a legacy system that is being replaced. A one-time bulk data transfer is foreseen in this regard. Alternatively, the external source may be an external system that is to remain in use. In this case, a regularly recurring bulk data transfer is foreseen.
    Setting up Batch-Input for Data Transfers: If R/3 standard one-time or regular data transfers are required, then by means of customizing settings in the R/3 Customizing System in SAP ASAP set up will occur. You must set up custom batch input procedures by hand, which means the system administrator must schedule the data conversion program that creates the batch input session. The system administrator and the batch input programmer must determine the following: how frequently data is made available from the external system, how frequently the conversion program should run, and whether the conversion program runs in R/3 (ABAP program) or in a host system (external program).
    Processing Batch Input Sessions: When a batch input session is processed, then the actual transfer of data into R/3 takes place. Little attention is required in processing of batch input sessions by the system administrator. Usually, the starting of batch input sessions is automated by the system administrator. If necessary, the administrators can also start batch input session explicitly from transaction SM35.
    Checking Batch Input Sessions: For a system administrator the routine activity is to check daily or more frequently in transaction SM35 whether all batch input sessions have been completed successfully. It is the schedule for running batch input sessions on which the schedule for checking sessions depends upon. For doing this check the R/3 System provides easy-to-use batch input management tools.
    Analyzing Errors: It is the duty of the system administrator to analyze the problem if one or more transactions in a session end in errors. Usually, the assistance of the affected data entry specialist or department for this analysis will be needed by the system administrator. In the situation where the problem was caused by incorrect data conversion or incorrect generation of the batch input session then the programmer who wrote the data conversion program may also need to be involved.
    Error Handling in Batch Input Method
    It is found that most problems usually fall into one of the following two categories discussed below.
    In this case either required data is missing from the batch-input session or invalid data has been included in the session. Errors in the data conversion program or the presence of unexpected types of data or incorrect data in the legacy database are the possible external causes of this type of problem. Within R/3, the causes for this type of problem include incorrect or incomplete customizing in an application. For example, a legacy data type may not have been foreseen in the check table entries made in application customizing.
    This case mainly includes technical/programming problems. The data is entered by a batch input session by running R/3 transactions non-interactively. Therefore, a typical technical or programming problem is the incorrect identification of one of the data fields in a transaction. Thus, the conversion program may not fill a required data field or may have provided invalid values.
    Conclusion
    I have gone through the details of batch data communication and various methods used to transfer data. One can make use of BDC to transfer data from a SAP to SAP system. In addition, it can transfer data from a non SAP system to SAP system too. I have discussed the various methods of BDC and the error handling in the respective methods.
    Thanks,
    Shankar

  • Hi, please help me , i get notification about a new update for my iPad when I do the instal for the new version it is asking me for a passcode but which passcode may I have to enter? Because when I enter my gmail passcode it is call me that my pass fail

    Hi, please help me , i get notification about a new update for my iPad when I do the instal for the new version it is asking me for a passcode but which passcode may I have to enter? Because when I enter my gmail passcode it is call me that my passcode is failed

    The passcode you need to enter is the passcode you set on your device. It is the passcode that you enter when you turn on your iPad or awaken it from sleep after and Auto lock.
    If you do not know or remember your password and did not store it somewhere then you will have to restore your device.
    http://support.apple.com/kb/HT1212

  • I just downloaded itunes, and when i go to music there are two options. You can either go to the itunes store or scan for media, and when I click on scan for media it does nothing. Help?

    I just downloaded itunes, and when i go to music there are two options. You can either go to the itunes store or scan for media, and when I click on scan for media it does nothing. Help? (I tried deleting itunes and re-installing it but apparently itunes was still on my computer so it asked me if I wanted to just check and see if there were any issues or missing software, so I did that but i still had the same problem.)

    Hi jbserious,
    Welcome to the Support Communities!
    It doesn't sound like the iTunes software and its components installed completely.  The article below will walk you through some troubleshooting steps.  Is this your first time using iTunes, or do you have an iTunes library from another computer that you want to move to this one?
    Issues installing iTunes or QuickTime for Windows
    http://support.apple.com/kb/ht1926
    iTunes: How to move your music to a new computer
    http://support.apple.com/kb/HT4527
    Adding music and other content to iTunes
    http://support.apple.com/kb/HT1473
    Cheers,
    - Judy

  • Acrobat Professional hangs when converting word to PDF

    I am using Acrobat Professional version 7 and when i use the Convert to PDF option for a large word document it goes through the motions of converting the document but then seems to hang and i get no PDF document created. Also the Word document then says read only in the title as well.
    It works fine for small word documents just not large files with pictures.
    I have tried uninstalling Acrobat Prof and Office 2003 and re-installing both and it makes no difference.
    Can anyone provide any information on what i can try to fix this issue as
    i am out of ideas.
    Thanks
    Lawrence

    Empty the TEMP folder or print to the Adobe PDF printer. The latter might be worth trying to be sure things are working.
    You may have to uncheck a lot of the options in the PDF Maker preferences, particularly tags. Keep in mind that large graphics require a lot of disk space in the translation as the PS format is not very memory efficient for graphics (at least from what I have seen). You might also make a copy of the DOC file and then select a graphic and choose format. In the lower left corner of the general tab is a compress button. Try that to reduce the graphics resolution and see if that solves the problem.

  • Problems with CR used by a Java app when converting from WebSphere v5 to v6

    Background:  I have been assigned support of an old Java app, currently running just fine in a WebSphere v5 environment.  It uses CR to produce 4 reports.  Running the app in the WebSphere 6 environment, 2 work and 2 don't.  (!?!?)
    I don't know what version of CR the reports were originally designed in - nor do the people who produced them 6 years ago.  I have tried installing (and uninstalling) various versions of CR on my PC (v7, v8, v8.5, v9, v10, v11) to see if I can find one that would work with the .RPT files.  None do.  Either I get a warning that the report file is in an old format and saving it will prevent its use by the older version - whatever that may be...; or it opens the report, but when I click on the Database tab on the menu bar, CR locks up my machine.
    It has been decided by my management that it would be best to just upgrade to CR vXI and continue from there.  The XI 'developers edition' is what I am currently running.  However, when I open the .RPT file (one of the ones that work), it takes about 5 minutes; then when I click on the Database menu item, it locks-up my pc.
    I have other experience using (back-versions of) CR, but have never run into anything like this.  Has anyone had any experience with upgrading reports designed for Java to the vXI?  Can you provide me with any information, hints, suggestions about how I might proceed?
    Thank you, in advance, for any assistance you might be able to render.  Regards,
    Jeff Emslie.

    Hi, Jadie.
    Thanks for the quick response.  It may be the original report definition was designed pointing to SQL/Server v7, then was being overriden by the Java code to SQL v2k - which we are about to convert away from...  I have no experience integrating CR into a Java app.  I don't know how the data source specification works with Java.  That is why the first thing I'm trying to do is to look at the Database connection: to see how its done.
    As for the version it was originally written in; I don't know what it is.  No one here knows.  I have tried every (old) version of CR we have in the shop (list above).  None seem to work correctly with these .RPT files.  Do you know of a way to determine the CR version of an unknown .RPT file?
    Thanks,
    Jeff.

  • My ipad just won't let me enter my apple password on FaceTime or iMessage, it works fine on my iPhone, I have tried numerous things but nothing works, can anybody help please, will a bug fix sort this out when they finally make one

    My ipad just won't let me sign in with my apple password on FaceTime or iMessage since updating to ios7 it says check my network connection, even though my iPhone works fine with the same password, can anybody help please, I have tried numerous things but nothing  works.  Will I have to wait for a bug fix to sort this? I hear they are working on one a the minute, I hate ios7

    Try a Restart.
    Press and hold the Sleep/Wake button for a few seconds until the red "slide to power off" slider appears, and then slide the slider. Press and hold the Sleep/Wake button until the Apple logo appears.
    Resetting your settings
    You can also try resetting all settings. Settings>General>Reset>Reset All Settings. You will have to enter all of your device settings again.... All of the settings in the settings app will have to be re-entered. You won't lose any data, but it takes time to enter all of the settings again.
    Resetting your device
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears. Apple recommends this only if you are unable to restart it.
    Or if this doesn't work and nobody else on the blog doesn't have a better idea you can contact Apple.
    Here is a link to their contacts with most of the information below.
    http://www.apple.com/contact/

  • How to preserve embedded artwork when converting to AAC 128kbps for iPod?

    Hi
    I am using the new 'convert higher bit rate songs to 128 kbps ACC' option in iTunes 9.1.1 (12). All of my artwork is embedded in Apple Lossless files, but on conversion to AAC for the iPod this embedded artwork gets stripped out of the file. Instead I am getting about 12 ithmb files in the iPod_Control/Artwork/ folder totalling about 6GB which probably corresponds to all the embedded artwork for all the tracks, i.e. 20000 tracks x 300KB = 6GB, and an ArtworkDB file, which presumably is for CoverFlow.
    Because I use PodWorks to backup my iPod Music to my Mac I would like all of the artwork to stay embedded in the AAC files, so that it gets uploaded to the Mac. Artwork stays embedded when you make an AAC version of an Apple Lossless track in iTunes normally, but not it would seem when transferring to the iPod. And if this new method of encoding on the fly to the iPod can't preserve embedded artwork then it makes little sense to clog up the iPod with 6GB of artwork!
    I am wondering if there is any setting I am missing to get this working, or if this is something Apple still need to get around to sorting,
    Thanks
    Nick

    Please!!
    I'm not silly...
    As I said, selecting View actual size shows the image with sometimes drastically impaired quality (regardless of the window size).
    I also said I have preferences set to view at 100%
    It now seems as if this is only happening with scans I've made here.
    Images downloaded from the internet are converting indentically, no problem. But my scans are being resized when converting.
    I wonder if anyone with a bit of technical know-how can give me some clues as to why this is happening. It would seem to be something to do with the file itself.
    (There was another post on here with the same problem but for some reason its been 'archived' though the last posting was this month and the query was not answered. So I've posted the question again.)

  • Problems with the ActiveX bridge for Java beans when using third-party .jar

    I encountered the following problem when using the ActiveX bridge for a java bean:
    I am using JDK 1.4.2_09 and MS Visual Basic 6.0 (SP6). I wrote a java bean called ProcessViewer (my class ProcessViewer inherits from JComponent and implements the interfaces Serializable and AdjustmentListener) which I would like to use within a VB 6.0 application. I used the ActiveX bridge (packager.exe) to generate a DLL (ProcessViewer.dll) and registered it successfully. The java bean GUI-control works fine within my VB 6.0 application unless my java bean (ProcessViewer.jar) uses any third-party .jar files.
    But when I tried to add a reference to some third-party class (com.sap.xxx.xxx....) I got some problems. I could solve the problem with packager.exe by setting the correct CLASSPATH. But at runtime my VB 6.0 application does not work. It crashes or it reports an error like this: "The control ... could not be loaded from axbridge.dll" (although I deployed my .jar file correctly to the directory C:\Programme\Java\j2re1.4.2_09\axbridge\bin and lib). Setting the CLASSPATH environment variable before calling my VB 6.0 application (exe) did not solve the problem.
    How can I teach my VB 6.0 application (containing the Java bean ActiveX control) where to find the third-party .jar file? Copying the third-party .jar file to the JRE lib-folder or to the axbridge\lib folder did not solve the problem either.
    I studied the documentation about the ActiveX bridge given at:
    http://java.sun.com/j2se/1.4.2/docs/guide/beans/axbridge/developerguide/index.html
    but I am missing informations on how the third-party .jar files can be found during runtime of the ActiveX container (e. g. a VB 6.0 application).

    See how to solve your problem with JNI:
    http://codeproject.com/cpp/OOJNIUse.asp
    More examples (for SWING) in tools setup:
    http://www.simtel.net/product.php[id]95126[SiteID]simtel.net
    http://www.simtel.net/product.php[id]94368[SiteID]simtel.net
    http://www.simtel.net/product.php[id]93174[SiteID]simtel.net

  • ITunes 10.4.1 freeze (hang) when webradio stream drop out for any reason.

    Hello,
    My iTunes freeze (hang) when any webradio stream drop out for any reason; e.g. when ISP renews the IP, the radio station has limited the stream duration (as some do) per connection or wireless is cut off e.g. by closing the lid of the MacBook.
    I've to force Quit then iTunes. If I wait (up to an hour for testing) no hung or crash report get generated, iTunes still stay unresponsive.
    System: MacBook Pro 2011
    OS: OS X 10.6.8 (Snow Leopard)
    iTunes version: 10.4.1 (10)
    iTunes 3rd Party add-on's: None
    Any ideas out there?
    Cheers - Lupunus

    I will commiserate. I have this same issue. In some cases, the stream will stop and restart after 15-30 seconds; repeat. In other cases, the stream will stop, and iTunes will switch to the last radio station in that playlist. Then that station will play for a few minutes, and stop, and sometimes restart. But usually iTunes will hang (spinning beach ball) and must be force-quit.

  • Looking for Java Image Format converter

    hi,
    I am looking for an open-source site or so, which has Java code on converting different Image types eg. gif/jpeg etc. to PNG. I am building an application which needs to display images. It would be great to have a tool which takes the image and converts it to the PNG format.
    Can anyone help me out?
    cheers :)
    cleoppatra

    hi cleo. there is no tool you can patch into your source. there are two posibilities that i know of.
    1. take a look at the algorith for gif and jepg and chang it to png.
    2. send the link to a server, which you have to program, as a servlet, which will get the html page just as the midp would do, have a normal converter jpg -> png or gif -> png, see if what type of image it is, choose the right converter and convert the pic. format the text the way you want and then send it to the mobile phone. this will make most of the work be much faster since the mobile phone is very slow, and wont be very evectif on converting stuff.
    think about it.
    jeliel

  • Bug: Lightroom 3.3 hang when importing video

    On Windows, Lightroom 3.3 will hang when importing .AVI videos when the following is true:
    - Move or Copy (not Add)
    - Rename Files is selected
    - Filename pattern includes "exposure"
    Changin to a pattern that only includes date and time will make the import succeed.

    If it really failed in ntdll.dll it might be a system issue.  Make sure you disable all real-time anti-virus processes, and make sure your Windows system is up-to-date.
    Otherwise, it will be hard to know what is going on. If it persists, open a support ticket with Adobe. Take a look in the event viewer to make sure you have all the details of the crash.

  • Is new Windows Mobile VM for Java ME in new SDK 3.0 for common users?

    Hi,
    There are bunch of buggy VMs for WM Platform such as Esmertec JBED, Esmertec JBLEND, IBM J9 etc. They have lot of bugs and they don't support neccessary JSRs. Now I have read about Windows Mobile integration in new SDK 3.0 EA for Java ME - I undestand that there is a new VM for WM from Sun, is that right? But when I installed CAB version, it seams it is just for on-device debugging with connected Wireless Toolkit on PC. I can't launch midlets located in my WM device on it. Is there also VM for common users? So they could install virtual machine and then install their midlets? I think many developers and users would apreciate it. Or is it at least in plan to release such VM?

    Jackson_Bill wrote:
    What IDE are you using and what platform?Read first.
    Moh Bob wrote:
    I'm using J2ME platform SDK 3.0
    db

  • I´d like to export my iphotos macbook pro.everything worked right when I installed impression for iphoto but when I installed impression 2 for iphoto and I restared my computer the export option in iphoto doesn´t work.Can somebody please help me ?

    I´d like to export my iphotos "macbook pro". Everything worked fine when I installed impression for iphoto but when I installed impression 2 now I can´t export my photos. I´ve restarted the computer but still it doesn´t work.
    Please can sombody help me with that?
    Thank you

    Are you running Snow Leopard or Lion?  Your info says Snow Leopard.  If it's lion then:
    In Lion the Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and hit the Enter button - 10.7: Un-hide the User Library folder.
    Then you can locate the folders mentioned.

Maybe you are looking for

  • Financial Reporting 11.1.2.507 - pages from a report

    Hello, I was designing a report on Financial Reporting Studio, but dimensions from pages are shown separates by commas in only one combo box. What I need is to have one combo box per each dimension. Please, We will appreciate your valuable response.

  • Payment file duplication in target system in F110 Transaction

    Hi All Payment file duplication in target system. Wherein since the Print Job was scheduled twice by user, the duplication of payment had taken place.The payment medium program u201CRFFOAVIS_FPAYMu201D  is use to control the generation of duplicate p

  • VGA Cable Question

    I have (3) 23" Sony CRT monitors connected. Two of them have VGA cables with some kind of hard rubber capsule (about 2" long and three times the diameter of the cable itself) on one end. What is this "capsule". The tech at Best Buy said it was a "ter

  • Client Security - Password Manager reinstalling

    Hello all,        For an unknown reason, I have been experiencing this problem over and over.  Whenever I restart my computer and open a new explorer window, windows installer pops up with CSS trying to install the password manager.  No matter how ma

  • Third party gps

    What do I need to do to get third party gps (amAze, garmin, etc) to work on my Blackberry?  I was told that Verizon blocks these apps.  Is that true?