Problem with JAI medialib accelorator

I use JAI to display images. Recently after loading an IBM Websphere product my Java 1.4.0 programs(which have nothing to do with Websphere) started displaying this message in the command window:
Could not load mediaLib accelerator wrapper classes. Continuing in pure Java mode.The program continues to work after displaying this message.
I presume that the IBM stuff stepped on something but I can't figure out what it was.
Does anyone have any ideas?
Thanks
Bill Blalock

I would bet your ibm product has replaced your jre or
is at least making java process with its jre until it
cannot figure out what to do, then it allows the
regular jre to do the work.I thought of that. To get around that I
- set the PATH to include the Sun Java, leave out the IBM stuff
- delete the CLASSPATH environment variable
- use -classpath option of java.exe for each execution
Can you think of something I missed?

Similar Messages

  • Problem with JAI instruction

    the line code is
    input = JAI.create("fileload",file);
    when i compile my project there is no problem but when i run it i have this error
    Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 0
         at algorithms.fuzzycmeans.FuzzyCMeansImageClusteringApp.main(FuzzyCMeansImageClusteringApcan you telle me what is the problem

    Thanks both for answering!!!
    yes I agree with The fiscal periods could be different systems, but documents were created  as PRD case, same month and year.
    where could I check "Fiscal Year variant" ( If you are not talking about program variant ).
    Guys, I was debugging and I check that exactly on GET BKPF ( is like a loop ) for my document 1600003538 bkpf-monat = 03, but suddenly in GET instruction with another document 1700003522 bkpf-monat = 01
    and this is the value printed
    document = 1600003538 .
    monat      = 01 ( must be monat = 03).
    I really appreciate your answer, thanks.

  • Problems with JAI

    Hi,
    Having trouble using JAI. It's VERY new to me and I don't know how to fix the problem I'm encountering.
    I've pasted the stack trace that I get when I run my code.
    Is the problem related to my code or does it have something to do with where my classes are located? If it's because it can't find the class path, what do I do to make sure it finds the class path?
    Thank you.
    Exception in thread "main" java.lang.NoClassDefFoundError: javax/media/jai/OperationRegistrySpi
            at java.lang.ClassLoader.defineClass0(Native Method)
            at java.lang.ClassLoader.defineClass(ClassLoader.java:537)
            at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)
            at java.net.URLClassLoader.defineClass(URLClassLoader.java:251)
            at java.net.URLClassLoader.access$100(URLClassLoader.java:55)
            at java.net.URLClassLoader$1.run(URLClassLoader.java:194)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:282)
            at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:274)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
            at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
            at java.lang.Class.forName0(Native Method)
            at java.lang.Class.forName(Class.java:219)
            at com.sun.media.jai.util.Service$LazyIterator.next(Service.java:268)
            at javax.media.jai.OperationRegistry.registerServices(OperationRegistry.java:2055)
            at javax.media.jai.ThreadSafeOperationRegistry.registerServices(ThreadSafeOperationRegistry.java:620)
            at javax.media.jai.OperationRegistry.initializeRegistry(OperationRegistry.java:373)
            at javax.media.jai.JAI.<clinit>(JAI.java:566)
            at Forms.main(Forms.java:100)

    If you have installed it into the right JDK-directory, there should be a file jai_core.jar in your <JAVA_HOME>/jre/lib/ext directory and the jar is automatically recognized by java. To exclude the case, where the wrong JDK is used, you can include this file and all other files in the directory, which contain "jai" in there file-name, in your classpath.

  • JAI(Java Advanced Imaging) Problem with splitting TIFF images

    Hi
    I am getting problem with height when I use this program to split TIFF images
    ImageDecoder decImage = ImageCodec.createImageDecoder("tiff", inStr,
    null);
    Then it creates RenderedImage page by page and encodes them to file:
    String outFileName = "";
    OutputStream outStr;
    TIFFEncodeParam encParam = new TIFFEncodeParam();
    encParam.setCompression(TIFFEncodeParam.COMPRESSION_PACKBITS);
    for (int i=0,n=this.getPageCount(); i < n; i++)
    outImage = this.decImage.decodeAsRenderedImage(i);
    outFileName = "C:\\Temp\\Split" + i + ".tif";
    outStr = new FileOutputStream(outFileName);
    BufferedOutputStream bOutStr = new BufferedOutputStream(outStr);
    encImage = ImageCodec.createImageEncoder("tiff",bOutStr,encParam);
    encImage.encode(outImage);
    bOutStr.flush();
    bOutStr.close();
    }The images are shrinking when I split . I need a solution to this problem.
    Thanks for any help in advance
    Sudheer.

    Hi
    Did you get a solution for your problem. I am also trying to split a TIFF file.
    Thanks in advance
    Antony

  • Problem with Java and Windows (Mainly Vista and UAC)

    Hi all,
    I am having a problem with a program that I've devoloped. The program itself is packaged as a jar and I plan to deploy it across multiple platforms eventually however right now i am only concerned about windows based systems. I have made an installer for a windows baised systems using NSIS to install the software files. I made the installer as I need several java packages to be installed so the program would work (JAI, J3D, JAI ImageIO) and I also require the program to have fileassociations on windows.
    I know that this is not what java is about, however the majority of the users will be on windows baised systems so I've decided that OS specific installers is the best option.
    During the process I have noticed that there are several key problem with java for this type of application!
    The first issue that I have come across is getting file associations to work on java. As a .jar is not an excutable it is not possible to directly associate a filetype with it in java so to overcome this I currently run the program from a .bat files and also the program requires large memory so this also allows me to run the program with -xmx. The batch file that I use is :
    <code>
    cd PATH TO PROGRAM
    start javaw -Dsun.java2d.noddraw=true -Xmn100M -Xms500M -Xmx1000M -jar "PATH TO PROGRAM\program.jar" %1 -vram 134217728
    pause;
    </code>
    Ok so all this appears to work fine and allows windows to have file associations and start the program and thats all works perfectly but this is a non-ideal solution. Has anyone got any advice on improving this?
    The next problem that I have appears to be a problem with Vista and UAC (user access control). When a user installs the program and installs the program into the program files directory I found that the program did not work and kept saying that I did not have access to the files in the current directory. This is a problem as I read and write settings files during program execution.
    On a Vista system UAC prevents file write operations into the Program Files directory unless the program has requested elevated status even if the user is a full administrator. The probem is that there appears to be no real way to achieve this under java that I'm aware of...
    Has anyone else had this probem and has a suitable solution?
    Any advice on these issues would realy be appricated.
    Regards
    Joey

    Ok so i've kinda found a solution, its not ideal but its very good. I found this program called Elevate
    A link to the site I got it was
    http://www.wintellect.com/cs/blogs/jrobbins/archive/2007/03/27/elevate-a-process-at-the-command-line-in-vista.aspx
    This program allows you start java with a UAC dialog for high access using
    Elevate java -jar myjar.jar
    This then allows you to have full access using java... I guess it could be dangerous but it does the job.

  • IMAQdx with JAI and a hardware trigger

    Hello,
    We are working with two 'JAI AD-080' cameras and IMAQdx, and have two problems regarding the triggering and frame grabbing:
    1)  We are unable to change the trigger source through IMAQdx property node or the Vision Acquisition Express; Vision Acquisition block.
    2)  When we manually edit the trigger source property using the NI Measurement and Automation Explorer (MAX) to its correct value, we can't get all four of the CCD's to run at a time without resulting in bad packets, e.g. horizontal black lines across the images.
    Our goal is to obtain the images from the 4 CCD's at a rate of 5 Hz using our hardware trigger.  We can already connect and obtain all four images at full speed, but the 5 Hz trigger is not being used by the cameras in that case.
    Details of the setup:
    NI 2011, Windows 7 
    Two (2) JAI AD-080 cameras (with 2 CCD's each), GigE cameras connected over Ethernet
    Hardware triggering at 5 Hz, on pin:  'Line 7 - TTL In 1'
    Details of the problem:
    (1)  Setting the trigger source not possible in Vision Express or IMAQdx property node
    In order to use our hardware trigger, we have to set the camera property 'CameraAttributes::AcquisitionControl::TriggerSour​ce' to a specific pin (Line 7 - TTL In 1).  This property is available in MAX, but is not usable in the Vision Express Block.  The property is present, but the values are invalid.  Here is what I think is happening:  the list of properties are read from the camera, but LabVIEW does not know what the valid values are for that property and it populates the value drop-down menu with whatever was loaded last.  This can be seen in figures 1 and 2 where the values in the drop down menu change.
    Similarly, this property of 'Trigger Source' cannot be changed programmatically using the IMAQdx property node shown here: http://digital.ni.com/public.nsf/allkb/E50864BB41B​54D1E8625730100535E88
    I have tried all numeric values from 0 to 255, and most give me a value out of range error, but the ones that do work result in no change to the camera.
    (2)  Lost packets in image during triggering
    If I set the 'Trigger Source' property in MAX to the correct pin, save the configuration, and then use the Vision Acquisition Express block to connect to the camera, the triggering works properly (the hardware trigger is used and the images are received by LabVIEW at 5 Hz).  However, this only works for one CCD:  If i use the same code for all four CCD's at the same time, I get black bars on the images, and at least one of the CCD's result in an error in 'IMAQdx Get Image.vi'  (code -1074360308, -1074360316)
    I tested this by using the configuration attributes created by the Vision Express Block, (The string used in the 'IMAQdx Read Attributes From String.vi'),  in the code we have been developing as well as a very simplified version which I have attached.  Those configuration attributes are saved in the text files:  JAI_Config_TrigON.txt and JAI_Config_TrigOFF.txt for using triggering or not respectively.  
    So my final questions are:
    Is there a problem with the IMAQdx because it doesn't recognize the trigger source value?
    Do you have any suggestions for why there are bad packets and trouble connecting to the cameras when I load them with the trigger on attributes?
    Thank you for your time - 
    Attachments:
    Fig1_VisionAcq.png ‏387 KB
    Fig2_VisionAcq.png ‏442 KB
    Fig3_BadPackets.png ‏501 KB

    Hello,
    Thank you for your response; especially the speed in which you responded and the level of detail.  
    I have not solved the problem fully in LabVIEW yet, but I was able remove the black lines and apparitions from the images using different camera parameters.  
    Since this was a significant victory I wanted to update:
    1)  Version of IMAQdx?
    I have IMAQdx 4.0, but the problem persists.
    2)  Setting configuration files
    Your suggestion to pay attention to the order in which the properties are set as well as using the MAX settings is very helpful.  I have not explored this feature fully, but I was able to successfully use MAX to set the default settings and then open the cameras programmatically without loading a new configuration file.  
    3)  Bandwidth limitations
    I modified the CCD's to only use 250 Mbits/second, but the lost packets (or missing lines/ apparitions) were still present.  
    4)  JAI AD-080GE Specifics
    I am using the JAI AD-080GE; and there are two settings for this camera that I want to mention:  
    JAI Acquisition Control>> Exposure Mode (JAI)>>Edge pre-select
    JAI Acquisition Control>> Exposure Mode (JAI)>>Delayed readout EPS trigger
    The "Edge pre-select" mode uses an external trigger to initiate the capture, and then the video signal is read out when the image is done being exposed.
    The "Delayed readout EPS trigger" can delay the transmission of a captured image in relation to the frame start.  It is recommended by JAI to prevent network congestion if there are several cameras triggered simultaneously on the same GigE interface.  The frame starts when the 'trigger 0' is pulsed, then stored on the camera, then is transmitted on 'trigger 1'.  
    The default selection is the "Delayed readout EPS trigger", however, I do not know how to set the 'trigger 1' properly yet and I only have one connection available on my embedded board that is handling the triggering right now (I don't know if 'trigger 1' needs to be on a separate line or not).  Incidentally, the system does not work on this setting and gives me the black lines (aka lost packets/ apparitions).
    I was able remove the black lines and apparitions using the "Edge pre-select" option on all 4 images with a 5 Hz simultaneous trigger.  I confirmed this using the "JAI Control Tool" that ships with the cameras.  I am unable to make this happen in MAX though, as the trigger mode is automatically switched to 'off' if I use the mode:  JAI Acquisition Control>> Exposure Mode (JAI)>>Edge pre-select
    i.e. when manually switching the trigger mode to 'on' in MAX, "JAI Acquisition Control>> Exposure Mode (JAI)>>Delayed readout EPS trigger" option is forced by MAX.  The vise-versa is also forced so that if EPS mode is chosen, "Trigger Mode Off" is forced.
    Additionally, there is a setting called:
    Image Format Control>>Sync Mode>>Sync     &     Image Format Control>>Sync Mode>>Async
    When the "Sync" option is chosen the NIR CCD uses the trigger of the VIS CCD.  In addition to using the "Edge pre-select" option, the "Sync" option improves the triggering results significantly.  
    5)  Future troubleshooting
    Since I cannot set the camera parameters manually in MAX (due to MAX forcing different combinations of parameters in 4), I am going to explore manually editing the configuration file and loading those parameters at startup.  This can be tricky since a bad combination will stall the camera, but I can verify the settings in JAI Control Tool first.  There is also an SDK that is shipped with the cameras, so I may be able to use those commands.  I haven't learned C/C++ yet, but I have teammates who have.

  • Problem with rendering GeoRaster in MapViewer...

    Hi,
    I am using the MapBuilder (10.1.3.1), and I import a georaster for an Oracle Spatial 10g Database. I created a GeoRaster Theme and a Base Map including GeoRaster Theme created. In preview mode of Map Builder, the GeoRaster is displayed correctly. In MapViewer (Ver 10131_B061023) this GeoRaster does not appear... A cyan rectangle appears, apparently with the size of GeoRaster...
    I have copied the Java Advanced Imaging (JAI) library files (jai_core.jar and jai_codec.jar) to the OracleAS MapViewer library path (\mapviewer\web\WEB-INF\lib), and restart mapviewer...
    Does anyone have any idea of what may be happening wrong?
    Thanks

    There may be a problem with the map request sent to MapViewer. Please post the map request and the log information (you can get from the log file - set the log level to "finest").

  • Pivot point in image rotation with JAI...

    I'm using JAI to rotate some images...
    but it doesnt seem to rotate around the center of the image..
    here is my codes..
    float xOrigin = ((float)src.getWidth())/2;
    float yOrigin = ((float)src.getHeight())/2;
    float angle = (float)v * (float)(Math.PI/180.0F);
    Interpolation interp = Interpolation.getInstance(Interpolation.INTERP_BICUBIC);
    ParameterBlock params = new ParameterBlock();
    params.addSource(src);
    params.add(xOrigin);
    params.add(yOrigin);
    params.add(angle); // rotation angle
    params.add(interp); // interpolation method
    des = JAI.create("rotate", params);
    displayImage(des);
    note: src and des is defined as PlanarImage.
    any clues why the center point isn't height/2 and width/2??
    thx

    It seems that on problem with the code, I use same code when I rotate the image. How do you display the image? maybe problem is there, after the ratation, the origin of the image changes, if your display method can not handle this, you may not display it properly.

  • Problem with Graphs

    Hi
    We are facing  a strange problem with graphs in BeX.
    We are making graph on summarized data and storing it in workbooks.The problem im facing is that whenever the query is refreshed the Graph gets scattered.for e.g X axis becomes Y  and things like that,
    pls share your experience and a way to fix this problem
    JPJP

    hi jaya
    thanks for your response
    i shall try upgrading and also check the note,
    Thanks
    JP

  • Hi from belgium a problem with blackberry 8520

    help please blackberry 8520
    hi
    i have ablckberry 8520.
    Version: 4.6.1.296 .
    i use it to navigate in internet every thing is ok.
    but i have a problem with a site of advertising that i always use it ;
    http://www.vivastreet.be/
    I CANT LOGIN IN THIS SITE.
    CAN YOU HELP ME.
    i creat a new account for you if you want to test it your self .
    so you can try log in your self.
    log in :
    [email protected]
    pass word :
    1111111111
    thanks.
    [removed personal information]
    Salut
    J'ai recu le ablckberry 8520 avec l abonnement.
    Version: 4.6.1.296.
    Je l'utilise pour naviguer sur Internet tout est ok.
    mais j'ai un problème avec un site que j'ai utilise depuis toujours;
    http://www.vivastreet.be/
    Je arrive pas a connecte sur ce site.
    Pouvez-vous m'aider.
    jai cree un nouveau compte pour vous si vous voulez le tester vous-même.
    login :
    [email protected]
    un mot de passe:
    1111111111
    Merci.
    [removed personal information]

    Hiya!
     Personally, I havent seen this so it may be isolated to your device.
     Your best bet for warranty is to call your carrier.
    It very well could be classified as physical damage and void your warranty. Or they may classify it as "manufacturer defect" and replace it.
    Its hard to say as carrier's policys are different
    1). Please thank those who help you by clicking the beside the 'Reply' button.
    2). If your issue has been solved, please resolve it by marking "Accept as Solution" on the correct post!
    3). Remember to have fun! We are all in this together!
    4). Follow me on

  • Display offset problems with 1bit RenderedImage

    Hi, I am loading a 1 bit image with JAI and display two versions of it. The first is unmodified and has an IndexColorModel together with MultiPixelPackedSampleModel. The second version has a lookup table applied and therefore has a ComponentColorModel with a PixelInterleavedSampleModel. When I display the complete content of both images everything is fine and they match. BUT when I start to zoom, the first one with the MultiPixelPackedSampleModel has an offset in the x direction if the left edge of the image is not within the view.
    I use Graphics2D.drawRenderedImage(rimg, af). The AffineTransform translates the image in the negative x direction, so the area of interest is displayed correctly. And here it comes: If the x translate value is NOT a multiple of 8 I get the problem with the first image! Second image is always ok.
    It even gets more exciting this applies only for the first tile in the x direction. Subsequent tiles are displayed correctly. The tile offset values for both images are 0 by the way. Since both images are drawn the same way and are only different by their ColorModel and SampleModel, I think this is a bug. Please tell me I am wrong!!!

    And here comes another clue. The width of the image is uneven. If I use the Border operator before scaling to increase the width so that it can be divided by 8, then I have no offset problem - BUT - I have a big slowdown. Is there nobody out have having experienced the same?

  • Image border problem using JAI

    I've written some very simple code to scale an image down to a small
    thumbnail in JPG format but the quality is quite horrible. Is there a way of making it look nicer?
    src = JAI.create("fileload","filepath")
    ParameterBlock params = new ParameterBlock();
    params.addSource(src);
    params.add(xScale);//x scale factor
    params.add(yScale);//y scale factor
    params.add(0.0F);//x translate
    params.add(0.0F);//y translate
    params.add(Interpolation.getInstance(Interpolation.INTERP_NEAREST));
    dest = JAI.create("scale", params,null);
    I switched to InterpolationBicubic, instead of Interpolationnearest the quality was much better but the resulting image contained borders.
    could some one tell me is there any other way to get better and nicer results.

    Yes you can fix the border problem by setting a render hint to change the way the borders are handled. Something like the following will do the trick.
    You can also use BORDER_WRAP instead of BORDER_COPY, both seem to have a similar result. Mind you I am still very dissapointed with the quality of the bicubic resampling in JAI, but at least this will fix the problem with the borders.
    RenderingHints rh = new RenderingHints(JAI.KEY_BORDER_EXTENDER, BorderExtender.createInstance(BorderExtender.BORDER_COPY));
    dest = JAI.create("scale", params,rh);

  • DFT problem in JAI

    Hello!
    I have a strange problem with the JAI classes that perform DFT and IDFT. I perform both the operations on an image but the result I get is not the original image. What 's wrong with my code?
    Thanks for the help.
    My code is as follows
    import javax.media.jai.*;
    import javax.media.jai.operator.*;
    import java.awt.image.renderable.*;
    import java.awt.image.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.color.*;
    import javax.swing.*;
    import com.sun.image.codec.jpeg.*;
    import java.awt.RenderingHints;
    public class dftchain extends JPanel{
         PlanarImage img1;
         PlanarImage img2;
         PlanarImage finim;
         BufferedImage im;
         ImagePanel viewer;
         public static void main(String[] args) {
              dftchain s = new dftchain();
         public dftchain() {
         Image im1= readImage("ref.jpg");
         img1 = JAI.create("awtimage", im1);
         PlanarImage gray1 = convertColorToGray(img1,30);
         RenderedOp rop1 = DFTImage(gray1, DFTDescriptor.SCALING_NONE, DFTDescriptor.REAL_TO_COMPLEX);
         RenderedOp mag = magnitudeImage(rop1);
         RenderedOp refphase = phaseImage(rop1);
         RenderedOp complex = polarToComplexImage(mag, refphase);
         PlanarImage finim = inverseDFTImage(complex,DFTDescriptor.SCALING_NONE, DFTDescriptor.COMPLEX_TO_REAL);
         im = finim.getAsBufferedImage();
         diplay(im);
         public RenderedOp DFTImage (PlanarImage image, DFTScalingType scalingType, DFTDataNature dataNature){
              ParameterBlock pb = new ParameterBlock();
              pb.addSource(image);
              pb.add(scalingType).add(dataNature);
              return JAI.create("dft",pb);
         public RenderedOp inverseDFTImage (PlanarImage image, DFTScalingType scalingType, DFTDataNature dataNature) {
              ParameterBlock pb = new ParameterBlock();
              pb.addSource(image);
              pb.add(scalingType).add(dataNature);
              return JAI.create("idft", pb);
         public RenderedOp magnitudeImage (PlanarImage image){
              ParameterBlock pb = new ParameterBlock();
              pb.addSource(image);
              return JAI.create("magnitude",pb);
         public RenderedOp phaseImage (PlanarImage image){
              ParameterBlock pb = new ParameterBlock();
              pb.addSource(image);
              return JAI.create("phase",pb);
         public RenderedOp polarToComplexImage( RenderedOp mag, RenderedOp phase) {
              ParameterBlock pb = new ParameterBlock();
              pb.addSource(mag);
              pb.addSource(phase);
              return JAI.create("polartocomplex", pb);
         public void diplay (BufferedImage img) {
              int width = img.getWidth();
              int height = img.getHeight();
              JFrame fr = new JFrame();
              fr.addWindowListener(
              new WindowAdapter() {
                   public void windowClosing(WindowEvent e){
                        System.exit(0);
              fr.setTitle("Viewer");
              viewer = new ImagePanel(img);
              viewer.setPreferredSize(new Dimension(width,height));
              Container cp = fr.getContentPane();
              fr.getContentPane().setLayout(new GridLayout(1,1));
              cp.add(viewer);
              fr.pack();
              fr.getSize(new Dimension(width, height));
              fr.show();
              viewer.repaint();
         public Image readImage(String imageName) {
              Image image = Toolkit.getDefaultToolkit().getImage(imageName);
              MediaTracker imageTracker = new MediaTracker(this);
              imageTracker.addImage(image,0);
              try{
                   imageTracker.waitForID(0);
              catch (InterruptedException e) {
                   System.out.println(e);
              return image;
         // produce a 3 band luminance image from a 3 band color image */
        public PlanarImage convertColorToGray(PlanarImage src, int brightness) {
            PlanarImage dst = null;
            double b = (double) brightness;
            double[][] matrix = {
                                    { .114D, 0.587D, 0.299D, b },
                                    { .114D, 0.587D, 0.299D, b },
                                    { .114D, 0.587D, 0.299D, b }
            if ( src != null ) {
                ParameterBlock pb = new ParameterBlock();
                pb.addSource(src);
                pb.add(matrix);
                dst = JAI.create("bandcombine", pb, null);
            return dst;
        class ImagePanel extends JComponent {
              BufferedImage image;
              public ImagePanel (BufferedImage img) {
                   image = img;
              public void paintComponent(Graphics g) {
                   Rectangle rect = this.getBounds();
                   if (image!=null){
                        g.drawImage(image,0,0,rect.width,rect.height,this);
    }

    I am not saying it will work, but I would ask if you tried "Dilate"? I don't know what the parameters are supposed to be for the different methods, but I do know how to get a listing of them. See the code below:
              OperationRegistry ory = JAI.getDefaultInstance().getOperationRegistry();
              String [] temp = ory.getRegistryModes();
              String []temp2;
              for (int which = 0; which < temp.length; which++) {
                   temp2 = ory.getDescriptorNames(temp[which]);
                   System.out.println("\t"+temp[which]+":");
                   for (int cual = 0; cual < temp2.length; cual++) {
                        System.out.println("\t\t"+temp2[cual]);
    That will get you a listing of all of the registry modes and the descriptor names within each mode. For parameters and explanations, well, I guess check out the source code for the JAI library and then rifle through it until you find an example, or use trial-and-error, since the only documentation seems to refer to deprecated calls (as I have noted in the most recent version of JAI).

  • Problems with Java web start

    Hi All,
    I am facing a problem with Java Web Start. Which is the most appropriate version of JDK recommended for SAP XI? I tried
    JDK 1.4.2_04
    JDK 1.4.2_09
    JDK1.4.2_11
    JDK1.5.0_01
    When I click on Integration repository or Directory for the first time, it loads the jar files and while loading, I get an error msg "Unable to launch Integration Builder". After a lot of retries I get sucess. But still we are facing this issue in some machines. Can you pls let me know if there is any pre configuration or some thing I am missing...
    Regards,
    Jai Shankar

    Did you check the proxy settings in JAVA Web start. Please follow the below instructions.
    This could be set to None or to specific for values HTTP Proxy and HTTP Port .
    Contact your network administrator for the correct settings. 
    To change the Proxy Settings:
    Select Windows Start menu -> All Programs -> Java Web Start -> Java Web Start
    Choose File -> Preferences -> General
    Choose None to switch off the proxy settings or Manual to set the HTTP Proxy and HTTP Port.
    ChooseOK
    Close Java™ Webstart

  • Search Problems with Blog of Thorsten Franz

    Hi,
    I try to follow the intallation guide of Thorsten Franz great blog-series:
    /people/thorsten.franz3/blog/2009/08/22/composition-in-the-cloud-run-your-own-sap-netweaver-ce-71-ehp-1-in-the-cloud-part-1-of-3
    /people/thorsten.franz3/blog/2009/08/23/composition-in-the-cloud-run-your-own-sap-netweaver-ce-71-ehp-1-in-the-cloud-part-2-of-3
    Today I was searching the blog, because I will continue.
    If you search the keywords "Cloud" and "Amazon" these blogs does not appear. But these Keywords are in the blog.
    What is the problem?
    Best regards
    Renald

    Hi Jai,
    thanks for your tip.
    Actually this thread is not about to find workarounds. At the end I found the blogs. This thread is about to optimize the SDN search engine and find problems with it.
    Anyway, thanks again.
    Best regards
    Renald

Maybe you are looking for

  • Automatic update of number ranges in FBN1 is not getting processed

    Automatic update of number ranges in FBN1 (current status) level is not getting processed. Tried posting a customer payment document in the system though number ranges are maintained for the year 2015 the number ranges are not overlapped last year al

  • BPM activation problem

    Hi, I am trying to realize the following synchronous scenario using integration process: HTTP sender adapter>XI>HTTP Receiver adapter. (I have to send a http request to a third party system through XI and get the response back) The process has async

  • Jar file for Ischeduler Task

    Hi All, Can anybody tell which is the jar file used to implement the interface IScheduler task . When i  was creating  the scheduler task i'm getting the error "ISchedulerTask cannot be resolved". Regards, V Karthi

  • Excise base amount

    hi MM Guru's still i am not able to see the neithe Base value nor BED & Ecess in excise tab while we do the MIGO i have already maintained the Chapter id & material & chapterid combination ,Cenvat , Vendor excise details for that material what should

  • Programmed system maintenance

    I read that OSX has pre-programmed system maintenance and there is discussion on whether the computer should be turned off at night. Is there someplace I can check or reset my system maintenance?