JarCreator, a tool for creating signed jar archives

Hello programmers around,
A little tool allowing Jar creation, code signing
and some other features is avaiable at
http://62.65.146.182/java/JarCreator.jnlp
(source code is in the Jar, you can extract it,
just locate the jar in the cache of WebStart)

location was false
http://62.65.146.182/java/applications/JarCreator.jnlp

Similar Messages

  • Sign jar archive

    Hi everybody!
    I hope that's the right forum :)
    I have a jar archive and i wan to sign it with jarsigner. The problem is, that I want to use a certificate and private key, that were not created with keytool.
    Both are in a pkcs12 file.
    Aaaaaaaaaaaand another question: If you change the content of a signed jar archive, the jar will not start anymore? Is that right?
    Thanks for help!

    If you change the content of a signed jar archive, the jar will not start
    anymore? Is that right?You sign a jar to make sure noone changes the content of the jar.
    Changing the content of the jar means you have to resign it.
    To convert your p12 to jks you can have a look at this:
    http://mark.foster.cc/kb/openssl-keytool.html

  • Does CS5 have tools for creating websites for mobile devices?

    Does DW CS5 have any built in tools for creating web pages for mobile devices, iPads, iPhones, etc?
    Thanks.

    This will go back to your other post about the CSS tables, it depends on how much you know.  CSS3 is a style language and while support is growing in Dreamweaver and within browsers it is taking some time so the more you understand the code the better off you will be.  With regards to HTML5 animations, you will find that no tool out there can do this easily outside of some Apple developer tools and if you are serious about programming to work with the iPhone/iPad you will want to sign up (registration is free) and download their developer tools.  Adobe has mentioned making some strides and trying to use their existing tools (ie: Flash) to help transition to HTML5 animations from Flash and Illustrator has also gained some HTML5 vector tools to help out.
    To find out more about what Adobe is doing for HTML5 there was a post made on John Nack's blog not too long ago that you might want to read over (and follow the links).
    http://blogs.adobe.com/jnack/2010/11/so-what-has-adobe-actually-done-for-html5-lately.html
    Dreamweaver is not going to hand you everything though.  To get the most out of it you have to put something into it.  It is easily the most advanced tool in the PHP and ColdFusion realms (ASP/.NET goes to Visual Studio).  But in order to do more and customize things to your needs, understanding the code is a must in the world of web design.

  • Tool for creating batch jobs

    Hello,
    I need to create a batch job, which is having round about 90--100 steps, so is there any tool, by which i can create this quickly?
    Please help me, this is little urgent.
    Thanks,
    Anand.

    Hi anand,
    CATT/ECATT is the best tool for creating batch jobs.
    For more information on how to use these tools, go through the below links.
    http://www.*********************/tutorials/secat.htm
    http://www.*********************/tutorials/scat.htm
    Regards,
    Bharath

  • Tools for creating executables

    I am on a look out for a installation development tool for windows.
    Requirements :Should be easy to use and update for patch release. It should automatically create desktop icons, do any registry entries if reqd, automatically install and launch JVM.
    I think most of you who develop applications in java must be using some or the other tool for creating executables. So can you send me some suggestions on products avaliable and their popularity.

    Thanx for your response. I will go thro' that site

  • Tool to create XML definition, a tool for creating XSD

    I need a tool to create XML definition, a tool for creating XSD.
    I was trying to do this with Oracle packages. But again there are some problems. Could you tell me which one, I should use?
    Can I do it with the Oracle SQL Developer?

    Hello,
    i get the error message and I don't know, what I can do
    The user have the permissions to use DBMS_LOB package.
    Is it the sofware, do I need a license version tool for XML generation
    SQL> select DBMS_XMLSCHEMA.GENERATESCHEMA( 'HR', 'EMP_DATA' )
    2 from dual;
    select DBMS_XMLSCHEMA.GENERATESCHEMA( 'HR', 'EMP_DATA' )
    ERROR at line 1:
    ORA-00904: "DBMS_XMLSCHEMA"."GENERATESCHEMA": invalid identifier

  • PXE booting - any tool for creating image?

    Hi All,
     can anybody help me with PXE bootin'? I need a tool for creating boot image...
     Thanx
       duhaCZek

    You can use the install Shild to create the installation package

  • Creating one jar archive out of several jar archives

    I have a problem with jar files. What i am trying to do is:
    Build one jar archive out of several jar archives. But i always get a ZipException. I opened a JarOutputStream and tried to write JarEntry objects to the stream by using the putNextEntry() method.
    here my code:
    // finalJar is the file to with i want to write
    // final Manifest is the manifest for that jar archive
    try {
    fout = new FileOutputStream (finalJar);
    jout = new JarOutputStream(fout,finalManifest);
    } catch (IOException io) { // log }
    // curJar ... is the current jar archive as JarFile Object
    Enumeration entries = curJar.entries();
    while (entries.hasMoreElements()) {
    JarEntry curEntry = (JarEntry) entries.nextElement();
    try {
    jout.putNextEntry(curEntry);
    } catch (ZipException ze) { // log}
    I get this error: (for every entry the same error !)
    java.util.zip.ZipException: invalid entry size (expected 6010 but got 0 bytes)
    at java.util.zip.ZipOutputStream.closeEntry(ZipOutputStream.java:188)
    at java.util.zip.ZipOutputStream.putNextEntry(ZipOutputStream.java:116)
    at java.util.jar.JarOutputStream.putNextEntry(JarOutputStream.java:90)
    at GenerateData.createFinalJARArchive(GenerateData.java:361)
    at GenerateData.run(GenerateData.java:87)
    at GenerateData.main(GenerateData.java:72)
    I hope you can help me
    Thanks in advance
    Stefan Siegl

    while((c=in.read())>=0) jout.write(c);I guess you mean with '>' the bigger as '>' char
    .right ?Yes, the "greater than" sign.
    Just a standard stream copying procedure.
    >
    I use your code and set the compression to compressed
    jout.setMethod(ZipOutputStream.DEFLATED);
    jout.setLevel(8);
    jout.putNextEntry(curEntry);
    what i get is this exception:
    java.util.zip.ZipException: invalid entry compressed
    size (expected 787 but got 786 bytes)
    at
    java.util.zip.ZipOutputStream.closeEntry(ZipOutputStrea
    .java:193)
    at
    at
    at
    t
    GenerateData.createFinalJARArchive(GenerateData.java:51
    at GenerateData.run(GenerateData.java:89)
    at GenerateData.main(GenerateData.java:73)
    So there is one byte missing! But i dont know where
    ?!It seems one can't reuse the entry.
    Try to create a new one:
    //jout.putNextEntry(curEntry);
    jout.putNextEntry(new ZipEntry(curEntry.getName()));And I think it's a bad idea to try to change
    the compression level between the entries.
    At list untill you haven't got it working somehow.
    >
    But i finally want to do is to store the entries (and
    the data) uncompressed but if i read byte by byte
    there would not a uncompression, would it ?No. You read the data uncompressed.
    here I also got an exception, indicating that the read
    size was invalid.
    Exception when doing it like this:
    jout.setMethod(ZipOutputStream.STORED);
    jout.setLevel(0);The setLevel(0) is redundant here.
    jout.putNextEntry(curEntry);
    is:
    java.util.zip.ZipException: invalid entry compressed
    size (expected 2805 but got
    6015 bytes)
    at
    at
    at
    t
    java.util.zip.ZipOutputStream.closeEntry(ZipOutputStrea
    .java:193)
    at
    at
    at
    t
    GenerateData.createFinalJARArchive(GenerateData.java:51
    at GenerateData.run(GenerateData.java:89)
    at GenerateData.main(GenerateData.java:73)
    I hope someone can help me with that
    Regards
    Stefan Siegl
    So my variant is:
    jout.setMethod(ZipOutputStream.STORED);
    while (entries.hasMoreElements()) {  
       JarEntry e=(JarEntry) entries.nextElement();  
       //write the appropriate entry to jout
       jout.putNextEntry(new ZipEntry(curEntry.getName()));
       //copy the actual data to jout  
       InputStream currIn=curJar.getInputStream(e);  
       int c;  
       while((c=in.read())>=0) jout.write(c);  
       currIn.close();
    }Hope we finally took over.

  • Creating WAR/ JAR archives

    Hi, This appears to be a silly question but would appreciate any help on this.
    I am new to WEblogic Workshop and have created some portal appns. I want to create
    a WAR archive and also a JAR archive in another case. However the build menu of
    the workshop only provides an option for generating a EAR archive.
    I perused the help topics but couldnt find the soln.. Would appreciate any help
    on this.
    I also have another question regarding building .class files. When I add a new
    Java file to a Project, How can I compile only that particular class ?? When I
    try to compile the file, the entire project gets compiled taking huge amt of time..
    thnx in adv,
    sg

    SG,
    Unfortunately there is no option to generate .war files from within workshop in the current release.
    Workshop uses a split source directory structure when building projects.
    Regarding the question on Java class compilation what type of project are you adding the java source file to ?
    Cheers
    -Raj

  • What are all the different methods/tools for creating animations that work in IBA?

    I've been developing HTML5 animations in Sencha and attempting to use the HTML widget in IBA.  It's not going as seamless as I was hoping, and I was wondering if there are better methods/tools to create animations for IBA.  In my opinion, the primary limitation is not in Sencha itself, it's more in the widget functionality in IBA. 
    I want the entire page to be an animation and drive the user experience, basically.  Currently in IBA, the widget allows for successfully importing an HTML5 animation, but in more as a complementary role to the page instead of the primary content. 
    Any ideas?

    Thanks Fabe - I agree 100%.  However, in order to make fully dynamic books, animations can play a great role in bringing a book to life.  (Admittedly, I may have to just build an app for what I'm trying to do)
    Anyone else have any thoughts?

  • Any tool for creating connectors?

              Hi.
              Does BEA have a tool (in-house or third-party) that can be used for creating connectors?
              And at what cost?
              Thanks,
              - deepak
              

    You can use the install Shild to create the installation package

  • Is Dreamweaver an appropriate tool for creating a Help system?

    Hi,
    I have the full Adobe Creative Suite and I'm looking to create a Help system. Is Dreamweaver an appropriate tool for this, or is there another tool that would be better? I don't have Robohelp.
    Robyn

    Hi Robyn
    Robohelp and most of the other help systems would be like splitting a nut with a sledgehammer, for what you describe.
    You are basically talking about a search system on specific topics, for which Dreamweaver is an adequate tool, it may be worth while incorporating one of the 'smaller' open source help system into your site, in order to achieve your goal.
    Your comment on posting to the 'indesign' forum is understandable but not recommenced (there is a great difference between dtp (classic graphic design) and web design / development), especially if you intend to incorporate your current 'user guide' into a web site. Any help system both for a program that you install on your computer or supply as a web site 'help' system can be constructed as a searchable html page (many are html pages now), and you can even use the a major search engine to do this for you, (providing you know how, of course). It is even possible to search pdf's, flash and audio, and provide then as a downloadable / online version as well if you so require.
    The one thing you did not say in your reply was how good your programming skills are, (if not very good, do you have someone who can do this for you), as this is what will limit your help / search system. But even here if you incorporate one of the search engines own search api into a basic web page they will index and search your site for you, both as a local search, and as a web search.
    Hope this helps, in some way.
    PZ

  • Tool for Creating Tracks per command line available?

    Hi all,
    for my master thesis I need to make up a development concept with the JDI.
    What I'm wondering is, is there any ability (maybe hidden option ) to create tracks per command line interface and connect them per command line?
    Another question which came to mind, I would like to control the DTR via the DTR command line tool, is there any option to do this, just without installing the Developer Studio IDE, as I only want to remote control the DTR via command line and don't need developer equipment on the server?
    Thanks for your help!

    Hi Matthias,
    tracks are stored in the Java database by CMS in its own format and when a buildspace is created on CBS that information is also stored in the Java databse in CBS' own format. Accessing the database directly is not a good idea as you would need additional information that is neither officially published nor supported and that may change.
    Regarding DTR client & IDE: Well, DTR doesn't know about tracks at all, it just stores the sources for track content. The "track" knowledge is part of CMS.
    The command line tool is only distributed with the IDE, but if you just copy the required libraries to the server (you had to edit the batchfile anyway, didn't you?) you do not need the full IDE installation.
    Regards,
    Marc

  • Is Dreamweaver the best tool for creating a review site with user ratings/reviews? CMS?

    Hello everyone,
    I am really wanting to develop an online gaming review website and have some Dreamweaver/Wordpress/CMS questions i am hoping you can all help me with, thank you in advance for your patience as i am new to site development.
    I am thinking of creating a review site which will involve me writing about 100 online gaming reviews, and then getting users to upload their comments/feedback, etc. Each of the reviews would be updated monthly with stats, performance, and other details. Each review would contain a text review, video review, and various images and screenshots. Integrating user-generated content will be a big factor.
    I am trying to de-confuse myself with all the prep work around making sure i have the right tools and technology i need to be successful. Many people tell me i should use Wordpress due to the nature of my site, or at least a combination of Wordpress and Dreamweaver - not sure how that would work exactly. I dont want to be too dependant on just Wordpress because i want to be sure my site can be customized and i grow and enable more advanted value for my site visitors. ...i would love to have a members only area at some point in the near future.
    Please see below for some questions running through my head:
    1. Do i need a seperate CMS tool? ...and which may be best considering the nature of my site?
    2. Should i use Wordpress instead? ...or a combination of Wordpress and Dreamweaver? - why should i use a combination of the two?
    3. SEO is a major factor - does that make a difference?
    4. My reviews will need to be updated monthly, so i will try to maximize the use of templates, etc. Do i need to create a dynamic site in Dreamweaver or will a CMS manage that?
    5. Which options are best to avoid as much as manual coding as possible
    Thank for you taking the time to read this, ...any tips/guideance would be appreciated.
    Thank you,
    Harps

    Short answer: You don't need Dreamweaver.  Simply install WordPress on your server and use it to build your site & add/edit content. 
    Star Ratings plug-in for WordPress
    http://wordpress.org/extend/plugins/gd-star-rating/
    WordPress Theme with Review Engine
    http://www.dailywp.com/review-engine-theme/
    Nancy O.

  • In-House Certificate Authority for Self Signed Jars in JRE1.8

    Hi,
    I am trying to get some assistance on a Java issue that Oracle Support are struggling with. I am using Oracle E-Business Suite and there is a note 1591073.1 advising on what to do to allow E-Business Suite to interoperate with the new security model of JRE 1.8
    The note effectively advises on 3 options –
    Option 1 - Purchase a Code Signing Certificate from a well known Certificate Authority ( already registered in their Root Certificates Key Store cacert ) and import it into the Key Store adkeystore.dat
    Option 2 - Purchase a Root Certificate from an unknown Certificate Authority, import it into the Key Store cacerts, then purchase a Code Signing Certificate from this Authority as per option 1
    Option 3 - Designate yourself as an In-House Certificate Authority by creating your own Root Certificate, importing into the Key Store cacerts and then creating yourself a Code Signing Certificate as this In-House Authority and importing into the Key Store adkeystore.dat
    Q1. I am trying to achieve option 3. However the Oracle note does not actually tell you how to create a Root Digital Certificate and Oracle support are struggling to answer – does anyone know how to do this ?
    Q2. How then do you create a Code Signing Certificate – Oracle seem to have a command ‘adjkey’ but I am not sure if this is what should be used and if so, how this maps my Root Certificate in the Key Store cacerts (given that there are also lots of other Root Certificates in cacerts belonging to all the well known Certificate Authorities ) to the Code Signing Certificate Key Store adkeystore.dat ?
    Any advice greatly appreciated,
    Jim

    Hi,
    For this issue, ensure you explicitly set the store for the certificate.
    Meanwhile, I would like to share the following article with you, I suggest you perform the steps to test it.
    Windows 8 Mail and Exchange using a self-signed certificate
    http://david.gardiner.net.au/2012/08/windows-8-mail-and-exchange-using-self.html.
    It also applies to windows 8.1.
    Additionally, I suggest you use other network to test it.
    If the issue persists, try to switch off SSL to see if it works.
    Note: Microsoft provides third-party
    contact information to help you find technical support. This contact information may change without notice. Microsoft does not guarantee the accuracy of this third-party contact information.
    Regards,
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

Maybe you are looking for