weblogic

ClassCastException running Spring app on Weblogic 9.2

I'm trying to deploy a Spring 3 application to Weblogic 9.2. The JDK is JRockit 1.5. I'm using jaxb 2.1 and am including those jars in the war. I've tried adding this to weblogic.xml thinking I've got a conflict between what I'm including and the environment I'm running it in. <wls:container-descriptor> <wls:prefer-web-inf-classes>tr...

weblogic user authentication in java

in one web application, user will enter login and password. User is created in WebLogic server 10.3 I need to authenticat user in weblogic server. I was searching on google, i found there is some sample code on http://dev.bea.com/code for authentication through JAAS. I tried to access that web page but it seems page has been removed. ...

NPE in java.util.LinkedList addBefore method.

Somehow, I'm getting a null pointer exception here with JDK 1.6.0_14: HttpSession session = request.getSession(true); LinkedList<MyObject> list = (LinkedList<MyObject>) session.getAttribute(MY_LIST_KEY); .... list.addFirst( new MyObject(str1, str2, map) ); Then, I get this: at java.util.LinkedList.addBefore(LinkedList.java:779) He...

What are instance connection and service connection in Oracle?

I am configuring a WebLogic app server. I am unclear about what is an instance connection and what is a service connection. Also, in my SQL Developer, when I make a new connection, it asks for either an SID or a Service Name. What are they? ...

What is the purpose of datasync project in weblogic project?

What is the purpose of datasync project in weblogic project? What is *.evt, *.req, *.usr files? ...

Message icon - Error [J2EE:160149]Error while processing library references.

Message icon - Error [J2EE:160149]Error while processing library references. Unresolved application library references, defined in weblogic-application.xml What does this error mean exactly and what do i need to do in order to resolve it? ...

Where got I get weblogic portal framework codes?

There seems to be some weblogic framework codes, how do I download it for use with my weblogic portal project? framework/features framework/markup framework/scripts framework/skeletons framework/skins ...

Flex Weblogic Blazeds Error

Hi all, I have Flex/Parsley/Blazeds application deployed on weblogic 9.x. The following error appears in the weblogic logs the very first time I try connect to server side java class using remoting. After the first time the application works fine...bizzarre any ideas would be appreacited thanks. FaultEvent fault=[RPC Fault faultStrin...

Access HttpServletRequest in custom javax.security.auth.spi.LoginModule

We have a custom javax.security.auth.spi.LoginModule used for web services as well as some web applications on a Weblogic 11g. The goal is to record information regarding logins when going through the LoginModule, especially failed logins. Part of the desired information is the IP address that the authentication request came from. The ...

javax.servlet.jsp.JspException: Can't insert page ..... Software caused connection abort: socket write error

Hi, I just deployed an application to weblogic 10, and when I run my page, I get the custom error page with the following errror in the log. javax.servlet.jsp.JspException: Can't insert page '/pages/header.jsp' : Software caused connection abort: socket write error at org.apache.struts.tiles.taglib.InsertTag$InsertHandler.doEndTag(Ins...

How to resolve web logic server BEA-000117 and BEA-101162 errors?

I encounter this error: <BEA-000117> <Received a stale replication request for object ...> I went through the documentation and it says that i need to tune garbage collection. How do i actually tune garbage collection? I thought java garbage collection is automatic? Or actually i need to change those JVM memory settings like vmx etc?...

Implementation of session sharing for web logic portals

Has anyone successfully implemented session sharing for web logic portals? Because it is mentioned in http://download.oracle.com/docs/cd/E15919_01/wlp.1032/e14243/intro_to_portal_dev.htm#CACGCIGB Shared HTTP sessions is an Oracle WebLogic Server feature that is not supported by WebLogic Portal. ...

Web Logic 10.3 upgrade causes issues with escaped characters in JSP.

We recently upgraded our application servers from Weblogic 9.2 to Weblogic 10.3 and we are having an issue with escaped characters in a JSP code. Here is an example of what we are seeing: var convertedBody1 = document.getElementById('body').value.replace(/\$FIRST_NAME\$/g, firstName); This code works in Weblogic 9.2. In Weblogic 10.3 w...

JAVA: SecurityException on ThreadGroup.getParent()

I have some pretty boilerplate Java code that does a while loop with a tg.getParent() to get the root thread group. This has been working for several months on four different environments (one Windows and three Linux). Recently we added a fifth environment for our Accessment Validation testing. This environment is supposed to be a replic...

WEB Logic throughs java.lang.ClassNotFoundException: FeatureForm when I compile and deploy a change in my eclipse maven project

Hello all, I just started using Maven with eclipse and deploy my application to web logic. When I do a clean install for the first time, my maven project builds and deploy successfully. after that, when I make any change to the source code or jsps.. I do a pre-clean install to update the project. Now, everytime I do pre-clean install a...