Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by outis

  1. outis

    there is a way to create Triggers in standard way

    Hi all, I need to create a DataBase whith triggers and StoreProcedures, but I have to use mostly standard as possible because i need to migrate data base to informix, oracle, and other DB's, does anybody have any Idea, or suggestion. I will apreciate your response Thanks in advance
  2. outis

    run SQL plus in batch mode whith parameter entries

    Thanks Gunjan. for your help. yes this solutions is working now I would like if you can give me a link or recomend me a book to learn about those type of scripts
  3. outis

    run SQL plus in batch mode whith parameter entries

    I all, I need to run a query to convert in csv but I need to ask entry parameters. and then i need to manipulate those entries like this: if the entry value= 0 then someVariable="" else someVariable= "productType in("+1,2,3+")" ... then select fields from table where &productType I will...
  4. outis

    How to share connection Pool between war projects

    sedj, I put work whit primrose but i have this exception: javax.naming.NameNotFoundException: Name webmap is not bound in this Context at org.apache.naming.NamingContext.lookup(NamingContext.java:811) at org.apache.naming.NamingContext.lookup(NamingContext.java:181) at...
  5. outis

    How to share connection Pool between war projects

    Hi, sedj, I'm used the oracle connection pooling in a PoolConnection Class that I wrote: package com.urbi.db; import java.sql.SQLException; import oracle.jdbc.pool.OracleConnectionCacheImpl; public class ConnPool { private static oracle.jdbc.pool.OracleConnectionCacheImpl con; private...
  6. outis

    How to share connection Pool between war projects

    Hi, all I need to share a connection pool between four war projects, can anybody helpme whith some informacion about do this. Thanks in advance P.D. at the moment i create a connection pool per project but i think this is not correct.
  7. outis

    HttpProcessor[80][58] process.parse error ?

    Hi, all y have problems in my server they crash a couple of times per day and verifying the localhost log y found this particular lines 004-06-14 05:43:27 HttpProcessor[80][58] process.parse java.io.IOException: Line too long at...
  8. outis

    is resultSet need to be synchronized in a web environment

    I use a connection pool as attribute of class private static oracle.jdbc.pool.OracleConnectionCacheImpl con; an then I call the following method in the constructor public static void createConnectionPool() throws SQLException { try { con = new OracleConnectionCacheImpl()...
  9. outis

    is resultSet need to be synchronized in a web environment

    Hi, all, i need to put a web application stable and i found that all the query follows the same structure: public synchronized Vector getProfile(Integer profileId) throws SQLException { try { conn = con.getConnection(); pstmt = conn.prepareStatement("select... while...
  10. outis

    Some rare in my catalina Log file (posible hack?)

    Hi sedj I'am using apache tomcat 4.0.6 do you know about a some fix to prevent this kind of attacks, could you give me some pages or white papes that can help me. Thanks in Advanced.
  11. outis

    Some rare in my catalina Log file (posible hack?)

    Hi there, yesterday my tomcat server shutdow it self( my oracle DB too), without apparent reason. verifying the root of this cause I found some particular lines in mi catalina log file that i can't to interpret my self so I need help to understand these log lines. I will apreciate your help and...
  12. outis

    establish remote connection in a db2 (AS400 )

    Hi all, can anybody help whit establish remote connection to a db2 installed on a AS400(iSeries) I set de driver an url to this : driver:COM.ibm.db2.jdbc.net.DB2Driver url:jdbc: db2://xxx.xxx.xxx.xxx:50000/DES I don't know if the port is correct. but it send me de following errors...
  13. outis

    I have a problem with an access to a protected URL

    I have a problem with an access to a protected URL, It is about a java login dialog box that appears each time my applet access to url in a protected directory and it always happens with java plugin (1.3.1_02). (Of course I got a first login box but I don't want a second java login box appears)...
  14. outis

    Sending messages to other applets

    Hi there. I need to send a message to other applets but, i have my Send applet in a frame and my Receiver applet in other frame, can anybody can tell me how to do this. I use the microsoft internet explorer, and Nestcape 6 I will appreciate your response.
  15. outis

    My session has timed out and i need the session always active

    Hi all. I need a session whit never becomes timout but when I set de MaxInactiveInterval with a negative value (session.setMaxInactiveInterval(-1) ) the session becomes timeout in about 30 minutes or less, anybody can tell me why or the possible cuases of this I am working in IBM WebSphere...

Part and Inventory Search

Back
Top