1. What is a reentrant program? How will you make a program Reentrant? A reentrant program, while being executed resides in the common virtual area so that one copy of it may be shared among all callers. Use RENT compiler option. 2. What is the difference between a 01 level and 77 level? 01 level can have sublevels from 02 to 49. 77 cannot have sublevel. 3. What are the few advantages of VS COBOL II over OS/VS COBOL? The … More ->
-
Recent Posts
-
February 2012 M T W T F S S « Apr 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 Archives
JSP Frequently Asked Questions
Can a JSP page instantiate a serialized bean? It’s similar to communication between Servlet and Applet. I’m also suffering for that. In applet, there is no problem when posting a request to JSP. But in case of getting a response of JSP, “java.io.StreamCorruptedException” occurs if I use ObjectInputStream. It’s fine, however, if I use InputStreamReader. Confer the sample below. /** applet */ // Get URLConnection String urlStr = “http://www.webtrack.co.kr/jsp/appletproxy.jsp”; URL serverURL = new URL(urlStr); URLConnection uc = serverURL.openConnection(); uc.setDoOutput(true); // … More ->