I have a Java Stored Procedure which communicates with WebLogic Server 6, sending an array of data to the doPost() method. When running the procedure, I'm getting the ORA-03114: not connected to ORACLE error message. Following is the code, any suggestions on why this is happening, please supply anything that may cause this. Thanks in advance! I'm not sure if I have a driver problem, I am using the defaultConnection in the Java Stored Procedure. public void doPost(HttpServletRequest req, HttpServletResponse resp) throws IOException, ServletException { ObjectOutputStream orderOutputStream; ObjectInputStream orderInputStream; orderHeader currentOrder; System.out.println("In the doPost method."); try { orderInputStream = new ObjectInputStream (req.getInputStream()); Object o1 = orderInputStream.readObject(); currentOrder = (orderHeader) o1;
A call to Oracle was attempted when no connection was established. Usually this happens because a user�written program has not logged on. It may also happen if communication trouble causes a disconnection. Check whether the database is up and running. Regards Beksy