weblogic8.x

Possible to stop MDB in Weblogic 8.x?

半城伤御伤魂 提交于 2020-01-07 06:55:14
问题 Is it possible to programatically stop an MDB from listening to a queue in Weblogic 8.1? I know this can be done in JBoss and later versions of Weblogic but I wasn't sure if it's possible in 8.x. 回答1: This is possible with Weblogic 9.x and Weblogic 10.x through the MessageDrivenEJBRuntimeMBean that exposes suspend/resume methods (see BEA WebLogic Server 9.0 API Reference or WebLogic Server 10.3 API Reference) as explained in this Thread: Suspending/Pausing a MDB's Consumption Programmatically

java.lang.NoClassDefFoundError: com/itextpdf/text/DocumentException

こ雲淡風輕ζ 提交于 2019-12-30 17:22:48
问题 I am trying to generate a dynamic PDF file through the following servlet. import java.io.*; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; // Document Object import com.itextpdf.text.Document; //For adding content into PDF document import com.itextpdf.text.Paragraph; import com.itextpdf.text.pdf.PdfWriter; import com.itextpdf.text.DocumentException; public class

What is weblogic.socket.Muxer?

与世无争的帅哥 提交于 2019-12-14 03:43:26
问题 Does any of you understand what weblogic.socket.Muxer is used for in WebLogic 8.1? Often in thread dumps I see stack traces similar to this: "ExecuteThread: '0' for queue: 'weblogic.socket.Muxer'" id=20 idx=0x68 tid=26709 prio=5 alive, in native, blocked, daemon -- Blocked trying to get lock: java/lang/String@0x2b673d373c50[fat lock] at jrockit/vm/Threads.waitForUnblockSignal()V(Native Method) at jrockit/vm/Locks.fatLockBlockOrSpin(Locks.java:1675)[optimized] at jrockit/vm/Locks.lockFat(Locks

Exception while calling stored procedure :Bigger type length than Maximum

寵の児 提交于 2019-12-11 06:00:12
问题 HI I am getting this exception when I am calling any stored procedure from my J2EE app. Exception while calling stored procedure :Bigger type length than Maximum I am having Oracle 9.1.0.7, JDK1.4 and using ojdbc14.jar running on Weblogic 8.1 Please advise what could be the root cause ? Below is the manifest of my ojdbc14.jar Manifest-Version: 1.0 Implementation-Version: "Oracle JDBC Driver version - 10.1.0.2.0" Specification-Title: "Oracle JDBC driver classes for use with JDK1.4"

EJB weblogic.ejb20.cache.CacheFullException

自闭症网瘾萝莉.ら 提交于 2019-12-06 03:10:33
问题 I am working on one application using EJB1.2. previously running fine but from past few days I am getting following exception Exception in ejbLoad:: weblogic.ejb20.cache.CacheFullException: size=85783, target=5000, incr=1 at weblogic.ejb20.cache.EntityCache$SizeTracker.shrinkNext(JI)Lweblogic.ejb20.cache.EntityCache$MRUElement;(EntityCache.java:438) at weblogic.ejb20.cache.EntityCache.put (Ljavax.transaction.Transaction;Lweblogic.ejb20.cache.CacheKey;Ljavax.ejb.EntityBean;Lweblogic.ejb20

What is weblogic.socket.Muxer?

主宰稳场 提交于 2019-12-05 00:08:59
Does any of you understand what weblogic.socket.Muxer is used for in WebLogic 8.1? Often in thread dumps I see stack traces similar to this: "ExecuteThread: '0' for queue: 'weblogic.socket.Muxer'" id=20 idx=0x68 tid=26709 prio=5 alive, in native, blocked, daemon -- Blocked trying to get lock: java/lang/String@0x2b673d373c50[fat lock] at jrockit/vm/Threads.waitForUnblockSignal()V(Native Method) at jrockit/vm/Locks.fatLockBlockOrSpin(Locks.java:1675)[optimized] at jrockit/vm/Locks.lockFat(Locks.java:1776)[optimized] at jrockit/vm/Locks.monitorEnterSecondStageHard(Locks.java:1312)[optimized] at

EJB weblogic.ejb20.cache.CacheFullException

痞子三分冷 提交于 2019-12-04 08:25:25
I am working on one application using EJB1.2. previously running fine but from past few days I am getting following exception Exception in ejbLoad:: weblogic.ejb20.cache.CacheFullException: size=85783, target=5000, incr=1 at weblogic.ejb20.cache.EntityCache$SizeTracker.shrinkNext(JI)Lweblogic.ejb20.cache.EntityCache$MRUElement;(EntityCache.java:438) at weblogic.ejb20.cache.EntityCache.put (Ljavax.transaction.Transaction;Lweblogic.ejb20.cache.CacheKey;Ljavax.ejb.EntityBean;Lweblogic.ejb20.interfaces.CachingManager;)V(EntityCache.java:141) at weblogic.ejb20.manager.DBManager.getReadyBean(Ljavax

java.lang.NoClassDefFoundError: com/itextpdf/text/DocumentException

时光毁灭记忆、已成空白 提交于 2019-12-01 16:17:06
I am trying to generate a dynamic PDF file through the following servlet. import java.io.*; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; // Document Object import com.itextpdf.text.Document; //For adding content into PDF document import com.itextpdf.text.Paragraph; import com.itextpdf.text.pdf.PdfWriter; import com.itextpdf.text.DocumentException; public class CreatePDFExample extends HttpServlet { //invoked from doGet method to create PDF through servlet protected void

How to get caught exceptions of my application in the Glassfish 2.1 server log?

主宰稳场 提交于 2019-12-01 01:21:07
We have ported an EJB application from BEA Weblogic 8.1 to Glassfish 2.1. The client is accessing the server through RMI, no web client. In Weblogic exceptions were logged automatically to server.log, even when they are catched and rethrown to the client. In Glassfish with default configuration we can't see them in server.log. How can I get the same behavior as with Weblogic? Glassfish 2.1 logs via java.util.logging. Logging content, by default, is collected in [Glassfish root]/domains/[domain name]/logs/server.log For configuring j.u.l, find the logging.properties file in the JRE that is used

How to get caught exceptions of my application in the Glassfish 2.1 server log?

妖精的绣舞 提交于 2019-11-30 21:22:22
问题 We have ported an EJB application from BEA Weblogic 8.1 to Glassfish 2.1. The client is accessing the server through RMI, no web client. In Weblogic exceptions were logged automatically to server.log, even when they are catched and rethrown to the client. In Glassfish with default configuration we can't see them in server.log. How can I get the same behavior as with Weblogic? 回答1: Glassfish 2.1 logs via java.util.logging. Logging content, by default, is collected in [Glassfish root]/domains/