I have an
applet and am communicating to the
servlet to create files in the server and client directories.
This is fine in weblogic 9.2. But when I downloaded weblogic 9.2 MP4 (Maintenace pack 4), this throws a stacktrace.
Here is the code:
URL url = new URL(surl);
in = new BufferedReader(new InputStreamReader(url.openStream()));
The stacktrace is: invalid stream header: 0D0A0D0A
The url is something like:
http://xxx:7001/esm/esm?flowlet=com.emax.flow.fulfillment.general.M308_OrderListFlowlet&navaction=gridAppletStatus&gridname=M308
If I paste the url into a separate browser it is fine.
This is driving me crazy since this works in weblogic 9.2 So, what changed between weblogic 9.2 and weblogic 9.2.4. I see that the jrockit/java version has changed. Is it something to do with that? Is it a security configuration?
Your help is much appreciated. Thanks in advance.