Problem Exporting .Jar Using Eclipse

I have a small problem of exporting using Eclipse 3.2
First , i could , debug , run as application with no problem.
however after i compiled into jar , and i tried opening the jar file
theres no responses. what could possibly be the problem ?
my manifest file includes the main class of program and all external .jar files.
below is my main class
-automatic batch printing
-able to select target folder for batch printing
-able to select interval for printing
-able to stop printing
-includes log of activity of threads and printing services
-free for all to use =D
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Desktop;
import java.awt.Graphics;
import javax.swing.JFileChooser;
import javax.swing.JPanel;
import javax.swing.JFrame;
import java.awt.*;
import java.awt.event.*;
import java.awt.print.*;
import java.io.*;
import java.util.*;
import java.util.Timer;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.*;
import javax.swing.filechooser.*;
import javax.swing.filechooser.FileFilter;
import javax.print.*;
import java.lang.Object;
import java.awt.JobAttributes.*;
import javax.swing.text.*;
import javax.swing.text.html.HTMLDocument;
import javax.swing.text.rtf.*;
import java.awt.Dimension;
import javax.swing.JEditorPane;
import java.awt.Rectangle;
import javax.swing.JOptionPane;
import javax.swing.JScrollPane;
import javax.swing.JButton;
import javax.swing.JTextPane;
import javax.swing.JTextArea;
import javax.swing.JTextField;
import javax.swing.JCheckBox;
import javax.swing.JLabel;
import javax.swing.SwingUtilities;
import java.awt.Font;
public class Test extends JFrame implements Printable{
     private static final long serialVersionUID = 1L;
     private JPanel jContentPane = null;  //  @jve:decl-index=0:visual-constraint="36,9"
     private JButton Open = null;
      Date date;
       class MyFilter extends javax.swing.filechooser.FileFilter {
             public boolean accept(File file) {
                 String filename = file.getName();
                         if(file.isDirectory()){
                      return true;
                 }else{
                      return filename.endsWith(".rtf");
             public String getDescription() {
                 return "Rich Text Format ( .rtf ) ";
     public Test() {
          super();
          initialize();
     public static void main(String[] args) {
          SwingUtilities.invokeLater(new Runnable() {
               public void run() {
                    Test application = new Test();
                    application.show();
                    application.setLocationRelativeTo(null);
                    application.setVisible(true);
                    application.getJContentPane().setVisible(true);
     private void initialize() {     
          this.setSize(408, 282);
          this.setResizable(false);
          this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          this.setContentPane(getJContentPane());
          this.setTitle("Auto Print Utility");
          this.setVisible(true);
      * This method initializes jContentPane
      * @return javax.swing.JPanel
     private JPanel getJContentPane() {
          if (jContentPane == null) {
               jLabel1 = new JLabel();
               jLabel1.setBounds(new Rectangle(131, 102, 59, 16));
               jLabel1.setFont(new Font("Apple Chancery", Font.PLAIN, 10));
               jLabel1.setText("MilliSeconds");
               jLabel = new JLabel();
               jLabel.setBounds(new Rectangle(16, 103, 53, 16));
               jLabel.setText("Interval :");
               jContentPane = new JPanel();
               jContentPane.setLayout(null);
               jContentPane.add(getOpen(), null);
               jContentPane.add(getStop(), null);
               jContentPane.add(getJTextField(), null);
               jContentPane.add(getJScrollPane(), null);
               jContentPane.add(getJScrollPane1(), null);
               jContentPane.add(getJTextField1(), null);
               jContentPane.add(jLabel, null);
               jContentPane.add(jLabel1, null);
               jContentPane.add(getJButton(), null);
          return jContentPane;
     static void printPrinterJob() {               
                PrinterJob printerjob = PrinterJob.getPrinterJob();
                // set the characteristics of
                // the job to be printed - use setPageable and book if
                // outputing a document. Use setPrintable for "simple" printing - all pages formatted the same
                printerjob.setPrintable(new Test());
                try {
                  PrintService[] ser =PrinterJob.lookupPrintServices();
                     ReadRegistry rr = new ReadRegistry();
                 int x =ser.length;
                  //  String def = rr.getPrinter();
                 String def ="Microsoft Office Document Image Writer";
                 for(int y=0;y<x;y++){
                     if(ser[y].getName().equals(def)){
                         printerjob.setPrintService(ser[y]);
                         System.out.println(ser[y]+" SET");
                     }else
                 System.out.println(ser[y]);
                } catch (PrinterException exception) {
                   System.err.println("Printing error: " + exception);
   public static void disableDoubleBuffering(Component c) {
              RepaintManager currentManager = RepaintManager.currentManager(c);
              currentManager.setDoubleBufferingEnabled(false);
  public static void enableDoubleBuffering(Component c) {
              RepaintManager currentManager = RepaintManager.currentManager(c);
              currentManager.setDoubleBufferingEnabled(true);
  public boolean printfolder(){
          Desktop de = Desktop.getDesktop();
          java.io.File folder = new File(jTextField.getText());
          File[] listOfFiles = folder.listFiles();
           for (int i = 0; i < listOfFiles.length; i++) {
                if (listOfFiles.isFile()) {
                    try {
                              de.print(listOfFiles[i].getAbsoluteFile());
                              File fi = new File(jTextField.getText()+"\\Deleted");
                              fi.mkdir();
                              Thread.currentThread().sleep(1000);
                              listOfFiles[i].renameTo(new File("Z:\\BTSS Log\\Fax\\Y2007 M10 D25\\Deleted",listOfFiles[i].getName().toString()));
                         } catch (Exception e1) {
                              // TODO Auto-generated catch block
                              e1.printStackTrace();
          System.out.println("File: " + listOfFiles[i].getName());
          date = new Date();
          PrintLog.append("Printed : "+listOfFiles[i].getName()+" "+date.toString()+"\n");
          } else if (listOfFiles[i].isDirectory()) {
               date=new Date();
          System.out.println("Directory: " + listOfFiles[i].getName()+" "+date.toString());
          PrintLog.append("No Files Printed "+date.toString()+"\n");
          return true;
     private JButton Stop = null;
     Thread tt = new Thread(){
          public void run(){
               while(true){
               int count = 0; // @jve:decl-index=0:
               printfolder();
               try {
                    Long lon = new Long(jTextField1.getText());
                    System.out.println(lon);
          tt.sleep(lon);
          } catch (InterruptedException e) {}
          count++;
          if (count >= 10000) break;
     private JTextField jTextField = null;
     private JScrollPane jScrollPane = null;
     private JScrollPane jScrollPane1 = null;
     private JTextField jTextField1 = null;
     private JLabel jLabel = null;
     private JLabel jLabel1 = null;
     private JTextArea PrintLog = null;
     private JTextArea ThreadLog = null;
     private JButton jButton = null;
     public void run(){
               while(true){
               int count = 0;
               printfolder();
               try {
          // Thread.sleep (300000);//
                    Long lon = new Long(jTextField1.getText());
                    System.out.println(lon);
          Thread.currentThread().sleep(lon);
          } catch (InterruptedException e) {}
          count++;
          if (count >= 10000) break;
     private JButton getOpen() {
          if (Open == null) {
               Open = new JButton();
               Open.setBounds(new Rectangle(11, 38, 187, 29));
               Open.setText("Start");
               Open.addActionListener(new java.awt.event.ActionListener() {
                    public void actionPerformed(java.awt.event.ActionEvent e) {
                         try{
                              if(jTextField1.getText().equals("")){
                                   JOptionPane.showMessageDialog(null,"MilliSeconds Required, Please Enter A Valid Number Into The TextBox", "MilliSeconds Required", JOptionPane.ERROR_MESSAGE);
                              }else if(jTextField.getText().equals("")){
                                   JOptionPane.showMessageDialog(null,"Please Specify Directory To Be Print From By Clicking On The TextBox", "Directory Missing", JOptionPane.ERROR_MESSAGE);
                              }else{
                                   Long.parseLong(jTextField1.getText());
                                   try {     
                                             if(tt.isAlive()) {
                                                       tt.resume();
                                                       date=new Date();
                                                       ThreadLog.append("Activity Resumes "+date.toString()+"\n");
                                             } else {
                                                            tt.start();                    
                                                            date=new Date();
                                                            ThreadLog.append("Activity Started "+date.toString()+"\n");
                                                  } catch (Exception f) {
                                                       JOptionPane.showMessageDialog(null, f.getMessage(), "Error Occured", JOptionPane.ERROR_MESSAGE);
                         }catch(Exception f){
                              JOptionPane.showMessageDialog(null, f.getMessage(), "Long Format Exception", JOptionPane.ERROR_MESSAGE);
          return Open;
     * This method initializes Stop     
     * @return javax.swing.JButton     
     private JButton getStop() {
          if (Stop == null) {
               Stop = new JButton();
               Stop.setBounds(new Rectangle(197, 38, 195, 29));
               Stop.setText("Stop");
               Stop.addActionListener(new java.awt.event.ActionListener() {
                    public void actionPerformed(java.awt.event.ActionEvent e) {
          try{
     tt.suspend();
     date = new Date();
     ThreadLog.append("Activity Suspend "+date.toString()+" \n");
          }catch(Exception g){
               JOptionPane.showMessageDialog(null, g.getMessage(), "Error Occured", JOptionPane.ERROR_MESSAGE);
          return Stop;
     public int print(Graphics arg0, PageFormat arg1, int arg2) throws PrinterException {
          // TODO Auto-generated method stub
          return 0;
     * This method initializes jTextField     
     * @return javax.swing.JTextField     
     */JFileChooser jfc = new JFileChooser();
     private JTextField getJTextField() {
          if (jTextField == null) {
               jTextField = new JTextField();
               ReadRegistry rr = new ReadRegistry();
               String dpath = rr.getDirecotry();
               File file = new File(dpath);
               jfc.setCurrentDirectory(file);
               jTextField.setText(dpath);
               jTextField.setBounds(new Rectangle(11, 14, 383, 20));
               jTextField.setEditable(false);
               jTextField.addMouseListener(new java.awt.event.MouseAdapter() {
                    public void mouseClicked(java.awt.event.MouseEvent e) {
                         jfc.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
                         jfc.showOpenDialog(jContentPane);
                         File file = jfc.getSelectedFile();
                         String path = file.getAbsolutePath();
                         jTextField.setText(path);
          return jTextField;
     * This method initializes jScrollPane     
     * @return javax.swing.JScrollPane     
     private JScrollPane getJScrollPane() {
          if (jScrollPane == null) {
               jScrollPane = new JScrollPane();
               jScrollPane.setBounds(new Rectangle(197, 70, 193, 55));
               jScrollPane.setViewportView(getThreadLog());
          return jScrollPane;
     * This method initializes jScrollPane1     
     * @return javax.swing.JScrollPane     
     private JScrollPane getJScrollPane1() {
          if (jScrollPane1 == null) {
               jScrollPane1 = new JScrollPane();
               jScrollPane1.setBounds(new Rectangle(14, 132, 375, 108));
               jScrollPane1.setViewportView(getPrintLog());
          return jScrollPane1;
     * This method initializes jTextField1     
     * @return javax.swing.JTextField     
     private JTextField getJTextField1() {
          if (jTextField1 == null) {
               jTextField1 = new JTextField();
               jTextField1.setBounds(new Rectangle(70, 101, 62, 20));
          return jTextField1;
     * This method initializes PrintLog     
     * @return javax.swing.JTextArea     
     private JTextArea getPrintLog() {
          if (PrintLog == null) {
               PrintLog = new JTextArea();
               PrintLog.setEditable(false);
               PrintLog.setFont(new Font("Arial", Font.PLAIN, 12));
          return PrintLog;
     * This method initializes ThreadLog     
     * @return javax.swing.JTextArea     
     private JTextArea getThreadLog() {
          if (ThreadLog == null) {
               ThreadLog = new JTextArea();
               ThreadLog.setEditable(false);
               ThreadLog.setFont(new Font("Taffy", Font.PLAIN, 10));
          return ThreadLog;
     * This method initializes jButton     
     * @return javax.swing.JButton     
     private JButton getJButton() {
          if (jButton == null) {
               jButton = new JButton();
               jButton.setBounds(new Rectangle(12, 70, 185, 25));
               jButton.setText("Reset");
               jButton.addActionListener(new java.awt.event.ActionListener() {
                    public void actionPerformed(java.awt.event.ActionEvent e) {
                         Test nt = new Test();
                         nt.show();
                         hide();
          return jButton;
} // @jve:decl-index=0:visual-constraint="-9,-14"
i can compile into jar successfully but the jar file wouldn't respond.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  

first , it says unable to access jar file .
upon deeper inspection i found that background processes is created behind thus the jar file been activated but the UI doesnt show up? any more idea of where my codes gone wrong? which seems perfect for me
anyway thanks but i still .. it says unable to access jar file

Similar Messages

  • Problem exporting JAR using Eclipse with JNIlib

    Hi all,
    I have a java application that is using an external JAR. The external JAR is coupling with a JNIlib.
    When I 'export' my application to a runnable JAR in Eclipse, the external JAR is extracted and included in my runnable JAR. However, when I execute the runnable JAR, some functions of the application is not working due to missing library. After I put JNIlib into my Java/Extension, the runnable JAR then works fine.
    I want to distribute the JAR to other people, but I can't ask them all to put JNIlib in their Java/Extension.
    Does anyone have an idea? I am a novice to Java, it took me awhile to figure out how to create a runnable JAR.
    Thank you very much.
    Eagle.

    first , it says unable to access jar file .
    upon deeper inspection i found that background processes is created behind thus the jar file been activated but the UI doesnt show up? any more idea of where my codes gone wrong? which seems perfect for me
    anyway thanks but i still .. it says unable to access jar file

  • Problem creating Jar in Eclipse

    I have a problem in exporting my eclipse java project to a jar file. It does not include the external jars used in the buildpath in the MF file. How to add external jars used in the project propoerties' buildpath in the MF file while exporting a Java Project to a jar? Thanks in advance.

    hi,
    there is no possibility in eclipse to export the external files from class path.
    but you can add the source files of your .jar to your project without using the class path.
    that should be the solution of your issue :)

  • Export JAR in eclipse: Errors

    Hi,
    I've just started using eclipse after a few months of using net beans. I've got my code running in eclipse, but creating a JAR file produces the error:
    "JAR export finished with warnings. See details for additional information."
    Then under details:
    Exported with compile warnings: /SimpleDMX/smallDMX/SmallDMX/Slider.java
    Exported with compile warnings: /SimpleDMX/smallDMX/SmallDMX/Fixture.java
    Exported with compile warnings: /SimpleDMX/smallDMX/SmallDMX/FixtureControlView.java
    Exported with compile warnings: /SimpleDMX/smallDMX/SmallDMX/FixtureManager.java
    Exported with compile warnings: /SimpleDMX/smallDMX/SmallDMX/FixtureView.java
    Exported with compile warnings: /SimpleDMX/smallDMX/SmallDMX/CompositeSnapControl.java
    Exported with compile warnings: /SimpleDMX/smallDMX/uk/co/pjnewman/dmx/DMXIOException.java
    Exported with compile warnings: /SimpleDMX/smallDMX/uk/co/pjnewman/dmx/OpenDMXUSB.java
    Exported with compile warnings: /SimpleDMX/smallDMX/uk/co/pjnewman/dmx/DLLLoadingException.java
    Exported with compile warnings: /SimpleDMX/smallDMX/uk/co/pjnewman/dmx/DongleConnectionException.java
    Exported with compile warnings: /SimpleDMX/smallDMX/uk/co/pjnewman/dmx/OpenDMXUSBException.java
    The above classes comprise about half of my project. I can't see why some classes are ok and others aren't. And also I have no idea what the error messages above mean. Not very descriptive or detailed!
    Help much appreciated

    Exported with compile warnings:This suggests that class files were placed into the jar file despite the fact that there were compiler warnings. These warnings could have been anything - it depends on the settings you have. They are warnings, however, not errors - so the compilation finished OK and the jar file was created. You can see what the warnings were by rebuilding your project and looking at the "Problems" pane usually near the bottom of the Eclipse screen.

  • Problem creating jar using JDeveloper

    I'm creating jar using JDeveloper..I need to keep two dll files in the jar. But if I create the jar in JDeveloper, it can't include the dll files. If the jar is created from command prompt, it can include the dll files. Can anyone tell me how can I include these dlls in my jar?

    Putting DLLs in your classes directory is dangerous (eg. Run->Clean Project.jpr will remove it). I use a different way to achieve that:
    When you double click on the deployment profile you'll see a dialog window containing a list of items. The one of interest is the one called File Groups. Select this item, click on the New button and add a new file group just for your DLLs.
    --olaf                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Compiling with external JARs using Eclipse

    I've spent 3 days on this and I still don't seem to be any nearer solving the problem. I am using a couple of external JAR files within my project and everything is working fine within the IDE, it's when I come to compile my own JAR that I'm having problems. I've tried created my JAR by choosing file->export, but it doesn't seem to pull in the external JARs. My class paths must be correct as I can run it within the IDE, but I'm missing something.
    Next I discovered ANT and had a play with that. After some toil I got it to generate a JAR, but it has two problems. 1. The manifest file cannot be found, but let's forget about that for now, as I haven't really looked into it. 2. The generated JAR is only 250Kb, when (if the external JARs are packaged with it) it should be closer to 5Mb. Again I've set my class paths in the External Tools dialog, but still nothing.
    Could someone please try and point me in the right direction. I've even spent a couple of hours at Borders reading up on ANT and Eclipse, that where my ANT script came from, but it hasn't got me the result I need. If it's any help my build.xml is below
    <?xml version="1.0" encoding = "UTF-8"?>
    <project name="C_G" default="Main Build" basedir=".">
        <property name="bin" location="bin"/>
        <property name="src" location="."/>
        <property name="jardir" location="${bin}/lib"/>
        <property name="jarfile" location="${jardir}/c_g.jar"/>
        <property name="build.compiler"
        value="org.eclipse.jdt.core.JDTCompilerAdapter"/>
        <target name="Main Build" depends="Initialize, Compile, Jar">
            <echo message="Ant Building"/>
        </target>
        <target name="Initialize">
            <delete dir="${bin}"/>
            <delete dir="${jardir}"/>
            <mkdir dir="${bin}"/>
            <mkdir dir="${jardir}"/>
        </target>
        <target name="Compile" depends="Initialize">
            <javac srcdir="${src}"
                destdir="${bin}">
            </javac>
        </target>
        <target name="Jar" depends="Initialize, Compile">
            <jar destfile="${jarfile}" basedir="${bin}"/>
        </target>
    </project>

    Damn it, so I do have to tackle the 'manifest not
    found problem' first then. I would have though
    Eclipse would have made a better job at making the
    manifest file.All I can say: RTFM. This is not an Eclipse support forum. Maybe it does, and you use some incorrect settings.
    I just placed it into the root of the JAR, but when I
    run it can't find itIt doesn't belong there. It goes into a directory named META-INF

  • Problem in project using Eclipse+Tomcat+Apache Beehive

    Hi,
    Software used
    Operating System : Red Hat Linux
    IDE : eclipse 3.1 M7
    Server : Tomcat 5.5.10
    Webservice Package : Apache Beehive Build 20050505
    Plugin for integrating Apache Beehive with eclipse is POLLINATE
    My Problem: when I created my first webservice project . In all the log4j.xml files in the project. It gave an error saying that log4j.dtd file not found inside /root/workspace/SampleProject1/webcontent/WEB-INF/src/log4j.dtd
    Please provide me some suggestions to clean this error
    Thank you
    Mike

    didi you set the right path to the jre?
    there's a goog mailing llist for tomcat issues. go to the jakarta/tomcat website to subscribe. they might help you.

  • Problem creating CalculationView using Eclipse on MacOSX

    Hi guys,
       I'm trying to follow the steps of tutorial Using HANA Modeler in SAP HANA Cloud Platform, but it's giving a error when creating the Join of SO_CV view when running on MacOS Leopard. When I link the tables SNWD_BPA and SNWD_SO the link is erased and when I try using the Join wizard I cannot click on finish or Add a column as output.
      But when I do the same steps on Windows it's works without problem. I've done the procedure several times in both systems, and only get error on MacOS.
      Anyone else having this issue ?
    Regards,
    Cleber Santz

    Hi Vladimir,
       I already have a updated Eclipse (Kepler) install:
        UI5: 1.20.7
        HANA Tools: 1.0.7400
        HANA Cloud Tools: 1.27.0
        NEO J2EE 6 SDK: 2.34.6.1
       When the problem occurs, it cause a graphic issues as well on View Diagram. See image attached.
    Regards,
    Cleber Santz

  • Problem exporting video using compressor for a final cut pro vid

    I've created a video in Final Cut Pro and trying to export using compressor to apple tv. Each time about half way through it crashes final cut and gives me the 'final cut pro had to quit unexpectedly'.
    Haven't a clue what is going on, it happened sometimes when i was trying to conform to HD but when i did it bit by bit it was ok.
    All the media is online so really haven't a clue. I've tried using quicktime conversion in pro-res then bashing into compressor and it works but interlacing is all over the shop, even with de-interlace filter.
    ANy answers with regards to why its crashing greaty appreciated!
    P.S when it crashes says something about a pro-core plugin
    Message was edited by: jim__bob

    Hi Jim,
    Can you update your profile, we don't know what your hardware set up is or your OS, or version of FCS. It could give you answers a lot faster if we know your details from the off.
    Ok, what format is your original media, what are your sequence settings please.
    DM

  • Problems exporting metadata (using bridge).

    Hello.
    I'm trying to export metadata from OWB to Discoverer. I've a multidimensional model and now I want to explore it using Discoverer.
    When I export metadata, OWB creates a file like:
    BEGIN End User Layer Export
    EUL_Version 3.1.92.0.7
    EUL_Unique_Id 20030315095138
    EUL_Characterset_WE8MSWIN1252
    Define Object
    Type BUSINESS AREA
    Name AREA CASO 1
    mName AREA CASO 1
    mDescription Área de negocios del caso de estudio del almacén de comestibles.
    mId
    EndDefine Object
    Define Object
    This file can't read by Discoverer because not is a XML file. How can I export the .eex using XMI especification?
    Thanks.

    Juan Antonio,
    What version of Warehouse Builder are you using?
    It seems you have selected the Discoverer 3 bridge which may not generate an XML file (I am not sure about the Discoverer 3 format).
    Anyway, you have to define a business area in OWB (or collection if you use OWB904) that contains the object definitions you want to export when you run the bridge.
    Mar.

  • Final Cut Pro 4:  Problems exporting video using QuickTime conversion

    just recently updated my Mac to version 10.4.11 -
    Ever since, Final Cut Pro won't let me Export my video using QuickTime Conversion.
    Its starts exporting, then freezes at 79%. A general error message pops up.
    I know its not a space issue, because I have 20GB left and the video i'm exporting is only 2 GB.
    I installed all the software updates.
    Can anyone help? Do I need a new version of Final Cut?

    1) this is the final cut express forum not the pro.
    2) 10.4.6 is not the latest, try updating to 10.4.11
    3) after any system update you must run disk utility to repair permissions or errors that may not have been addressed during the upgrade process.
    4) have you tried exporting as a reference movie then playing it in qtpro, if ok then export.
    5) what are you trying to export too?

  • Problems exporting files using xFire video clips

    Hi - first time posting.
    I recently started using XFire to record videogame footage from my PC. I would then take the clips into Adobe Premiere Pro CS6 and edit them, and now I'm ready to export them so I can re-edit them (because editing with the xfire codec is quite a hassle) and ultimately upload them.
    In this particular example, I'm exporting to the HuffYUV format - this is what happens: http://www.youtube.com/watch?v=_jHBhpl_3G0
    This clip is 90 seconds long, exported in the HuffYUV codec, 360x240 (to keep the file size down) - but as you can see, at around 0:54 and then again at 1:15, the video would freeze, rendering the clip unuseable.
    I've tried various formats and sizes - I'm trying to export at 1440x960, and I've tried HuffYUV, Lagarith, Raw (No Codec), MicrosoftVideo1, etc - most of them, when I make a 30sec clip, it works fine, but when I make the 90sec clip, most of them would start having the frozen frames at ~2 seconds in, but all the file formats do eventually have a frozen frames.
    I've tried converting the xfire video clips BEFORE putting them into Premiere by using Media Coder (not the Adobe one), but the result looks something like this: http://www.youtube.com/watch?v=p8LEO3fGSaM&t=0m17s - you can see horizontal interference as well as a lot of jumpy frames
    I just got this computer a few months ago - I'm using Windows 8, 64-bit, 16gb of ram.
    So, what's happening? What's the best way for me to fix this? Thanks in advance.

    The most likely reason is that you are attempting to export a muxed mpeg file. QT will not export sound from such files. QT Mpeg Limitations
    This freeware will export to a number of different formats from mpeg with the sound and video intact. Mpeg StreamClip

  • Create jar file using eclipse including the addition of a dll

    hy ..
         i have developed an application using eclipse.Having problems exporting the file as an executable jar.Even after providing the main class name in the manifest file, the jar file is giving the following error on a double click - "Could not find main class.Program will exit" .
         i have used an external jar file for displaying a tray icon on the system tray.This inturns uses a dll file which i have on my classpath.How do i get these into the jar and get it running..
    thanx in advance

    hy ..
    i have developed an application using eclipse.Having
    g problems exporting the file as an executable
    jar.Even after providing the main class name in the
    manifest file, the jar file is giving the following
    error on a double click - "Could not find main
    class.Program will exit" .Guessing, you don't specify the package part of the classname.
    i have used an external jar file for displaying a
    a tray icon on the system tray.This inturns uses a
    dll file which i have on my classpath.How do i get
    these into the jar and get it running..You can't run a dll from inside of a jar.
    If you're trying to use the JDIC tray classes, I don't believe they will run from a jar, but you might find otherwise. See https://jdic.dev.java.net/
    >
    thanx in advance

  • Problem using eclipse

    Hi,
    I am trying to use Eclipse but I encountered some problems. I drag and drop an application of mine, into a Java project in Eclipse, I try to run and I get :
    Usage: javaw [-options] class [args...]
               (to execute a class)
       or  javaw [-options] -jar jarfile [args...]
               (to execute a jar file)
    where options include:
        -client       to select the "client" VM
        -server       to select the "server" VM
        -hotspot       is a synonym for the "client" VM  [deprecated]
    .Whats that about?

    I think it would be better to build a new project in Eclipse with the same name as your old project, and with the same java class names as your old project (with no content) in a similiar package structure (this is especially easy if the project is small). Then copy/paste the contents of the java classes into the ones in Eclipse. Then add the jar files to the lib folder that are missing (then add them to the project via the menu buy right clicking on the project icon, going to properties, etc).
    Drag/dropping a project into eclipse will probably not configure the missing jar files, etc that Eclpise needs. Note if your project is a tomcat project, then in eclpise, create a tomcat project and configure its settings such as where the tomcat server is located and what version of java jdk your using for the project.
    However, if you have an already existing Eclipse project you only need to 'import' the project via the Eclpise menu.

  • Problem exporting using Compressor in FCP?

    I had a problem exporting using Compressor in FCP and then I found an interesting article from Apple:
    http://support.apple.com/kb/TS1099
    but it doesn't really explain the solution. What steps do I need to take exactly in Compressor to make it work?

    James M. has it right. Convert the MP3 and the WAV files to AIFF, 48khz, 16 bit and use those in your Sequence. You might even have to convert the existing AIFF file(s) if they aren't 48khz, 16 bit.
    Once you've edited the new files into your Sequence, do an Audio Mixdown, then export.
    -DH

Maybe you are looking for

  • Installed Mavericks 10.9.2 update recently and getting black screen

    Screen goes black like it gets put into sleep mode (but can't be brought back out). I have to do a force power off/on. It seems like this happens when I get a a certain (undetermined) mail notification. I have many gmail and other email accounts conn

  • No Audio When using Video Out to Firewire

    I do not get any audio when I use Firewire ntsc as my video out. When I set video out to canvas playback then I get audio. I want to use print to video but I cannot because the audio will not work with Firewire. I get the image on my external monitor

  • Upgrading OES2sp2/SLES10sp3.. done at the same time how?

    I was reading through the inst-oes-lnx.pdf doc (for OES2sp3) to upgrade our OES2sp2 server, and section 5.2.2 clearly states, "You must upgrade SLES 10 and OES 2 at the same time". This line is confusing me badly. The problem is, following along the

  • User role maintenance (TX PFCG) : S_TCODE cannot be changed

    Hello, We have the following problem in the transaction code PFCG, when trying to edit the authorizations of a role: the tree "S_TCODE" appears as "Standard" and can only be changed, if you set the authorization fields to "*" (full authorization) , p

  • Adding Custom Attributes in Search/Create iView

    Hi,   I am able to create "Customized Information" in Search/Create user iView which is under User Administration Role. For example "CustomerCode" attribute I created in Search/Create iView. Also able to retrieve the "CustomerCode" value in the iView