A J2EE application deployed in the WebLogic server may be debugged in the
Eclipse IDE with the remote debugger provided by Eclipse. Without a debugger
the error message has to be obtained from the application server error log to
debug the application.
With the remote debugger provided by Eclipse, exception breakpoints may be
added to the application file to debug. When an application is run in
WebLogic and the application generates an error, the application gets
suspended and the Eclipse IDE Debug perspective displays the error. In this
tutorial we will debug a WebLogic Application Server application in Eclipse.
To debug an application deployed in the WebLogic Server from Eclipse, start
the WebLogic Server in debug mode and configure a remote debugging
configuration in ... (more)
The WebLogic-Eclipse plug-in is designed to run the WebLogic Server from the
Eclipse IDE. With the WebLogic-Eclipse plug-in, the WebLogic Server gets
started and stopped from Eclipse. An application deployed in the WebLogic
Server can be debugged from Eclipse with the plug-in. By installing the
WebLogic plug-in in Eclipse the WebLogic Server can be configured and
administered from the Ec... (more)
The JBoss open source application server is commonly used in the development
phase of a J2EE project. In the production phase the commercial BEA WebLogic
server is preferred because of its enhanced set of features. Without
modifications, an application developed in JBoss does not deploy in WebLogic
server.
The deployment descriptors for the WebLogic server are different from the
JBoss d... (more)
The Apache Jakarta POI project provides components for the access and
generation of Excel documents. The POI HSSF API is used to generate Excel
Workbooks and to add Excel spreadsheets to a workbook. An Excel spreadsheet
consists of rows and cells. The layout and fonts of a spreadsheet are also
set with the POI HSSF API.
A database table is often required to be presented in an Excel spread... (more)
This article describes the configuration of various JDBC-related features in
the BEA WebLogic 8.1 Server. Although we use Oracle 8.1.7 as our example
database management system (DBMS), the general concepts are easily
transferable to other relational databases as long as the databases in
question provide connectivity through JDBC.
Introduction
JDBC is a standard Java API that is used direc... (more)