weblogic9.x

Exception with EAR in WebLogic 9.2 and Xerces144.jar

Hi, I am using an application where I have placed xerces144.jar file within WEB-INF/lib folder of war file inside an EAR file. When I deploy this EAR file to WebLogic Server and start the application, I am getting the following exception. We are using Spring MVC. However, if I deploy the same application using just the WAR file every thi...

Flex streaming timing out

I have a Flex GUI which is using AMF Streaming to BlazeDS on WebLogic 9.2. As the AMF Streaming uses long polling, it keeps the connection open for extended periods of time. WebLogic has a max thread timeout of 600 seconds. WebLogic throws an error and times out the thread if it has been alive for longer than the timeout. This causes my...

Where are JMS messages stored in WebLogic 9.2 server?

Hi All I would like to know at what location WebLogic 9.2 server stores JMS messages on disk. Regards Chaitanya ...

Work managers threads constraint and page cannot be displayed

Hi, We have a memory intensive processing for certain functionality and we would like to limit the number of parallel requests to this processing. We are able to configure by using "Work Managers" in WebLogic and putting a limit on the number of threads for that servlet. For example, if we put maximim thread limit as 3, then if there ar...

Weblogic Workshop 9.2: _pageflow directory is not generated

At some point our WebLogic's Portal web project in Workshop stopped generating the WEB-INF/classes/_pageflow directory and all files in that. There are no visible changes in the project structure, but because of that all the Beehive page flow portlets are not working anymore saying they cannot find files from that directory. Any ideas? ...

Deliver JMS message to all nodes in the cluster in Weblogic

Is there a way to configure WebLogic 9.x cluster to receive a JMS message on a single JMS queue address from remote client and that the message is delivered to each cluster node? Any links would be great. ...

How to deploy WebLogic's JMS module to another server

If I have a JMS module defined in a file (my-module-jms.xml) copied from one of WebLogic 9.x domains, then is there a way to deploy that module to another WebLogic with minimal effort using either WebLogic Administration Console or WLST? ...

CXF + SSL + WebLogic 9.10

Hi I im developing a web application, its a servlet which basically acts as a front end for a web service, im using CXF for the web service client, the application is running on a WebLogic 9.10 server, every thing was working ok until the project owner decided to add ssl supprt, no big problem, since im using cxf whitout spring, i mana...

Unable to initalize log4j

Hi, I am trying to initialize log4j-1.2.8 for my application by creating a listener class implemented from the ApplicationLifecycleListener of Weblogic 9.2 When I deploy the application, I am getting following exceptions: java.lang.NoClassDefFoundError: org/apache/log4j/spi/RepositorySelector at java.lang.ClassLoader.defineClass1(Nati...

Using Maven to Deploy to Weblogic Clusters

org.codehaus.mojo weblogic-maven-plugin 2.9.1 We're currently using the weblogic maven plugin successfully to deploy to our local WebLogic 9.2 instances. When we try to deploy to a remote environment we have a problem. We use a two machine cluster, with the admin server and managed server on one machine, and another managed server on a...

WLST: deploy application but do not start it -- how?

Hello. I need to script an EAR deployment to Weblogic 9.2. Extra requirements I have though are: Application Name shall be the one I provide, not just EAR name Application is deployed in Prepared state, not Running one As far as I can tell, when I use deploy(), the name is got assigned by me (good!), but application starts right aw...

How to choose between system and application JMS modules in Weblogic 9.2?

We recently migrated an application from a Weblogic 7.x server to a 9.x server. In earlier versions of Weblogic, deciding where to put JMS objects like queues and topics was easy -- you just put them on a JMS server. Weblogic 9.x adds an extension to the JMS spec. You can either deploy JMS objects to a "system module" or an "application...

How can I get Weblogic to connect to a RedBrick database?

I am trying to get Weblogic 9.2.3 to talk to a legacy RedBrick database and am having trouble. I have the redbrick.jar file from the software installation and have added to my APP_RUNTIME_CLASSPATH and my MANIFEST_CLASSPATH. This is my jConnect template line: <url>jdbc:rbw:protocol:${DB_LT_SERVER}:${DB_LT_PORT}/${DB_LT_NAME}</url> <dr...

java.lang.ClassCastException: org.apache.xerces.jaxp.DocumentBuilderFactoryImpl while starting the weblogic.

As part of our application we are using apache's xerces jaxp parser. When we deploy the application on weblogic 9.2, we are getting the following error. org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.apache.cxf.wsdl.WSDLManager' defined in class path resource [META-INF/cxf/cxf.xml]: Instanti...

HTTP caching headers settings weblogic

Does anyone know how to modify weblogic settings to set the HTTP cache header to a far future date? For example in my current setup weblogic sets the http cache headers to expire in 5 hours (as a response of HTTP/1.1 304 Not Modified). This is the cache header value on a .gif file ... Date: Tue, 16 Mar 2010 20:39:13 GMT. I have re-c...

Redirecting http request to two different weblogic servers using the Weblogic proxy and Apache2

Hello All, I've read previous posts like "Redirecting https requests to two different weblogic servers using the Weblogic proxy and Apache2". But I have a different situation and I don't think I'm understanding this to well. I have an Apache 2 server (server1) that will receive http request for my application. Then I have two more serve...

Spring MVC and Weblogic integration

I get this error whenever I try to view my tutorial app in the browser WARNING: No mapping found for HTTP request with URI [/HelloWorld.Web] in DispatcherServlet with name 'dispatcher' That just means the request is being received by the dispatcher servlet but it can't forward it to a controller. But I can't seem to know where th...

Problem with JSTL and weblogic

I get the following error when I run my java ee app on weblogic, javax.servlet.jsp.el.ELException: Cannot find PropertyDescriptor for 'name' for bean 'class java.lang.String' I want to print a list of artists with the following class, public class Artist { private int id; private String name; private String genr...

Getting JAX-WS client work on Weblogic 9.2 with ant

I've recently had lots of issues trying to deploy a JAX-WS web servcie client on Weblogic 9.2. It turns out there is no straightforward guide on how to achieve this, so I decided to put together this short wiki entry hoping it might be useful for others. Firstly, Weblogic 9.2 does not support web servcies using JAX-WS in general. It com...

Weblogic: How do I list all logged on users?

I'd like to list the currently logged on users for my Weblogic domain Failing that, I'd like to know how many users are logged on. Ideally by using the admin console, or a script if I must. ...