How to change the portlet.xml deployed without redeploying it?

I often need to change the portlet.xml in deployed war file. But after changing the portlet.xml seeking Middle_Home, he did not have any change to the portlet. Then must I redeploy the war file if I want to change? Or is there another method?

Kind regards
Jugela

Hello.

Any change in the portlet.xml require a re - deploy application. Load only the configuration such as web.xml files, portlet.xml when the application starts.

Kind regards.

Tags: Fusion Middleware

Similar Questions

  • How to change the name of VirtualSwitch without running virtual MAchines of braking?

    Does anyone know how to change the name of the virtual switch (used by VM) without braking the VM running in this cluster?

    The best way to do this without losing network connectivity is add a group of ports with the new name and connect the virtual machines to the new group of port and when the initial group of port is empty remove - remember that it's the port group named not the vswitch.

    If you find this or any other answer useful please consider awarding points marking the answer correct or useful

  • How to change the settings of sequence without CC 7.1 update?

    Well, I was hoping that Adobe will release 7.1 updated October 15, as promised on some websites. I don't remember, maybe it was Creative COW or other.

    That's why I created proxies PRORES 720 p for 9 x shoot multicamera live performance which lasts for 2 hours for delay free, fast editing.

    I was successfully edited and promised my clients until October 16, they will have the whole show in 1080 p, high quality.

    Thus, there is no update yet and Yes, I can re-create an original link to 1080 p files, but the multicam sequence is capped at 720 p and I can just find a way to change its size.

    The old way of copying and pasting from one sequence to another mode does not work, sequence 720 p is related to making changes. In CS6 I could edit ".prproj' file in the text editor to change properties (including the properties of the sequence), but right now, in CC, .prproj file contains binary data only, so I can't do it that way either.

    Maybe someone knows another way to modify the sequence right now, or what is the exact day of the 7.1 version?

    Thank you!

    Well, I found out there is a way to change the seqence settings if you know how to use a WinRAR (for extract .prproj) and change files of type XML in Notepad. So I finished my project days ago successfully

  • How to change the trajectory of deployment?

    Hello
    Whenever I run the application in Jdeveloper. She deployed the built-in application on Weblogic and write module to C:\Users\User_Name\AppData\Roaming\JDeveloper\system11.1.1.2.36.55.36\o.j2ee\drs\Application_Name.
    Can I change the path? I tried to give a value to the directory Run Run configurations in the project properties. It does not work.

    Published by: Cheney Shue on February 8, 2010 20:05

    (Still valid) documentation:

    [http://www.oracle.com/technology/products/jdev/htdocs/11tp/install.html#userdir | http://www.oracle.com/technology/products/jdev/htdocs/11tp/install.html#userdir]

    [http://www.oracle.com/technology/products/jdev/htdocs/11tp/install.html#homedirectory | http://www.oracle.com/technology/products/jdev/htdocs/11tp/install.html#homedirectory]

    After setting this variable jdev uses the new path.

    Timo

  • How to change the settings in "msconfig" without having to restart the computer?

    * Original title: close msconfig

    There is a tech changed a setting that makes close msconfig after changes without having to restart.  I am now on a new pc. Could you provide me the setting that will do it?  I think that many would like to know that, too.  Thank you.

    Thanks for the suggestion, but I found the correct procedure through a Google search:

    http://windowsitpro.com/Windows/stop-msconfigexes-post-boot-confirmation-popping. This Question can not be closed.

  • How to change the tempo in drummer without changing the tempo of audio?

    I recorded audio to 100 bpm and uses electronic drums.  There are sections of the song who need (x 2) or double speed for drums electronic drums have no function (2 x) as rock drummers do and I like to keep my audio recorded tempo.

    on audio tracks - uncheck the tempo to follow in the Inspector. This will cause tempo changes that will not be included is not on the slopes.

  • How to change the xml link?

    First a few words about my background:

    I got a page on a version of InDesign CS3 layout. Now, I'm creating a procedure to automate the production of several pdf based on this provision. Manually process would be to open the page layout; change the xml with each xml source link and create a file pdf corresponding...

    First question:

    In CS4 when I want to manually edit the xml link, the open dialog box prevents me (xml files are grey) to select xml files, it is a well known problem? How can I avoid it?

    Second question:

    How to change the script xml link?

    Last question - applescript question -:

    How to skip application dialog boxes? As "this document is missing a few links, would continue you?

    If you want to be able to help me, thanks in advance!

    There is a piece of code found on the net:

    tell document 1 of application "Adobe InDesign CS3"relink thisItemLink to someFileReferenceupdate thisItemLinkend
    
  • How to change the default color for tables/pivot tables

    Can someone share how to change the default font color or background for tables and PivotTables? In my view, there is a CSS or XML setting I need to change.

    It is difficult to read the text when negative numbers are RED and the overall totals have a default NAVY background fill. I'm trying to find out how to change the color of these without doing it manually to each report.

    Thank you.

    Jin

    For pivot Table

    Go to OracleBI\oc4j_bi\j2ee\home\applications\analytics\analytics\res\s_oracle10\b_mozilla_4\views.css

    Change the PivotTable section code

    For table veiw

    Go to OracleBI\oc4j_bi\j2ee\home\applications\analytics\analytics\res\s_oracle10\b_mozilla_4\views.css

    Change the section of the Table

    PS:take backup your original file before you edit any css file. Don't forget to give the points/close the thread

    Thank you
    saichand.v

  • How to change the angle of a gradient layer without changing anything else?

    How to change the angle of a gradient layer without changing anything else?

    When I try it myself my gradient everything turns black.

    To add to the above, you can just set the angle. If you want to use other existing parameters, you need to get from the layer. The code in this other thread shows a way to get them.

    But if you do not have the values for any other reason, you can get the handle to the layer, make a duplicate of it with all the settings and just crush those you want to change.

    It is a way to just change the angle while keeping the other existing settings.

    // helper function for working with descriptors
    function getProperty( psClass, psKey, index ){// integer:Class, integer:key
        var ref = new ActionReference();
        if( psKey != undefined ) ref.putProperty( charIDToTypeID( "Prpr" ), psKey );
        if(index != undefined ){
            ref.putIndex( psClass, index );
        }else{
            ref.putEnumerated( psClass , charIDToTypeID( "Ordn" ), charIDToTypeID( "Trgt" ) );
        }
        try{
            var desc = executeActionGet(ref);
        }catch(e){ return; }// return on error
        if(desc.count == 0) return;// return undefined if property doesn't exists
        var dataType = desc.getType(psKey);
        switch(dataType){// not all types supported - returns undefined if not supported
            case DescValueType.INTEGERTYPE:
                return desc.getInteger(psKey);
                break;
            case DescValueType.ALIASTYPE:
                return desc.getPath(psKey);
                break;
            case DescValueType.BOOLEANTYPE:
                return desc.getBoolean(psKey);
                break;
            case DescValueType.BOOLEANTYPE:
                return desc.getBoolean(psKey);
                break;
            case DescValueType.UNITDOUBLE:
                return desc.getUnitDoubleValue(psKey);
                break;
            case DescValueType.STRINGTYPE:
                return desc.getString(psKey);
                break;
            case  DescValueType.OBJECTTYPE:
                return desc.getObjectValue(psKey);
                break;
            case  DescValueType.LISTTYPE:
                return desc.getList(psKey);
                break;
            case  DescValueType.ENUMERATEDTYPE:
                return desc.getEnumerationValue(psKey);
                break;
        }
    };
    function duplicateDescriptor( descriptor ) {
        var newDescriptor = new ActionDescriptor;
        newDescriptor.fromStream( descriptor.toStream() );
        return newDescriptor;
    };
    function localizeDescriptor( desc ) {
        var stream, pointer, zStringLength, zstring, localized_string, newZStringLength, previousStream, followingStream, newDesc;
        stream = desc.toStream();
        while( true ) {
            pointer = stream.search(/TEXT....\x00\$\x00\$\x00\$/);
            if( pointer === -1 ) {
                break;
            }
            zStringLength = getLongFromStream( stream, pointer + 4 );
            zstring = readUnicode( stream.substr( pointer + 8, ( zStringLength - 1 ) * 2) );
            localized_string = ( localize( zstring ) ) + '\u0000';
            newZStringLength = localized_string.length;
            previousStream = stream.slice( 0, pointer);
            followingStream = stream.slice( pointer + 8 + zStringLength * 2);
            stream = previousStream.concat( 'TEXT', longToString( newZStringLength ), bytesToUnicode( localized_string ), followingStream );
        }
        newDesc = new ActionDescriptor();
        newDesc.fromStream( stream );
        return newDesc;
    };
    function getShortFromStream( stream, pointer ) {
        var hi, low;
        hi = stream.charCodeAt( pointer ) << 8 ;
        low = stream.charCodeAt( pointer + 1 );
        return hi + low;
     };
    function getLongFromStream( stream, pointer ) {
        var hi, low;
        hi = getShortFromStream( stream, pointer) << 16;
        low = getShortFromStream( stream, pointer + 2);
        return hi + low;
    };
    function readUnicode( unicode ) {
        var string = "";
        for( i = pointer = 0; pointer < unicode.length; i = pointer += 2) {
            string +=String.fromCharCode( getShortFromStream( unicode, pointer ) );
        }
        return string;
    };
    function longToString( longInteger ) {
        var string;
        string = String.fromCharCode( longInteger >>> 24 );
        string += String.fromCharCode( longInteger << 8 >>> 24 );
        string += String.fromCharCode( longInteger << 16 >>> 24 );
        string += String.fromCharCode( longInteger << 24 >>> 24 );
        return string;
    };
    function bytesToUnicode( bytes ) {
        var unicode = "", char_code, charIndex;
        for( charIndex  = 0; charIndex < bytes.length; charIndex ++ ) {
            char_code = bytes.charCodeAt( charIndex );
            unicode += String.fromCharCode(char_code >> 8 ) +  String.fromCharCode( char_code & 0xff );
        }
        return unicode;
    };
    
    function setGradientAdjustmentAngle( angle ) {
        var adjustmentDesc = getProperty( charIDToTypeID("Lyr "), charIDToTypeID( 'Adjs' ) ).getObjectValue(0);
        var newAdjustmentDesc = duplicateDescriptor( adjustmentDesc );
        newAdjustmentDesc.putUnitDouble( charIDToTypeID('Angl'), charIDToTypeID('#Ang'), angle );
    
        var desc = new ActionDescriptor();
            var ref = new ActionReference();
            ref.putEnumerated( stringIDToTypeID('contentLayer'), charIDToTypeID('Ordn'), charIDToTypeID('Trgt') );
        desc.putReference( charIDToTypeID('null'), ref );
        desc.putObject( charIDToTypeID('T   '), stringIDToTypeID('gradientLayer'), newAdjustmentDesc);
        executeAction( charIDToTypeID('setd'), desc, DialogModes.NO );
    };
    var newAngle = 45;
    setGradientAdjustmentAngle( newAngle );
    
  • How to change the system from Vista Home Premium to Vista Ultimate 64 withoute lose the option of HARD drive backup?

    IM now running Vista Home Premium 32. I would like to change the system for Vista Ultimate 64 so I can run more than 4 GB of memory. Now Ive some factory settings if something happened, I can run my HARD drive restore. My question is how to change the Vista 64 operating system, so I can keep the recovery on my hard drive partition?  Mayby there is some kind of upgrade cd?

    Thank you

    Hello

    32-bit to 64-bit is not an upgrade

    It must be done with a clean installation using a full version ' / Ultimate 64 bit license

    Contact the manufacturer of your computer for more information on getting 64-bit ultimate, which I doubt they will always

    and microsoft sells more vista

    they moved on windows 7

    and you are supposed to make this partition recovery disks to reinstall vista

    ask the manufacturer of the computer how to

  • How to change the path of the Web service to a Portlet

    Hey,.

    Y at - it any approach to change a path webservice to a portlet in ALUI 6.5, I find nowhere to do...

    Thank you

    Wen

    There is no way to do it in the portal of the user interface. However, you can run a SQL script to update the database if you really need to change the portlet web service:

    UPDATE PTGADGETS SET WEBSERVICEID = WHERE PORTLETID =

    (above is not tested, use at your own risk, etc., etc.)

    I would recommend just recreate the portlet from the new web service, unless you have a specific reason to not do (keep the settings, have a bunch of users who have it on their page, etc.).

  • How to change Qt creator to build without - devmode - bar debugtoken?

    I'm trying to deploy Qt applications that I have updated to work with the last update of OS as well as the creator of Qt bb published here: https://github.com/blackberry/Qt/downloads

    I run the installation of linux.

    The release/debug switch does not work to remove the devmode-blackberry-nativepackager call debugtoken.

    So I thought no problem, I'll build and sign the order, here are the issues I have with that.

    First of all, Packager complained the matter in the descriptor indicating that % QT_INSTALL_IMPORTS % is an invalid path. Then I put in the required absolute paths and managed to build the package bar.

    Bar-signer will not sign the package, well complain:

    Error: Code signing request failed because [run_native] in Entry-Point-User-Actions is not allowed.
    

    So I remed out: run_native starting from the descriptor, still no joy, it will fail with the same message...

    Does anyone have any idea how to change the call to blackberry-nativepackage of the creator? Or any other tips as to where I'm wrong here?

    I could be missing something obvious here in my frustration!

    Thank you

    Jon

    I * think * this message is what you get if you have a run_native, without the system = 'true' part. If I'm right, he can point to that you have a duplicated elsewhere with the wrong content descriptor file, and it's using this rather than the one you are changing. Or something like that.

    To resolve these issues, always go to the MANIFEST. MF file in the actual .bar file. Unpack and inspect this file directly to see what it is * really * for help. Often, you can identify a gap like that and then trace back to repair your build system.

    Oh, and I must be close to correct that since, if you really had system = true, that entry would have shown upward in Entry-Point-system-action at the place where the error says it's. (Unless the error itself is completely wrong).

  • How to change the path when Web server to my system time?

    Hello

    I downloaded a countdown of the Internet SWF file. It works very well with computers that have the Internet connection. But does not work without an Internet connection through the following line of code in an XML file:

    < PHPurl > http://www.flepstudio.org/utilita/countdown/GetTime.php < / PHPurl >

    When I opened the Web page by using the code above, it shows the time in a typical numbers:

    Monday, October 18, 2010 21:12:52 in my system-watch in the Web browser like: time = 1287425579

    How to change the code so that I can use my time system to work with countdown without an Internet connection.

    Here is the path from where I downloaded the file count:

    http://www.flepstudio.org/Forum/flepstudio-utilities/2960-Flash-CS3-countdown.html

    Please, help me run this countdown without internet access.

    Thank you.

    It seems that all this php file does is return a variable of time value =.  If you need to see where this time variable is implemented in the Flash file and assign it a value using the date.getTime method instead of having the PHP file called into play.  Look in the help documents or Google if you don't know how to use the class Date.

  • Qosmio F30-141 - how to change the RAID to IDA in the BIOS?

    Hello world! I own computer laptop Qosmio F30-141. The problem is that I don't like vassive RAID. Please, could you tell me step by step how to change the RAID to IDA in the BIOS. Thank you in advance.

    Why do you think that this can be changed?
    Maybe you can disable the RAID and be happy without him.

    Have you checked s manuals? It is described how RAID works on Qosmio F30.

  • How to change the installer to be able to install the program even as a new product?

    Hello! I created distributive for my project and installed. Now, I want to install this program with fiew changes in the code, but as a new product. But the new program replaces an old. How to change the settings for the installer to create a distribution that allows to install this program as a new product without updating the old program?

    Thank you.

    You need to duplicate the installer:

    As a result the new GUID is generated, and you will get a new product

    Andrey.

Maybe you are looking for