Java Swing application problem in Windows vista

When we execute the Swing application in windows vista environment.
The look and feel of the swing components are displayed improperly.
Do we need to put any specific look and feel for windows vista environment or any specific hardware configuration is required to setup windows vista environment.
Please give some inputs to solve the problem.
We have tried with the following sample code to run in windows vista.
* Vista.java
* Created on December 5, 2006, 5:39 PM
public class Vista extends javax.swing.JFrame {
/** Creates new form Vista */
public Vista() {
initComponents();
pack();
/** This method is called from within the constructor to
* initialize the form.
* WARNING: Do NOT modify this code. The content of this method is
* always regenerated by the Form Editor.
// <editor-fold defaultstate="collapsed" desc=" Generated Code ">//GEN-BEGIN:initComponents
private void initComponents() {
jButton1 = new javax.swing.JButton();
jToggleButton1 = new javax.swing.JToggleButton();
jPanel1 = new javax.swing.JPanel();
jCheckBox1 = new javax.swing.JCheckBox();
jScrollPane1 = new javax.swing.JScrollPane();
jTextArea1 = new javax.swing.JTextArea();
jTextField1 = new javax.swing.JTextField();
getContentPane().setLayout(null);
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
jButton1.setText("Button 1");
getContentPane().add(jButton1);
jButton1.setBounds(20, 20, 170, 30);
jToggleButton1.setText("Togle btn");
getContentPane().add(jToggleButton1);
jToggleButton1.setBounds(100, 80, 90, 20);
jPanel1.setLayout(null);
jCheckBox1.setText("jCheckBox1");
jCheckBox1.setBorder(javax.swing.BorderFactory.createEmptyBorder(0, 0, 0, 0));
jCheckBox1.setMargin(new java.awt.Insets(0, 0, 0, 0));
jPanel1.add(jCheckBox1);
jCheckBox1.setBounds(10, 40, 130, 13);
getContentPane().add(jPanel1);
jPanel1.setBounds(10, 150, 200, 130);
jTextArea1.setColumns(20);
jTextArea1.setRows(5);
jScrollPane1.setViewportView(jTextArea1);
getContentPane().add(jScrollPane1);
jScrollPane1.setBounds(210, 150, 164, 94);
jTextField1.setText("jTextField1");
getContentPane().add(jTextField1);
jTextField1.setBounds(240, 30, 140, 30);
pack();
}// </editor-fold>//GEN-END:initComponents
* @param args the command line arguments
public static void main(String args[]) {
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new Vista().setVisible(true);
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JButton jButton1;
private javax.swing.JCheckBox jCheckBox1;
private javax.swing.JPanel jPanel1;
private javax.swing.JScrollPane jScrollPane1;
private javax.swing.JTextArea jTextArea1;
private javax.swing.JTextField jTextField1;
private javax.swing.JToggleButton jToggleButton1;
// End of variables declaration//GEN-END:variables
}

When we execute the Swing application in windows
vista environment.
The look and feel of the swing components are
displayed improperly.Improperly means what? You must be aware that Vista's native L&F certainly isn't supported yet.

Similar Messages

  • UI problem when run java swing application on MAC OSX

    Hello,
    I have problem when i run my java swing application on MAC OSX.
    Dialog box is not properly visible in MAC means ita size increses.
    its size incresed and and some content or buttons on that dialog are not fully visible.
    I can only see partial message or button.
    If any one have idea about this problem then give the solution.
    Thanks :)
    Shweta

    I am using following way to create dialog
    JOptionPane optionpane = new JOptionPane(new Object[]{lblMsgUp}, JOptionPane.OK_CANCEL_OPTION, JOptionPane.INFORMATION_MESSAGE, null, choices, "Save");
    JDialog dialog = optionpane.createDialog(parent, "Save");
    dialog.setSize(450, 125);
    dialog.setVisible(true);

  • Unicode characters with accents won't display in Java Swing applications

    I'm using FreeMind (a Java Swing application) and I need to enter classical Greek characters with accent marks. When I type an accented Greek character, FreeMind displays the unaccented character. However, I can type the accented character in MS Word, then copy and paste into FreeMind, the accented character appears.
    One of the FreeMind developers indicated this was a Java Swing issue, not FreeMind, and suggested I test with another Swing application. So, I installed jEdit and got exactly the same results. I can paste an accented character into jEdit, but I cannot type it in directly.
    I'm using Windows Vista with Java 6 Update 22 (build 1.6.0_22-b04). I also tested on a XP Pro box with Java 1.6.0_18-b07 and got the same result.
    One other note: A couple days ago, I was able to type accented Greek characters into FreeMind. But it only worked for a couple days and then the behavior reverted to unaccented characters. It is possible, but I don't recall specifically, that I updated Java during the time and that may indicate a bug in one version of Java but not another.
    Any assistance or guidance would be greatly appreciated!
    Darin

    Walter,
    The link you provided does not appear to describe the Greek Polytonic keyboard. (The page also describes using the "Option" key as the dead key. There is no "Option" key on my keyboard. I'm using a Sony VGN-NS140E purchased in Chicago, i.e. standard physical US keyboard.)
    Please see http://darindavis.net/languages/keyboard_Greek.pdf for a detailed description of how to use the Greek (Polytonic) keyboard in Windows to produce a complete set of accented classical Greek characters. This method works in MS Word and Notepad. I enabled the Greek (Polytonic) keyboard with:
    Windows (Vista) Start > Control Panel > Regional and Language Options > Change Keyboards > General > Add > Greek (Greece) > Greek Polytonic
    A test that will demonstrate whether you can replicate the error is to do the following in both MS Word (or Notepad) and jEdit (or FreeMind):
    1. Enable the Greek Polytonic keyboard
    2. Type "\" then "e" which should produce an epsilon with smooth breathing and grave accent (ἒ)
    When I do this in MS Word or Notepad, I see the epsilon with smooth breathing and grave accent. When I do this in jEdit and FreeMind, I only see an epsilon.
    I recorded a screencast to illustrate the problem: http://www.screencast.com/t/TRKkKQrCgbN
    Actually, this problem is transient. Sometimes FreeMind or jEdit will display accented characters, other times it won't. Ironically, the first time I recorded the above referenced screencast, a few characters in jEdit did appear with accents. A couple minutes later, I re-recorded the screencast and as you can see jEdit did not display the accents. Between the two recordings I literally did nothing other than stop the Jing recording and start a new one. There is another variable at play here and I can't determine what it is. The most likely source seems to be Java since MS Word and Notepad consistently display accent characters.
    Thanks,
    Darin

  • Invoking a Java swing application via its process id

    I have a Java swing application. What i am trying to do here is that when the user double-clicks the jar file to open it, if the Swing application is already open and is minimized, I need to maximize the open window and make it active.
    I tried using 'jps -l' command in my new instance, and with the help of Runtime.exec() am able to detect whether the application is already running or not, and if running, am able to get the process id and am displaying a message to user indicating the window is already open.
    But how do i maximize the window of an already running application? Is it possible?

    user13333704 wrote:
    I have a Java swing application. What i am trying to do here is that when the user double-clicks the jar file to open it, if the Swing application is already open and is minimized, I need to maximize the open window and make it active. That's not hard to do, but your proposed solution is hard to do. The usual way to have only one instance of a Java application running is this:
    Have the application open a SocketServer on a certain port number. Since only one process can listen on a port, the second instance of the application will fail when it tries to open the SocketServer. When that happens, the second instance should terminate instead of displaying its own GUI. Whether it terminates silently or whether it displays a dialog is up to you.
    If you want the second instance to communicate with the first instance, that's easy because the first instance is listening on the port. So the second instance could connect to that port and send a message to it. In your case the first instance would respond to that message by maximizing its GUI.

  • Accelarate the Linux ATI Graphics card  for java Swing application

    Hi All,
    I am using a ATI Radeon 9550 Graphic card in LFS (Linux from the scratch) environment. I want to enable the OpenGL-based pipeline for Java Swing application. I tried the -Dsun.java2d.opengl=true . But the Java swing application getting very slow.
    How to overcome this problem?
    Any one give the procedure to Accelerate ATI graphics card for Java Swing Application
    How to verify Java swing use ATI graphics card ?
    Thanks in advance..
    Prabhu.S

    Hi All,
    I am using a ATI Radeon 9550 Graphic card in LFS (Linux from the scratch) environment. I want to enable the OpenGL-based pipeline for Java Swing application. I tried the -Dsun.java2d.opengl=true . But the Java swing application getting very slow.
    How to overcome this problem?
    Any one give the procedure to Accelerate ATI graphics card for Java Swing Application
    How to verify Java swing use ATI graphics card ?
    Thanks in advance..
    Prabhu.S

  • Certificate support in Java Swing application

    Hi There,
    I am new to this Certificate thing and running into issues! Would appreciate for all the help and please ignore for any stupid questions.
    Here is my scenario.
    1. I do have a client server application and client is a java swing application which connects to a Server application (Using Jetty 4.2.22 as embedded server)
    2. Initially, it had a self signed certificate but goal is to support third party certificate (i.e import in the server and then show warning to the client during login)
    If somebody has already done this or point me to some example (using Jetty APIs) that would be great help. If not, here is what I am trying to do and some questions.
    1. I tried to get some free SSL certificate from the web and imported into the server's KeyStore.
    If I do a list from the server using Keystore, this is what it looks like
    keytool -list -keystore /tmp/keystore -storepass genview
    Keystore type: JKS
    Keystore provider: SUN
    Your keystore contains 2 entries
    self, Dec 3, 2008, PrivateKeyEntry,
    Certificate fingerprint (MD5): 0D:58:E8:77:89:09:F8:2B:37:64:37:D5:03:AD:C9:0B
    rapid, Jan 6, 2009, trustedCertEntry,
    Certificate fingerprint (MD5): 64:9C:EF:2E:44:FC:C6:8F:52:07:D0:51:73:8F:CB:3
    QUESTION 1 : why the third party certificate's entry as "trustedCertEntry"? Is it always like this? Do I need to have only one certificate at a time? (If so, just remove the self signed and have 3rd party one)
    My Jetty server comes up but when I connect from Client Swing App, the "getServerCertificates()" method only returns one entry i.e self signed one but not the third party one.
    I am using like this
    URL url = new URL("https://127.0.0.1:port");
    HttpsURLConnection conn = (HttpsURLConnection) url.openConnection();
    conn.connect();
    Certificate[] certs = conn.getServerCertificates();
    Is not this API supposed to return all the server's certificate?
    Please guide me or instruct me what to do.
    Thanks,
    CRB

    Crossposted and answered.

  • How to create the digital clock in java swing application ?

    I want to create the running digital clock in my java swing application. Can someone throw some light on this how to do this ? Or If someone has done it then can someone pl. paste the code ?
    Thanks.

    hi prah_Rich,
    I have created a digital clock you can use. You will most likely have to change some things to use it in another app although that shouldn't be too hard. A least it can give you some ideas on how to create one of your own. There are three classes.One that creates the numbers. a gui class and frame class.
    cheers:)
    Hex45
    import java.awt.*;
    import java.util.*;
    import javax.swing.*;
    import java.awt.geom.*;
    public class DigitalClock extends Panel{
              BasicStroke stroke = new BasicStroke(4,BasicStroke.CAP_ROUND,
                                               BasicStroke.JOIN_BEVEL);
              String hour1, hour2;
              String minute1, minute2;
              String second1, second2;
              String mill1, mill2, mill3;
              int hr1, hr2;
              int min1, min2;
              int sec1, sec2;
              int mll1, mll2,mll3;       
        public void update(Graphics g){
             paint(g);
         public void paint(Graphics g){
              Graphics2D g2D = (Graphics2D)g;
              DigitalNumber num = new DigitalNumber(10,10,20,Color.cyan,Color.black);     
              GregorianCalendar c = new GregorianCalendar();
              String hour = String.valueOf(c.get(Calendar.HOUR));
              String minute = String.valueOf(c.get(Calendar.MINUTE));
              String second = String.valueOf(c.get(Calendar.SECOND));
              String milliSecond = String.valueOf(c.get(Calendar.MILLISECOND));
              if(hour.length()==2){
                   hour1 = hour.substring(0,1);
                   hour2 = hour.substring(1,2);
              }else{
                   hour1 = "0";
                   hour2 = hour.substring(0,1);
              if(minute.length()==2){
                   minute1 = minute.substring(0,1);
                   minute2 = minute.substring(1,2);
              }else{
                   minute1 = "0";
                   minute2 = minute.substring(0,1);
              if(second.length()==2){
                   second1 = second.substring(0,1);
                   second2 = second.substring(1,2);
              }else{
                   second1 = "0";
                   second2 = second.substring(0,1);
              if(milliSecond.length()==3){
                   mill1 = milliSecond.substring(0,1);
                   mill2 = milliSecond.substring(1,2);
                   mill3 = milliSecond.substring(2,3);
              }else if(milliSecond.length()==2){
                   mill1 = "0";
                   mill2 = milliSecond.substring(0,1);
                   mill3 = milliSecond.substring(1,2);
              }else{
                   mill1 = "0";
                   mill2 = "0";
                   mill3 = milliSecond.substring(0,1);
              hr1  = Integer.parseInt(hour1);     
              hr2  = Integer.parseInt(hour2);
              min1 = Integer.parseInt(minute1);
              min2 = Integer.parseInt(minute2);
              sec1 = Integer.parseInt(second1);
              sec2 = Integer.parseInt(second2);
              mll1 = Integer.parseInt(mill1);
              mll2 = Integer.parseInt(mill2);
              g2D.setStroke(stroke);
              g2D.setPaint(Color.cyan);
              num.setSpacing(true,8);
              num.setSpacing(true,8);
              if(hr1==0&hr2==0){
                   num.drawNumber(1,g2D);
                   num.setLocation(40,10);
                   num.drawNumber(2,g2D);
              else{
                   if(!(hr1 == 0)){     
                        num.drawNumber(hr1,g2D);
                   num.setLocation(40,10);
                   num.drawNumber(hr2,g2D);
              num.setLocation(70,10);
              num.drawNumber(DigitalNumber.DOTS,g2D);
              num.setLocation(100,10);
              num.drawNumber(min1,g2D);
              num.setLocation(130,10);
              num.drawNumber(min2,g2D);
              num.setLocation(160,10);
              num.drawNumber(DigitalNumber.DOTS,g2D);
              num.setLocation(190,10);
              num.drawNumber(sec1,g2D);
              num.setLocation(220,10);
              num.drawNumber(sec2,g2D);
              /*num.setLocation(250,10);
              num.drawNumber(DigitalNumber.DOTS,g2D);
              num.setLocation(280,10);
              num.drawNumber(mll1,g2D);
              num.setLocation(310,10);
              num.drawNumber(mll2,g2D);
              g2D.setPaint(Color.cyan);
              if((c.get(Calendar.AM_PM))==Calendar.AM){               
                   g2D.drawString("AM",260,20);
              }else{
                   g2D.drawString("PM",260,20);
         String dayOfweek = "";     
         switch(c.get(Calendar.DAY_OF_WEEK)){
              case(Calendar.SUNDAY):
                   dayOfweek = "Sunday, ";
                   break;
              case(Calendar.MONDAY):
                   dayOfweek = "Monday, ";
                   break;
              case(Calendar.TUESDAY):
                   dayOfweek = "Tuesday, ";
                   break;
              case(Calendar.WEDNESDAY):
                   dayOfweek = "Wednesday, ";
                   break;
              case(Calendar.THURSDAY):
                   dayOfweek = "Thursday, ";
                   break;
              case(Calendar.FRIDAY):
                   dayOfweek = "Friday, ";
                   break;
              case(Calendar.SATURDAY):
                   dayOfweek = "Saturday, ";
                   break;
         String month = "";     
         switch(c.get(Calendar.MONTH)){
              case(Calendar.JANUARY):
                   month = "January ";
                   break;
              case(Calendar.FEBRUARY):
                   month = "February ";
                   break;
              case(Calendar.MARCH):
                   month = "March ";
                   break;
              case(Calendar.APRIL):
                   month = "April ";
                   break;
              case(Calendar.MAY):
                   month = "May ";
                   break;
              case(Calendar.JUNE):
                   month = "June ";
                   break;
              case(Calendar.JULY):
                   month = "July ";
                   break;
              case(Calendar.AUGUST):
                   month = "August ";
                   break;
              case(Calendar.SEPTEMBER):
                   month = "September ";
                   break;
              case(Calendar.OCTOBER):
                   month = "October ";
                   break;
              case(Calendar.NOVEMBER):
                   month = "November ";
                   break;
              case(Calendar.DECEMBER):
                   month = "December ";
                   break;
         int day = c.get(Calendar.DAY_OF_MONTH);
         int year = c.get(Calendar.YEAR);
         Font font = new Font("serif",Font.PLAIN,24);
         g2D.setFont(font);
         g2D.drawString(dayOfweek+month+day+", "+year,10,80);
         public static void main(String args[]){
              AppFrame aframe = new AppFrame("Digital Clock");
              Container cpane = aframe.getContentPane();
              final DigitalClock dc = new DigitalClock();
              dc.setBackground(Color.black);
              cpane.add(dc,BorderLayout.CENTER);
              aframe.setSize(310,120);
              aframe.setVisible(true);
              class Task extends TimerTask {
                 public void run() {
                      dc.repaint();
              java.util.Timer timer = new java.util.Timer();
             timer.schedule(new Task(),0L,250L);
    class DigitalNumber {
         private float x=0;
         private float y=0;
         private float size=5;
         private int number;
         private Shape s;
         private float space = 0;
         public static final int DOTS = 10;
         private Color on,off;
         DigitalNumber(){          
              this(0f,0f,5f,Color.cyan,Color.black);          
         DigitalNumber(float x,float y, float size,Color on,Color off){
              this.x = x;
              this.y = y;
              this.size = size;
              this.on = on;
              this.off = off;
         public void drawNumber(int number,Graphics2D g){
              int flag = 0;
              switch(number){
                   case(0):          
                        flag = 125;
                        break;
                   case(1):
                        flag = 96;
                        break;
                   case(2):
                        flag = 55;
                        break;
                   case(3):
                        flag = 103;
                        break;
                   case(4):
                        flag = 106;
                        break;
                   case(5):
                        flag = 79;
                        break;
                   case(6):
                        flag = 94;
                        break;
                   case(7):
                        flag = 97;
                        break;
                   case(8):
                        flag = 127;
                        break;
                   case(9):
                        flag = 107;
                        break;
                   case(DOTS):
                        GeneralPath path = new GeneralPath();
                        path.moveTo(x+(size/2),y+(size/2)-1);
                        path.lineTo(x+(size/2),y+(size/2)+1);
                        path.moveTo(x+(size/2),y+(size/2)+size-1);
                        path.lineTo(x+(size/2),y+(size/2)+size+1);
                        g.setPaint(on);
                        g.draw(path);     
                        return;
              //Top          
              if((flag & 1) == 1){
                   g.setPaint(on);
              }else{
                   g.setPaint(off);
              GeneralPath Top = new GeneralPath();
              Top.moveTo(x + space, y);
              Top.lineTo(x + size - space, y);
              g.draw(Top);
              //Middle
              if((flag & 2) == 2){
                   g.setPaint(on);
              }else{
                   g.setPaint(off);
              GeneralPath Middle = new GeneralPath();
              Middle.moveTo(x + space, y + size); 
              Middle.lineTo(x + size - space,y + size);     
              g.draw(Middle);
              //Bottom
              if((flag & 4) == 4){
                   g.setPaint(on);
              }else{
                   g.setPaint(off);
              GeneralPath Bottom = new GeneralPath();
              Bottom.moveTo(x + space, y + (size * 2));  
              Bottom.lineTo(x + size - space, y + (size * 2));
              g.draw(Bottom);
              //TopLeft
              if((flag & 8) == 8){
                   g.setPaint(on);
              }else{
                   g.setPaint(off);
              GeneralPath TopLeft = new GeneralPath();     
              TopLeft.moveTo(x, y + space);
              TopLeft.lineTo(x, y + size - space);          
              g.draw(TopLeft);
              //BottomLeft
              if((flag & 16) == 16){
                   g.setPaint(on);
              }else{
                   g.setPaint(off);
              GeneralPath BottomLeft = new GeneralPath();     
              BottomLeft.moveTo(x, y + size + space);
              BottomLeft.lineTo(x, y + (size * 2) - space);
              g.draw(BottomLeft);
              //TopRight
              if((flag & 32) == 32){
                   g.setPaint(on);
              }else{
                   g.setPaint(off);
              GeneralPath TopRight = new GeneralPath();     
              TopRight.moveTo(x + size, y + space);
              TopRight.lineTo(x + size, y + size - space);
              g.draw(TopRight);
              //BottomRight
              if((flag & 64) == 64){
                   g.setPaint(on);
              }else{
                   g.setPaint(off);
              GeneralPath BottomRight = new GeneralPath();     
              BottomRight.moveTo(x + size, y + size + space);
              BottomRight.lineTo(x + size, y + (size * 2) - space);
              g.draw(BottomRight);
         public void setSpacing(boolean spacingOn){
              if(spacingOn == false){
                   space = 0;
              else{
                   this.setSpacing(spacingOn,5f);
         public void setSpacing(boolean spacingOn,float gap){
              if(gap<2){
                   gap = 2;
              if(spacingOn == true){
                   space = size/gap;
         public void setLocation(float x,float y){
              this.x = x;
              this.y = y;
         public void setSize(float size){
              this.size = size;
    class AppFrame extends JFrame{
         AppFrame(){
              this("Demo Frame");
         AppFrame(String title){
              super(title);
              setSize(500,500);
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }

  • Problems with Windows VISTA and WPA-2

    Hi Guys,
    I am using a Linksys router supporting draft-N; it seems that after some time of usage; Windows Vista stop being able to connect to Linksys using a WPA-2 PSK.
    Everytime you search for the SSID and attempt to connect, the ''network is taking too long to connect''' and Windows always informs the user that ''limited or no connectivity'' even though the signal strength is excellent.
    Is that a common problem in Windows Visa (I am using Home Edition)?

    Yes thats the basica command problem with Windows Vista while connecting to the Wireless Network.... In this you can need to update your Windows Vista OS with all the Latest Patches and the Service Pack to improve more stability on your Vista Computer to get connected to the Wireless Network..

  • Photo sync problem with Windows Vista?

    I did some searching and was wondering if there is a solution to the photo sync problem with Windows Vista. I have gone the route of changing some of my photos to bitmap files but this is was way too much work just to view on ipod. I like to email Apple but could not find a link to do so. As far as I know I have all updates but still the iPod does not sync photos. Is there an update to this that I am missing or am I stuck changing all my photos to .bmp files?
    Thanks,
    Dean.

    I checked out the article and not much help, thanks anyway.
    Would it make a difference if I purchased Adobe Photo Album or would I still be stuck with changing and saving files to .bmp extensions? I have Adobe Photoshop album starter but still have to change file extensions.
    If someone has a solution to this problem I would really be greatfull. I did contact Dell as this is a brand new computer and that was a wash. They did give me a number for Apple but of course I bought the iPod off of ebay and has no warranty on it so unless I pay a fee I'm not calling. It just blows my mind that Microsoft and Apple can't or won't come up with a fix. But I guess when Microsoft wants you to buy the Zune or Apple wants you to buy the overpriced Macintosh why would they waste time on having there products compatible with each other.
    Thanks.

  • Viewing and printing a PDF file from Java Swing Application

    Hello,
    I need to view and print PDF files from Java Swing Application.How do I do that?I appreciate your help.
    Thank you
    Sumana Somareddy

    If you have a link to the URL pointing to the PDF file, you can allow the browser to open it. Then use the print function of the browser to print the PDF document.
    Regards,
    Tak.

  • G530 (4446) wireless lan problem on Windows Vista 32bit without AC

    I have  new G530 lenovo laptop with the following problem
    After I have enabled the wireless driver (pressing Fn+F5) and moving the switch in front of the laptop, the wireless led is blinking BUT, I can't find any wireless networks. When diagnosing the problem with windows vista,it tells me that the wireless should be turned on.
    Of course, it is ON. After I have reinstalled the wireless driver again from your the support site, the problem disappeared, but reappeared after a couple of days.
    I do not use Access Connections. I have Uninstalled it since I don't need it
    I have seen this problem on several sites when I googled for a solution.
    I need a deterministic solution:
    a. What drivers should I update?
    b. In which order should I update them?
    c. What configuration should I change from their default?
    d. What causes this problem and can I prevent it from happening (like- don't go to standby but just to hibernate state)?
    Thanks
    Guy

    Hey, guys.
    I just discovered that the computer had no issue at all.
    The problem was with me.
    Somehow I managed to disable the wireless network.
    I just typed Fn+ F5 and reactivated it.

  • SAP NetWeaver 04s SP9 for JAVA Installation problem on Windows Vista

    Hi Guys,
    Firstly, anyone installed WAS on Windows Vista home version?
      I have gone thru couple of postings in the SDN and disabled firewall but no use.
    here is link :   Port 21212 error : Couldn't install 2004s
      When I am trying to install, getting below problem.
    Error log
    <b>SAPinst is not available on localhost:21200
    Connection to SAPinstAdapter could not be established, see following messages.
    Could not connect to host localhost on port 21200
    Java.net.ConnectionException : Connection refused: connect</b>
    Thanks in advance for your quick reply....
    Prs.

    Hi Anand & Mahesh,
      Thanks for the quick reply.
    Any one of you got a chance to install NW04S 2007 or New York on Windows Vista?
    I think suggested one not available in SDN I guess.
      If I am not wrong, I can get it from Service.sap.com....
    Can you give me the complete path in the service.sap.com if you know....
    If this would not click, alternatively I am planning to change my operating system to Windows XP, this is not a good idea but I dont have option.
    Thanks in advance for quick reply.
    Regards
    Prs

  • Problems Installing Java Studio Enterprise 8.1 - Windows Vista

    I am entirely new to the Java language and environment. I am trying to install the JSE 8.1. First I installed JDK 6.4 (jdk-6u4-windows-i586-p.exe), which seemed to go OK. Then I attempted to install the JSE (jstudio_ent81-ml-windows.exe).
    First, it did not find a JRE and prompted me to specify, which I did (specified the java.exe within the JDK (Program Files/java/jdk1.6.0_04/bin). The installation continued for a while and then it tells me that "it cannot run the installer in graphical mode - check the DISPLAY environment variable". At this point is closes and that's the end of it. I see no trace of either the JDK nor the JSE in the Start/Programs folder.
    Am I doing something wrong? Is Vista a non-starter?
    Thanks,
    Kevank

    Kevank,
    Thank you for trying out Sun-sponsored Java developer tools. However in the case of Java Studio Enterprise (JSE) there are two issues here:
    1) JSE is not supported on the Windows Vista OS and probably will not run correctly even if it were installable, see http://developers.sun.com/jsenterprise/reference/docs/jse8_1/sjse_relnotes81.html and
    2) The latest Java developer tools technology is to be found in the free NetBeans 6.0 IDE at http://www.netbeans.org/ . It is strongly recommended, especially if you are a developer new to Java, that you start out using the NetBeans IDE, which is not only supported on Vista (see http://www.netbeans.org/community/releases/60/relnotes.html#system_requirements ), but also contains the Java Enterprise application development features found in JSE, see http://www.netbeans.org/features/ .
    If you have any questions on this please feel free to let us know on the forum.
    Regards,
    -Brad Mayer

  • OBIEE 10g installation problem on Windows Vista

    Hi,
    I tried to install OBIEE 10.1.3.4.2 on Windows Vista, but the installation got hanged with the following error: I am very new to OBIEE and could not make out the error... could anyone please help me out ?? Thanks in advance!!
    ------install file error-----------------
    (13 Jun, 2012 11:55:53 AM), Install.product.install, com.installshield.wizard.platform.win32.win32service.WindowsServiceControlAction, wrn, ServiceException: (error code = -120003; message = "Access is denied.
    (5)"; severity = 0)
    STACK_TRACE: 15
    ServiceException: (error code = -120003; message = "Access is denied.
    (5)"; severity = 0)
         at com.installshield.wizard.platform.win32.Win32ServiceImpl.controlNTService(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.installshield.wizard.service.LocalImplementorProxy.invoke(LocalImplementorProxy.java:52)
         at com.installshield.wizard.service.AbstractService.invokeImpl(AbstractService.java:51)
         at com.installshield.wizard.platform.win32.GenericWin32Service.controlNTService(GenericWin32Service.java:93)
         at com.installshield.wizard.platform.win32.win32service.WindowsServiceControlAction.execute(WindowsServiceControlAction.java:67)
         at com.installshield.wizard.StandardWizardListener.execute(StandardWizardListener.java:123)
         at com.installshield.wizard.StandardWizardListener.currentBeanChanged(StandardWizardListener.java:106)
         at com.installshield.wizard.Wizard$RunThread.run(Wizard.java:1564)
    (13 Jun, 2012 11:55:53 AM), Install.product.install, com.installshield.wizardx.conditions.PlatformWizardBeanCondition, dbg.platform, target platform: name="Windows Vista" version="6.0" arch="x86"
    (13 Jun, 2012 11:55:53 AM), Install.product.install, com.installshield.wizardx.conditions.PlatformWizardBeanCondition, dbg.platform, condition platform: name="Windows .*" version="." arch="."
    (13 Jun, 2012 11:55:53 AM), Install.product.install, com.installshield.wizard.platform.win32.win32service.WindowsServiceExistsWizardBeanCondition, err, ServiceException: (error code = -1200012; message = "Access is denied.
    (5)"; severity = 0)
    STACK_TRACE: 23
    ServiceException: (error code = -1200012; message = "Access is denied.
    (5)"; severity = 0)
         at com.installshield.wizard.platform.win32.Win32ServiceImpl.serviceExists(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.installshield.wizard.service.LocalImplementorProxy.invoke(LocalImplementorProxy.java:52)
         at com.installshield.wizard.service.AbstractService.invokeImpl(AbstractService.java:51)
         at com.installshield.wizard.platform.win32.GenericWin32Service.serviceExists(GenericWin32Service.java:178)
         at com.installshield.wizard.platform.win32.win32service.WindowsServiceExistsWizardBeanCondition.evaluateTrueCondition(WindowsServiceExistsWizardBeanCondition.java:86)
         at com.installshield.wizard.WizardBeanCondition.isMet(WizardBeanCondition.java:149)
         at com.installshield.util.ConditionSet.evaluteANDExpression(ConditionSet.java:98)
         at com.installshield.util.ConditionSet.isMet(ConditionSet.java:88)
         at com.installshield.wizard.WizardBean.conditionsMet(WizardBean.java:312)
         at com.installshield.wizard.ConditionalWizardTreeIterator.accept(ConditionalWizardTreeIterator.java:45)
         at com.installshield.wizard.StandardWizardTreeIterator.accept(StandardWizardTreeIterator.java:174)
         at com.installshield.wizard.StandardWizardTreeIterator.getNext(StandardWizardTreeIterator.java:73)
         at com.installshield.wizard.ActiveWizardTreeIterator.getNext(ActiveWizardTreeIterator.java:36)
         at com.installshield.wizard.ConditionalWizardTreeIterator.getNext(ConditionalWizardTreeIterator.java:40)
         at com.installshield.wizard.MultiWizardTreeIterator.getNext(MultiWizardTreeIterator.java:68)
         at com.installshield.wizard.Wizard$RunThread.run(Wizard.java:1571)
    (13 Jun, 2012 11:55:53 AM), Install.product.install, com.installshield.wizard.platform.win32.win32service.WindowsServiceExistsWizardBeanCondition, err, ServiceException: (error code = -1200012; message = "Access is denied.
    (5)"; severity = 0)
    STACK_TRACE: 23
    ServiceException: (error code = -1200012; message = "Access is denied.
    (5)"; severity = 0)
         at com.installshield.wizard.platform.win32.Win32ServiceImpl.serviceExists(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.installshield.wizard.service.LocalImplementorProxy.invoke(LocalImplementorProxy.java:52)
         at com.installshield.wizard.service.AbstractService.invokeImpl(AbstractService.java:51)
         at com.installshield.wizard.platform.win32.GenericWin32Service.serviceExists(GenericWin32Service.java:178)
         at com.installshield.wizard.platform.win32.win32service.WindowsServiceExistsWizardBeanCondition.evaluateTrueCondition(WindowsServiceExistsWizardBeanCondition.java:86)
         at com.installshield.wizard.WizardBeanCondition.isMet(WizardBeanCondition.java:149)
         at com.installshield.util.ConditionSet.evaluteANDExpression(ConditionSet.java:98)
         at com.installshield.util.ConditionSet.isMet(ConditionSet.java:88)
         at com.installshield.wizard.WizardBean.conditionsMet(WizardBean.java:312)
         at com.installshield.wizard.ConditionalWizardTreeIterator.accept(ConditionalWizardTreeIterator.java:45)
         at com.installshield.wizard.StandardWizardTreeIterator.accept(StandardWizardTreeIterator.java:174)
         at com.installshield.wizard.StandardWizardTreeIterator.getNext(StandardWizardTreeIterator.java:73)
         at com.installshield.wizard.ActiveWizardTreeIterator.getNext(ActiveWizardTreeIterator.java:36)
         at com.installshield.wizard.ConditionalWizardTreeIterator.getNext(ConditionalWizardTreeIterator.java:40)
         at com.installshield.wizard.MultiWizardTreeIterator.getNext(MultiWizardTreeIterator.java:68)
         at com.installshield.wizard.Wizard$RunThread.run(Wizard.java:1571)
    (13 Jun, 2012 11:55:53 AM), Install.product.install, com.installshield.wizard.platform.win32.win32service.WindowsServiceExistsWizardBeanCondition, err, ServiceException: (error code = -1200012; message = "Access is denied.
    (5)"; severity = 0)
    STACK_TRACE: 23
    ServiceException: (error code = -1200012; message = "Access is denied.
    (5)"; severity = 0)
         at com.installshield.wizard.platform.win32.Win32ServiceImpl.serviceExists(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.installshield.wizard.service.LocalImplementorProxy.invoke(LocalImplementorProxy.java:52)
         at com.installshield.wizard.service.AbstractService.invokeImpl(AbstractService.java:51)
         at com.installshield.wizard.platform.win32.GenericWin32Service.serviceExists(GenericWin32Service.java:178)
         at com.installshield.wizard.platform.win32.win32service.WindowsServiceExistsWizardBeanCondition.evaluateTrueCondition(WindowsServiceExistsWizardBeanCondition.java:86)
         at com.installshield.wizard.WizardBeanCondition.isMet(WizardBeanCondition.java:149)
         at com.installshield.util.ConditionSet.evaluteANDExpression(ConditionSet.java:98)
         at com.installshield.util.ConditionSet.isMet(ConditionSet.java:88)
         at com.installshield.wizard.WizardBean.conditionsMet(WizardBean.java:312)
         at com.installshield.wizard.ConditionalWizardTreeIterator.accept(ConditionalWizardTreeIterator.java:45)
         at com.installshield.wizard.StandardWizardTreeIterator.accept(StandardWizardTreeIterator.java:174)
         at com.installshield.wizard.StandardWizardTreeIterator.getNext(StandardWizardTreeIterator.java:73)
         at com.installshield.wizard.ActiveWizardTreeIterator.getNext(ActiveWizardTreeIterator.java:36)
         at com.installshield.wizard.ConditionalWizardTreeIterator.getNext(ConditionalWizardTreeIterator.java:40)
         at com.installshield.wizard.MultiWizardTreeIterator.getNext(MultiWizardTreeIterator.java:68)
         at com.installshield.wizard.Wizard$RunThread.run(Wizard.java:1571)
    (13 Jun, 2012 11:55:53 AM), Install.product.install, com.installshield.wizard.platform.win32.win32service.WindowsServiceExistsWizardBeanCondition, err, ServiceException: (error code = -1200012; message = "Access is denied.
    (5)"; severity = 0)
    STACK_TRACE: 23
    ServiceException: (error code = -1200012; message = "Access is denied.
    (5)"; severity = 0)
         at com.installshield.wizard.platform.win32.Win32ServiceImpl.serviceExists(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.installshield.wizard.service.LocalImplementorProxy.invoke(LocalImplementorProxy.java:52)
         at com.installshield.wizard.service.AbstractService.invokeImpl(AbstractService.java:51)
         at com.installshield.wizard.platform.win32.GenericWin32Service.serviceExists(GenericWin32Service.java:178)
         at com.installshield.wizard.platform.win32.win32service.WindowsServiceExistsWizardBeanCondition.evaluateTrueCondition(WindowsServiceExistsWizardBeanCondition.java:86)
         at com.installshield.wizard.WizardBeanCondition.isMet(WizardBeanCondition.java:149)
         at com.installshield.util.ConditionSet.evaluteANDExpression(ConditionSet.java:98)
         at com.installshield.util.ConditionSet.isMet(ConditionSet.java:88)
         at com.installshield.wizard.WizardBean.conditionsMet(WizardBean.java:312)
         at com.installshield.wizard.ConditionalWizardTreeIterator.accept(ConditionalWizardTreeIterator.java:45)
         at com.installshield.wizard.StandardWizardTreeIterator.accept(StandardWizardTreeIterator.java:174)
         at com.installshield.wizard.StandardWizardTreeIterator.getNext(StandardWizardTreeIterator.java:73)
         at com.installshield.wizard.ActiveWizardTreeIterator.getNext(ActiveWizardTreeIterator.java:36)
         at com.installshield.wizard.ConditionalWizardTreeIterator.getNext(ConditionalWizardTreeIterator.java:40)
         at com.installshield.wizard.MultiWizardTreeIterator.getNext(MultiWizardTreeIterator.java:68)
         at com.installshield.wizard.Wizard$RunThread.run(Wizard.java:1571)
    (13 Jun, 2012 11:55:53 AM), Install.product.install, com.installshield.wizard.platform.win32.win32service.WindowsServiceExistsWizardBeanCondition, err, ServiceException: (error code = -1200012; message = "Access is denied.
    (5)"; severity = 0)
    STACK_TRACE: 23
    ServiceException: (error code = -1200012; message = "Access is denied.
    (5)"; severity = 0)
         at com.installshield.wizard.platform.win32.Win32ServiceImpl.serviceExists(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.installshield.wizard.service.LocalImplementorProxy.invoke(LocalImplementorProxy.java:52)
         at com.installshield.wizard.service.AbstractService.invokeImpl(AbstractService.java:51)
         at com.installshield.wizard.platform.win32.GenericWin32Service.serviceExists(GenericWin32Service.java:178)
         at com.installshield.wizard.platform.win32.win32service.WindowsServiceExistsWizardBeanCondition.evaluateTrueCondition(WindowsServiceExistsWizardBeanCondition.java:86)
         at com.installshield.wizard.WizardBeanCondition.isMet(WizardBeanCondition.java:149)
         at com.installshield.util.ConditionSet.evaluteANDExpression(ConditionSet.java:98)
         at com.installshield.util.ConditionSet.isMet(ConditionSet.java:88)
         at com.installshield.wizard.WizardBean.conditionsMet(WizardBean.java:312)
         at com.installshield.wizard.ConditionalWizardTreeIterator.accept(ConditionalWizardTreeIterator.java:45)
         at com.installshield.wizard.StandardWizardTreeIterator.accept(StandardWizardTreeIterator.java:174)
         at com.installshield.wizard.StandardWizardTreeIterator.getNext(StandardWizardTreeIterator.java:73)
         at com.installshield.wizard.ActiveWizardTreeIterator.getNext(ActiveWizardTreeIterator.java:36)
         at com.installshield.wizard.ConditionalWizardTreeIterator.getNext(ConditionalWizardTreeIterator.java:40)
         at com.installshield.wizard.MultiWizardTreeIterator.getNext(MultiWizardTreeIterator.java:68)
         at com.installshield.wizard.Wizard$RunThread.run(Wizard.java:1571)
    (13 Jun, 2012 11:55:53 AM), Install.product.install, com.installshield.wizardx.conditions.PlatformWizardBeanCondition, dbg.platform, target platform: name="Windows Vista" version="6.0" arch="x86"
    (13 Jun, 2012 11:55:53 AM), Install.product.install, com.installshield.wizardx.conditions.PlatformWizardBeanCondition, dbg.platform, condition platform: name="Windows .*" version="." arch="."
    (13 Jun, 2012 11:55:53 AM), Install.product.install, com.installshield.wizardx.conditions.PlatformWizardBeanCondition, dbg.platform, target platform: name="Windows Vista" version="6.0" arch="x86"
    (13 Jun, 2012 11:55:53 AM), Install.product.install, com.installshield.wizardx.conditions.PlatformWizardBeanCondition, dbg.platform, condition platform: name="Windows NT\|Windows 2000" version="5\.0" arch="."
    (13 Jun, 2012 11:55:53 AM), Install.product.install, com.installshield.wizardx.conditions.PlatformWizardBeanCondition, dbg.platform, target platform: name="Windows Vista" version="6.0" arch="x86"
    (13 Jun, 2012 11:55:53 AM), Install.product.install, com.installshield.wizardx.conditions.PlatformWizardBeanCondition, dbg.platform, condition platform: name="\(Windows NT\|Windows 2000\)\|\(Windows X.\)" version="5\.1" arch="."
    (13 Jun, 2012 11:55:53 AM), Install.product.install, com.installshield.wizardx.conditions.PlatformWizardBeanCondition, dbg.platform, target platform: name="Windows Vista" version="6.0" arch="x86"
    (13 Jun, 2012 11:55:53 AM), Install.product.install, com.installshield.wizardx.conditions.PlatformWizardBeanCondition, dbg.platform, condition platform: name="Windows .*" version="5\.2" arch="."
    (13 Jun, 2012 11:55:53 AM), Install.product.install, com.installshield.wizardx.conditions.PlatformWizardBeanCondition, dbg.platform, target platform: name="Windows Vista" version="6.0" arch="x86"
    (13 Jun, 2012 11:55:53 AM), Install.product.install, com.installshield.wizardx.conditions.PlatformWizardBeanCondition, dbg.platform, condition platform: name="Windows .*" version="6\.0" arch="."
    (13 Jun, 2012 11:56:45 AM), Install.product.install, com.siebel.analytics.install.ExecWizardActionCustom, err, com.installshield.util.ProcessExecException: Cannot run program "\VC80\vcredist_x86.exe": CreateProcess error=3, The system cannot find the path specified
    STACK_TRACE: 7
    com.installshield.util.ProcessExecException: Cannot run program "\VC80\vcredist_x86.exe": CreateProcess error=3, The system cannot find the path specified
         at com.installshield.util.ProcessExec.executeProcess(ProcessExec.java:180)
         at com.installshield.wizardx.actions.ExecWizardAction.executeProcess(ExecWizardAction.java:412)
         at com.installshield.wizardx.actions.ExecWizardAction.run(ExecWizardAction.java:457)
         at com.siebel.analytics.install.ExecWizardActionCustom.run(ExecWizardActionCustom.java:79)
         at java.lang.Thread.run(Unknown Source)
    (13 Jun, 2012 11:57:36 AM), Install.product.install, com.installshield.wizardx.conditions.PlatformWizardBeanCondition, dbg.platform, target platform: name="Windows Vista" version="6.0" arch="x86"
    (13 Jun, 2012 11:57:36 AM), Install.product.install, com.installshield.wizardx.conditions.PlatformWizardBeanCondition, dbg.platform, condition platform: name="Windows .*" version="." arch="."
    (13 Jun, 2012 11:57:48 AM), Install.product.install, com.installshield.product.actions.UninstallerJVMResolution, dbg.jvm, attempting to use the current JVM
    (13 Jun, 2012 11:57:48 AM), Install.product.install, com.installshield.product.actions.UninstallerJVMResolution, dbg.jvm, searching for a JVM
    (13 Jun, 2012 11:57:49 AM), Install.product.install, com.installshield.wizard.platform.win32.Win32JVMServiceImpl, dbg.jvm, executing launcher to resolve JVM
    (13 Jun, 2012 11:57:50 AM), Install.product.install, com.installshield.wizard.service.jvm.PureJavaJVMServiceImpl$JVMFinder, err, java.io.IOException: Cannot run program "C:\Users\MOUMIT~1\AppData\Local\Temp\ismp001\LauncherMain.exe": CreateProcess error=740, The requested operation requires elevation
    STACK_TRACE: 13
    java.io.IOException: Cannot run program "C:\Users\MOUMIT~1\AppData\Local\Temp\ismp001\LauncherMain.exe": CreateProcess error=740, The requested operation requires elevation
         at java.lang.ProcessBuilder.start(Unknown Source)
         at java.lang.Runtime.exec(Unknown Source)
         at java.lang.Runtime.exec(Unknown Source)
         at com.installshield.wizard.service.jvm.PureJavaJVMServiceImpl$JVMFinder.execute(PureJavaJVMServiceImpl.java:690)
         at com.installshield.wizard.service.AsynchronousOperation.run(AsynchronousOperation.java:41)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: CreateProcess error=740, The requested operation requires elevation
         at java.lang.ProcessImpl.create(Native Method)
         at java.lang.ProcessImpl.<init>(Unknown Source)
         at java.lang.ProcessImpl.start(Unknown Source)
         ... 6 more
    (13 Jun, 2012 11:57:50 AM), Install.product.install, com.installshield.product.actions.UninstallerJVMResolution, dbg.jvm, resolved to JVM file: null with JVM_HOME = null
    (13 Jun, 2012 11:57:50 AM), Install.product.install, com.installshield.product.actions.UninstallerJVMResolution, dbg.jvm, installing the bundled JVM
    (13 Jun, 2012 11:57:50 AM), Install.product.install, com.installshield.wizard.platform.win32.Win32JVMServiceImpl, dbg.jvm, installing JVM to C:\OracleBI\uninstall\_jvm
    (13 Jun, 2012 11:57:50 AM), Install.product.install, java.io.IOException, err, java.io.IOException: Cannot run program "C:\Users\MOUMIT~1\AppData\Local\Temp\ismp001\LauncherMain.exe": CreateProcess error=740, The requested operation requires elevation
    STACK_TRACE: 13
    java.io.IOException: Cannot run program "C:\Users\MOUMIT~1\AppData\Local\Temp\ismp001\LauncherMain.exe": CreateProcess error=740, The requested operation requires elevation
         at java.lang.ProcessBuilder.start(Unknown Source)
         at java.lang.Runtime.exec(Unknown Source)
         at java.lang.Runtime.exec(Unknown Source)
         at com.installshield.wizard.service.jvm.PureJavaJVMServiceImpl$JVMInstaller.execute(PureJavaJVMServiceImpl.java:644)
         at com.installshield.wizard.service.AsynchronousOperation.run(AsynchronousOperation.java:41)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: CreateProcess error=740, The requested operation requires elevation
         at java.lang.ProcessImpl.create(Native Method)
         at java.lang.ProcessImpl.<init>(Unknown Source)
         at java.lang.ProcessImpl.start(Unknown Source)
         ... 6 more
    (13 Jun, 2012 11:57:50 AM), Install.product.install, com.installshield.product.service.product.PureJavaProductServiceImpl$Installer, err, ProductException: (error code = 601; message="JVM not found")
    STACK_TRACE: 8
    ProductException: (error code = 601; message="JVM not found")
         at com.installshield.product.actions.JVMResolution.install(JVMResolution.java:171)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct.checkUninstallerJVMResolution(PureJavaProductServiceImpl.java:4793)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct.install(PureJavaProductServiceImpl.java:4554)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$Installer.execute(PureJavaProductServiceImpl.java:3758)
         at com.installshield.wizard.service.AsynchronousOperation.run(AsynchronousOperation.java:41)
         at java.lang.Thread.run(Unknown Source)
    (13 Jun, 2012 11:57:50 AM), Install.product.install, com.installshield.wizardx.conditions.PlatformWizardBeanCondition, dbg.platform, target platform: name="Windows Vista" version="6.0" arch="x86"
    (13 Jun, 2012 11:57:50 AM), Install.product.install, com.installshield.wizardx.conditions.PlatformWizardBeanCondition, dbg.platform, condition platform: name="Windows .*" version="." arch="."
    (13 Jun, 2012 11:57:51 AM), Install.product.install, com.installshield.wizardx.ascii.ModifyFile, msg2, ASCII file C:\OracleBI\oc4j_bi\j2ee\home\applications\xmlpserver\xmlpserver\WEB-INF\xmlp-server-config.xml does not exist and will be created.
    (13 Jun, 2012 11:57:51 AM), Install.product.install, com.installshield.wizardx.ascii.ModifyFile, msg2, ASCII file C:\OracleBI\oc4j_bi\j2ee\home\applications\xmlpserver\xmlpserver\WEB-INF\server-config.wsdd does not exist and will be created.
    (13 Jun, 2012 11:57:51 AM), Install.product.install, com.siebel.analytics.install.ExecWizardActionCustom, err, com.installshield.util.ProcessExecException: Cannot run program "C:\OracleBI\server\Bin\installperfsas.bat": CreateProcess error=3, The system cannot find the path specified
    STACK_TRACE: 7
    com.installshield.util.ProcessExecException: Cannot run program "C:\OracleBI\server\Bin\installperfsas.bat": CreateProcess error=3, The system cannot find the path specified
         at com.installshield.util.ProcessExec.executeProcess(ProcessExec.java:180)
         at com.installshield.wizardx.actions.ExecWizardAction.executeProcess(ExecWizardAction.java:412)
         at com.installshield.wizardx.actions.ExecWizardAction.run(ExecWizardAction.java:457)
         at com.siebel.analytics.install.ExecWizardActionCustom.run(ExecWizardActionCustom.java:79)
         at java.lang.Thread.run(Unknown Source)
    (13 Jun, 2012 11:57:51 AM), Install.product.install, com.siebel.analytics.install.ExecWizardActionCustom, err, com.installshield.util.ProcessExecException: Cannot run program "C:\OracleBI\web\bin\installperfsaw.bat": CreateProcess error=3, The system cannot find the path specified
    STACK_TRACE: 7
    com.installshield.util.ProcessExecException: Cannot run program "C:\OracleBI\web\bin\installperfsaw.bat": CreateProcess error=3, The system cannot find the path specified
         at com.installshield.util.ProcessExec.executeProcess(ProcessExec.java:180)
         at com.installshield.wizardx.actions.ExecWizardAction.executeProcess(ExecWizardAction.java:412)
         at com.installshield.wizardx.actions.ExecWizardAction.run(ExecWizardAction.java:457)
         at com.siebel.analytics.install.ExecWizardActionCustom.run(ExecWizardActionCustom.java:79)
         at java.lang.Thread.run(Unknown Source)
    (13 Jun, 2012 11:57:52 AM), Install.product.install, com.siebel.analytics.install.ExecWizardActionCustom, err, com.installshield.util.ProcessExecException: Cannot run program "C:\OracleBI\oc4j_bi\bin\oc4j.cmd": CreateProcess error=3, The system cannot find the path specified
    STACK_TRACE: 7
    com.installshield.util.ProcessExecException: Cannot run program "C:\OracleBI\oc4j_bi\bin\oc4j.cmd": CreateProcess error=3, The system cannot find the path specified
         at com.installshield.util.ProcessExec.executeProcess(ProcessExec.java:180)
         at com.installshield.wizardx.actions.ExecWizardAction.executeProcess(ExecWizardAction.java:412)
         at com.installshield.wizardx.actions.ExecWizardAction.run(ExecWizardAction.java:457)
         at com.siebel.analytics.install.ExecWizardActionCustom.run(ExecWizardActionCustom.java:79)
         at java.lang.Thread.run(Unknown Source)

    Hi
    Thanks a lot for your help. Even after I gave all the permission to my user, it could not access the file. So finally I logged with the Administrator user, and the problem was solved, ie access was available.
    However, the installation still did not complete ... after 100% installation the screen got hanged. The error I found from the Install file is as below:
    (13 Jun, 2012 5:30:37 PM), Install.product.install, com.siebel.analytics.install.ExecWizardActionCustom, err, com.installshield.util.ProcessExecException: Cannot run program "C:\OracleBI\server\Bin\installperfsas.bat": CreateProcess error=3, The system cannot find the path specified
    STACK_TRACE: 7
    com.installshield.util.ProcessExecException: Cannot run program "C:\OracleBI\server\Bin\installperfsas.bat": CreateProcess error=3, The system cannot find the path specified
         at com.installshield.util.ProcessExec.executeProcess(ProcessExec.java:180)
         at com.installshield.wizardx.actions.ExecWizardAction.executeProcess(ExecWizardAction.java:412)
         at com.installshield.wizardx.actions.ExecWizardAction.run(ExecWizardAction.java:457)
         at com.siebel.analytics.install.ExecWizardActionCustom.run(ExecWizardActionCustom.java:79)
         at java.lang.Thread.run(Unknown Source)
    (13 Jun, 2012 5:30:37 PM), Install.product.install, com.siebel.analytics.install.ExecWizardActionCustom, err, com.installshield.util.ProcessExecException: Cannot run program "C:\OracleBI\web\bin\installperfsaw.bat": CreateProcess error=3, The system cannot find the path specified
    STACK_TRACE: 7
    com.installshield.util.ProcessExecException: Cannot run program "C:\OracleBI\web\bin\installperfsaw.bat": CreateProcess error=3, The system cannot find the path specified
         at com.installshield.util.ProcessExec.executeProcess(ProcessExec.java:180)
         at com.installshield.wizardx.actions.ExecWizardAction.executeProcess(ExecWizardAction.java:412)
         at com.installshield.wizardx.actions.ExecWizardAction.run(ExecWizardAction.java:457)
         at com.siebel.analytics.install.ExecWizardActionCustom.run(ExecWizardActionCustom.java:79)
         at java.lang.Thread.run(Unknown Source)
    (13 Jun, 2012 5:30:38 PM), Install.product.install, com.siebel.analytics.install.ExecWizardActionCustom, err, com.installshield.util.ProcessExecException: Cannot run program "C:\OracleBI\oc4j_bi\bin\oc4j.cmd": CreateProcess error=3, The system cannot find the path specified
    STACK_TRACE: 7
    com.installshield.util.ProcessExecException: Cannot run program "C:\OracleBI\oc4j_bi\bin\oc4j.cmd": CreateProcess error=3, The system cannot find the path specified
         at com.installshield.util.ProcessExec.executeProcess(ProcessExec.java:180)
         at com.installshield.wizardx.actions.ExecWizardAction.executeProcess(ExecWizardAction.java:412)
         at com.installshield.wizardx.actions.ExecWizardAction.run(ExecWizardAction.java:457)
         at com.siebel.analytics.install.ExecWizardActionCustom.run(ExecWizardActionCustom.java:79)
         at java.lang.Thread.run(Unknown Source)
    Could any one please help? I checked that these folder paths have not been created under OracleBI folder.
    Regards,
    Moumita

  • JFileChooser problem with Windows Vista

    Hi,
    I running into the following problem.
    I am using JFileChooser in some of the JInternalFrames in my application. When I using Windows XP everthing works perfectly.
    Now Here is the issues, I have a new user using the application. His computer is Windows Vista and the error comes when I am using JFileChooser.
    I need to know I need to put another file or update ANYTHING ON WINDOWS VISTA FOR THIS JFileChooser to work.
    I appreacite your help and time.
    Wilfer
    CDC

    That's not an error from Java, as far as I know. Something else is producing it. Look over these search results for a case that matches what you see:
    http://www.google.com/search?q=error+31849

Maybe you are looking for

  • Oracle 10g R2 installation problem in HP-UX Itanium 11.23 64 bit

    platform desc: HP-UX 64 bit Itanium 11.23 Oracle 10.2 I fulfill all the prerequisites (environment setup, kernel parameter update properly, user/group creation properly). But while i'm starting the ./runInstaller then I got error which i cant define

  • Connecting Log & Capture to an External Display

    Forum, I am using FCP for my current project. While logging footage from my camera I thought it would be easier if I could hook up the Preview area of the Log & Capture window to an external device such as a display. Is this possible? How do I achiev

  • Configuration example for QuickVPN on Windows 8.1 and RV016

    I have been using a gateway-to-gateway VPN for years between two RV016 routers. I am adding a few Surface Pro tablets for our salesman and I need to configure VPN clients on one of the routers. Can this be done? Can anyone provide an example of this

  • Satellite M645-S4050: built in camera does not work correctly

    My built in camera does not work correctly. It does not have any kind of effect on and it captures pictures and videos as if some kind of thermal camera was on. Also some videos I load up on youtube look like this. I have been researching for an answ

  • Ultra Search Installation 10.2.0.1 on 10.2.0.2 RDBMS Server.

    I have upgraded to 10.2.0.2 on a RHEL 4 64 Bit installation. I've been informed that I need to install the Ultra Search (WKSYS and/or WKPROXY) for the installation of the Oracle Identity Manager. However, I can only find the companion CD for version