Google Analytics

Friday, October 31, 2014

Maven application build command

If you don't know what to give maven goals to build your application try as below.

> give key word "package" and "Run"


Tuesday, October 21, 2014

WebLogic 10.3.5.0 won't stop or start propperly after Jdev upgrade


http://www.oracle.com/technetwork/developer-tools/jdev/11gr2update3-1851251.html#11.1.2.3.0ShermanUpdate3-ReleaseNotesREPOSITORY-Deployment

Download and install WLS 10.3.6. Download and install Application Developer 11.1.1.6. For more information see the Oracle Fusion Middleware Installation Planning Guide.
Run the Fusion Middleware Configuration wizard and create a new domain, or extend an existing domain, using the JRF + EM + OWSM domain template.
Download the 11.1.2.3.0 Opatch bundles and use the opatch tool to apply the patches (see Install the Patch below).
Shutdown the target domain servers.
Run the WLST "upgradeADF" command in offline mode (see Run the Commands below).
Restart the servers.

Please refer blow link for more info:
https://community.oracle.com/message/10955874#10955874



Session ID of HttpServletRequest is too long



Refer blow link to more informations:
https://community.oracle.com/message/10906023#10906023


Try to change the application web-inf/weblogic.xml --> add session-descriptor element--> then add id-length element
Then you can set charter length. Default is 52 charters
E.g:
<session-descriptor>
<id-length>52</id-length>
</session-descriptor>

Refer following link to more under:session-descriptor 
http://docs.oracle.com/cd/E15051_01/wls/docs103/webapp/weblogic_xml.html#wp1071982


Grep command search word page by page

Grep result page by page

>grep 'updataed statistic -'  info.log | less.
>Use arrow key to nevigate the result.
>Enter letter 'q' to exit from the results.

Reference link:
http://stackoverflow.com/questions/4321755/how-can-i-see-many-grep-results-page-by-page




Wednesday, October 15, 2014

Oracle ADF QRSLT Error

ADF QRSLT Error

Refer blow links:
https://community.oracle.com/thread/2300657?tstart=0


public class ProfileVVOImpl extends CCBSViewObjectImpl {
    /**
     * This is the default constructor (do not remove).
     */
    public ProfileVVOImpl() {
        super.setNestedSelectForFullSql(false);
    }


Note:
Seems this is a bug in 12c. Work aroun in below link for 11G R3.
But fixed in  12.1.3 .

>https://java.net/jira/browse/ADFEMG-213

>http://jdeveloperfaq.blogspot.com/2010/02/faq-13-how-to-avoid-common-pitfalls.html