How to Include more than one jar files

My application uses more than one jar files. And all the jar files i am using are signed. when i include the jar files, i am including them in the resources section of the ".jnlp" file . The section of code looks like this:
<resources>
<jar href="utestfw.jar" main="true" download="eager"/>
<jar href="crimson.jar"/>
<jar href="jaxp.jar"/>
</resources>
<application-desc main-class="utestfw.ObjectBrowser"/>
The deployment of the application is successful. The jar file - "utestfw.jar" contains the application main class when the application is launched it works, but when i choose the feature which involves the classes of either "crimson.jar" or "jaxp.jar" , the application terminates and the webstart console and the application is closed automatically. Am i wrong in adding the jar files? what is the way to add more than one jar files to the ".jnlp" file.
Can anyone please help me?
-Aparna

I'll post u the jnlp file which i am using. To sign all the jars i've used the same alias ( a self signed certificate using keytool and jarsigner).Here is the jnlp file:
<?xml version="1.0" encoding="utf-8"?>
<jnlp spec="0.2 1.0"
codebase="http://127.0.0.1:8080/healthdec"
href="testTool.jnlp">
<information>
<title>Unit Test Manager </title>
<vendor>Sun Microsystems, Inc.</vendor>
<description>A minimalist drawing application along the lines of Illustrator</description>
<icon href="images/testing.gif"/>
<offline-allowed/>
</information>
<resources>
<j2se version="1.3+ 1.2+"/>
<jar href="utestfw.jar" main="true" download="eager"/>
<jar href="crimson.jar" main="false" download="eager"/>
<jar href="jaxp.jar" main="false" download="eager"/>
</resources>
<application-desc main-class="utestfw.ObjectBrowser"/>
<security>
<all-permissions/>
</security>
</jnlp>
Can u please look at the above code and suggest me where i am wrong. Thanks.
-Regards
Aparna

Similar Messages

  • How to open more than one RAW-File by drag&drop/doubleclick with CS2?

    Hello,
    is it possible to open more than one RAW-file from iPhoto with Photoshop's RAW-converter in just one single step? If I drag&drop my selection to my Photoshop-Icon, PS opens just the iPhoto-created library-JPGs of the RAW-files but not the RAWs itself (I've turned out the copyying of the imported photos to the iPhoto-library. Instead iPhoto seems to create a JPG for the library from every RAW I import). If I doubleclick a selection of RAWs in iPhoto just the doubleclicked RAW-File will be opened in Photoshop. Is it possible to select more than one RAW-file in iPhoto and get Photoshop to open all the selected RAWs but not the JPGs? It would make my work a lot easier... thank you.
    rockenbaby

    hello
    try selecting the photos that you want however many- go, File then Export.
    you can make all your file selections image size etc and then save them direct to your PS file.
    hope this helps.
    cjp

  • How to compile more than one .cpp file?

    Hi Folks!
    I'm really need help. Stuck with the simple thing: I need to compile more than one source code file into .SWC.
    It's fine with a single file typing:
    g++ source1.cpp -swc -o mylib.swc
    when I try to use
    g++ source1.cpp source2.cpp -swc -o mylib.swc
    source1.cpp is ignored, and source2.cpp is used.
    As result I'm getting error in SWF:
    Undefined sym: _main
        at cmodule.mylib::CLibInit/init()
        at test_fla::MainTimeline/frame1()
    Because source1.cpp skipped.

    I digged it.
    Just created makefile with lines
    all:
        g++ -c source1.cpp -o source1.o
        g++ -c source2.cpp -o source2.o
        g++ -swc -o mylib.swc source1.o source2.o;
    and run make.
    in docs I found that I can pass more than one .cpp file, but it won't work for Alchemy. However, if we compile .cpp one by one into .o files we can then link them together.

  • How can I reference more than one jar file

    hi, In an applet, I use
    Archive = "foo.jar" to reference this jar file.
    But how can I reference more than one file?
    Thanks.

    Suggestion: spend a few minutes reading the tutorials.
    http://java.sun.com/docs/books/tutorial/applet/appletsonly/html.html
    You can specify multiple archive files by separating them with commas:
    <APPLET CODE="myapplet.class" ARCHIVE="file1, file2"     WIDTH=anInt HEIGHT=anInt>
    </APPLET>

  • How to include more than one input ready rows in analyzer

    Hi Gurus,
            I have a requirement that, I need to have more than one input ready rows at the end of the query output in analyzer.
       Normally it will show only one row as input ready at end of the query result in any manual planning analyzer., But my requirement is to have multiple input ready rows in analyzer. Is it possible in workbook/analyzer?.
    Thanks,
    V.Senthil

    Hi Senthil,
    Have a look at the below thread.
    How to add new rows for input ready query in BEx analyzer
    Regards,
    Venkatesh

  • How to add more than one JSP file for a single JSPDYNPage component

    Hello Everyone,
                           I am creating one portal application which involves JSPDYNPage component, while creating this component one JSP file is also created. But i want one more JSP file for my application ...i.e- for the same JSPDYNPage component. can anybody tell me how to create one more JSP for the same component.
    Thanks
    Chetan Deshpande

    Hi Pooja,
                 I tried the way u said, but when i try to create it(i.e- right click on pagelet folder & then new---> other......the way u said.) it asks for JSP file name but finish button is disabled even after entering the JSP file name.....is it that i am doing something wrong....please guide me for this & one more thing it asks for folder name also ...where to store that file....but when i try to enter anything.It doesn't show or doesn't allow me to do so
    Thanks
    Chetan

  • Problem in loading more than one jar file in .jnlp

    Greetings
    Could someone help me I want two jar files in .jnlp
    I have copied ufnasoft.jar.jar and mysql-connector-java-3.1.10-bin.jar in current folder. Here is code for your consideration.
    <?xml version="1.0" encoding="utf-8"?>
    <jnlp spec="1.0+" codebase="http://192.168.0.100:8090/test" href="test.jnlp">
      <information>
        <title>Test</title>
        <vendor>Ufnasoft</vendor>
        <description>Ufnasoft Test</description>
        <description kind="short">Ufnasoft Test</description>
        <offline-allowed/>
      </information>
      <security>
        <all-permissions/>
      </security>
      <resources>
        <j2se version="1.4+"/>
         <jar href="ufnasoft.jar" main="true"/>
         <jar href="mysql-connector-java-3.1.10-bin.jar"/>
         </resources>
      <application-desc main-class="com.ufnasoft.gui.MainInterface"/>
    </jnlp>it gives following error:
    Unable to load resource: http://192.168.0.100:8090/test/mysql-connector-java-3.1.10-bin.jar
    I have JRE 1.5.0 on Windows 2000 machine.
    Best regards
    Younas Aamir

    What happens if you try:
    java -classpath <path to jar1>;<path to jar2> main_class
    on system 192.168.0.100?
    Can that work for you?

  • How to include more than one scan in the outgoing email

    ever so often I wish to scan several pages to be included in one outgoing email-how do I do that?

    4683,
    Welcome to the HP Community Forum.
    The following may help with the following caveat:  The document was written to explain how to create a combined scan.  It does not include emailing the output.
    Scan_Multiple_Documents-Combine
    NOTE Page 4 of the document:  Where it shows "Do Nothing", you would want to CHECK "email the file(s)".
    Click the Kudos Thumbs-Up to show you appreciate the help.
    I am pleased to provide assistance on behalf of HP. I do not work for HP. 
    Click Accept as Solution when the Answer provides a Fix or Workaround!
    Kind Regards,
    Dragon-Fur

  • How to run more than one .xls file one by one in sequence order through inf

    Hi All,
    i have an requirement in informatica like, i need to call Sequence of Excel files ie(contact1.xls,contact2.xls ...etc ) through the infomratica mapping->workflow. this number of .xls files also not constant ie it might be 5 today , for the next run it might be 10..etc. its like For each loop kind of . once it loaded one by one .xls data into table the loaded file need to moved to Archive Folder .How can i achieve this with informatica mapping and informatica work flow?
    thanks in advance

    hello
    try selecting the photos that you want however many- go, File then Export.
    you can make all your file selections image size etc and then save them direct to your PS file.
    hope this helps.
    cjp

  • How to add more than one dump file in dba_datapump pls...........

    create or replace procedure EXPDP is
    l_dp_handle NUMBER;
    l_last_job_state VARCHAR2(30) := 'UNDEFINED';
    l_job_state VARCHAR2(30) := 'UNDEFINED';
    l_sts KU$_STATUS;
    XDAY VARCHAR2(50);
    BEGIN
    l_dp_handle := DBMS_DATAPUMP.open(operation => 'EXPORT', job_mode => 'SCHEMA', remote_link => NULL,
    job_name => 'EMP_EXPORT', version => 'LATEST');
    DBMS_DATAPUMP.add_file(handle => l_dp_handle, filename => 'd1.dmp','d2.dmp', directory => 'INS_DUMP');
    DBMS_DATAPUMP.add_file(handle => l_dp_handle, filename => 'SCOTT.log', directory => 'INS_DUMP',
    filetype => DBMS_DATAPUMP.KU$_FILE_TYPE_LOG_FILE);
    DBMS_DATAPUMP.metadata_filter(handle => l_dp_handle, name => 'SCHEMA_EXPR', value => '= ''SCOTT''');
    DBMS_DATAPUMP.start_job(l_dp_handle);
    DBMS_DATAPUMP.detach(l_dp_handle);
    END;

    Hi Pooja,
                 I tried the way u said, but when i try to create it(i.e- right click on pagelet folder & then new---> other......the way u said.) it asks for JSP file name but finish button is disabled even after entering the JSP file name.....is it that i am doing something wrong....please guide me for this & one more thing it asks for folder name also ...where to store that file....but when i try to enter anything.It doesn't show or doesn't allow me to do so
    Thanks
    Chetan

  • How to Include More Than One Font and Font Color Within a Fluid Grid Div Tag?

    Using CSS code, I can make all the words within a fluid grid div tag the same font, font size, and font color, but how do I make a few of the words different?

    You can style the basic text and heading selectors with CSS:
    p { }
    h1 { }
    h2 { }
    h3 { }
    h4 { }
    etc...
    And you can make classes:
    .red {color:red}
    .highlight {background-color:yellow}
    Then apply classes to your text or sections of it using the HTML properties panel.
    <div>
         <p>This is a default paragraph style.</p>
         <p class="red">This is red.</p>
         <p class="highlight">This is highlighted.</p>
         <p>Default style with <span class="red highlight">red, highlighted text</span> and normal text.</p>
    </div>
    Incidentally, this will work in any layout.
    How to Develop with CSS?
    http://phrogz.net/css/HowToDevelopWithCSS.html
    Nancy O.

  • How to include more than 12 files in a new PDF document?

    I have a Adobe PDF Pack, and when I click on crating a new PDF document, they say that I cannot combine more than 12 files...!
    And I want to have a document of hundreds of pages!
    Someone can help me?
    Pleeeeaaase!!!!!!

    Hi Hisami,
    Thank you very, very much!
    It is very useful what you explain.
    One only question, since I have the trying version of Acrobat Pro: how many files can you combine at the time with it?
    May be it depends on the files size.
    I tried yesterday to combine 50 files at the time and it just blocked everything...
    Thanks a lot!
    Have a very good day.
    Henric
    Henric Caldas
    30 rue de Belleville
    75020 Paris
    Home : +33.1.46.36.04.55
    Mobile : +33.6.59.08.02.27
    [email protected]
    Le 28 janv. 2014 à 22:48, "H.Spector" <[email protected]> a écrit :
    Re: How to include more than 12 files in a new PDF document?
    created by H.Spector in Adobe PDF Pack (formerly CreatePDF) - View the full discussion
    To combine more than 12 files into a single PDF file:
    1. Combine file 1 to file 12 then name it (combined 1 for example)
    2. Combine file 13 to file 24 then name it (combined 2 for example)
    3. Keep doing those steps #1 and #2 then combine "combined 1, Combine 2.....Combine 12).
    Another way is to use Adobe Acrobat. Please download Acrobat XI Pro Trial version from www.adobe.com or you can upgrade your subscription to Acrobat Plus(please see more information about Acrobat Plus subscription at https://www.acrobat.com/acrobatplus/en/home.html?trackingid=JPZKR).
    In Acrobat XI Pro:
    1. Launch Acrobat
    2. Select "File" menu > Create > Combine Files into a Single PDF
    3. Click "Add Files" button at top left corner
    4. After adding your files click "Combine" button at the bottom of the dialog.
    Thank you
    Hisami
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/6062261#6062261
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/6062261#6062261
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/6062261#6062261. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Adobe PDF Pack (formerly CreatePDF) at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • How to transfer more than one files over internet at once?

    hi, friends,
    I just wonder how to transfer more than one files from one computer to another over internet at once. Not using ftp. pls any one give me the solution.

    This isn't hard to do, but it depends on your exact need. I did something very similar to let me upload all my mp3 file from home to work using sockets (don't have the code anymore..).
    What I did was implement a "pull" approach rather than a "push" approach. In other words, everytime my server got a request from a client, it served up the next file. It didn't know or care that the client was always the same.
    If you can set up a server to serve one file when a client attaches, then basically just put that code in a loop.
    If this doesn't meet you need, it might still be helpful as a starting point...

  • How can I put more than one source file when I am creating my installer from LV 7 Express

    Hi,
    I am creating my installer for my application and I would want to add more than one source file at once, how could I do it?
    Thanks,
    ToNi.

    Hi,
    I'm referring to the first executable. In other words, I have my application and I want to build and executable of it. Then I go to "Tools->Build application..." and then in the source files tab I can add my vi files but I want to add more than vi at the same time (at once) and not one by one. How can I do it?
    And my second question is: When I make the installer for my application I save the configuration in a build Script file (.bld) in order to use it whenever I want. Then If from another computer different from the one where I generate the .bld file, I load it, LV tells me that something is wrong (LV says there are some errors in some VIs but It doesn't tell me what files are). Why?
    Thanks in advance,
    ToNi.

  • How do I attach more than one PDF file to an email

    How do I attach more than one PDF file to an email

    You cannot do that on iOS when you are using the Share feature from Reader.

Maybe you are looking for