Removing pligin components from JCAPS5.1.0?

Hi,
We are using JCAPS5.1.0 and we have set up repositry ,in which we
have installed some of the components like LDAP eWAY,Swift OTD
Library,Weblogic eWay,but we are not using those components in
our project,hence we need to remove this plugins from
repositry.But we are not able to find any way to remove those
components,
If anyone have removed/uninstalled the plugins components from
repositry please let us know how to do the same...
Thanks.
Renga.S.

This might defeat the purpose a bit of removing all the components, but you could try justa dding an empty panel to the JSplitPane, so when you remove you previous Components try
splitPane.removeComponent(bottomPanel);
splitPane.setBottomComponent(new JPanel());This should get around the resizing but kinda defeats the purpose!

Similar Messages

  • HT1923 IF I totally remove itunes & components from computer--do I LOSE my music library?

    I've been getting the R6034 error message--and my question is: IF I totally remove itunes and its components from my Windows 7 computer in order to reinstall it--do I LOSE my whole library of music?

    excuse my denseness--but I just realized that I could buy a large enough external hard drive and then copy the "my music" folder onto it...

  • How do you remove STATEFUL components from memory in EAServer?

    This is from one of the books on Powerbuilder/EAServer:
    "So the major difference between stateless and stateful components is that stateless components
    automatically invoke the component deactivate event when a method call ends and the component
    is logically removed from memory. A stateful component remains in memory until physically re-
    moved by the caller."
    What does the caller (client Powerbuilder program) do to physically remove a stateful component from EAServer?
    Thanks,
    Mark

    Hi Mark
    Not sure...
    Do you know the component is in memory because memory hasn't been released?
    In which case you could check that the destroy event happens and use it to explicitly clean up.  This should really be in the deactivate event in case you do start pooling.
    From memory, (pardon the pun) there were memory leaks in EAServer version 10 years ago. A very small part of a component could take up lost space, eventually leaving only smaller and smaller chunks free, ultimately causing decline in performance and failure.
    Do you know the component is in memory because Jag Manager tells you after you have refreshed to folder?
    Lars

  • Removing select components from swing JPanel

    I have a JPanel that contains many different JLabels that move around to different parts of the JPanel. These components may end up occupying the same location in the JPanel.
    1. How do I determine which objects is the one visible? Is it the one most recently added to the JPanel?
    2. How do I selectively remove a certain component that may be in under one component and above 2 others...? This JLabel that I want to remove, does not have a specific name, instead it is indexed in an array.

    steeveesas wrote:
    I have a JPanel that contains many different JLabels that move around to different parts of the JPanel. These components may end up occupying the same location in the JPanel.
    1. How do I determine which objects is the one visible? Is it the one most recently added to the JPanel?I would guess that much depends on the layout manager (if any used) and how you are adding the components to the jpanel.
    2. How do I selectively remove a certain component that may be in under one component and above 2 others...? This JLabel that I want to remove, does not have a specific name, instead it is indexed in an array.call remove(component) on the JPanel followed by revalidate() and repaint().

  • Help again for removing Oracle components from Windows NT machine

    I want to remove all oracle stuff from my Windows NT machine.I have a problem to do it.I did following:
    1.Stop all Oracle involved services.
    2.delete all registry involved in Oracle.
    3.delete all folder involved Oracle.
    But I cannot delete following registry key:
    LEGACY_ORACLEAGENT80
    LEGACY_ORACLECLIENTLISTER
    LEGACY_ORACLEHOME81TNSLISTENER
    LEGANCY_ORACLEDB8
    LEGANCY_ORACLESERVICEORCL
    LEGANCY_ORACLESERVICESPORTS
    LEGANCY_ORACLESNMPPEERMASTERAGENT
    LEGANCY_ORACLESQLSERVICESV8.0SQLSRVCONFIG
    LEGANCY_ORACLESTARTOAS40_WEBSITE40
    LEGANCY_ORACLESTARTORCL
    LEGANCY_ORACLETNSLISTERER80
    LEGANCY_ORACLEWEBBASSISTANT
    LEGANCY_ORACLEWEBBASSISTANT0
    LEGANCY_ORACLEWWWLISTENER40ADMIN_WEBSITE40
    LEGANCY_ORACLEWWWLISTENER40NODE_WEBSITE40
    LEGANCY_ORACLEWWWLISTENER40WWW_WEBSITE40
    I have already deleted all Oracle folders.
    The status in my machine now is: no Oracle folder,no registry keys involved Oracle excopt above Keys.
    Any help is appreciate.

    Thank you very much.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by [email protected]:
    These are internal Windows registry keys - you do not need to delete them
    Jason Pepper
    Snr Product Manager
    Oracle Enterprise Internet Tools<HR></BLOCKQUOTE>
    null

  • HT201628 I accidentally removed some components from itunes (uninstalled) and now it won't function.  If I uninstall and reinstall, will my data be recovered...downloads, etc?

    I accidentally uninstalled some components of itunes when i repaired my PC.  now itunes won't work.  If I uninstall and reinstall, will I lose all my data?

    Your data will remain as is. Back it up anyway.
    (88923)

  • Problem removing components from JLayeredPane

    Hi all,
    I have a problem showing and hiding components on a JLayeredPane. It goes Something like this:
    In my application I have a button. When this button is pressed I use getLayeredPane to get the frames layered pane. I then add a JPanel containing a number of labels and buttons onto that layered pane on the Popup layer. The panel displays and funcitons correctly.
    The problem comes when I try to remove the panel from the layered pane. The panel does not dissappear and I am no longer able to click on anything else in the frame!
    If anyone has any ideas how to get around this or what the problem might be I'd be very greatful to hear it. Sample code follows:
          * Called when the button on the frame is pressed:
          * @param e
         public void actionPerformed(ActionEvent e)
                    JLayeredPane mLayredPane = getLayeredPane();
              int x = 0, y = 0;
              Container c = this;
              while (true)
                   c = c.getParent();
                   if (c != null)
                        x += c.getLocation().x;
                        y += c.getLocation().y;
                        if (c instanceof JRootPane)
                             break;
                   else
                        break;
              mPanel.setBounds(x, y, 235, 200);
              mLayredPane.add(mPanel, JLayeredPane.POPUP_LAYER);
    //And when a listener fires from the panel I use
    mLayredPane.remove(mPanel);
    //To remove it from the layered pane and in theory return the
    //app to the state it was before the panel was displayedThanks again...

    The problem is you only removed it within the program, without actually removing it from the display. If that makes any sense, or whether thats your problem at all.
    If you are only using this line.
    mLayredPane.remove(mPanel);
    I think if you tell it to repaint and revalidate it should work, though i have never used LayeredPane.
    mLayredPane.repaint();
    mLayredPane.revalidate();

  • When building deployment, install reportgen_txt.seq but when removing program don't remove reportgen_txt.seq from the TestStand\Components\Models\TestStandModels directory?

    Basically I want to install a custom reportgen_txt.seq file to the TestStand Dir\Components\Models\TestStandModels upon installation of the program but when I remove the program from my computer I want to keep the custom reportgen_txt.seq file...Right now when I remove the program, the custom reportgen_txt.seq file is also removed...
    Anyone have any thoughts besides having to have a second deployment to install the file?
    PLEASE HELP!!!  And thanks in advance
    Solved!
    Go to Solution.

    I went ahead and implemented using the custom commands, worked like a charm!!  Thank you Thank you! 
    I just added a custom command using the xcopy function (see below).  I needed three files to be copied over to specific directories once they were installed in the install directory.  My three configured files were:
    reportgen_txt.seq
    Users.ini
    TestExec.ini
    Attachments:
    customcommand.JPG ‏55 KB

  • Remove Components from Library

    I'm new to Catalyst, so this might be a stupid question.
    I created a bad datalist and as soon as I realized my error I deleted it from the Artboard, but it is still in my Library. Now every time I run the project I get an alert that says that DataList1 is missing a required part and will produce an error.
    I don't need DataList1 and I'm not really interested in fixing it. In the current build of the application, is there a way to just remove this component from my library so that I don't have to deal with the error anymore?
    Thanks.

    Currently you cannot remove components from the library panel, but this is something we are working on. There is a temporary solution though: switch to code view and you'll see a panel on the right side of the screen that shows all the files in your project. In the components folder there should be a DataList1.mxml file. Right click on it and choose delete.
    Note that if you follow the above steps and delete a component that is used elsewhere in your project, your application won't compile.

  • Need to remove the page and components from jdr_paths table

    After running the following command
    BEGIN
    jdr_utils.deleteDocument('XX\oracle\apps\per\onlinepayslip\webui\XXOnline_PayPG.xml');
    END;
    commit;
    i ran the below select command and i can still see the data appearing for that path_name XXOnlinePayslip
    SELECT * FROM JDR_PATHS Where path_name like'OnlinePayslip%'
    how i can remove this entry from the JDR_PATHS table ...?
    Please help!

    Hi ,
    Since its an API can you try specifying the parameter name as well
    DECLARE
    BEGIN
    jdr_utils.deletedocument(p_document => 'XX\oracle\apps\per\onlinepayslip\webui\XXOnline_PayPG.xml');
    END;
    Please note that it will remove only extension / substitutioin / personalizaton .
    --Keerthi                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Removing duplicate values from selectOneChoice bound to List Iterator

    I'm trying to remove duplicate values from a selectOneChoice that i have. The component binds back to a List Iterator on the pageDefinition.
    I have a table on a JSF page with 5 columns; the table is bound to a method iterator on the pageDef. Then above the table, there are 5 separate selectOneChoice components each one of which is bound to the result set of the table's iterator. So this means that each selectOneChoice only contains vales corresponding to the columns in the table which it represents.
    The selectOneChoice components are part of a search facility and allow the user to select values from them and restrict the results that are returned. The concept is fine and i works. However if i have repeating values in the selectOneChoice (which is inevitable given its bound to the table column result set), then i need to remove them. I can remove null values or empty strings using expression language in the rendered attribute as shown:
    <af:forEach var="item"
    items="#{bindings.XXXX.items}">
    <af:selectItem label="#{item.label}" value="#{item.label}"
    rendered="#{item.label != ''}"/>
    </af:forEach>
    But i dont know how i can remove duplicate values easily. I know i can programatically do it in a backing bean etc.... but i want to know if there is perhaps some EL that might do it or another setting that ADF gives which can overcome this.
    Any help would be appreciated.
    Kind Regards

    Hi,
    It'll be little difficult removing duplicates and keeping the context as it is with exixting standard functions. Removing duplicates irrespective of context changes, we can do with available functions. Please try with this UDF code which may help you...
    source>sort>UDF-->Target
    execution type of UDF is Allvalues of a context.
    public void UDF(String[] var1, ResultList result, Container container) throws StreamTransformationException{
    ArrayList aList = new ArrayList();
    aList.add(var1(0));
    result.addValue(var1(0));
    for(int i=1; i<var1.length; i++){
    if(aList.contains(var1(i)))
         continue;
    else{
    aList.add(var1(i));
    result.addValue(var1(i));
    Regards,
    Priyanka

  • Deletion of filter components from Bex Report in BI 7.0 via back end.

    Hi,
    I want to delete 2 filter field components from the BI 7.0 report via back end. Im using the Tcode RSZDELETE and giving the variable element UID, Inforprovide name, query tech name. But when i excute it says empty selection.
    Other than this is there any way to delete query components at back end???
    Regards,
    Nisha

    Thanks for the reply!
    This is to delete the variable created??
    My requirement is query specific , the restriction on the IO , ie the variable to be removed via back end.. that means deletion from that report..
    hope my statement is clear enough to give me some light .
    Thanks
    Nisha

  • On my MacBook with Lion Safari does start, does not react immediately after trying to open it. Installing a new Safari does not help. Removing parts of Safari in the Library did not help. Where can I find and remove all components (LastSession ...)?

    How can I reset Safari with all components? On my MacBook with Lion, Safari does not start, does not react immediately after trying to open it. Installing a new Safari does not help. Removing parts of Safari in the Library does not help. Where can I find and remove all components as LastSession and TopSites?

    The only way to reinstall Safari on a Mac running v10.7 Lion is to restore OS X using OS X Recovery
    Instead of restoring OS X in order to reinstall Safari, try troubleshooting extensions.
    From the Safari menu bar click Safari > Preferences then select the Extensions tab. Turn that OFF, quit and relaunch Safari to test.
    If that helped, turn one extension on then quit and relaunch Safari to test until you find the incompatible extension then click uninstall.
    If it's not an extensions issue, try troubleshooting third party plug-ins.
    Back to Safari > Preferences. This time select the Security tab. Deselect:  Allow plug-ins. Quit and relaunch Safari to test.
    If that made a difference, instructions for troubleshooting plugins here.
    If it's not an extension or plug-in issue, delete the cache.
    Open a Finder window. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following
    ~/Library/Caches/com.apple.Safari/Cache.db
    Click Go then move the Cache.db file to the Trash.
    Quit and relaunch Safari to test.

  • HT4528 I have 3 iPhones, one Ipad, and two PC's that I have tried to "connect" using one iTunes account and am having issues.I connected iPhone #3 to one PC, it removed all contacts from iPhone #3, replaced w/ contacts from iPhone #2. How can I get back?

    I have 3 iPhones, one iPad and 2 PC's, all using the same iTunes account.  I want to be able to have each iPhone keep their own list of accounts and music list and the I pad different as well.  I want to 2 PC's music list to match.  How do I do this?
    Additionally, when I connected iPhone #3 to one PC, it removed the contacts from #3 and replaced it with contacts from iPhone #2.  How do I get those contacts back and prevent this from happening again?

    Hey joshuafromisr,
    If you resintall iTunes, it should fix the issue. The following document will go over how to remove iTunes fully and then reinstall. Depending on what version of Windows you're running you'll either follow the directions here:
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP
    http://support.apple.com/kb/HT1925
    or here:
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7
    http://support.apple.com/kb/HT1923
    Best,
    David

  • How to remove a list from a page ?

    I added a list to a page and then later decided it would be easier to add the list to page 0. Now I can't find how to remove the list from the page.
    Edited by: Rene W. on Oct 6, 2008 1:52 AM

    Ok sorry I understood you wrong then.
    I tried to recontruct your problem and did the following things.
    1. Created a new list in: Home>Application Builder>Application 305>Shared Components>Lists>Create / Edit List
    2. Created a new region on page 2: Home>Application Builder>Application 305>Page 2>Create Region Type: List, Name:"test1"
    3. Created a new region on page 1: Home>Application Builder>Application 305>Page 1>Create Region Type: List, Name: "test2"
    4. Deleted region "test1" on page 2
    5. List and region still survived on page 1. :D
    Tobias

Maybe you are looking for

  • An error has occurred. Further information is available in the server log.

    I been trying for days to access Secondlife.com but when i do i get this message''An error has occurred. Further information is available in the server log. '' now i can use Chorme and firefox to go to the site but not firefox plus fireofx is searchi

  • Alter database open

    Hi, I try to start a database with the commands startup mount alter database noarchivelog everything is ok up to now When I give the command alter database open I obtain ERROR at line 1 ORA-01092 Oracle instance terminated Disconnection forced. Why?

  • OPMN  oacore process is down

    Any one help me Windows 2003 32 bit Oracle EBS 12.0.1 Login page is not running I run the adstrtal.cmd following error appear Executing service control script: D:\oracle\VIS\inst\apps\VIS_te-dxb1-tts-01\admin\scripts\adoacorectl.cmd start script retu

  • Timekeeper Access to 'Past Number of Days'

    Hi, Currently as per the setup in 12.1.3, Normal Users (Self Servie Time Responsibility) can update timecard based on '*Past Number of Days*' but Timekeeper (OTL Limited Timekeeper Responsibility) can update timecard *'Past Number of Days' + 1 week e

  • ZFH 5.1 Questions

    I'm testing this product with a pocket pc by toshiba. I'm running into a couple of problems. 1) Everytime I sync the device it creates another object in Edirectory. Why? Am I supposed to name the device so this won't happen? 2) I have created a polic