Problem: JSTL complex expressions are not recognized in weblogic portal version 10 and onwards. It complains that cannot resolve the complex expressions and throws jsp compilation errors as follows: Caused by: weblogic.servlet.jsp.CompilationException: Failed to compile JSP /package/JSPName.jsp JSPName.jsp:165:13: Static attribute must be a String literal, its illegal to specify an expression. Resolution: Replace the jstl [...]
Archive for the ‘All’ Category
JSTL tag not working in Weblogic Portal 10
Posted in Technical, Weblogic, tagged JSTL Weblogic Portal JSP Expression on November 18, 2009 | Leave a Comment »
How to run Junit from Weblogic Workspace
Posted in junit, Weblogic, tagged junit, portal, project, weblogic on April 29, 2009 | Leave a Comment »
Open the project properties, build path and 1. Remove the following libraries from your Weblogic System Libraries api.jar wls-api.jar weblogic.jar wlcommons-logging.jar junit.jar wseeclient.jar 2. Add the following to the build path as external jar files api.jar wls-api.jar weblogic.jar wlcommons-logging.jar junit.jar wseeclient.jar 3. Compile the project and run the junit tests. 4. Thats it!
SAMLAuthenticator is not recognizing the alias and passphrase
Posted in Weblogic, tagged keystore, saml, samlauthenticator, trusted, weblogic on March 19, 2009 | Leave a Comment »
Sometimes the way weblogic server is started, it does not recognize the DemoIdentity.jks and thats why we need to make the following changes to recognize this by weblogic server: Go to weblogic admin console Environment -> servers -> AdminServer -> Configuration -> Keystores – change the value of Keystores to use “Custom Identity and Java [...]
EJB Client generation
Posted in Technical, tagged ant, client-jar, ejb, j2ee, weblogic on March 8, 2009 | Leave a Comment »
EJB Client generation using workspace IDE - Right click the ejb project – > Properties -> Weblogic EJB – > Jar Settings EJB Client Jar: enter the name of the client jar - To build the client jar export the project as “EJB Jar File”, both the jars will be created, client as well as [...]