JWS cannot find main class - sometimes

I have a swing application which I've deployed onto several pc's using JWS.
On my PC I can launch the application using the icon which JWS installed and it works properly every time. On the other PC's it will always work the first time it is used after installation, but on subsequent runs it will sometimes works and sometimes fail with an error message suggesting it cannot find the main class.
The error is java.lang.ClassNotFoundException: RichMonV15.Richmon
What I cannot understand is why it will sometimes work, and other times not.
This has me completely stumped, can anyone offer any advice?

The posted JNLP was invalid (I do not know if it is causing the problem, but cannot see how an invalid JNLP would cause the kind of intermittent problem you describe).
Here is a valid form of that JNLP
<?xml version = '1.0' encoding = 'windows-1252'?>
<jnlp spec="1.0+" codebase="http://richmonitor.googlepages.com/" href="RichMonV15.jnlp">
   <information>
      <title>RichMon V15</title>
      <vendor>Richard Wright</vendor>
      <homepage href="http://richmonitor.googlepages.com/downloadrichmonversion15"/>
      <description>Lightweight Database Monitoring Tool</description>
      <icon href="RichMonV1504.gif"/>      
      <offline-allowed/>
      <shortcut>
         <desktop/>
         <menu submenu="RichMon"/>
      </shortcut>
   </information>
   <security>
      <all-permissions/>
   </security>
   <resources>
      <j2se version="1.6*" href="http://java.sun.com/products/autodl/j2se"/>
      <jar href="sRichMonV15.jar" main="true" download="eager"/>
   </resources>
   <application-desc main-class="RichMonV15.RichMon"/>
</jnlp>But this could be optimised by removing the codebase from the homepage href, and I am almost sure JNLP files should be UTF-8 encoding. So I recommend you swap that file, for this one (encoded as per stated claims, of course)..
<?xml version = '1.0' encoding = 'UTF-8'?>
<jnlp spec="1.0+" codebase="http://richmonitor.googlepages.com/" href="RichMonV15.jnlp">
   <information>
      <title>RichMon V15</title>
      <vendor>Richard Wright</vendor>
      <homepage href="downloadrichmonversion15"/>
      <description>Lightweight Database Monitoring Tool</description>
      <icon href="RichMonV1504.gif"/>      
      <offline-allowed/>
      <shortcut>
         <desktop/>
         <menu submenu="RichMon"/>
      </shortcut>
   </information>
   <security>
      <all-permissions/>
   </security>
   <resources>
      <j2se version="1.6*" href="http://java.sun.com/products/autodl/j2se"/>
      <jar href="sRichMonV15.jar" main="true" download="eager"/>
   </resources>
   <application-desc main-class="RichMonV15.RichMon"/>
</jnlp>

Similar Messages

  • Cannot find main class

    Hi,
    Im trying to launch a program called HypnoQuit from www.splashportal.net/java with jws.
    Heres the jnlp:
    <?xml version="1.0" encoding="utf-8"?>
    <!-- JNLP File for HypnoQuit -->
    <jnlp spec="1.0+"
    codebase="http://www.splashportal.net/java/"
    href="HypnoQuit.jnlp">
    <information>
    <title>Hotel v1.0</title>
    <vendor>Aubrey Bourke</vendor>
    <description>HypnoQuit v1.0</description>
    <homepage href="http://www.splashportal.net/java/index.html"/>
    <description kind="short">Program that displays subliminal messages</description>
    <offline-allowed/>
    </information>
    <resources>
         <jar href="HypnoQuit.jar"/>
         <j2se version="1.6+"
         href="http://java.sun.com/products/autodl/j2se"/>
    </resources>
    <application-desc main-class="HypnoQuit"/>
    <security>
    <all-permissions/>
    </security>
    </jnlp>
    Why cant it find the main-class?

    refer to http://forums.sun.com/thread.jspa?threadID=5314915&tstart=15

  • (Java Virtual Machine) Cannot Find Main Class.  Program will exit!

    I have seen this error message all over the place but no resolution. I am running Windows XP Pro. I am able to view sites with Javascript such as www.target.com and the dropdown menus work fine. However, when I am using my very very simple Javascript menus (from Project VII) The javascript works FINE on my home PC - but not on my work PC. My Java panel appears to be corrupted, when I try to open it, I just get a blank screen and it hangs. My Javascript is enable in all places.
    I'm going crazy! Any help is greatly appreciated.

    Java[u] is not JavaScript. Which product are you having trouble with? If it's JS, you need to ask the questions at a JS site, not here.
    To run a java program, change the cmd prompt to the directory that contains the Java .class files and issue this command:
    java -classpath . <name of the class without the extension>
    IMPORTANT: include the period and surrounding spaces.

  • "cannot find symbol class studentList" error

    Hi I get this error
    "cannot find symbol class studentList", but this class is at the same file and also it is in the same folder. so what's wrong .. and I checked the spelling it's the same.
    I should create an object named myList of type studentList
    and second, I call method menu() and pass it myList as actual parameter.
    so I called the function menu which is should be in the main too
    like this
    myList.menu();
    and menu method accepts as parameter an object of type studentList. and display the menu for the user to choose..
    here is part my program:
    public class ListTest
    {  public void menu(Student L) // accepts parameter
                   System.out.println("");
                System.out.println("Choose a number between 1 to 4");
                      System.out.println("1-Print Info of A Student ");          
                System.out.println("2-Print Info of All Students ");                          
               System.out.println("3-Display grade of A Specific student");                           
                System.out.println("4-Exit");
                System.out.println("");        
              int choice = Stdin.readInteger();
              while (choice != 5)
             switch (choice) {
                 case 1:
             L.PrintAStudent(int L);
             break;
              case 2:
            L.PrintAll();
            break;     
              case 3:
              L.DisplayGPA();
              break;
                 case 3:
                System.exit(0);
               break;
               default:
               System.out.println("wrong Number");
              System.out.println("Enter a number between 1 to 4 ");
               System.out.println("Enter 4 to Exit");
                break;
                System.out.println("");
                System.out.println("Choose a number between 1 to 4");
                System.out.println("1-Print Info of A Student ");          
                System.out.println("2-Print Info of All Students ");                          
               System.out.println("3-Display grade of A Specific student");                           
                System.out.println("4-Exit");
                System.out.println(""); 
                choice = Stdin.readInteger();
         }// end method menu
         public static void main(String args[ ])
         { studentList myList = new studentList();//myList object is created
    myList.menu();
                             }//end main
    }// end of class ListTest
              

    you have mentioned about the class "studentList" but that class is not to be found in the code you have pasted. its instead "ListTest". And the "menu" function seems to b a part of "ListTest" class. Can you provide the structure of the classes "studentList" and "Student" so that the problem can be more clearly understood?
    also you are using the variable "Stdin" in the line int choice = Stdin.readInteger(); where as you have not declared this variable.
    in the "switch" statement you are calling two different functions for the same case "3" where as it should be "case 3" and "case 4" respectively.
    in the "main" you are calling the "menu" function without any parameter while you actually want to pass argument of type "studentList".

  • Cannot find package/class symbol

    hello. i'm using netveans for the first time. i have a java application with 2 classes... pb.java with public class pb int package svr and cl.java with public class cl in package cli
    that is..
    file class package
    pb pb svr
    cl cl cli
    pb.java compiles properly cl.java gioves error.
    the error is in the following lines of code...
    pb obj1 = new pb();
            pb obj2 = new pb();i'm trying to make an object fo type pb from cl.java. the error i get is...
    cannot find symbol
    class pb
    location cli.cl
    i alse tried puttin svr.pb instead of pb but no use.
    the entire cose is as follows...
    pb.java
    * pb.java
    * Created on December 4, 2006, 8:56 AM
    package svr;
    public class pb
        private double balance;
        private double []lt = new double [10];
        private int i=9;
        public void deposit(double amt)
            if(amt<=0)
                System.out.println("Enter amount greater than 0");
            else
                balance=balance+amt;
                if(i>=0)
                    lt=amt;
    else
    for(int j=9;j>=0;j--)
    lt[i]=lt[i-1];
    lt[0]=amt;
    public void withdraw(double amt)
    if(amt<=0)
    System.out.println("Enter amount greater than 0");
    else
    if(amt>balance)
    System.out.println("Balance lower than amount entered");
    else
    balance=balance-amt;
    if(i>=0)
    lt[i]=-amt;
    else
    for(int j=9;j>=0;j--)
    lt[i]=lt[i-1];
    lt[0]=-amt;
    public void bal()
    System.out.println("Balance: "+balance);
    public void lts()
    System.out.println("Last 10 Transactions");
    for(int j=i;j>10;j++)
    System.out.println(lt[j]);
    public void statement()
    lts();
    bal();
    cl.java
    * cl.java
    * Created on December 4, 2006, 8:58 AM
    package cli;
    class cl
        public static void main(String[] args)
            pb obj1 = new pb();
            pb obj2 = new pb();
            obj1.deposit(100.50);
            obj1.statement();
            obj2.deposit(200.75);
            obj2.statement();
            obj1.withdraw(25.50);
            obj1.statement();
            obj2.withdraw(100.25);
            obj2.statement();

    For a beginner these tools are worst, because they
    hide all the stuff a programmer needs to know to find
    his way around Java. They should spend a few weeks
    with the command line and a good text editor before
    switching.
    Just because an IDE does something for you, it
    doesn't mean you don't need to kno wwhat it does.
    Unless you volunteer to handle all "how do I do X in
    Netbeans/Eclipse/Whatever", JAR and classpath
    questions posted here by newbies yourself.I suppose I can agree with that to some extent. I wouldn't suggest to anyone that they just blindly trust whatever code the IDE inserts automatically.
    But there's nothing wrong about learning by example. The IDE is willing to teach proper syntax, and eclipse will give suggestions about capitalizing class names and making constants all-caps.
    There are things that frustrate new programmers where an IDE will be helpful, especially if the entire API is uncharted territory.

  • Servlet cannot find helper class

    Hello
    Under WEB-INF/classes I put ServletExample and SingletonExample. Compiling ServletExample, that makes use of SingletonExample, works.
    In the directory WEB-INF/classes I also have another direcotry, test. And in WEB-INF/classes/test I put again ServletExample and SingletonExample.
    Here I have tried in several ways to compile the servlet, but I always get an:
    Cannot find symbol class SingletonExample.
    I tried writing package test at the top of both files, and even at the top of only one of these two.
    I even tried to make WEB-INF/classes/test/ServletExample make use of SingletonExample residing in WEB-INF/classes, but I didnt succeded.
    What happens when you have subdirectory in WEB-INF/classes/? I think this is a MUST, to have subdirectory in large webapplication, so I really dont want to put everything in the classes directory.
    Do you how to resolve this prolem? And: if Im in WEB-INF/classes/test and want to referr from a servlet residing in this direcory to a Singleton/helper class residing in WEB-INF/classes/, which approach do I have to use?
    Thanks
    Paolo

    Jeez, you aren't gonna get very far in Java like this.
    CLASSPATH is wrong - again. You're supposed to give JARs and paths where the class loader is supposed to look, not the actual .class file.
    Also, you're not telling the compiler to put the .class file in the package directory structure.
    Your example is pretty awful. Try this:
    Put this code into c:\common
    package common;
    import common.test.TestDown;  // What the hell is this?  There is no package test, but there is a package named common.test
    public class TestUp
       public void sayHello()
          System.out.println("Hello.....");
    }Put this code into c:\common\test
    package common.test;
    import common.TestUp;
    public class  TestDown
       public TestDown()
            TestUp testUp = new TestUp();
            testUp.sayHello();
       public static void main(String[] args)
            new TestDown();
    }Open a command shell and navigate to c:\, then do the following:
    Directory of c:
    07/01/2005  03:43 PM    <DIR>          .
    07/01/2005  03:43 PM    <DIR>          ..
    07/01/2005  03:45 PM    <DIR>          common
                   0 File(s)              0 bytes
                   3 Dir(s)  74,909,675,520 bytes free
    C:\>javac -d . common\*.java
    C:\>javac -d . common\test\*.java
    C:\>java -classpath . common.test.TestDown
    Hello.....Once you've got your head around this, go learn Ant and have it compile your projects properly.
    %

  • Unable to find main class

    Hello
    I am running Windows 2000 and can not launch Jdeveloper. I get two messages:
    1. The Oracle Java Virtual Machine is not installed.
    2. Unable to find main class, Class specified is: oracle/ideimpl/IdeMain
    I have downloaded jdev9i_902.zip and unzipped it to e:\jdeveloper.
    I downloaded jdk1.3.1_03 and jre1.3.1_03 annd installed them. Next I set JAVA_HOME to e:\jdk1.3.1_03 and added e:\jdk1.3.1_03\bin to my PATH.
    I changed SetHavaHome in jdev.conf to:
    SetJavaHome e:/jdk1.3.1_03
    If I leave this commented out I do not get error #2 listed above, but nothing else happens.
    I also left SetUserHomeVariable JDEV_USER_DIR blank and also tried SetUserHomeVariable JDEV_USER_DIR e:/jdeveloper.
    When I run InstallOJVM.bat I get the following
    E:\jdeveloper>InstallOJVM.bat e:/jdeveloper
    Error: cannot find JDeveloper installation in "E:\"
    I notice that the Install.html document makes a reference to <jdeveloper_root>\jdev\bin\jdev.conf. All the files were unzipped in one directory. There is not a directory structure (ie \bin).
    Oracle is installed on a network server. I have the Oracle 9i client on my workstation. Does Oracle need to be installed locally?
    Can anyone tell me what I am missing?
    Thanks

    This is the key piece of information:
    I notice that the Install.html document makes a reference to <jdeveloper_root>\jdev\bin\jdev.conf. All the files were unzipped in one directory. There is not a directory structure (ie \bin).
    If you unzipped jdev9i_902.zip using WinZip, be sure the "Use Folder Names" option is checked at the time you extract the archive, so that the directory structure will be preserved during extraction. You should be able to verify in WinZip that jdev9i_902.zip does have a directory structure.

  • Jar file could not find main class.. I cant see why?

    I have read loads of tutorials on this and it should be very straight forward but i STILL cant make a working jar file of my program.. please see if you can see anything wrong with what im doing..
    my program is one .java file that compiles perfectly, and is runnable both through eclipse and by using the command prompt.. i made a jar file using both eclipse and the command prompt, and neither worked.. every time i run it by double clicking it i get the error "could not find main class, program will exit". here is the contents of my jar:
    CorePackage\IPEmailer.class
    CorePackage\IPEmailer$1.class
    CorePackage\IPEmailer$SMTPAuthenticator.class
    META-INF\MANIFEST.MF
    the MANIFEST.MF file contains:
    Manifest-Version: 1.0
    Class-path: .
    Created-By: 1.6.0_02 (Sun Microsystems Inc.)
    Main-Class: CorePackage.IPEmailer
    (yes there is a blank line at the end)
    the class mentioned in 'Main-Class' has a main method that looks like this:
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        new IPEmailer();
    }the program uses 2 external jar files:
    activation.jar
    mail.jar
    and reads a file called:
    ipemailer.ini
    and writes a file called:
    ip.txt
    the program has no GUI and is intended to run 'silently' in the background
    please help me understand what is wrong with this

    package CorePackage;
    import javax.mail.*;
    import javax.mail.Authenticator;
    import javax.mail.PasswordAuthentication;
    import javax.mail.internet.*;
    import java.util.*;
    import java.io.*;
    import java.net.*;
    public class IPEmailer implements Runnable{
          * @param args
         String recipientsinput[]={""};
         String subject;
         String body;
         String server;
         String user;
         String pass;
         String from;
         String urlString = "http://www.whatismyip.org";
         String currentIP;
         String ipFromFile;
         boolean webFailed;
         long interval = 900000; //15 mins
         long oldInterval;
         Thread t = new Thread(this);
         public static void main(String[] args) {
              // TODO Auto-generated method stub
              new IPEmailer();
         public IPEmailer(){
                         ..........etccould the problem be that the class is a thread? i cant see why it would be, but ive never made a jar where the main class also 'implements runnable'

  • Could not find main class program will exit error while installing Oracle Client 32 bit on windows 7 32 bit OS?

    Hi Experts,
    When I am installing Oracle client 32 bit software on Windows 7 32 bit I am getting error as "could not find main class program will exit"
    I have tried installing latest Java software 7 also JDK 1.6.0_34 still I am getting the same problem below is my " oraparam.ini " details
    [Oracle]
    DISTRIBUTION=TRUE
    SOURCE=../stage/products.xml
    LICENSE_LOCATION=
    BOOTSTRAP_COMPS="oracle.swd.oui:11.1.0.6.0,oracle.swd.oui.core:11.1.0.6.0,oracle.jdk:1.5.0.1.1"
    JRE_SCRATCH_LOC=jdk/jre
    JRE_MEMORY_OPTIONS=" -mx96m"
    DEFAULT_HOME_LOCATION=product\11.1.0\client
    DEFAULT_HOME_NAME=OraClient11g_home
    NO_BROWSE=/net
    NLS_ENABLED=TRUE
    BOOTSTRAP=TRUE
    EXT_JLIB=../stage/ext/jlib
    OUI_VERSION=11.1.0.6.0
    ## JRE_VERSION is only for Windows. This is to copy accessbridge dlls
    JRE_VERSION=1.4.2
    ACCESS_DIR=../install/access
    #SHOW_HOSTNAME=ALWAYS_SHOW shows the hostname panel always
    #SHOW_HOSTNAME=NEVER_SHOW does not the hostname panel
    #SHOW_HOSTNAME=CONDITION_SHOW shows the hostname panel on condition
    SHOW_HOSTNAME=NEVER_SHOW
    #THIN_JDBC_FILENAME is optional and defaults to classes12.jar
    #The value specified for this should be packaged with OUI, and should
    #be relative to <OUI expanded stagedir>/jlib/
    THIN_JDBC_FILENAME=classes12.jar
    #RUN_OUICA specifies the batch script name that needs to be run
    #The script is ouica.bat for win32, and ouica.sh for solaris.
    #If the value is not specified, then the OUICA script is not run
    RUN_OUICA=ouica.bat
    CLUSTERWARE={"oracle.crs","10.1.0.2.0"}
    SILENT_VARIABLE_VALIDATION=TRUE
    [Generic Prereqs]
    MIN_DISPLAY_COLORS=256
    [IMAGES]
    FILE1=images/billboards.gif
    LICENSE_LOCATION=license.txt

    Duplicates of the other two times you asked this question:
    https://forums.oracle.com/thread/2559093
    https://forums.oracle.com/thread/2558027
    (and this time, your question does not appear to have anything to do with this particular forum space, either)
    Duplicate is locked.
    Do not EVER multi--post.   That is extremely bad forum etiquette.

  • Can't find main class - program will end

    Dear forum readers,
    Recently upgraded from Win2k pro to XP pro .. installation ran to conclusion w/ no fatal errors BUT upon booting new system I now receive an error message "Java Virtual Machine Launcher can't find main class, program will end" .. I am not aware that this error is causing any problems BUT it is annoying and I'd like to be able to fix the problem so I don't have to close the error message at each startup .. please help!
    Thanks in advance, Larry

    Try this
    java -XbootClasspath/a -jar <<Prog name>>
    I think you are trying in windows XP.
    Also you need to modify if there are any other jars to be reference. For eg if a.jar is also required for this try as below
    java -XbootClasspath/a:a.jar -jar <<Prog name>>

  • Cannot find Main Header in XMBMessage

    Hi
    I am implementing a JDBC Receiver using the J2SE Adapter Engine.
    We've already implemented another JDBC Receiver which works fine, but for the payload shown below I receive the following exception from the J2SE Adapter Engine:
      com.sap.aii.messaging.mo.MalformedMessageException
      Cannot find Main Header in XMBMessage
    What does this error message mean and how do I correct it?
    Is there documentation available somewhere to describe the possible error messages from this exception and what they mean?
    thank you
    Werner Pyke
    Cape Town, South Africa
    <?xml version="1.0" encoding="UTF-8" ?>
    <ns3:Items xmlns:ns3="urn:pnp:arms:ddic">
      <Statement>
        <SAP_BasicItem action="EXECUTE">
           <table>SAP_BasicItem</table>
           <gtin type="NUMERIC">6001001</gtin>
           <description type="VARCHAR">ARTICLE1</description>
         </SAP_BasicItem>
      </Statement>
      <Statement>
         <SAP_BasicItem action="EXECUTE">
           <table>SAP_BasicItem</table>
           <gtin type="NUMERIC">6001002</gtin>
           <description type="VARCHAR">ARTICLE2</description>
         </SAP_BasicItem>
      </Statement>
    </ns3:Items>

    Check, if the XI version in the receiver adapter is set correctly (XI 2.0 or XI 3.0)
    Stefan

  • Cannot find symbol class Scanner

    hi all
    i'm defining a class within a project so i can use the class inside my program, but the line:
    Scanner keyboard = new Scanner(System.in);generates an error with my compiler:
    cannot find symbol class Scanner
    please help

    you aren't using jdk 5 or higher then. that's when scanner was added to the jdk.
    download a modern jdk and you'll be fine.
    %

  • Cannot find symbol     class Usernamebean

    hi i am new in j2ee
    can some body help to give the solution.
    i am always thankfull to everybody
    i have a servlet where i am calling a bean of same package but servlet not compile giving that error
    cannot find symbol class Usernamebean
    servlet code
    package ecomm; import java.sql.*; import javax.servlet.*; import javax.servlet.http.*; import java.io.*; import java.util.*; import bengalcom.*; public class Loginservelet extends HttpServlet { public void doGet(HttpServletRequest req,HttpServletResponse res) throws ServletException,IOException { try {         String accnum=req.getParameter("username");   String pinnum=req.getParameter("password"); try { Class.forName("com.mysql.jdbc.Driver"); Connection dbcon=DriverManager.getConnection("jdbc:mysql://localhost/ecomm","root",""); PreparedStatement s = dbcon.prepareStatement("select * from vendordetails where email = ? and password = ? and blocking='No' "); s.setString(1,accnum); s.setString(2,pinnum); ResultSet result=s.executeQuery(); boolean rowfound=false; rowfound=result.next();   if(rowfound==true) { String vname=result.getString("fname"); String  vid=result.getString("vid"); String email=result.getString("email");   UsernameBean nameBean =new UsernameBean();   nameBean.setFirstName(accnum); HttpSession session = req.getSession(true); session.setAttribute("vname",vname); session.setAttribute("vid",vid); session.setAttribute("email",email);   RequestDispatcher dispatcher=getServletContext().getRequestDispatcher("/earea.jsp?vname=vname&vid=vid&email=email"); dispatcher.forward(req,res); dbcon.close(); } else{ RequestDispatcher dispatcher=getServletContext().getRequestDispatcher("/eblock.jsp"); dispatcher.forward(req,res); }   } catch(ClassNotFoundException e) { } } catch(SQLException e) { System.out.println(e.toString()); } } public void doPost(HttpServletRequest req, HttpServletResponse res)         throws ServletException, IOException     {         doGet(req, res);     } }

    Hi,
    java is case sensitive, Check the case in class name.
    Regards,
    Ram

  • "cannot find symbol : class Scanner"  error message

    I have an error message that says:
    "cannot find symbol : class Scanner"
    I tried typing at the top of the program
    import java.util.Scanner;but I still have the same error message.
    What should I do ?
    Thank you in advance

    http://java.sun.com/j2se/1.5.0/docs/api/java/util/Scanner.html
    Since:
    1.5
    look at the javadoc, it says since 1.5 so it's not there in earlier versions.
    just a guess

  • Cannot find the class file

    Hi All,
    Can any one help me regarding the issue?
    Error:
    package com.support.misc.feedback
    I am getting the following error for the above line. But I have created the Hierarchy in folder structure. But still it is throwing the error.
    1. Cannot find the class file for com.sapportals.htmlb.page.DynPage
    2. This compilation unit indirectly references the missing type com.sapportals.htmlb.page.DynPage (typically some required class file is referencing a type outside the class path)     FeedbackBean.java
    Thanks in Advance.
    Message was edited by: Gowsika Kannan

    Hi Gowsika,
    the class needed is located in htmlb.jar which can be found under <irj-root>/WEB-INF/portal/portalapps/com.sap.portal.htmlb/lib
    You need to integrate this jar in your .classpath
    Hope this helps,
    Robert
    PS: Please do not post the same question 3 times

Maybe you are looking for

  • Paragraph Styles not showing up in TOC window

    I am using a template that uses paragraph styles ( when I click on a heading line the corresponding Heading 1 becomes selected in the paragraph styles draw) yet no paragaph headings show up in the TOC window. thanks for any help

  • Pictures taked with Camera are not saved.

    When taking pictures using my iPad Air the app functions normally but the pictures are not saved to the iPad.  Am I missing a setting somewhere in Settings?

  • Does Premiere Elements 13 Support 4K video?

    Somehow my previous question disappeared. Does this program support 4K to burn to 4K Blu Rays?

  • A BUG in Nokia Social 1.3

    I have a problem which i cant seem to fix. I reinstalled my C7's 024.001 firmware today through latest nokia software updater. Everything seems to be working perfectly until i create widget or even if i create facebook or twitter account in  'nokia s

  • Netweaver editor is not opening!!

    Hai While opening my Netweaver Editor it is showing problems during startup. check the ".log" file in the ".metadata" directory of your workspace. please tell me how to get rid of this error with Regards K. Ravi Shankar