How do I find out which library containing Jps-api.jar and Jps-internal.jar

In project properties->Libraries and Classpath option, I need to add j2ee\home\Jps-api.jar and j2ee\home\Jps-internal.jar but I am not sure which library contains them? Is there a easy way to find what jar files are contained in each Libraries?
I could have added the jar files directly, but the project will be shared among a team and the path to jar files will be different for everyone.
Thanks.

The "BC4J Security" library contains the libs to which you refer.
--Ric                                                                                                                                                                                       

Similar Messages

  • My itunes says that my iphone is synced with another itunes. It gives a name but how do i find out which library it is? I working with 2 computers trying to get music off of one and on to my new one.

    My itunes says that my iphone is synced with another itunes. It gives a name but how do i find out which library it is? I working with 2 computers trying to get music off of one and on to my new one.

    See Recover your iTunes library from your iPod or iOS device and this migrate iTunes library post.
    tt2

  • How do I find out which computer I sync music, videos and photos on?

    I am about to update my iPhone to iOS 4.2 but it tells me that to preserve my media, I should apply this update on "the computer where you sync music, videos and photos". How do I find out what that computer is?

    You should be regularly backing up then you can just move your library to a new computer and sync there.
    If you don't have one then you will have to transfer purchases (grab a 3rd party program for non-purchased content) and then sync to the new computer
    http://support.apple.com/kb/ht1848
    http://support.apple.com/kb/ht1727

  • How can I find out which iTunes library my computer is using?

    I have a desktop Mac Mini at home that my wife uses and a MacBook Pro that I use at home and in the office.  I wanted to be able to access all the music we have on both machines from both machines, even when I am out and about and have no network connection for my MacBook Pro. So, I uploaded all the music we had on iTunes to Dropbox, and this now syncs on both computers.  So, whenever either of us adds music to iTunes, the songs are saved on both machines within the Music folder in Dropbox, which syncs in real time across both computers.  So far so good.
    However, what I am finding is that, when either of us adds new music to our respective iTunes, it only shows on the computer on which it's been added.  So, within a matter of weeks, our computers no longer show the same music in our respective iTunes windows, even though the music is present on both machines in the synchronised Dropbox folder.
    I realised that the computers must start using different iTunes library to each other when new songs are added to either machine.  So, I figured that, when we add music to one of the computers, if I pointed iTunes on the computer that has the less up-to-date music to the latest library that is being used by the computer with the more up-to-date music, this would ensure that both machines showed the same music in their repective iTunes windows.  The problem is that I cannot work out which iTunes library is being used by the computer with the more up-to-date music on it.  I know how to choose a different library when I open iTunes (hold down alt) but that doesn't help, because I all I want to do is to FIND OUT WHICH LIBRARY IS BEING USED BY ITUNES ON THE COMPUTER WITH THE MORE UP-TO-DATE MUSIC.  I simply can't find a way of getting iTunes to show me which library it is using, although this must be the simplest thing in the world. An additional issue is that I want to playlists we have created to appear on both machines - will that be the case if I point the less up-to-date iTunes (on my wife's Mac Mini) to the library of the more up-to-date iTunes (on my MacBook Pro), since my computer with the more up-to-date iTunes shows all the playlists, whereas my wife's doesn't?
    So, can anyone help?  Plus if anyone knows of any software that can automatically ensure that two different Macs both use the same and most up-to-date iTunes library and therefore always show the lastest music collection, whichever machine the music has been added to, that would be fantastic.  Thanks.

    You could have all the computers point to the same library but it can't be opened by more than one at any time.
    No answer for knowing which library is in use other than selecting it at startup.  This question gets asked here occasionally but I don't think it is a high-demand feature since most people have just one library.  I guess you could put in an empty playlist with the library name so you have an identifier.

  • My Library has ten more songs than my iPod. How can I find out which songs are not syncing?

    My Library has ten more songs than my iPod. How can I find out which songs are not syncing?
    I recently had to purchase a new hard drive. Because the size of my music collection exceeds 140 GB, I stored all of my music on a separate external hard drive. When I exported everything back into my new iTunes library, I found that I had about 200 more songs than I had in the previous library. After deleting most of those extraneous songs, I was able to get my library close to where it was before. However, after syncing to my iPod Classic, I noticed that only 34,853 of the 34,863 loaded. How can I figure out which of those ten songs in my library did not sync to my iPod?
    Yellow12

    It may be that the 10 songs are unchecked. To find them select songs view.
    If there is a column Heading marked with a tick then click on it to sort by this column.
    If the Column is not there then View > View Options and select the Checked column which will then display
    Check the songs by putting ticks in the empty boxes and resynch. Now those tracks should go over as well

  • How to find out which page contains a specific ITextFrame

    Hi all,<br /><br />I would like to ask if it is possible to find out which page contains a specific text frame?<br /><br />I used the following code to find the ITextFrame that contains the caret<br />ISelectionManager* mgr = activeContext->GetContextSelection();<br />InterfacePtr<ITextEditSuite> esuite(mgr, UseDefaultIID());<br />InterfacePtr<ITextTrackerAccess> tracker(esuite, UseDefaultIID());<br />ITextFocus* focus = tracker->QueryTextFocus();<br />ITextModel* model = focus->QueryTextModel();<br />IFrameList* flist = model->QueryFrameList();<br />RangeData range = textFocus->GetCurrentRange();<br />TextIndex cposition = range.Start(0);<br />int32 fidx;<br />ITextFrame* frm = flist->QueryFrameContaining(cposition, &fidx);<br />UIDRef frmUIDRef = ::GetUIDRef(frm);<br /><br />However, when I use the following code to iterate through the pages, I cannot find any UID that matches the ITextFrame<br />for (int32 sIdx = 0; sIdx < spreadList->GetSpreadCount(); sIdx++) {<br />  UIDRef spreadUIDRef(database, spreadList->GetNthSpreadUID(sIdx));<br />  InterfacePtr<ISpread> spread(spreadUIDRef, UseDefaultIID());<br />  for (int32 pIdx = 0; pIdx < spread->GetNumPages(); pIdx++) {<br />    spread->GetItemsOnPage(pageIndex, &uidList);<br />    if (uidList.Contains(frmUIDRef.GetUID()) == kTrue) {<br />      ...<br />    }<br />  }<br />}<br /><br />Any help is appreciate. Thank you.<br /><br />Ikki

    I think your frmUIDRef is too far down the hierarchy to show up in GetItemsOnPage(). Try getting the IHierarchy interface from frmUIDRef and calling QueryParent(). That should get you from the kFrameItemBoss to the kMultiColumnItemBoss. Do the same again and you'll get to the kSplineItemBoss, which should appear in GetItemsOnPage().
    If you're running the debug version of InDesign, you can use the Test menu to run the Diagnostics > Document Structure > Trace Content Hierarchy command, which will print out the UIDs of all the items on a page and let you see what's happening.
    Charles

  • I share an itunes account with 3 users. How can I find out which person downloaded a certain app?

    I share an itunes account with 3 users. How can I find out which person downloaded a certain app?

    Agile,
    Any of the above will work, depending how you would like to set it up.
    Given that kids tend to eventually grow up and be independent, the best long term answer for most people is to let her have her own account and her own library as soon as she can handle it.  Keep in mind that content purchased from the iTunes Store is permanently tied to the account from which it was originally purchased, so separating later is a challenge.
    If you want to sync multiple devices to the same library, that will work.  Or if you want separate libraries (as I would recommend), they can be either on separate computers or on separate Windows user accounts on the same PC.
    For the name change:  Connect the device.  When the name appears in the left sidebar of iTunes, highlight it and change it.

  • I want to update my phone, but i purchased many apps and music on the phone. it won't let me authorize my computer so i cannot update. i don't want to deauthorize all my computers. how can i find out which 5 computers i have authorized?

    i want to update my phone, but i purchased many apps and music on the phone. it won't let me authorize my computer so i cannot update. i don't want to deauthorize all my computers. how can i find out which 5 computers i have authorized? also how can i update the software?

    This is a tedious solution, which is stupid!  And some users report an inability to reauthorize a computer after an "en masse” deauthorization.  I can’t believe Apple doesn’t provide a list or menu to find out which computers you’ve authorized! Obviously, APPLE knows (or else they couldn’t tell us how many computers we have authorized)--so why can’t they give us access to that information about our own computers??!!!
    And for an already-authorized computer with a hard drive that’s since been replaced and upgraded from Mavericks to Yosemite, would it be recognized as a “new computer” and require authorization? Would its previous incarnation (i.e., with the old hard drive and OS) be considered a separate computer? Some users report they can’t authorize a computer after an OS upgrade because of that. Can’t believe we have to do such a bass-ackwards kludge!

  • My computer says I cannot use icloud because I have multiple versions of outlook installed. How do I find out which versions are installed and how do I decide which one to delete?

    My computer states that I have multiple versions of outlook installed and that i cannot use icloud. How d if find out which versions are installed and which ne to delete without interrupting the other?

    That's a Windows/Office problem. You should ask in the Microsoft support forums.

  • How can I find out which .pst or .ost file itunes referres to when synchronising with outlook

    I´ve switched to iphone 4S from my 3Gs and would like to "clean" my itunes Sync before I use the new phone. Problem is, that the synchronisation with Outlook 2003 doesn´t work anymore. I guess the reason is that itunes refers to an old .ost or .pst file on my computer. I ve got several outlook profiles and changed from exchange to pop3. My question: How can I find out which .pst or .ost file itunes referres to?
    Thanks a lot in advance :-)

    Select the tune and then - Get Info - in the dialog box is a note of the Apple ID used to purchase.
    MJ

  • How to find out which version of OID, SSO, Portal, and Disco. to install?

    Hi,
    I just upgraded from 11.5.9 (DB 9.2.0.4) to 12.1.1 (DB 10.2.0.5) using Rapid Install Wizard.
    The 11i system did have Portal and Single Sign-On, and Discoverer 4i. How can I find out which version of these I can install and integrate with the new system? Do I need to install a separate Application Server?
    Thanks,
    Sinan

    Please see these docs.
    Integrating Oracle E-Business Suite Release 12 with Oracle Internet Directory and Oracle Single Sign-On [ID 376811.1]
    Oracle Application Server with Oracle E-Business Suite Release 12 FAQ [ID 415007.1]
    Using Discoverer 10.1.2 with Oracle E-Business Suite Release 12 [ID 373634.1]
    Using Discoverer 11.1.1 with Oracle E-Business Suite Release 12 [ID 1074326.1]
    How To Enable Single Sign On (SSO) For Discoverer 11g (11.1.1.x) [ID 879604.1]
    Thanks,
    Hussein

  • I have my personal music (not purchased from Itunes) stored in two locations, on my PC and on an external HD. How can I find out which directory itunes uses to access this music? I am using Itunes version 11.4.0.18. Thanks

    I have my personal music (not purchased from Itunes) stored in two locations, on my PC and on an external HD. How can I find out which directory itunes uses to access this music? I am using Itunes version 11.4.0.18. Thanks

    Many thanks JEM24 for your help.  Ive just spent the best part of six hundred pounds on a new Sony Rx100m2 compact camera, so I have no interest in the Ipods camera at all really. I doubt Ill be watching many videos on it as Im very lucky in that I have a good Android tablet. Its more as a stock music player that Ill be buying the Ipod for, if indeed I do end up buying one. I dont like the idea of paying the exorbitant amount added for more memory space that Apple along with most other companies charge. In fact I read an article on this very subject just yesterday in the tech section of Flipboard. It stated in the article that in the case of the Iphone  the actual cost of each additional  gigabyte of storage  to Apple et al is something in the order of 60p.. This is certainly not reflected in the price us the customer has to pay at the till.. Its for this reason primarily that Apple in particular, because their products do not allow adding expandable memory of your own in the form of cheap to buy cards, that nobody in their right mind buys the 64gig etc Iphones..I am aware that we are discussing my potential purchase of an Ipod Touch here but you see my point. Many thanks again though for helping me.

  • How can i find out which network my iphone is locked to

    Sorry if iv posted this in the wrong section.well the question is quite simple. how can i find out which network my iphone 4s is locked to, without purchasing sim cards from every network.
    I just bought the phone second hand with no sim as a birthday present for my wife with the intention of getting it unlocked (not jailbroken)
    If any body can give me any advice it would be greatly appreciated.

    call Apple

  • HT1338 HOW CAN I FIND OUT WHICH SERVER MY MAC IS USING?

    HOW CAN I FIND OUT WHICH SERVER MY MAC IS USING, KEEP GETTING MICROSOFT SQL SERVER ERRORS
    WHEN TYPING IN ADDRESS'S?

    If your computer is tied to a network, then there is a way to check. Go to System Preferences, and click Accounts. unlock Admin
    then you can click Login Options.
    under that, Network Account Server. This should show you what server your computer is tied to. If you aren't in the tech department, you could try asking them.

  • HT4061 how do i find out which company my iPhone is locked to?

    how do i find out which company my iPhone is locked to?

    Then there is no wy to find out.  Try taking it to an Apple store genius bar and see if they can help.

Maybe you are looking for

  • Using multiple i-devices on one PC iTunes

    I just cannot get my head around the multiple devices/one PC issue. I hope I can get some help. I have a Win7 PC running iTunes. My wife and I have, between us, 2 iPads, 1 iPod, and 1 iPhone 4s. I do not want them to be identical with each other, syn

  • DUMP Using Select options

    Hello ,              I have created select options in WDR  with IF_WD_SELECT_OPTIONS's method ADD_SELECTION_FIELD  in View A. I am navigating from View A to View B.In View B I have kept a BACK button to return back to View A. While navigating back it

  • PS CS4 64 - crashed by Wacom in Windows 7

    I just resolved a crashing problem that affects Photoshop CS4 64-bit under Windows 7. Looking at some other treads here, I went into the Event Viewer and looked at application events. The log reported the Wacom driver for my tablet as the crash initi

  • Afrikaans language support for keyboard & iOS 7?

    We need Afrikaans as a keyboard and operating language. If Google accommodates for us, why wouldn't you, Mr. Apple? iPhone in Afrikaans please...

  • How to use drill down hierarchy in column chart of BO OLAP edition tool?

    I had created hierarchy table in olap tool where i can drill down Zonewise then Regionwise then Customerwise but this technique is not possible in Graph of Olap tool ,so my question is how can aaply drill down method in graph?