Cannot launch my java application

Hi All. I have made a Java application using NetBeans.
The application, with NetBeans works fine. It imports many jasperreports classes included in my project by setting in the project properties the Compiling source to the various jar archives:
jasperreports.jar
common-digester-1.7.jar
common-collections-2.1.jar
common-logging-1.0.2.jar
common-beanutils-1.5.jar
When I launch with NB it works as I designed it.
And now comes the problem.
With NB I build the project and it builds my PrintReport.jar.
As I try to launch it with
- java -jar PrintReport.jar
it prompts this error:
Exception in thread "main" java.lang.NoClassDefFoundError: net/sf/jasperreports/engine/JRDataSource at printreport.PrintReport.main(PrintReport.java:45)
that line is exactly where I create the instance of the class containing all JasperReports refs.
Can anyone help me launch it correctly from command line?
Thanks, Angyel

I tried same thing but it is not working for me. It is not refering the Classpath which I specified in Mainfest file.
Manifest-Version: 1.0
Class-Path: jaxrpc.jar activation.jar axis.jar commons-logging-api.jar discovery.jar mail.jar saaj.jar soap.jar wsdl.jar
Main-Class: Uploader
Ant-Version: Apache Ant 1.6.2
Created-By: 1.5.0_05 (Sun Microsystems Inc.)I have Upload.jar
First Time - I have added only class files and then tried
Second Time - I have added class files and jar files then
still i am getting this error..
java -jar Upload.jar
Exception in thread "AWT-EventQueue-0" java.lang.NoClassDefFoundError: j
avax/xml/rpc/Service
        at java.lang.ClassLoader.defineClass1(Native Method)
        at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
        at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:12
4)
        at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
        at java.net.URLClassLoader.access$100(URLClassLoader.java:56)
        at java.net.URLClassLoader$1.run(URLClassLoader.java:195)

Similar Messages

  • Cannot launch an java application

    Hi there,
    I'm trying to run a java program after updating to Yosemite. I already downloaded and installed the latest JRE 8 update 25. Trying to run the application results in the following console error (nothing happens on the screen):
    20/10/14 21:32:56,584 com.apple.xpc.launchd[1]: (jclient.LoginFrame.63932[1450]) Service exited with abnormal code: 127
    Can someone please help!

    Hmm, only way I know would be a relatively painless Archive & Install, which gives you a new/old OS, but can preserve all your files, pics, music, settings, etc., as long as you have plenty of free disk space and no Disk corruption, and is relatively quick & painless...
    http://docs.info.apple.com/article.html?artnum=107120
    Just be sure to select Preserve Users & Settings.

  • How to launch my java application in a web browser?

    Hi. I try to launch my java application, e.g. "HellowWorld.java", using web browser.
    1. How can I change my java application program to java applet in general way?
    I read "Java: An Introduction to Computer Science and Programming, Third Edition"
    by Walter Savitch and found page 803 - "Converting a Swing application to an applet".
    My question is how I can know which class should be removed or not such as using JApplet instead of JFrame. Are there general rules about this?
    2. I found "AWT only" tutorial had some example lauching application using "AppletButton".
    How can I use this method to launch "HelloWorld.class"?
    http://java.sun.com/docs/books/tutorial/information/download.html#OLDui
    (after extracting zip file) -> ../OLDui/layout/card.html
    3. (continued 2) Can I use above method to embed applet into web browser?
    For example, java Swing application -> applet using "AppletButton" -> web browser using "<applet></applet>" tag.
    I'd appreciate any partial anwers of these questions or other suggestions.
    Thanks.

    Thanks! Here is what I got from your help.
    * HelloWorldSwing.java is a 1.4 example that
    * requires no other files.
    import javax.swing.*;  
    import java.awt.*;                //for Container class    
    //  public class HelloWorldSwing {
       public class HelloWorldSwingToApplet extends JApplet {
         * Create the GUI and show it.  For thread safety,
         * this method should be invoked from the
         * event-dispatching thread.
    //    private static void createAndShowGUI() {
          private void createAndShowGUI() {
            //Make sure we have nice window decorations.
    //        JFrame.setDefaultLookAndFeelDecorated(true);
            //Create and set up the window.
    //        JFrame frame = new JFrame("HelloWorldSwing");
    //        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         Container frameApplet = getContentPane();
            //Add the ubiquitous "Hello World" label.
            JLabel label = new JLabel("Hello World");
    //        frame.getContentPane().add(label);
         frameApplet.add(label);
            //Display the window.
    //        frame.pack();
    //        frame.setVisible(true);
          public void init() {
           createAndShowGUI();
    /*    public static void main(String[] args) {
            //Schedule a job for the event-dispatching thread:
            //creating and showing this application's GUI.
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
    }

  • How to launch a Java application by clicking an icon for the windows system

    Hi Deal All,
    I am new in this forum, I am used to be at Cryptography. Currently I have completed a Java project and I am intending to launch it from Windows.
    I will design an icon but how I can launch the java application by clicking the icon in Windows system.
    Great thanks for your guidence!
    Best,
    Your friend.

    Hi Deal All,
    I am new in this forum, I am used to be at
    Cryptography. Currently I have completed a Java
    project and I am intending to launch it from Windows.
    I will design an icon but how I can launch the java
    application by clicking the icon in Windows system.
    Great thanks for your guidence!
    Best,
    Your friend.Make the icon a shortcut with a target of something like "javaw.exe YouClass.class"

  • Launching a java application in another PC

    Hello everybody
    I want to know what to do if I want to launch a java application in a new PC which has anything installed in it.
    Thanks

    My problem is that if there is a new PC , nothing installed in it, can I launch a java application in it ?
    My friend asked me if I can build an application in java which I can use in any PC and the application will do something like an installation. In fact he wants to know if java can build an installation like application which will install for example a software on a new PC.
    I think I told you more clearly the situation.

  • To launch a java application in Windows environment

    hello,
    I need to distribute one stand alone application, that I made using NetBeans, for sale it.
    I know that this is not a so simple problem, because delivering the program to one client you cannot simlpy say him to launch the jar file....
    I saw that, in the Windows environment, program like eclipse or netBeans run thruogth an .exe file, that I think is a program that its purpose is to define the java environment for the application in the particular host operative environment .
    Perhaps they are corporations like InstallShield (now Macrovision) that sale programs to solve this type of problems..., and I already used this type of programs to install some my
    applications that I coded in languages different than java.
    But before to look for one of them, I should like have more informations how this problem fits in java language, knowing that java is different to other languages because use JRE and have proper tools, how JWS and JNPL, that concern with this problem.
    ...Looking in the forum I had not much help..., but I saw that someone uses to write launchers program in different language, like C, as well I had not so much detailled instructions about how to do it.
    In order to solve my problem I should like have, from some one that already made it, some general information about how he realized the commercial installation of java applications in the most used Operatve Systems (particullary Windows), and possibly to have links to web sites for good explanations, including advantages to buy apposite commercials installation programs too.
    thank you very much
    tonyMrsangelo

    You can distribute it as an executable JAR so users will run it by double clicking. The would be required to have JRE installed.
    You can distribute it online via WebStart. Users need JRE but it's easier to manage updates and distribution of new versions.
    You can distribute it with AjaxSwing, a product that deploys Swing applications as AJAX websites so you don't need JRE at all.
    You can create EXE files using many of the products available. Google for it and you'll get lots of hits.

  • Installation fails with "Cannot launch the Java Virtual Machine"

    I'm trying to install OAS 10.1.3.1. on Windows XPbut after copying all the files the installer starts complaining that it cannot lauch the Java Virtual Machine. Eventually, the process gets to the configuration step where it succeeds with one configuration, then fails with the next, and then finally goes into an eternal loop.
    When launching the installer it claims that my environment successfully passes all test for memory size, etc.
    Is this a known problem? Is there any way I can get more info about the reason why the JVM could not get lauched? I searched for information in the logs without success. I also tried to play around with the PATH environment variable since I saw some installation note saying that includingthe jre/bin path here could help, but it did not help.
    Could anyone, please, give me a hint of how to complete the installation successfully?

    Thanks for the hint.
    I had a look in the INI-file of my BPEL installation and this is what it said about memory:
    JRE_MEMORY_OPTIONS=" -mx256m"
    Still, if I start the BPEL server it finally comes up after issuing a lot of complaints but as soon as I request a page I get this:
    500 Internal Server Error
    OracleJSP: oracle.jsp.provider.JspCompileException:
    Fel vid kompilering:C:\product\10.1.3.1\OraBPEL_1\bpel\system\appserver\oc4j\j2ee\home\application-deployments\orabpel\console_war\persistence\_pages\\_login.java
    Could not create the Java virtual machine.
    Error occurred during initialization of VM
    Could not reserve enough space for object heapThis is strange since at the time there is >1.4 GB of virtual memory and 0.9 GB of physical memory available.
    And according to the task manager:
    Commit charge limit = 2728684
    Physical memory total = 2096496
    I am using Windows XP Professional, version 2002, service pack 2.

  • How can i launch another java application using Runtime class?

    I created a java process which invokes another java application called Launch as shown below,
    Process p=Runtime.getRuntime().exec("java -classpath=C:\\Program Files\\bin\\nettools\\ui\\updates Launch");
    But it is not working...can any one help me on this?
    Edited by: deepakchandaran on Sep 20, 2007 7:10 AM

    You could search the forum and Google.
    it has been answered before.
    http://www.javaworld.com/javaworld/jw-12-2000/jw-1229-traps.html

  • Launching a java application from another java application

    Hi,
    I'm facing an interesting challenge :-)
    Inside a Java application, I want to start another java application.
    Possible solutions in my list :
    1. Using jakarta commons launcher.
    2. Runtime.exec (make the code platform dependent).
    3. Starting the main method of the other app by create a new Thread inside the current app
    4. I know people did this by calling an ant target from the java application but I don't have
    any sample code, I appreciate any sample code for it.
    Thanks,
    Ali Salehi

    That is an iteresting challenge :)Don't be mean; he's polite, done some investigation and taken the trouble to be clear. The question, presumably, is "has anyone got a different solution or a preference as to which of these is the best?"
    In which case, my advice would be to say that invoking main in a separate thread is fundamentally different from Runtime.exec() because the former would run in the same JVM. Is this what you want? If one app has the other on its classpath then do they need to be separate apps? Could they be modules of a single app?

  • My sysAdmin tells me he cannot cluster my java application

    Hi
    I have a small java application which reads files from a (ftp) directory, validates them and writes them to disk again. This application is being called from a CRON scripts on both servers which runs it every minute. Our hosting company says that on the application needs to be run on both clusterservers at the same time. This causes synch problems when reading the file. 2 applications try to access the same file at the same time.
    How can he make the second server start up the application when the first goes down?
    Our hostingcompany says that my application is not cluster-aware and that it's impossible to configure the server to start/stop my application.
    Can somebody please help me with this?
    thanks

    there are two ways to approach this (in sun cluster 3.x)
    that come to mind.
    the first is a quick hack that requires you to use a wrapper
    script for your cron job (ie, run this script with cron, and
    use this script to start your java prog).
    here's the gist of it:
    ----------------------------->8---------------------------------------------------
    #!/bin/sh
    # wrapper script for cron jobs on 2-node cluster
    # >2 node cluster requires more work
    # exit if cluster not active on this node
    thisState=`scha_cluster_get -O NODESTATE_LOCAL`
    if [ "$thisState" != "UP" ] ; then
    exit 0
    fi
    # find out the node ID of this system
    thisNode=`scha_cluster_get -O NODEID_LOCAL`
    # if this is not node 1, check to see if node 1 is active
    if [ "$thisNode" != 1 ] ; then
    node1Name=`scha_cluster_get -O NODENAME_NODEID 1`
    node1State=`scha_cluster_get -O NODESTATE_NODE $node1Name`
    # if node 1 is active, it will run the program, so
    # we can quit
    if [ "$node1State" = "UP" ] ; then
    exit 0
    fi
    fi
    # at this point, we know this node is active, and is
    # either node 1, or is the remaining active node
    # in either case, run the program
    exec /path/to/my/prog
    ----------------------------->8---------------------------------------------------
    you could even make this a generic wrapper by doing
    "exec $@" at the end & supplying the normal program
    path & args as arguments to the wrapper script...
    the 2nd solution is to essentially write your own "cron":
    in other words, a long-running process that simply sleeps
    in between trying to run your program (or rewrite your
    program to run forever & check the ftp dir occassionally).
    then you can use the standard tools to make the program
    highly available (scdsbuilder, etc)
    hth
    p

  • How to launch a java application from Microsoft SQL Server

    Hi everyone
    I noticed the following line in a trigger will launch an executable.
    EXEC master..xp_cmdshell '"C:\Program Files\SkillSets.exe"', NO_OUTPUT
    Does anyone know if this same statement will launch a java program? Or does anyone have any positive experience with that ?

    yes...
    check this basic example:
    public class GoodWindowsExec{
    public static void main(String args[]){
    if (args.length < 1){
    System.out.println("USAGE: java GoodWindowsExec <cmd>");
    System.exit(1);
    try{           
    String osName = System.getProperty("os.name" );
    String[] cmd = new String[3];
    if( osName.equals( "Windows NT" ) ){
    cmd[0] = "cmd.exe" ;
    cmd[1] = "/C" ;
    cmd[2] = args[0];
    }else if( osName.equals( "Windows 95" ) ){
    cmd[0] = "command.com" ;
    cmd[1] = "/C" ;
    cmd[2] = args[0];
    Runtime rt = Runtime.getRuntime();
    System.out.println("Execing " + cmd[0] + " " + cmd[1]
    + " " + cmd[2]);
    Process proc = rt.exec(cmd);
    // any error message?
    StreamGobbler errorGobbler = new
    StreamGobbler(proc.getErrorStream(), "ERROR");
    // any output?
    StreamGobbler outputGobbler = new
    StreamGobbler(proc.getInputStream(), "OUTPUT");
    // kick them off
    errorGobbler.start();
    outputGobbler.start();
    // any error???
    int exitVal = proc.waitFor();
    System.out.println("ExitValue: " + exitVal);
    } catch (Throwable t)
    t.printStackTrace();

  • JNI launching a java application

    Being a java newb, a lot of the JNI code confuses me.
    I have a java application that I wish to run through a JNI wrapper.
    What is the most simple C++ code that will enable me to do so.
    Also most of the code posted for doing this uses various header files. Where can one find these header files, and also which compiler is needed for compiling the wrapper. I assume Gpp or similar - is this assumption correct?

    When using both of those examples I get numerous compiler errors - using the sun invocation api example;
    #include <jni.h>       /* where everything is defined */
        JavaVM *jvm;       /* denotes a Java VM */
        JNIEnv *env;       /* pointer to native method interface */
        JavaVMInitArgs vm_args; /* JDK/JRE 6 VM initialization arguments */
        JavaVMOption* options = new JavaVMOption[1];
        options[0].optionString = "-Djava.class.path=/usr/lib/java";
        vm_args.version = JNI_VERSION_1_6;
        vm_args.nOptions = 1;
        vm_args.options = options;
        vm_args.ignoreUnrecognized = false;
        /* load and initialize a Java VM, return a JNI interface
         * pointer in env */
        JNI_CreateJavaVM(&jvm, &env, &vm_args);
        delete options;
        /* invoke the Main.test method using the JNI */
        jclass cls = env->FindClass("Main");
        jmethodID mid = env->GetStaticMethodID(cls, "test", "(I)V");
        env->CallStaticVoidMethod(cls, mid, 100);
        /* We are done. */
        jvm->DestroyJavaVM();and I get the following errors:
    Compiler: Default compiler
    Building Makefile: "C:\Program Files\Dev-Cpp\Makefile.win"
    Executing make...
    make.exe -f "C:\Program Files\Dev-Cpp\Makefile.win" all
    g++.exe -c ../../package/vocab.cpp -o ../../package/vocab.o -I"C:/Program Files/Dev-Cpp/include/c++" -I"C:/Program Files/Dev-Cpp/include/c++/mingw32" -I"C:/Program Files/Dev-Cpp/include/c++/backward" -I"C:/Program Files/Dev-Cpp/include" -I"C:/Program FIles/Java/jdk1.6.0/include/win32" -I"C:/Program FIles/Java/jdk1.6.0/include"
    ../../package/vocab.cpp:7: syntax error before `.' token
    ../../package/vocab.cpp:8: syntax error before `.' token
    ../../package/vocab.cpp:9: syntax error before `.' token
    ../../package/vocab.cpp:10: syntax error before `.' token
    ../../package/vocab.cpp:11: syntax error before `.' token
    ../../package/vocab.cpp:14: ISO C++ forbids declaration of `JNI_CreateJavaVM'
    with no type
    ../../package/vocab.cpp:14: `int JNI_CreateJavaVM' redeclared as different kind
    of symbol
    C:/Program FIles/Java/jdk1.6.0/include/jni.h:1920: previous declaration of `
    jint JNI_CreateJavaVM(JavaVM**, void**, void*)'
    ../../package/vocab.cpp:14: initializer list being treated as compound
    expression
    ../../package/vocab.cpp:14: invalid conversion from `JavaVMInitArgs*' to `int'
    ../../package/vocab.cpp:15: parse error before `delete'
    ../../package/vocab.cpp:19: syntax error before `->' token
    ../../package/vocab.cpp:21: syntax error before `->' token
    make.exe: *** [../../package/vocab.o] Error 1
    Execution terminated
    That is compiling using dev-C++ and I think the mingw compiler...

  • Cannot launch (many) Java 3D Applications on Leopard

    I have tried a number of different Java applets (http://www.cs.brown.edu/exploratories/freeSoftware/catalogs/repositoryApplets.ht ml) that use Java 3D and run into the same launch error each time:
    java.lang.UnsupportedClassVersionError: javax/media/j3d/ImageComponent (Unsupported major.minor version 49.0)
    at java.lang.ClassLoader.defineClass0(Native Method)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:539)
    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:282)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
    at java.lang.Class.getDeclaredMethods0(Native Method)
    at java.lang.Class.privateGetDeclaredMethods(Class.java:1655)
    at java.lang.Class.getMethod0(Class.java:1901)
    at java.lang.Class.getMethod(Class.java:984)
    at com.sun.javaws.Launcher.executeApplication(Launcher.java:1312)
    at com.sun.javaws.Launcher.executeMainClass(Launcher.java:1270)
    at com.sun.javaws.Launcher.doLaunchApp(Launcher.java:1117)
    at com.sun.javaws.Launcher.run(Launcher.java:105)
    at java.lang.Thread.run(Thread.java:552)
    My suspicion is that I accidentally installed bad/outdated Java3D jar files in
    System/Library/Java/Extensions.
    I've tried every Java update I could find, including JavaForMacOSX10.5Update2, and keep running into the same launch error. Any ideas?

    Try using 'Applications/Utilities/Java/Java Preferences' to change the default Java version.

  • How can I Launch a Java application that I have written using an icon

    I have just finished writing a Messaging system like Ms Outlook written completey in Java. To run my application , I would normaly type: java and then the class containing the main method eg java LogonFrame.
    How can I launch my application by just clicking on an icon ?.
    How can I also package and install this application the way most conventional application are packaged and installed. Do we have a sort of "java Installer" ?.
    Thank you.

    Just make a .bat file. Open notepad, type something like
    @echo off
    javaw -classpath %~d0%~p0 Package.MainClass %1
    Now make a shortcut to this file. Rightclick the shortcut and select start in "minimized". Thats it...
    Nille

  • Cannot Launch SUM Java Unable to Load

    Dear Guru's,
    I'm going to upgrade Java SP on my SOLMAN 7.1, i have run the ./STARTUP from OS level and SL Controller have been started.
    but when I access the SUM via web and launch it, i got this error from Java :
    JNLPException[category: Download Error : Exception: java.net.UnknownHostException: xxxxx : LaunchDesc: null ]
      at com.sun.javaws.cache.DownloadProtocol.doDownload(Unknown Source)
      at com.sun.javaws.cache.DownloadProtocol.isLaunchFileUpdateAvailable(Unknown Source)
      at com.sun.javaws.LaunchDownload.getUpdatedLaunchDesc(Unknown Source)
      at com.sun.javaws.Launcher.downloadResources(Unknown Source)
      at com.sun.javaws.Launcher.handleApplicationDesc(Unknown Source)
      at com.sun.javaws.Launcher.handleLaunchFile(Unknown Source)
      at com.sun.javaws.Launcher.run(Unknown Source)
      at java.lang.Thread.run(Unknown Source)
    I'm Using JRE 1.4.2_16.
    i have tried to Run DSUGui from OS level using <sid>adm and still got this error :
    <hostname>:smhadm 53> ./DSUGui
    java.lang.reflect.InvocationTargetException
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at SDTGui.showSUMSplashScreen(SDTGui.java:446)
            at SDTGui.configureSUM(SDTGui.java:261)
            at SDTGui.parseArgs(SDTGui.java:171)
            at SDTGui.<init>(SDTGui.java:48)
            at SDTGui.main(SDTGui.java:73)
    Caused by: java.awt.HeadlessException:
    No X11 DISPLAY variable was set, but this program performed an operation which requires it.
            at java.awt.GraphicsEnvironment.checkHeadless(GraphicsEnvironment.java:161)
            at java.awt.Window.<init>(Window.java:432)
            at java.awt.Frame.<init>(Frame.java:403)
            at java.awt.Frame.<init>(Frame.java:368)
            at javax.swing.SwingUtilities$SharedOwnerFrame.<init>(SwingUtilities.java:1734)
            at javax.swing.SwingUtilities.getSharedOwnerFrame(SwingUtilities.java:1811)
            at javax.swing.JDialog.<init>(JDialog.java:253)
            at javax.swing.JDialog.<init>(JDialog.java:187)
            at javax.swing.JDialog.<init>(JDialog.java:135)
            at com.sap.sdt.gui.core.swing.util.SplashScreen.create(SplashScreen.java:136)
            at com.sap.sdt.gui.core.swing.util.SplashScreen.show(SplashScreen.java:62)
            at com.sap.sdt.gui.core.admin.SDTGuiAdmin.showSUMSplashScreen(SDTGuiAdmin.java:115)
            ... 9 more
    Exception in thread "main" java.lang.NullPointerException: while trying to invoke the method java.lang.Object.toString() of a null object loaded from local variable 'result'
            at SDTGui.printErrorMessage(SDTGui.java:332)
            at SDTGui.showSUMSplashScreen(SDTGui.java:476)
            at SDTGui.configureSUM(SDTGui.java:261)
            at SDTGui.parseArgs(SDTGui.java:171)
            at SDTGui.<init>(SDTGui.java:48)
            at SDTGui.main(SDTGui.java:73)
    my java version is :
    java version "1.4.2_32"
    Java(TM) 2 Runtime Environment, Standard Edition (build 4.1.016)
    SAP Java Server VM (build 4.1.016 19.1-b02, Jan  2 2012 21:54:35 - 41_REL - optU - linux amd64 - 6 - bas2:164914 (mixed mode))
    please help to solve this problem..
    Best Regards,
    Marvin

    Hi Divyanshu,
    you're right, afer i set the env, the SUM Gui shows up.
    thankyou.
    i'm trying to export the Certificate to fix the error at SUM when i try to run it.
    but when i export it, it says like this :
    <localhost>:<sid>adm 56> sapgenpse export_own_cert -v -p /usr/sap/<SID>/DVEBMGS00/sec/SAPSSLS.pse -o /sapcd/SUM/solman.crt
    Opening PSE "/usr/sap/<SID>/DVEBMGS00/sec/SAPSSLS.pse"...
    No SSO credentials found for this PSE.
    PSE (v2) open ok.
    Retrieving my certificate... ok.
    Couldn't open output file /sapcd/SUM/solman.crt
    is there something that i missed ?
    Regards,
    Marvin

Maybe you are looking for