-
DLL causes Websphere crashes
I'm running : IBM WebSphere Application Server, 5.1.0, Build Date: 11/4/03 on windows 2000 server with sp4.
I have developed a DLL in c++ to use a component that allow me to calculate something. I put it on my WebSphere\lib\ext dir.
This is the POJO i use to call the dll:
public class Valoriza{
static {
System.loadLibrary("ValorizadorDCV");
}
public static synchronized native String valorizar(String cNemotecnico, float nNominal, float nTir, float nPvp,float nTasaEstimada, float nMonto);
public DataVO valorizar(DataVO datos) throws DataVOException {
.....
String respuesta = valorizar(
datos.getNemotecnico(),
datos.getNominales().floatValue(),
datos.getTasaInternaRetorno().floatValue(),
datos.getVariacion().floatValue(),
datos.getTasa().floatValue(),
datos.getMonto().floatValue());
.....
}
Everytime when i use the Aplication, and then i shutdown the server, the next time i try to startup the server it falls (i mean the server starts, write some logs an then crashes), and i have to restart the computer.
How can i fix this problem?
Similar Threads
-
By Bruce Casson in forum VB Classic
Replies: 1
Last Post: 03-21-2002, 11:51 AM
-
By kishore in forum ASP.NET
Replies: 4
Last Post: 11-27-2001, 10:02 PM
-
By Antonio Paglia in forum Enterprise
Replies: 0
Last Post: 08-29-2000, 12:14 PM
-
By Antonio Paglia in forum Enterprise
Replies: 0
Last Post: 08-29-2000, 12:14 PM
-
By Sam Wood in forum Enterprise
Replies: 0
Last Post: 05-17-2000, 01:48 AM
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
Forum Rules
|
Top DevX Stories
Easy Web Services with SQL Server 2005 HTTP Endpoints
JavaOne 2005: Java Platform Roadmap Focuses on Ease of Development, Sun Focuses on the "Free" in F.O.S.S.
Wed Yourself to UML with the Power of Associations
Microsoft to Add AJAX Capabilities to ASP.NET
IBM's Cloudscape Versus MySQL
|
Bookmarks