Hi every one,
I have made a servlet which in turn calls another servlet with the image tag. Both of these servlets access an Oracle database via JDBC for which I am making different connection object in both the servlets.Also I am using Java web server 2.0
This combination is working fine, but if I call the servlet simultaneously from 2 or more browsers together then the java web server throws an exception---
java.net.SocketException: socket write error (code=10053)
at java.net.SocketOutputStream.socketWrite(Native Method)
at java.net.SocketOutputStream.write(SocketOutputStream.java:87).........
Could any one please suggest me what the problem might be...
I have tried to synchronise the doGet() function by adding the keyword "synchronized" before the doGet() but still I am encountering the same problem..
Thanks a lot.
Mohit.
