Run EJBC on jar file (in Weblogic)

Hi all,
Why do we have to use the following statement while creating a jar file for Entity Beans deploying in Weblogic App server.
==================================
java -classpath d:/bea/wlserver6.0/lib/weblogic_sp.jar;d:/bea/wlserver6.0/lib/weblogic.jar weblogic.ejbc -compiler javac build\std_ejb_trader.jar d:\ejb_trader.jar
===========================================
Any help will be appreciated.
Seetesh

Hi Deepak,
java -classpath d:/bea/wlserver6.0/lib/weblogic_sp.jar;d:/bea/wlserver6.0/lib/weblogic.jar weblogic.ejbc -compiler javac build\std_ejb_trader.jar d:\ejb_trader.jar
The installer of Weblogic 6.0 is that it doesnt have this Weblogic_sp.jar while installing whereas Weblogic 6.1 has this jar file.
Problem in this case using Weblogic 6.0 is that without Weblogic_sp.jar d:\ejb_trader.jar file doesnt get created at all.
Thanks for ur reply,
Seetesh

Similar Messages

  • Why is WLS 7.0 trying to ejbc my jar file?

    I have an application (server.ear) that contains four EJB jars
    (entities.jar, managers.jar, services.jar, commands.jar). I'm using a
    single ant (1.5.2) ejbjar task to generate the jar files and an ear
    task to create the application. This has been working fine for some
    time, but just yesterday WLS (7.0sp2) started giving me an exception
    when I try to deploy -- the exception is appended to this post with
    ellipsis added by me.
    It appears that the EJBComplianceChecker is being run on this jar
    file. I understand that this only happens when you try to deploy a
    "raw" jar file that hasn't been ejbc'ed. It makes sense in this case
    that the ServerVO.class would not be found since it doesn't appear in
    WLS's system classpath. That class is actually in the jar file itself.
    How does WLS determine that it needs to ejbc a jar file? Why would it
    decide to ejbc this one? I've checked the jar file by hand and it
    contains the ejbc-generated classes as well as a WLGENERATED entry.
    I've also taken the ant-generated generic jar file and run ejbc on it
    myself and I get the same results.
    -- Les Walker
    Unable to deploy EJB: SubmissionServiceMDBean from services.jar:
    Class not found: com/.../common/data/ServerVO
    java.lang.NoClassDefFoundError: Class not found:
    com/.../common/data/ServerVO
    at weblogic.ejb20.compliance.EJBComplianceChecker.check(EJBComplianceChecker.java:283)
    at weblogic.ejb20.compliance.EJBComplianceChecker.checkDeploymentInfo(EJBComplianceChecker.java:228)
    at weblogic.ejb20.deployer.EJBDeployer.setupBeanInfo(EJBDeployer.java:992)
    at weblogic.ejb20.deployer.EJBDeployer.prepare(EJBDeployer.java:1273)
    at weblogic.ejb20.deployer.EJBModule.prepare(EJBModule.java:232)
    at weblogic.j2ee.J2EEApplicationContainer.prepareModule(J2EEApplicationContainer.java:1570)
    at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContainer.java:737)
    at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContainer.java:555)
    at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:1062)
    at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:730)
    at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:24)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213)

    That was it. I have some startup classes that are in a jar file in the
    server's classpath. I bet that one of the EJB's was referencing a
    class contained in that jar which in turn referenced ServerVO which
    was not available outside the EJB's jar file. That's the only way I
    can figure that it got picked up by the EJB verifier.
    Thanks for the help,
    -- Les Walker
    Rob Woollen <[email protected]> wrote in message news:<[email protected]>...
    WLS will ejbc on the server if you have not ejbc'd the jar or the WLS
    version which compiled the jar doesn't match the server's version.
    These have to be exact versions (ie if you compiled with SP1 and deploy
    to SP2, it'll recompile on the server.)
    As for the NoClassDefFoundError, I suspect something in the server's
    $CLASSPATH references the ServerVO class. You can refer to classes in
    your parent classloader, but cannot have parent--->child dependencies.
    -- Rob
    Les Walker wrote:
    I have an application (server.ear) that contains four EJB jars
    (entities.jar, managers.jar, services.jar, commands.jar). I'm using a
    single ant (1.5.2) ejbjar task to generate the jar files and an ear
    task to create the application. This has been working fine for some
    time, but just yesterday WLS (7.0sp2) started giving me an exception
    when I try to deploy -- the exception is appended to this post with
    ellipsis added by me.
    It appears that the EJBComplianceChecker is being run on this jar
    file. I understand that this only happens when you try to deploy a
    "raw" jar file that hasn't been ejbc'ed. It makes sense in this case
    that the ServerVO.class would not be found since it doesn't appear in
    WLS's system classpath. That class is actually in the jar file itself.
    How does WLS determine that it needs to ejbc a jar file? Why would it
    decide to ejbc this one? I've checked the jar file by hand and it
    contains the ejbc-generated classes as well as a WLGENERATED entry.
    I've also taken the ant-generated generic jar file and run ejbc on it
    myself and I get the same results.
    -- Les Walker
    Unable to deploy EJB: SubmissionServiceMDBean from services.jar:
    Class not found: com/.../common/data/ServerVO
    java.lang.NoClassDefFoundError: Class not found:
    com/.../common/data/ServerVO
    at weblogic.ejb20.compliance.EJBComplianceChecker.check(EJBComplianceChecker.java:283)
    at weblogic.ejb20.compliance.EJBComplianceChecker.checkDeploymentInfo(EJBComplianceChecker.java:228)
    at weblogic.ejb20.deployer.EJBDeployer.setupBeanInfo(EJBDeployer.java:992)
    at weblogic.ejb20.deployer.EJBDeployer.prepare(EJBDeployer.java:1273)
    at weblogic.ejb20.deployer.EJBModule.prepare(EJBModule.java:232)
    at weblogic.j2ee.J2EEApplicationContainer.prepareModule(J2EEApplicationContainer.java:1570)
    at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContainer.java:737)
    at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContainer.java:555)
    at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:1062)
    at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:730)
    at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:24)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213)

  • Run a Remote Jar file

    How can I run a remote jar file?
    There is a runnable jar (Java Application) file on server and my client program wants to run it on the client. What should I write for my client code to do this?
    It is possible to load it directly into client memory and run it?
    And basically, does a Jar file completely load into memory, when we are deploying it, or only required resources load?

    I suppose you are not speaking of applets.
    If Iunderstand your question correctly, you are looking for a way, the client always has newest software downloaded from the server.
    If that is what you are looking for, try JavaWebStart.
    You find tutorials on javasoft.com.
    If you just want the client to download an application (like an .exe) use a runnable jar!

  • Deploying, ReDeploying JAR file to WebLogic EM without restarting the serve

    Hi
    Can any one help me how to re-deploy .jar file on weblogic EM with steps.
    Deploying, ReDeploying JAR file to WebLogic EM without restarting the server
    Appriciate if you provide information in steps with screenshot.
    Note: Not in weblogic 11g console.
    Thanks,
    Phani

    http://download.oracle.com/docs/cd/E14571_01/core.1111/e10105/deploy.htm#BIHIIEIA

  • How to run servlet inside jar file

    Hi
    I have a problem on running a servlet class which resides in a jar file.
    At first, it runs if it is located in the root directory of jar file, but if I put in inside a sub directory, I wasn't able to run it. It seems that the servlet class was not found.
    Here's the contents of my jar file:(eg. application.jar)
    META-INF/
    META-INF/MANIFEST.MF
    Business/
    Business/Business.class
    TransferManager/
    TransferManager/Default.class
    TransferManager/Application.class
    DAL/
    DAL/XMLDocument.class
    DAL/ParameterCollection.class
    DAL/ConnectionReaper.class
    DAL/JDCConnectionPool.class
    DAL/JDCConnection.class
    DAL/JDCConnectionDriver.class
    DAL/DataAccess.class
    Presentation/
    Presentation/IPresentation.class
    Presentation/XslTransform.class
    When I deploy this jar in tomcat4.0 and try to run the Default.class
    in the TransferManager package, the server can not locate the class.
    But if I put it in the root directory of the jar it works.
    Is there any additional setting in tomcat for this? Anyone can give
    me an idea for this?
    Thanks in advance...

    If you want to put the compiled servlet into Business/Business.class, you need for it to be in the Business package. I.e. the first line of code should be "package Business;" It looks like your jar file is in the right place, since Tomcat is finding something in it. So put your servlets in the appropriate packages and they should run. Also, you would have to change the configuration to refer to "Business.Business.class" and so on.

  • Error when running an executable jar file

    Hi
    I created a java application with a main method in one of the classes and through eclipse exported it as a jar file to run as a standalone application on another machine. In this application, I used a jar file sqljdbc.jar by referencing to it in the application. So I set the jar file's location in the classpath on the other machine and ran the application on the command prompt.
    java -jar myapplication.jar. But I get an error "java.lang.ClassNotFoundException: com.microsoft.sqlserver.jdbc.SQLServerDriver".
    I am not sure what else could be done. Thanks and appreciate any help on this.

    Do you mean you set the system Classpath on the other computer? When you use "java -jar" the only Classpath that is used is the Class-Path inside the jar's manifest.
    You need to either use the Class-Path in the manifest of myappication.jar to include the sql jar, or use "java -cp myapplication.jar;microsoftsql.jar TheMainClass" (use : instead of ; for *nix computers)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Error trying to run an executable Jar file

    Hi,
    I know a million people have asked this before. In the past 5 hours I have waded thru a dozen questions-answers-FAQs that were no help. So if anyone is willing to help a stupid person her is my problem:
    I developed a java program using the eclipse ide and it runs fine from within that ide.
    I packaged it into a Jar file, created a manifest file per the instructions.
    But when I double click on the jar file I get the following error from the Java Virtual Machine Loader;
    "Could not find main class. Program will exit."
    My Manifest file has the following text:
    Manifest-Version: 1.0
    Class-Path: swt.jar
    Main-Class: .graphicalUserInterface.AppStandAlone
    <blank line>
    the class AppStandAlone has the method "public static void main(String[] args) "
    it is in a package called "graphicalUserInterface".
    Any help anyone can give me would be greatly appreciated.

    Another 3 hours spent trying to run this java application in a Jar file.
    I identified that I did not have all class paths specified. So I tried to enter them in the "Class-Path:" line of the manifest file. But, according to the java tutorial, the syntax in a manifest file for classpaths is a space SEPARATING each path name. I have a space IN the path name and java is not understanding the paths correctly. For instance, I have a classpath c:\Progran Files\Java\etc... and java interprets this to be a classpath c:\Progran with Files\Java\etc as the program I want to run.
    I tried enclosing the paths in double quotes. Didn't work
    I tried enclosing the paths in single quotes. Didn't work
    I tried using a semicolon as a separator with double quotes. Didn't work
    I tried using a semicolon as a separator with single quotes. Didn't work
    I tried using a semicolon as a separator with no quotes. Didn't work
    I removed the "Class-Path:" line from the manifest and tried adding -cp param to the java command. Example:
    java -cp %classpath% -jar myapp.jar
    I tried all the variations above in the -cp param. None of them worked.
    The only thing that works is if I move executable jar file to the same directory as the required libraries. Then I specify a "Class-Path:" line with no spaces in the path names. Obviously this is not a permanent solution.
    If anyone else has the patience to help me I would really appreciate it.

  • Running application from jar file in a PDE project?

    I have a jar file with a simple application:
    import javax.swing.*;
    public class MyTest {
      public void test(){
        JOptionPane jp = new JOptionPane();
        jp.showInputDialog("Bob");
      public static void main(String[] args) {
        MyTest m = new MyTest();
        m.test();   
    }I have made the Hello World PDE Project in Eclipse on Vista. From the execute function I do:
          * the command has been executed, so extract extract the needed information
          * from the application context.
         public Object execute(ExecutionEvent event) throws ExecutionException {
    //          IWorkbenchWindow window = HandlerUtil.getActiveWorkbenchWindowChecked(event);
    //          MessageDialog.openInformation(window.getShell(), "MyPlugin", "Hello, Eclipse world");
           MyTest m = new MyTest();
           m.test();
              return null;
         }But nothing happens. I have added the external Jar file to the build path. Any ideas?

    I have tried running a debugger but I just get:
    "Source not found"
    when stepping over this line:
         MyTest m = new MyTest();
    I have not been able to find any pages on google that describes this problem or how to use external jars with a PDE project so any ideas are most welcome!

  • Partial redeployment of a static jar file with weblogic.Deployer

    Hello,
    We are working on an application serving jar files to customers, via Java Web Start, hence that are considered from our point of view as static files, like our HTML and Javascript pages.
    Moreover, we have one jar that changes regularly, so every time it's loaded on the server we need to do a partial redeployment of this jar file, as documented here: http://docs.oracle.com/cd/E13222_01/wls/docs103/deployment/redeploy.html#wp1025739
    However, it does not work, as I believe WebLogic doesn't consider my jar file as a static file.
    C:\>java -cp weblogic.jar weblogic.Deployer -adminurl http://mymachine:7001 -user weblogic -password mystrongpassword -name myapp -redeploy launcher/downloadme.jar
    weblogic.Deployer invoked with options: -adminurl http://mymachine:7001 -user weblogic -name myapp -redeploy launcher/downloadme.jar
    <Mar 8, 2013 7:09:36 PM CET> <Info> <J2EE Deployment SPI> <BEA-260121> <Initiating redeploy operation for application, myapp [archive: null], to configured targets.>
    Task 24 initiated: [Deployer:149026]redeploy application myapp [Version=7] on WebServer.
    Task 24 failed: [Deployer:149026]redeploy application myapp [Version=7] on WebServer.
    Target state: redeploy failed on Server WebServer
    weblogic.management.DeploymentException:
    The application myapp#7 cannot have the resource launcher/downloadme.jar updated dynamically. Either:
    1.) The resource does not exist.
    or
    2) The resource cannot be changed dynamically.
    Please ensure the resource uri is correct, and redeploy the entire application for this change to take effect.
    As a side note, if I rename downloadme.jar to downloadme.jar.*html*, then WebLogic agrees to redeploy it!
    Is there any way to force the static redeployment of my jar file?
    Thanks and regards,
    Julien

    Hi,
    The feature you are trying to use works only when web application is deployed in exploded format. Is your app deployed in exploded format?
    Also jars are never considered static, so I doubt this will work here.
    As an alternative you can go for Oracle Weblogic Production redployment feature. Refer to - http://middlewaresupport.wordpress.com/2013/03/21/production-redeployment-feature-in-weblogic/
    Thanks,
    Ranjan
    Edited by: Ranjan K on Apr 12, 2013 5:45 AM

  • How to deploy EJB jar file in Weblogic 8.1

    Hi,
    I have created the EJB jar file, bearing home,remote,ejb and client class aling with the META-INF folder containing ejb-jar.xml and weblogic-ejb-jar.xml.
    After all this I am confused where to put this EJB jar file so that the container could deploy it.
    I am putting it in application folder of my own created Domain.
    Suggest me...

    Put it anywhere you like. You can always deploy it using the administrator console. There usually is an auto-deployment directory for the domain. You could find all that information in the Weblogic documentation.

  • Run class in jar file using command prompt

    Hi,
    I have created a jar file OSTBTLDataTransfer.jar using eclipse and tried to run a class Person in the package com.aqa.details using the command prompt like this
    java -classpath com.aqa.details.Person
    but this complained about a jar file dependency and i have set it to the classpath like this:
    set CLASSPATH=C:\jarup\abc\ibatis-2.3.4.726.jar
    but it couldn't find the dependency when i tried to run again.
    please let me know your suggestions
    Thanks,
    KC

    java -classpath OSTBTLDataTransfer.jar com.aqa.details.Person
    or if you have an appropriate manifest in the jar simply
    java -jar OSTBTLDataTransfer.jar

  • Error while deployingejb  jar file in weblogic 8.1

    Exception:weblogic.management.ApplicationException: prepare failed for testsix Module: testsix Error: Exception preparing module: EJBModule(testsix,status=NEW) Unable to deploy EJB: C:\bea\user_projects\domains\mydomain\applications\testsix.jar from testsix.jar: weblogic.ejb20.deployer.DeploymentDescriptorException: Unable to load a class specified in your ejb-jar.xml: examples.CalculatorSessionBean at weblogic.ejb20.deployer.MBeanDeploymentInfoImpl.initializeBeanInfos(MBeanDeploymentInfoImpl.java:550) at weblogic.ejb20.deployer.MBeanDeploymentInfoImpl.<init>(MBeanDeploymentInfoImpl.java:232) at weblogic.ejb20.deployer.EJBDeployer.prepare(EJBDeployer.java:1262) at weblogic.ejb20.deployer.EJBModule.prepare(EJBModule.java:477) at weblogic.j2ee.J2EEApplicationContainer.prepareModule(J2EEApplicationContainer.java:2962) at weblogic.j2ee.J2EEApplicationContainer.prepareModules(J2EEApplicationContainer.java:1534) at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContainer.java:1188) at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContainer.java:1031) at weblogic.management.deploy.slave.SlaveDeployer$ComponentActivateTask.prepareContainer(SlaveDeployer.java:2602) at weblogic.management.deploy.slave.SlaveDeployer$ActivateTask.createContainer(SlaveDeployer.java:2552) at weblogic.management.deploy.slave.SlaveDeployer$ActivateTask.prepare(SlaveDeployer.java:2474) at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:798) at weblogic.management.deploy.slave.SlaveDeployer.prepareDelta(SlaveDeployer.java:507) at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:465) at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:25) at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197) at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)

    A possibly related issue:
    http://forums.bea.com/thread.jspa?threadID=600016825
    ...I have faced same problem most of time and resolved ot by recompileing my all the classes and new deployment descriptors. First you should make new java files for all clases(copy contents fron old java files ) and make anew package same as old and then do all the required process and re deploy it. I think because of some problem in class generation...
    Hope it helps.

  • Error in Deploying jar file in weblogic

    I got this error while deploying in weblogic. Give me the solution to solve this.
    Exception:weblogic.management.ApplicationException: prepare failed for Count1 Module: Count1 Error: Exception preparing module: EJBModule(Count1,status=NEW) Unable to deploy EJB: F:\Arul\EJB\Statefull\deploy\Count1.jar from Count1.jar: weblogic.ejb20.deployer.DeploymentDescriptorException: Unable to load a class specified in your ejb-jar.xml: count.CountBean at weblogic.ejb20.deployer.MBeanDeploymentInfoImpl.initializeBeanInfos(MBeanDeploymentInfoImpl.java:548) at weblogic.ejb20.deployer.MBeanDeploymentInfoImpl.<init>(MBeanDeploymentInfoImpl.java:232) at weblogic.ejb20.deployer.EJBDeployer.prepare(EJBDeployer.java:1262) at weblogic.ejb20.deployer.EJBModule.prepare(EJBModule.java:477) at weblogic.j2ee.J2EEApplicationContainer.prepareModule(J2EEApplicationContainer.java:2847) at weblogic.j2ee.J2EEApplicationContainer.prepareModules(J2EEApplicationContainer.java:1534) at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContainer.java:1188) at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContainer.java:1031) at weblogic.management.deploy.slave.SlaveDeployer$ComponentActivateTask.prepareContainer(SlaveDeployer.java:2634) at weblogic.management.deploy.slave.SlaveDeployer$ActivateTask.createContainer(SlaveDeployer.java:2584) at weblogic.management.deploy.slave.SlaveDeployer$ActivateTask.prepare(SlaveDeployer.java:2506) at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:833) at weblogic.management.deploy.slave.SlaveDeployer.prepareDelta(SlaveDeployer.java:542) at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:500) at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:25) at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197) at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    [Deployer:149033]preparing application Count1 on myserver
    [Deployer:149033]failed application Count1 on myserver
    [Deployer:149034]An exception occurred for task [Deployer:149026]Deploy application Count1 on myserver.: Exception:weblogic.management.ApplicationException: prepare failed for Count1 Module: Count1 Error: Exception preparing module: EJBModule(Count1,status=NEW) Unable to deploy EJB: F:\Arul\EJB\Statefull\deploy\Count1.jar from Count1.jar: weblogic.ejb20.deployer.DeploymentDescriptorException: Unable to load a class specified in your ejb-jar.xml: count.CountBean at weblogic.ejb20.deployer.MBeanDeploymentInfoImpl.initializeBeanInfos(MBeanDeploymentInfoImpl.java:548) at weblogic.ejb20.deployer.MBeanDeploymentInfoImpl.<init>(MBeanDeploymentInfoImpl.java:232) at weblogic.ejb20.deployer.EJBDeployer.prepare(EJBDeployer.java:1262) at weblogic.ejb20.deployer.EJBModule.prepare(EJBModule.java:477) at weblogic.j2ee.J2EEApplicationContainer.prepareModule(J2EEApplicationContainer.java:2847) at weblogic.j2ee.J2EEApplicationContainer.prepareModules(J2EEApplicationContainer.java:1534) at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContainer.java:1188) at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContainer.java:1031) at weblogic.management.deploy.slave.SlaveDeployer$ComponentActivateTask.prepareContainer(SlaveDeployer.java:2634) at weblogic.management.deploy.slave.SlaveDeployer$ActivateTask.createContainer(SlaveDeployer.java:2584) at weblogic.management.deploy.slave.SlaveDeployer$ActivateTask.prepare(SlaveDeployer.java:2506) at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:833) at weblogic.management.deploy.slave.SlaveDeployer.prepareDelta(SlaveDeployer.java:542) at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:500) at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:25) at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197) at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170) .

    Give me the solution to solve this.Manners cost so little and usually encourage helpfulness in others.

  • Could not run XML Explorer jar file

    Dear Java Experts,
    I need to debug some xhtml document but could not find a decent working free xhtml explorer around. The xmlassert-full.jar downloaded from http://sourceforge.net/projects/xpe/files%2Fxmlassert/
    could not be run with the following error:
    JAVA_HOME=C:\Program Files\Java\jdk1.7.0_03
    OS=Windows_NT
    Path=C:\Program Files\Java\jdk1.7.0_03\bin;...
    C:\>java -jar xmlassert-full.jar
    no main manifest attribute, in xmlassert-full.jarSimilarly, xpathexplorer0.1.3.zip from http://www.antepedia.com/detail/p/282834.html consisted of source code and require further instruction to
    compile it properly.
    I am running Java 7.x, Netbeans 7.2 on Windows XP / 7 platforms.
    Your advice on how to get either of these XHTML / XML explorer tools would be much appreciated.
    Thanks in advance,
    Jack

    Hi,
      Finding the jars for compilation is one issue that is time consuming... there are some tools which will help us find jars at ease.
      Jar class finder is one such a tool. 'Reference 1' tells you where to find the tool and 'Reference 2' tells you how to integrate with NWDS.
      reference 1: JAR Class Finder
      reference 2: Using JAR Class Finder
    Hope that helps.
    Regards,
    S.Divakar

  • How to run our own jar files on Nokia 3100

    Hi,
    I am new to J2me.
    I have written an J2me application using CLDC1.1
    and MIDP 2.0 it works well on emulator but
    when i tried to run it on device(Nokia 3100) it displays an error "Invalid File"
    please answer my question as soon as possible

    Look at this link http://www.j2mepolish.org/devices/Nokia/3100.html and check to see if you aren't using some API which is not supported by your Nokia 3100 phone, or if the jar size is to big, stuff like that.
    Also, use a Nokia emulator for the Series 40 to test and see if it works.
    Mihai

Maybe you are looking for

  • How to print selected cells in numbers

    Does anyone know how to print selected cells in a Numbers spreadsheet, rather than printing the entire sheet? Also, how to save the selected cells as a pdf file without saving the irrelevant cells?

  • Paid apps do not show up on my iphone 3 after restore

    after i restored my iphone 3g the paid apps don't show up on the screen however, itunes and the app store say that they are downloaded also, in the iphone setting it shows settings for beejive and facebook they just seem to not show up, as if minimiz

  • Line items join in debit note preview

    Hi gurus! Hope you can guide me to solve this issue. A user in Sales is creating a Debit Note with two items, those items have the same price but a slightly different description and for some reason when we preview the document what we get is just 1

  • Multiselect drag and drop in ADF

    Hi, Is there any way I can implement multi select drag and drop in ADF. Currently I have a UI where I have several cards. Each card is built using panelStretchLayout and I can drag and drop each card. The requirement is to be able to select multiple

  • I lost Adobe Acrobat X Standard when I restored my system. How can I reinstall it?

    I lost Adobe Acrobat X Standard when I restored my system. How can I reinstall it and activate it? It came already installed (OEM) with my new DELL PC. I do have a serial-number.