Weblogic transaction timed out after 302/603 seconds issue

Problem: Transaction Rolledback.: weblogic.transaction.internal.TimedOutException: Transaction timed out after 603 seconds A lot of you might have encountered an issue of Weblogic transaction timed out after 302/603 etc seconds. We have been struggling with this for some time as well. Non Recoverable System Fault : Transaction Rolledback.: weblogic.transaction.internal.TimedOutException: Transaction timed out after 603 seconds BEA1-3FB6FB464035C13E3227 at […]

read more

SOA Suite 11g – Non ‘Sticky’ Preferences after Server Restart

A collegue of mine shared this useful piece of information, which I thought you all might benefit from. Some of you may be aware we have encountered issues previously with non sticky preferences when used with SOA 11g BPEL Components. The problem surrounded: Problem: 1) Connect to Fusion Middleware Control. 2) Expand SOA -> soa-infra […]

read more

Oracle Service Bus (OSB) Development Best Practices.

Strive to have a single message representation for as much of the pipeline as possible. This makes it easy to insert things at various points since you don’t have to think about what the current document format is. Always configure the service-level error handler. For non-SOAP services the built-in error handler only returns a transport […]

read more

Oracle Service Bus (OSB formerly ALSB) and Mediator (formerly OESB)

With the acquisition of BEA Oracle has taken ALSB made some changes to it and re-branded it as Oracle Service Bus (OSB). With the co-existence of OSB and Mediator one has to wonder, what’s the strategic direction from Oracle for OSB and mediator? To start with, Oracle Fusion Middleware and OSB come in two different […]

read more

Triggers

Main Index o Creating a Trigger o Modifying a Trigger o Renaming a Trigger o Viewing a Trigger o Deleting a Trigger A TRIGGER is a special type of stored procedure, which is ‘fired’ automatically when the data in a specified table is modified. It is invoked when an INSERT, UPDATE, or DELETE action is […]

read more

TSQL Stored Procedures » Modifying a Stored Procedure

The stored procedure modification is usually done using the ALTER PROCEDURE statement. It can also be done by deleting the existing stored procedure and then creating a new one with the same name. If we are using the ALTER PROCEDURE statement any of the permissions associated with the stored procedure are retained. In the other […]

read more

T-SQL –>Stored Procedures –> Using Parameters

Parameters can be passed to the stored procedures. This makes the procedure dynamic. The following points are to be noted: * One or more number of parameters can be passed in a procedure. * The parameter name should proceed with an @ symbol. * The parameter names will be local to the procedure in which […]

read more

Struts Interview Questions

Q: What is Struts?A: The core of the Struts framework is a flexible control layer based on standard technologies like Java Servlets, JavaBeans, ResourceBundles, and XML, as well as various Jakarta Commons packages. Struts encourages application architectures based on the Model 2 approach, a variation of the classic Model-View-Controller (MVC) design paradigm. Struts provides its […]

read more

Hibernate Interview Questions

1. What is Hibernate? Hibernate is a powerful, high performance object/relational persistence and query service. This lets the users to develop persistent classes following object-oriented principles such as association, inheritance, polymorphism, composition, and collections. 2. What is ORM? ORM stands for Object/Relational mapping. It is the programmed and translucent perseverance of objects in a Java […]

read more

Getting Started with Hibernate.

Hibernate Home http://www.javalobby.org/java/forums/t104442.html http://www.developersbook.com/hibernate/interview-questions/hibernate-interview-questions-faqs.php http://faqs.javabeat.net/hibernate/hibernate-interview-questions-faqs.php

read more