Can anyone explain how they made this Jar file

Hi all,
I have searched the forum without luck. Lots of people asked questions about protecting their jar files but almost everyone said to either use exe file or use obfuscators.
But how can I make my jar so it is not possible to open it or when you try to open it you get nothing.
For eg. jar -tvf myjar.jar returns nothing and no error message.
I am also going to go one step ahead and give you an example of such a jar file you can download from the net to check it out yourself what I mean.
Go to the following site and download the exe file by clicking on the download cluster link
http://support.novell.com/servlet/filedownload/pub/drsapuserir1.exe
Open command prompt run the exe....accept the license and it should extract couple of files one of which is a jar file called sapusershim.jar
Try to open it with winrar, winzip or jar utility. You won't be able to. But I know for sure the jar is not corrupted because I use it in my application at work. This is not the only example of such jar file I have experienced.
So now we all know it's possible. But I would really like to know how.
Regards,
Hiten.

By definition, if the jar utility program won't operate correctly on the jar, it is corrupted in some manner and no longer standard.

Similar Messages

  • Can anyone explain how to create this effect in Deamweaver and Fireworks?

    This site was oriinally done in dreamweaver - but the shadow
    effect was done
    outside of Dreamweaver. When I save to html and load into
    Dreamweaver it
    makes no sense to me.
    Can anyone explain how to create this effect in Deamweaver
    and Fireworks?
    http://www.fundflowsystems.com/test.php
    Thanks in advance,
    Joe

    Thank you so much...
    You is da bomb!
    "Murray *ACE*" <[email protected]> wrote
    in message
    news:[email protected]...
    > Yes - a blank (completely blank) page.
    >
    > --
    > Murray --- ICQ 71997575
    > Adobe Community Expert
    > (If you *MUST* email me, don't LAUGH when you do so!)
    > ==================
    >
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    > ==================
    >
    >
    > "Ken Binney" <[email protected]>
    wrote in message
    > news:[email protected]...
    >> Murray, one more favor if you would be so kind...
    >> Do you recall how this page degraded in Safari?
    >>
    >>
    http://www.binney.us/table-allcode.htm
    >>
    >>
    >> "Murray *ACE*"
    <[email protected]> wrote in message
    >> news:[email protected]...
    >>> Nope. Sorry. You need a Mac.
    >>>
    >>> --
    >>> Murray --- ICQ 71997575
    >>> Adobe Community Expert
    >>> (If you *MUST* email me, don't LAUGH when you do
    so!)
    >>> ==================
    >>>
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >>>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>>
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    >>> ==================
    >>>
    >>>
    >>> "Ken Binney"
    <[email protected]> wrote in message
    >>> news:[email protected]...
    >>>> Thanks Murray...
    >>>>
    >>>> Is there a way I can test for Safari on my
    PC XP ?
    >>>>
    >>>> "Murray *ACE*"
    <[email protected]> wrote in message
    >>>> news:[email protected]...
    >>>>> Fails in Safari, Ken.
    >>>>>
    >>>>> --
    >>>>> Murray --- ICQ 71997575
    >>>>> Adobe Community Expert
    >>>>> (If you *MUST* email me, don't LAUGH
    when you do so!)
    >>>>> ==================
    >>>>>
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >>>>>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>>>>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>>>>
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    >>>>> ==================
    >>>>>
    >>>>>
    >>>>> "Ken Binney"
    <[email protected]> wrote in message
    >>>>>
    news:[email protected]...
    >>>>>> Here is a solution requiring NO
    images.
    >>>>>> The CSS and the Javascript can
    easily made remote the page
    >>>>>>
    >>>>>> <!DOCTYPE HTML PUBLIC
    "-//W3C//DTD HTML 4.01 Transitional//EN"
    >>>>>> "
    http://www.w3.org/TR/html4/loose.dtd">
    >>>>>> <html>
    >>>>>> <head>
    >>>>>> <title>Shadow</title>
    >>>>>> <meta http-equiv="Content-Type"
    content="text/html;
    >>>>>> charset=iso-8859-1">
    >>>>>> <script
    type="text/javascript">
    >>>>>> var depth = 6 // in pixels
    >>>>>>
    >>>>>> // addLoadEvent t
    >>>>>> function addLoadEvent(func) {
    >>>>>> var oldonload = window.onload;
    >>>>>> if (typeof window.onload !=
    'function') {
    >>>>>> window.onload = func;
    >>>>>> } else {
    >>>>>> window.onload = function() {
    >>>>>> if (oldonload) {
    >>>>>> oldonload();
    >>>>>> }
    >>>>>> func();
    >>>>>> }
    >>>>>> }
    >>>>>> }
    >>>>>>
    >>>>>> addLoadEvent(function() {
    >>>>>>
    >>>>>> var a = document.all ? document.all
    >>>>>> document.getElementsByTagName('*');
    >>>>>> for (var i = 0;i < a.length;i++)
    >>>>>> if (a
    .className == "shadow") {
    >>>>>> for (x = 0;x < depth;x++) {
    >>>>>> var newSd =
    document.createElement("DIV")
    >>>>>> newSd.className = "shadow2"
    >>>>>> newSd.style.background = a.id
    >>>>>> newSd.style.width = a
    .offsetWidth + "px"
    >>>>>> newSd.style.height =
    a.offsetHeight + "px"
    >>>>>> newSd.style.left = a
    .offsetLeft + x + "px"
    >>>>>> newSd.style.top = a.offsetTop +
    x + "px"
    >>>>>> document.body.appendChild(newSd)
    >>>>>> }
    >>>>>> }
    >>>>>> }
    >>>>>> }
    >>>>>> );
    >>>>>>
    >>>>>> </script>
    >>>>>> <style>
    >>>>>> .shadow {
    >>>>>> border: 1px solid silver;
    >>>>>> padding: 2px;
    >>>>>> font: 10pt arial;
    >>>>>> position: relative;
    >>>>>> display: inline;
    >>>>>> background: white;
    >>>>>> z-index: 100
    >>>>>> }
    >>>>>> .shadow2 {
    >>>>>> overflow: hidden;
    >>>>>> position: absolute;
    >>>>>> filter: alpha(Opacity=15); /* modify
    to change the shade
    >>>>>> solidity/opacity, same as below */
    >>>>>> opacity: 0.1; /* firefox 1.5 opacity
    >>>>>> -moz-opacity: 0.2; /* mozilla
    opacity */
    >>>>>> -khtml-opacity: 0.1; /* opacity */
    >>>>>> z-index: 10
    >>>>>> }
    >>>>>> </style>
    >>>>>>
    >>>>>> </head>
    >>>>>>
    >>>>>> <body>
    >>>>>> <table width="800" border="0"
    align="center" cellpadding="0"
    >>>>>> cellspacing="0" class="shadow"
    id="#000000">
    >>>>>> <tr>
    >>>>>> <td> </td>
    >>>>>> <td> </td>
    >>>>>> <td> </td>
    >>>>>> </tr>
    >>>>>> <tr>
    >>>>>> <td> </td>
    >>>>>> <td> </td>
    >>>>>> <td> </td>
    >>>>>> </tr>
    >>>>>> <tr>
    >>>>>> <td> </td>
    >>>>>> <td> </td>
    >>>>>> <td> </td>
    >>>>>> </tr>
    >>>>>> <tr>
    >>>>>> <td> </td>
    >>>>>> <td> </td>
    >>>>>> <td> </td>
    >>>>>> </tr>
    >>>>>> <tr>
    >>>>>> <td> </td>
    >>>>>> <td> </td>
    >>>>>> <td> </td>
    >>>>>> </tr>
    >>>>>> </table>
    >>>>>> </body>
    >>>>>> </html>
    >>>>>>
    >>>>>>
    >>>>>>
    >>>>>> "Joe"
    <[email protected]> wrote in message
    >>>>>>
    news:[email protected]...
    >>>>>>>
    >>>>>>> This site was oriinally done in
    dreamweaver - but the shadow effect
    >>>>>>> was done outside of Dreamweaver.
    When I save to html and load into
    >>>>>>> Dreamweaver it makes no sense to
    me.
    >>>>>>>
    >>>>>>> Can anyone explain how to create
    this effect in Deamweaver and
    >>>>>>> Fireworks?
    >>>>>>>
    >>>>>>>
    http://www.fundflowsystems.com/test.php
    >>>>>>>
    >>>>>>> Thanks in advance,
    >>>>>>>
    >>>>>>> Joe
    >>>>>>>
    >>>>>>
    >>>>>>
    >>>>>
    >>>>>
    >>>>
    >>>>
    >>>
    >>>
    >>
    >>
    >
    >

  • In the latest upgrade for iMovie 11' there is no "export to QuickTime" or other way to set your preferred export settings? can anyone explain how to do this now?

    In the latest upgrade for iMovie 10' there is no "export to QuickTime" or other way to set your preferred export settings? can anyone explain how to do this now?

    Export to Quicktime file in imoie 10 is explained here:
    http://help.apple.com/imovie/mac/10.0/#move6e0cb2ad
    Geoff.

  • Ok can anyone explain how to create this algorithm?

    Thanks very much to Jos for helping me with my previous question, but unfortunatly I now have dif algorithm that I again cannot figure out. Here is the question:
    What is the algorithm for the following?
    I have three locations _,_,_
    The first can have 0-2,
    The second can have 0-4,
    The third can have 0-3
    I need to be able to generate the following list:
    000
    001
    002
    003
    010
    011
    012
    013
    020
    021
    022
    023
    030
    031
    032
    033
    100
    101
    102
    103
    110
    ..and so on.
    Can anyone explain how this can be done?

    Works for any length and any digit size from 0 to 9
        public static void main(String[] args) {
            List combinations = generateNumbers(new int[]{2, 4, 3});
            System.out.println(combinations);
        public static List generateNumbers(int[] limits) {
            int combinations = 1;
            for (int j = 0; j < limits.length; j++)
                combinations *= limits[j] + 1;
            List list = new ArrayList();
            for (int j = 0; j < combinations; j++) {
                String s = "";
                int n = j;
                for (int k = limits.length - 1; k >= 0; k--) {
                    int digit = n % limits[k];
                    n /= limits[k];
                    s = digit + s;
                list.add(s);
            return list;
        }

  • New to photoshop, looking for advice on creating a stencil design, can anyone explain how to do this

    Heya,
    So I'm hoping to get back into photoshop, my knowledge at the moment is pritty minimal, but i'm going to start learning how to use it again.
    I'm new to this forum and don't intend to come on here often for advice but i hope that someone would be kind enough to point me in the direction that i'm looking for, i would be very grateful.
    Firstly, i haven't yet decided which adobe photoshop product is best suited for what i'm looking for and i aim to go and explore the trials first to find out.
    I'm looking to create designs with software that doesn't really have any limits in terms of creating designs.
    I was wondering if someone could give me some links to a tutorial or something that explains how to create the stencilling effect in the image that is seen as a tree with a cityscape in the background, and possibly the other effects seen on the t-shirt. I know it might be a lot to ask but it would really mean a lot if someone could explain how you create effects like this.
    Here's the image:http://www.gifts.com/products/Kohls/Mudd-Tree-Tee?p=6886:1945256129:35
    I know that the image is small, it was the best i could currently find, i hope that you can still see it well enough.
    Thank you in advance
    I really appreciate it!!

    First you may want to google »photoshop tutorial distresssed«.
    As for combining images like that a combination of Blend If-settings (one can split the handles by alt-click-dragging them)), Layer Groups set to Blend Modes other than Pass Through and Grtadient Maps may be employed to maintain high editability.
    One could also just use the images as Layer Masks for Solid Color Layers (and use Levels or Curves to get the intended contrast), though.

  • Certain websites i.e.google, yahoo, or other search engines are not found in my server. Why? They were last week. I can only access different countries' google search engines. Error 404 comes up repeatedly. Can anyone explain how to fix this?

    search engines and other websites are not found in my server although they were about a week ago. Now Error 404 pops up every time I try to access the websites or search engines. I am not entirely sure when it started exactly, but if there is a way to fix it, I would be very glad to hear it.

    Do a malware check with a few malware scan programs.<br />
    You need to use all programs because each detects different malware.<br />
    Make sure that you update each program to get the latest version of the database.<br />
    *http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    *http://www.superantispyware.com/ - SuperAntispyware
    *http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    *http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    *http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    See also "Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked and [[Searches are redirected to another site]]
    See also http://kb.mozillazine.org/Error_loading_websites

  • So confusing - can anyone explain how to set this up

    I'm a long time Mac user, ical user, mac Mail user, Mobile Me user, iPhone and now iPad user. I have a Work and Personal Calendar in iCal. Whenever this new MobileMe and iCal came out, nothing works as I think it should. My calendars are on my mac and show up on my devices but I can't for the life of me figure out how to invite via my work address and accept invites again coming through my work email.
    I've given up trying to fix it and would probably just start over but here's the thing. I don't know how this is suppose to work or be setup.
    Here's what I want to do and I'm hoping someone could tell me the best setup...
    I need my invites to go out with my work email account setup in Mail.
    I need to have a separate work and personal calendar
    I need to have my calendar show up on my iphone, ipad and my mac (I don't care about online mobileme)
    I need to be able to accept invites that come in from my work email account (not mobileme)
    I need to be able to add events via my iphone, ipad and mac ideally via push
    I'm willing to nuke my entire setup if I can import in my existing calendars or at least the individual events.
    Anyone there that can give me some direction? Thanks in advance.

    Thanks for the pointer this did end up answering my question since it was the button at the bottom that enabled it in the end. Now I can share pics with others.

  • Can anyone explain how to fix this? The server responded with "502" to operation CalDAVAccountRefreshQueueableOperation.

    I repeatedly get this error message for iCal whenever I am on line:
    The server responded with "502 to operation CalDAV Account refresh queaeable operation." How can this be fixed.

    Open up iCal Preferences and select the 'Accounts' tab.  What accounts do you have listed there?  Do you know what they all are?  Do you use them all?  If there are any that you know you don't use then remove them.  If you don't know what they are then unclick 'Enable this account' and see if it makes any difference, not just to the problem but to how you use iCal.  If you lose data then you need that account.  It might be worth noting the details of that account then removing it and recreating it.  You could also try changing the refresh frequency so that if you can't remove the problem totally then at least it won't bother you so often.

  • Call-inline-template can anyone explain how to use this?

    It's undocumented. I've used call-template before, I'm don't know when and how to use call-inline-template. Any advice would be much appreciated.
    thanks,
    Ike Wiggins

    Use it as
    <?template@inlines:ORACLE?> (ORACLE VS MICROSOFT)<?end template?>
    Inline means , it will be placed in same line. and not after carriage returns

  • Recently updated Numbers to Version 3.5.2 and now also seem to have Numbers Version 2.0 on my launchpad? Can anyone explain how this has happened - how do I get rid of it?

    Recently updated Numbers to Version 3.5.2 and now also seem to have Numbers Version 2.0 on my launchpad? Can anyone explain how this has happened - how do I get rid of it? Not able to move to Trash.

    What is strange however is that my iMac is only a few months old and they all were upgraded to V3.x just a few months ago - with all Apps for iWork removed at that time.
    Unless you did something specific to remove the old versions of the iWork apps (not advisable) then, as Wayne points out, they were not actually removed from your Mac, just moved into that subfolder within your main Applications folder.
    I originally downloaded Numbers 2.x from the App Store (i.e. didn't install from a disk). I still have it on my Mac.  But only Numbers 3.x appears in Launchpad.
    I don't know whether this will help, but in Mac App Store you might try clicking 'Account' under 'Quick Links' on the right, signing in with your password, and clicking the 'Reset' button to the right of 'Reset all warnings for buying and downloading'.  Sometimes the App Store gets a little confused. It's possible Launchpad may be taking its cue from the App Store in showing that old version of Numbers.
    By Launchpad I assume you really mean Launchpad, not the Dock.  I usually use the Dock. If that's what you're using too, then of course you can just drag the icon for the old Numbers off the Dock and it will vanish. (But the Numbers 2.3 application will still be there in that subfolder when you need it.)
    SG

  • My iPod was stolen and insurance company want it's serial number before replacing it. They have advised iTunes stores this information as a device connected to iTunes. Can anyone advise how I find this information?

    IiPod serial number stored in iTunes, can anyone advise how I find this information for my insurance company?

    Juliebathgate wrote:
    IiPod serial number stored in iTunes, can anyone advise how I find this information for my insurance company?
    Hi,
    If you have made a backup at any time of your iPod in iTunes, it should be in Preferences, under Devices tab.
    In iTunes
    Open iTunes Preferences.
    From the Preferences window click on the Devices.
    Once you are there you should see a list under "Device Backups:".
    Hover your mouse pointer to the device and in a little while it should display the serial number of the device (with an iPhone it will also display a phone number used with it and the IMEI code and with an iPad it will display the IMEI in addition to the serial number).
    A pircture of where it can be found: http://km.support.apple.com/library/APPLE/APPLECARE_ALLGEOS/HT4946/en_US/HT4946- devices-iphone-001-en.png

  • HT1665 I am trying to connect my Samsung Bluetooth device with my new Iphone 4S.  Can anyone explain how this is done?

    I am trying to connect my Samsung Bluetooth device to my new Iphone 4s. Can anyone explain how this is don?

    Which Samsung Bluetooth device?
    Please note that the iPhone will not pair with other phones, tablets, etc for purposes of file transfer.

  • Can anyone explain how SCCM 2012 applies its firewallpolicy.

    Can anyone explain how SCCM 2012 applies its firewall policy?
    My understanding is that it does this by altering the local policy on the client computers.
    What i am seeing though is that administrators can still change these options manually.
    But if i change the options locally sccm overides the option after a while and greys out the option so it can no longer be changed manually.
    How do i make sure that a user cannot simply open the windows firewall settings and turn of the firewall?
    Do i have to use GPO's?
    And is this working as intended?

    You're correct ConfigMgr uses local policies to manage everything, including the limited firewall options. If you really want to manage the Windows Firewall on a more detailed level you've got to look at GPO's, as they'll provide you with a lot more options.
    For an overview of the capabilities via ConfigMgr, see:
    https://technet.microsoft.com/en-us/library/hh508765.aspx
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude

  • Can anyone explain how to post the manual entries in BCS?

    Hi All,
    Can anyone explain how to post the manual entries in BCS?

    Dear,
    Depands on posting level.
    There is Manual Posting  under Consolidation Functions.
    Please creat document and task.
    Next you add this task for consolidation monitor. There is "Consolidation Monitor " and you choose Hierarchy task and add your task for manul data.
    In document you kind in mind: choose manula posting !!!!!!!!!!!!!!!!!!!!!  in page tab Propertis under Posting!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!.
    If you would like to entry in posting level 01 or 10, please choose Local currency and trasaction currency +- group currency.
    If you would like to entry in posting level 20 or 30, please choose Group currency.
    In SEM_BCS are posting level is very important. 
    Regards,
    anka

  • Can anyone explain how to download and upload TROY ECF fonts with SAP

    Can anyone explain how to download and upload TROY ECF fonts with SAP.I have downloaded ECF font from TROY wesite as TTF format. but it is not getting upload with SAP.please kindly help me on this issue..

    Hi,
    You can use the SE73 Transaction and upload your TTF files.
    Please check the link here for more details:
    http://help.sap.com/saphelp_nw70/helpdata/en/36/5b3438fd263402e10000009b38f8cf/frameset.htm
    Regards,
    Siddhesh

Maybe you are looking for

  • HP Laserjet 4V Printer will not connect to TC

    Under the print and fax preferences the 4V is visible in default and appletalk. However, when I try to add it the operation to connect "timed out". I've chosen "auto select" and the 4V driver under the print using dialog. It seems obvious the TC know

  • Problem with HP-UX extended procedures that use C++ Standard library

    I am experiencing a problem with using the C++ standard library on HP-UX inside my extended procedures. Here is the definition for the library and procedures: -bash-3.2$ more nuhash2.sql CREATE OR REPLACE LIBRARY xp_nuencryption_l AS '/home/jchamber/

  • Connecting iphone to PC hotspot

    Hello, I have iphone 5S.I have internet connection through LAN with my PC.I made it a hotspot and made internet sharing available.But when I switch ON wifi in iphone. my hotspot network with "No authentication" is detected.When I click on it to conne

  • Subcontracting and 311 Q

    Dear All, For subcontracting scenerio for excisable material we are planing to use movement type 311 Q. as per sap help. in material master we need to specify some indicator so that at the time of GRN system consumes the quantity from project stock .

  • FM FOR CREATING NEW CONDITION RECORDS FROM INPUT FILE

    Hello vikas, I need to develop a interface program FOR CREATING NEW CONDITION RECORDS FROM INPUT FILE. Is there ay function module to update or create the condtion records, if u have any example interface program to update conditions records please s