Servlets And JNI.. real urgent help.

Hi all,
I have the JNI code integrated to the servlet .The servlet works fine at first time.but when i modified some source code of servlet (not native library) and redeploy it,then reload the same servlet in web browser ,i get "Native library already loaded in another classloader java.lang.UnsatisfiedLinkError" error.
Any solution to this ???
Thanks
jetdvk

Have you fixed this?
I presume you are hot deploying the servlet ? if so then i also presume that you have either some static code or some run once code that loads your native code when your class is used for the first time.
This code is being ran again as the class is being reloaded, therefore you have two choices,
1) wrap the call loading the native library, and just ignore the exception. Then call a check method in the native code to make sure that the library was loaded.
2) Move the code that loads the native library out to another class that is not hot deployed. Your servlet can call this when it is first accessed, and the other class will know whether it has already loaded the dll and will not attempt to load it again.

Similar Messages

  • b font color ='red' Java JDBC and Oracle DB URGENT HELP PLEASE /font /b

    Hello, I am a newbie. I'm very interested in Java in relation to JDBC, Oracle and SAP.I am trying to connect to an Oracle DB and I have problems to display the output on the consule in my application. What am I doing wrong here . Please help me. This is my code: Please Explain
    import java.sql.*;
    import java.sql.DriverManager;
    import java.sql.Connection;
    public class SqlConnection {
         public static void main(String[] args) {
              Class.forName("oracle.jdbc.driver.OracleDriver"); //Loading the Oracle Driver.
              Connection con = DriverManager.getConnection
              ("jdbc:orcle:thin:@34.218.5.3:1521:ruka","data","data"); //making the connection.
              Statement stmt = con.createStatement ();// Sending a query to the database
              ResultSet rs = stmt.executeQuery("SELECT man,jean,test,kok FROM sa_kostl");
              while (rs.next()) {
                   String man = rs.getString("1");
                   String jean = rs.getString("2");
                   String test = rs.getString("3");
                   String kok = rs.getString("4");
                   System.out.println( man, jean, test,kok );//here where my the
                                                 //compiler gives me errors
              stmt.close();
              con.close();
    }

    <b><font color ='red'>Java JDBC and Oracle DB URGENT HELP PLEASE</font></b>Too bad your attempt at getting your subject to have greater attention failed :p

  • Need to do a remote wipe of my iphone - stolen 24 hrs ago and . Need urgent help on this. Thanks - Pinaki

    Need to do a remote wipe of my iphone - stolen 24 hrs ago  Need urgent help on this. Thanks - Pinaki
    < Personal Information Edited By Host >

    Follow the steps in this article:
    iCloud: Erase your device
    Sign in to icloud.com/#find with your Apple ID (the one you use with iCloud), then click Find My iPhone.If you’re using another iCloud app, click the app’s name at the top of the iCloud.com window, then click Find My iPhone.If you don’t see Find My iPhone on iCloud.com, your account just has access to iCloud web-only features. To gain access to other iCloud features, set up iCloud on your iOS device or Mac.
    Click All Devices, then select the device you want to erase.If you have Family Sharing set up, your family members’ devices appear below their names.
    In the device’s Info window, click Erase [device].
    To erase:
    An iOS device: Enter your Apple ID password. If the device you’re erasing has iOS 7 or later, enter a phone number and message. The number and message will be displayed on the screen after the device is erased.

  • [b]Java JDBC and Oracle DB URGENT HELP PLEASE[/b]

    Hello, I am a newbie. I'm very interested in Java in relation to JDBC, Oracle and SAP.I am trying to connect to an Oracle DB and I have problems to display the output on the consule in my application. What am I doing wrong here . Please help me. This is my code: Please Explain
    import java.sql.*;
    import java.sql.DriverManager;
    import java.sql.Connection;
    public class SqlConnection {
    public static void main(String[] args) {
    Class.forName("oracle.jdbc.driver.OracleDriver"); //Loading the Oracle Driver.
    Connection con = DriverManager.getConnection
    ("jdbc:orcle:thin:@34.218.5.3:1521:ruka","data","data"); //making the connection.
    Statement stmt = con.createStatement ();// Sending a query to the database
    ResultSet rs = stmt.executeQuery("SELECT man,jean,test,kok FROM sa_kostl");
    while (rs.next()) {
    String man = rs.getString("1");
    String jean = rs.getString("2");
    String test = rs.getString("3");
    String kok = rs.getString("4");
    System.out.println( man, jean, test,kok );//here where my the
    //compiler gives me errors
    stmt.close();
    con.close();
    }

    Hello, I am a newbie. I'm very interested in Java in
    relation to JDBC, Oracle and SAP.I am trying to
    connect to an Oracle DB and I have problems to
    display the output on the consule in my application.
    What am I doing wrong here . Please help me. This is
    my code: Please Explain
    import java.sql.*;
    import java.sql.DriverManager; <--- Why do you have these (java.sql.* is enough)
    import java.sql.Connection;
    public class SqlConnection {
    public static void main(String[] args) {// Where's the try/catch block?
    >
    Class.forName("oracle.jdbc.driver.OracleDriver");
    //Loading the Oracle Driver.
    Connection con = DriverManager.getConnection
    ("jdbc:orcle:thin:@34.218.5.3:1521:ruka","data","data"
    ); //making the connection.
    Statement stmt = con.createStatement ();// Sending a
    query to the database
    ResultSet rs = stmt.executeQuery("SELECT
    man,jean,test,kok FROM sa_kostl");
    while (rs.next()) {
    String man = rs.getString("1");
    String jean = rs.getString("2");
    String test = rs.getString("3");
    String kok = rs.getString("4");
    System.out.println( man, jean, test,kok );//here
    where my the
    //compiler gives me errors
    stmt.close();
    con.close();
    }The compiler is probably complaining about the lack of a try/catch block.
    The fact that you can't understand the compiler messages, and didn't read the javadocs enough to know that you needed a try/catch block, suggest to me that you need to learn a lot more about Java. This is pretty fundamental stuff.
    When you have problems, it's best to include information about what the compiler or runtime is telling. Error messages and stack traces are helpful.
    In your case the error is so elementary that more information isn't necessary.
    %

  • Servlet and JNI

    Hi,
    I have a servlet which uses jni to call a dll. I have my servlet in weblogic server 6.1
    Whenever i access this servlet i get the foll. error(java.lang.UnsatisfiedLinkError):
    <Error> <HTTP> <[WebAppServletContext(5602251,Defa
    ultWebApp,/DefaultWebApp)] Servlet failed with Exception
    java.lang.UnsatisfiedLinkError: call
    at ISAPIServ.call(Native Method)
    at ISAPIServ.doGet(ISAPIServ.java:11)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
    pl.java:265)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
    pl.java:200)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppSe
    rvletContext.java:2495)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestIm
    pl.java:2204)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    >
    I have my dll in the wlserver6.1\bin folder and have the path set properly.
    Can anybody help??
    Thanx in advance.
    -Prabha.

    there can be several problems:
    1. the JVM did not load the dll.
    (a). the DLL was not in the the path and the JVM could not locate the file in the path.
    This does not seem to be the error, coz in this case the error would have been
    Exception in thread "main" java.lang.UnsatisfiedLinkError: no ATLFireJNIRaper in
    java.library.path
    at java.lang.ClassLoader.loadLibrary(Unknown Source)
    at java.lang.Runtime.loadLibrary0(Unknown Source)
    at java.lang.System.loadLibrary(Unknown Source)
    at ATLFire.<clinit>(ATLFire.java:17)
    (b). problem with the DLL name: I hope you used a System.loadLibrary("MyNativeCode"); //where dll's name is MyNativeCode.dll
    This too does not seem to be the problem. Follows from (a)
    (c) you forgot to call the System.loadLibrary("MyNativeCode") ; function -- likely the error
    2. The native method, called "call" I guess, is not there at all in th DLL that the JVM loaded.
    this too may be an error.
    Please check if this indeed is the case.
    I hope there is a corrosponding
    JNIEXPORT Java_packageName_className_methodName(..) there in the C++ code that u extended.
    Please go thru this check list and see if you are able to find the bug. If not, can u mail me the Java and the native code?
    At least try this:
    public class MyTestClass {
    static
    System.loadLibrary("MyDLL");
    public native RETURN_TYPE call(list, of, arguments);
    public static void main(String args[])
    MyTestClass oMyTestClass = new MyTestClass();
    RETURN_TYPE retval = oMyTestClass.call(pass, the, args, here...);
    System.out.println("the function returned " + retval);
    I hope this class will help you unit test your dll and native method.
    Please let me know if this solves your problem.
    Also, I'd like to know the reason for going for a native method.
    Is it coz of a bottleneck ? Or is to reuse some native code/ dll/ COM component?
    I am open for all discussions regarding JNI, Java, VC++ etc.
    I can be reached at [email protected]
    cheers

  • Servlets and JNI

    Hi,
    We have a C library which does financial computations and some of our customers have expressed the need to access our library from their servlets.
    This is why we have developed a JNI wrapper which encapsulates all functionality of our library.
    Now, do the specs allow using JNI in conjunction with servlets? I've studied the Java EE, JSP and servlet specs but JNI isn't mentioned anywhere...
    I've also found this thread with a quite similar question but without a clear answer whether it's allowed or not.
    -- Vincent

    yes, if the server's security policy allows it. In a basic server environment you can do just about anything you can do in a regular java application.

  • Problem in FPM comp(pcui_gp~xssutils and pcui_gp~xssfpm) (urgently help)

    Hi,
    I am working on Floor Plan Managerin which i am using pcui_gpxssutils and pcui_gpxssfpm. Through Syn Archives , I have copied in my Local development .Then I created project in the local development. But when I expand these two FPM components , I am not getting any components, views etc. in it. I need to use FcEmployeeServices of pcui_gp~xssutils through used webdynpro components.
    Please help me why any components are not visible in FPM component.
    Regards
    Manish Jaiswal

    I think you are creating a DC with FPM, so you need to add pcui_gpxssutils and pcui_gpxssfpm DC's as used DC"s in you application, and create the webdynpro component and add the used dc's from fpm and utilis or else you may be added wrongly in the used dc's ,check that you have to select all options like runtime, build time and deploy time except design time.
    Cheers,
    Apparao

  • SQL PRO AND ORACLE SQL URGENT HELP

    Can any one help me out here withe these questions:
    Pro C Qusetions:
    1.     What are the SQLCA and SQLDA ?
    2.     What is a mutating table ?
    3.     What are indicator variables and how are they used ?
    4.     What are the components of the Oracle VARCHAR type and how should such a structure be loaded into a C Char type ?
    5.     Why would you use the ‘ALTER SESSION’ command in conjunction with the tkprof program and what is the purpose of each step ?
    ORACLE SQL QUESTIONS:
    1.0     How would you move data from one Oracle database to another Oracle database?
    2.0     How would you import data into an Oracle database from another DBMS or flat file?
    3.0     What is an Outer Join and how does the output differ from a simple join?
    4.0     What is the difference between the conditional expressions IN and EXISTS ? In what circumstances would you USE EACH.
    5.0      You cannot create a unique index on a table due to duplicate values. Describe how you find the offending row and subsequently delete it.

    1. What are the SQLCA and SQLDA ?
    SQLCA = SQL Communications area: stores status variable and error message text. manual reference
    SQLDA = SQL Descriptor Area - stores information about bind variables. manual reference
    2. What is a mutating table ?
    A table that is being modified and that you are trying to select from. Usually encountered in a before insert/update trigger when trying to select from the table that is being inserted/updated, which causes the dreaded ORA-04091 error.
    3. What are indicator variables and how are they used ?
    Used in Pro*C to tell if the table column contains the value NULL.
    4. What are the components of the Oracle VARCHAR type and how should such a structure be loaded into a C Char type ?
    varchar2 is a null-terminated string. Use Pro*C extended type VARCHAR. Manual Reference
    5. Why would you use the "ALTER SESSION" command in conjunction with the tkprof program and what is the purpose of each step ?
    Use alter session to set tracing on for your session:
    alter session set sql_trace = true ;
    this will create a trace file in the user dump destination
    (select value from v$parameter where name = 'user_dump_dest'). Use tkprof to format the trace file.
    1.0 How would you move data from one Oracle database to another Oracle database?
    Export / Import Oracle utility, Database link and INSERT ... SELECT ..., Database link and COPY command, save to flat file and use SQL*Loader, transportable tablespaces, database "cloning" by copying database files over to a new server and creating a new instance based on those files. List of manuals look up CREATE DATABASE LINK in the SQL Reference, COPY command in the SQL*Plus reference, Export/Import or SQL*Loader in the Utilities manual.
    2.0 How would you import data into an Oracle database from another DBMS or flat file?
    SQL*Loader Oracle Utility
    3.0 What is an Outer Join and how does the output differ from a simple join?
    An example is worth 1000 words.
    SQL> select * from emp ;
       EMP_NO EMP_NAME     DEPT_NO
            1 SMITH              1
            2 JONES              1
            3 BROWN              2
            4 BOND               5
    SQL> select * from dept ;
      DEPT_NO DEPT_NAME
            1 SALES
            2 MARKETING
    SQL> -- inner or "ordinary" join
    SQL> select a.emp_name, b.dept_name
      2  from emp a, dept b
      3  where a.dept_no = b.dept_no ;
    EMP_NAME   DEPT_NAME
    SMITH      SALES
    JONES      SALES
    BROWN      MARKETING
    SQL> -- outer join
    SQL> select a.emp_name, b.dept_name
      2  from emp a, dept b
      3  where a.dept_no = b.dept_no (+) ;
    EMP_NAME   DEPT_NAME
    SMITH      SALES
    JONES      SALES
    BROWN      MARKETING
    BOND5.0 You cannot create a unique index on a table due to duplicate values. Describe how you find the offending row and subsequently delete it.
    Using exceptions clause of enable constraint
    ALTER TABLE employees
    ENABLE VALIDATE CONSTRAINT emp_manager_fk
    EXCEPTIONS INTO exceptions ;
    Find rowids in exceptions table and use those rowids to delete the "bad" data. See SQL reference on alter table for more details.

  • PLEASE HELP!!!!!!!!!!! ADOBE SHOCKWAVE SLOW, Lagging, and I NEED URGENT HELP!!

    Hello everybody, and how are you all doing on this wonderful Friday?
    Today after doing research on the support website for Adobe ShockWave flash player, I'm here as a last resourt.
    Allow me to explain the issue!
    WARNING:
    THIS IS GOING TO BE EXTREMELY LONG, BUT I NEED HELP VERY VERY BADLY!!
    I've waisted people's time because of this issue.
    I'm using an HP Windows 7 Laptop with latest version of Windows 7!
    I have Adobe ShockWave 11.7 the LATEST VERSION and It is a great program.
    However in one of my simulators which is a V500  Evita Ventilator simulator from the company Drager, the performance is HORRID, and when I say horrid, I mean HORRID TIMES 30 and then some.
    Keep in mind that this has been tested by the company on other computers, and it works just fine, however on mine the waveforms and data is choppy, slow and what it will do is it will be working smoothly one second, the next second It lags and then catches up, then lags again, and It basically drags along miserably. I used this program online and then when I contacted Drager the owners of the simulator, they thought I get a DVD of the simulator. THEY GAVE IT TO ME FREE OF CHARGE. I got it, and It was still slow and Jerky. I had used Google Chrome to use the simulator online HOWEVER, when I used the DVD, It was still slow. I have a LOAD of computer space, and have tried uninstalling Adobe Shockwave, Reinstalling it, then doing that several times. NOTHING. NOW WHAT??
    I'm desperate right now. When I say DESPERATE, THIS HAS GOT TO BE FIXED AS SOON AS POSSIBLY POSSIBLE.
    ASAPP!!!!!!!!!!!!!!!
    Is there some setting I can adjust?
    Or SOMETHING???
    The thing is other things that require Adobe Shockwave work just fine. I use a lot of simulators.
    Its just this simulator.
    PLEASE RESPOND!!
    THANK YOU, and God bless.                                                 

    RotoProne wrote:
    I have Adobe ShockWave 11.7 the LATEST VERSION and It is a great program.
    Shockwave Flash = Flash Player (11.7)
    This is the Shockwave Player (v12) forum.
    Please post your messages in the proper forum: http://forums.adobe.com/community/flashplayer
    cheers

  • Damaged and Lost Data - URGENT HELP

    Can anyone help me. I need to recover some data from a usb stick that has become corrupted. It seemed as though the stick had hung so after a bit i took it out and now it sees nothing when plugged in apart from a weird file. Although if I perform a verify on it with disk utility it says there are 301 files on it, but a repair achieves nothing. I have even tried techtools pro but i can't even switch to the stick. this may be because it is fat32.
    does anyone have any ideas as quite desperate. There are 30 people waiting on the data that I have here.

    Hi JayLex;
    TTBOMK There are no free recovery programs.
    You can download a demo copy which will tell you what is going to recovered when you pay for it. So I suggest you try the demo and see if it will recover enough to be worth paying the full charge for it.
    Allan

  • INTEGER DATA TYPE and Numeric Oracle URGENT Help needed

    Hello does any body knows if i run this statement of create table in oracle 9.2
    what is maximum number of digit the test_num can stores....
    create table test
    test_num INTEGER NOT NULL
    I have to reply to my client urgently..
    Regards
    Mahesh
    Ramnarayan123

    All the Oracle reference manuals are on-line at <http://tahiti.oracle.com>. A quick search on "INTEGER" will reveal the answer (38 decimal digits).
    Justin

  • Unicode and databases support urgent help

    Hello!
    i want to know that how we can store the unicode characters
    in a database.
    is this necessary for a database to support unicode or is there any
    other way to do this.
    Qaiser Mehmood
    [email protected]

    From example of Oracle I belive, that your RDBMS has to support Unicode. Another option is to store your Unicode as binary object. But this has to be hard :(

  • Urgent HELP required on forming the Matrix of data using PL/SQL

    Hi All,
    I'm new to this thread and require your urgent help in this regard.
    I've got a requirement for building a 5000 X 5000 matrix using PL/SQL. My original data tables have 5000 rows each and I need to do a correlation analysis using this data and need to store in a physical table and not in-memory. Is this feat achievable using mere PL/SQL? I understand that Oracle DB has a limitation of 1000 columns(but not sure) and hence I'd like to know whether there is any work-around for such scenarios. If not, what are the other alternative method(s) to achieve this feat? Do I need to use any 3rd party tools to get this done? An early reply from the experts is highly appreciated.
    Thanking you all Gurus in advance.
    Rgds
    Sai

    Welcome to OTN!
    I'll get to your quesiton in a moment, but first some welcome information. Many OTN posters consider it impolite to mark threads as "urgent". We are volunteers and have jobs of our own to do without people we don't know making demands. You are brand new and deserve some patience but please understand this. It is very likely before I finish this post someone will complain about the word "urgent" in your subject.
    On to more interesting things :)
    You can do the matrix, but are out of luck with a 5000 x 5000 table because Oracle only allows 1000 columns per table. There are ways to work around this.
    How do do the matrix depends on what you want to do. You can do this different ways. You can create a table beforehand and use PL/SQL or simple SQL to populate it, or use the CREATE TABLE AS syntax to create and populate it in one step if you can get the underlying SQL to work the way you want, something like
    create table my_table as
      select a.*, b.*
        from table1 a, table2 bcan populate a matrix from 2 tables with an intentional cartesian join (the WHERE clause was left out intentionally, provided your data is already in the data base.
    If not you can use a PL/SQL routine to populate the data.
    There are a couple of ways to solve the 1000 column limit. The easiest way might be to have 5 collections of 1000 columns each. A more complicated but more elegant soltion would be to have nested collections, allowing 2 colliections that you can loop through - a collection of collections. Nested collections can be hard to work with. A third way would be to use nested tables in the database but I personally do not like them and the insert, update, and delete statements for nested tables are hard to use.
    I'm not going to give a code example because I am not sure which solution is best for you. If you have further questions post them.

  • Your urgent help will be very much appreciated

    I have a problem whenever I connect my database and need your urgent help. the sample source code is below
    import java.sql.*;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    public class Table extends JFrame
    private Connection con;
    private JTable table;
    public Table()
         String url = "jdbc:odbc:Books";
         String username="";
         String password="";
         try{
         Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
         con = DriverManager.getConnection(url, username, password);
         catch(ClassNotFoundException cnfex)
         System.err.println("Failed to load JDBC/ODBC driver.");
         cnfex.printStackTrace();
         System.exit(1);
         catch(SQLException sqlex)
         System.err.println("Failed to connect");
         sqlex.printStackTrace();
         getTable();
         setSize(45,150);
         show();
    public void getTable()
         Statement state;
         ResultSet result;
         try{
         String query="Select * from Author";
         state=con.createStatement();
         result=state.executeQuery(query);
         displayResult(result);
         state.close();
         catch(SQLException sqlex)
         sqlex.printStackTrace();
    public void displayResult(ResultSet rs)throws SQLException
    boolean moreRecord=rs.next();
    if (!moreRecord)
    JOptionPane.showMessageDialog(this, "ResultSet contained no record");
    setTitle("No records to display");
    return;
    setTitle("Author table from Books");
    Vector columnHeads=new Vector();
    Vector rows=new Vector();
    try{
    ResultSetMetaData rsmd=rs.getMetaData();
    for (int i=1; i<=rsmd.getColumnCount(); i++)
    columnHeads.addElement(rsmd.getColumnName(i));
    do{
    rows.addElement(getNextRow(rs, rsmd));
    }while(rs.next());
    table=new JTable(rows, columnHeads);
    JScrollPane scroller=new JScrollPane(table);
    getContentPane().add(scroller,BorderLayout.CENTER);
    validate();
    catch(SQLException sqlex)
    sqlex.printStackTrace();
    public Vector getNextRow(ResultSet rs, ResultSetMetaData rsmd)
              throws SQLException
    Vector currentRow=new Vector();
    for (int i=1; i<=rsmd.getColumnCount(); i++)
    switch (rsmd.getColumnType(i))
    case Types.VARCHAR:
         currentRow.addElement(rs.getString(i));
         break;
         case Types.INTEGER:
         currentRow.addElement(new Long(rs.getLong(i)));
         break;
    default:
    System.out.println("Type was: "+rsmd.getColumnTypeName(i));
    return currentRow;
    public void shutDown()
         try{
         con.close();
         catch(SQLException sqlex)
         System.err.println("Unable to disconnect");
         sqlex.printStackTrace();
    public static void main(String args[])
         final Table app=new Table();
         app.addWindowListener( new WindowAdapter()
         public void windowClosing(WindowEvent e)
              app.shutDown();
              System.exit(0);

    Thank you for your help. When I compile it, it is fine, the problem happens when run it.
    Unexpected Signal : EXCEPTION_ACCESS_VIOLATION occurred at PC=0x6d448d54
    Function name=(N/A)
    Library=C:\Program Files\JavaSoft\JRE\1.3.1_05\bin\hotspot\jvm.dll
    NOTE: We are unable to locate the function name symbol for the error
    just occurred. Please refer to release documentation for possible
    reason and solutions.
    Current Java thread:
    at sun.jdbc.odbc.JdbcOdbc.driverConnect(Native Method)
    at sun.jdbc.odbc.JdbcOdbc.SQLDriverConnect(Unknown Source)
    at sun.jdbc.odbc.JdbcOdbcConnection.initialize(Unknown Source)
    at sun.jdbc.odbc.JdbcOdbcDriver.connect(Unknown Source)
    at java.sql.DriverManager.getConnection(Unknown Source)
    at java.sql.DriverManager.getConnection(Unknown Source)
    at Table.<init>(Table.java:26)
    at Table.main(Table.java:145)
    Dynamic libraries:
    0x00400000 - 0x00405000 C:\WINNT\system32\java.exe
    0x77F80000 - 0x77FFB000 C:\WINNT\System32\ntdll.dll
    0x77D90000 - 0x77DED000 C:\WINNT\system32\ADVAPI32.dll
    0x77E60000 - 0x77F35000 C:\WINNT\system32\KERNEL32.DLL
    0x786F0000 - 0x78761000 C:\WINNT\system32\RPCRT4.DLL
    0x78000000 - 0x78046000 C:\WINNT\system32\MSVCRT.dll
    0x60000000 - 0x6003A000 c:\program files\rising\rav\ApiHook.dll
    0x05000000 - 0x0502E000 c:\program files\rising\rav\MemMon.dll
    0x77DF0000 - 0x77E55000 C:\WINNT\system32\USER32.dll
    0x77F40000 - 0x77F7C000 C:\WINNT\system32\GDI32.DLL
    0x75E00000 - 0x75E1A000 C:\WINNT\System32\IMM32.DLL
    0x6D420000 - 0x6D4F7000 C:\Program Files\JavaSoft\JRE\1.3.1_05\bin\hotsp
    ot\jvm.dll
    0x77530000 - 0x77560000 C:\WINNT\system32\WINMM.dll
    0x6D220000 - 0x6D227000 C:\Program Files\JavaSoft\JRE\1.3.1_05\bin\hpi.d
    ll
    0x6D3B0000 - 0x6D3BD000 C:\Program Files\JavaSoft\JRE\1.3.1_05\bin\verif
    y.dll
    0x6D250000 - 0x6D266000 C:\Program Files\JavaSoft\JRE\1.3.1_05\bin\java.
    dll
    0x6D3C0000 - 0x6D3CD000 C:\Program Files\JavaSoft\JRE\1.3.1_05\bin\zip.d
    ll
    0x6D020000 - 0x6D12A000 C:\Program Files\JavaSoft\JRE\1.3.1_05\bin\awt.d
    ll
    0x777C0000 - 0x777DE000 C:\WINNT\system32\WINSPOOL.DRV
    0x75010000 - 0x75020000 C:\WINNT\system32\MPR.DLL
    0x77A30000 - 0x77B25000 C:\WINNT\system32\ole32.dll
    0x6D1E0000 - 0x6D21B000 C:\Program Files\JavaSoft\JRE\1.3.1_05\bin\fontm
    anager.dll
    0x6DD30000 - 0x6DD36000 C:\WINNT\System32\INDICDLL.dll
    0x37210000 - 0x3723D000 C:\WINNT\DOWNLO~1\CnsMin.dll
    0x77C50000 - 0x77C9A000 C:\WINNT\system32\SHLWAPI.dll
    0x777E0000 - 0x777E7000 C:\WINNT\system32\VERSION.dll
    0x75950000 - 0x75956000 C:\WINNT\system32\LZ32.DLL
    0x6D290000 - 0x6D29A000 C:\Program Files\JavaSoft\JRE\1.3.1_05\bin\JdbcO
    dbc.dll
    0x1F7F0000 - 0x1F825000 C:\WINNT\system32\ODBC32.dll
    0x76AF0000 - 0x76B2D000 C:\WINNT\system32\comdlg32.dll
    0x77B30000 - 0x77BB9000 C:\WINNT\system32\COMCTL32.DLL
    0x78F90000 - 0x791D6000 C:\WINNT\system32\SHELL32.DLL
    0x1F8E0000 - 0x1F8F6000 C:\WINNT\system32\odbcint.dll
    0x77900000 - 0x77923000 C:\WINNT\system32\imagehlp.dll
    0x72960000 - 0x7298D000 C:\WINNT\system32\DBGHELP.dll
    0x687E0000 - 0x687EB000 C:\WINNT\system32\PSAPI.DLL
    Local Time = Tue Feb 25 21:33:38 2003
    Elapsed Time = 7
    # HotSpot Virtual Machine Error : EXCEPTION_ACCESS_VIOLATION
    # Error ID : 4F530E43505002BD
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Java VM: Java HotSpot(TM) Client VM (1.3.1_05-b02 mixed mode)
    # An error report file has been saved as hs_err_pid1792.log.
    # Please refer to the file for further information.
    #

  • URGENT.........File Upload using Servlets and jsp

    I am a new servlet programmer.......
    iam using tomcat server......
    can any one pls help in writing code for file upload using servlets and jsp without using multipart class or any other class like that....
    Please URGENT..

    Slow down! "Urgent" is from your perspective alone. I, myself, am not troubled or worried in the least.
    hi ugniss
    thanks for ur reply....sorry i was not
    y i was not asked not to use multipart class or any
    other class like that...is there any other
    possibility to do file uploading from jsp to
    servlet...
    Just as an aside, a JSP is a Servlet. But even if I move beyond that, the question does not make sense. If you want a "JSP to upload to a Servlet", then simply do so in memory. You are still (likely) within the same scope of a given request. However, if instead you are referring to a JSP that is displayed on a browser, then really you are talking about HTML, which is what the browser will receive. And since you are now talking about a browser, your only real, viable option is a multi-part file upload. So, it is either server or it is browser. And either way, the question leads to very established options, as outlined above.
    the main concept is.. in the browser the user selects
    a particular file and clicks the button upload..after
    clicking upload the jsp should sent the file to the
    servlet in streams...there the servlet gets in and
    saves in a server location........this is wat i hav
    to do...
    Okay. So, after reading my previous (redundant) paragraph, we have arrived at the crux of the issue. You have a JSP that will be output as HTML to a client (browser) which you want to upload content to your server (handled by a Servlet). So, you are now stuck again with multi-part. The requirement to not use multi-part is non-sensical. You can overcome it, say, if you write your own applet or standalone Swing client. However, if your users are invoking this functionality from a browser, you are limited by the options that W3C has provided you. Use multi-part.
    is there aby possibilty to do this.....can any one
    pls help....Take the advice to download and review Jakarta Commons FileUpload. Inform your management that their requirement makes no technical sense. Research on your own. There are dozens of examples (and tutorials) on file upload using multi-part. Embrace it. Live it. Love it.
    - Saish

Maybe you are looking for

  • Credit card number field in sales order

    Hi Friends, Can we configure this field so that it only retains the card number as xxxx1234 (last 4 digits.  Currently we have full visibility to customer card data to anyone who has SD display access in sales order. Thanks, Sree.Manam

  • ME31L/ME32L, ME31K/ME32K badi/user exits at item level

    hi all, i need to check tax jurisdiction code per item of scheduling agreement and contract. coz i need to prompt an error message "tax jurisidation code at line XX is blank" if no tax jurisdiction code is specified. can you help me what badi or user

  • How to hard code the values in XI for the synchronous scenario?

    Hi All, Actual Scenario : Webservice - XI - Any of the Receiver Adapter(RFC/JDBC) . The receiver adapter setup will take some more days to complete. So, time being I would like to hard code the response values in XI according to the webservice reques

  • Authorizations in TMW

    Hello experts, We are implementing TMW but we need to perform the authorizations, for example, the supervisor inputs an absence "Doctor's appointmet" in TMW but this absence have to be athorizated by Manager before record it into the Infotype 2001, t

  • Optimum allocation size Toshiba Class 2 16GB Micro SDHC card

    Hi -- Be gentle, please. I am newly registered here and am not sure that I found the correct forum to post this question. I have a new Toshiba Class 2 16GB Micro SDHC card, just received today. Before I used it and while it is still under warranty, I