|
Dan, Thank you for your Info, Basically the problem was with the version of websphere we had. It was not recognizing the AS400 class. I was able to get it working, If i supply the userid and password. but it does not work when I use *current as the userid and password. Do you have any suggestions. I Thanks again all. > Naveen Dass > -----Original Message----- From: Dan Hoover [mailto:dan@hooversys.com] Sent: Monday, December 18, 2000 9:26 AM To: JAVA400-L@midrange.com Subject: RE: Having Trouble with using a AS400 access class within a Servlet. Where do you logon to the AS/400. When you create a new as400 object there are 3 constructors. by setting the conn to null and creating a new as400 WITHOUT connection info. Only catch a general Exception and print the Exception variable. This will help debug the error. HTH Dan -----Original Message----- From: owner-java400-l@midrange.com [mailto:owner-java400-l@midrange.com]On Behalf Of Dass, Naveen Sent: Friday, December 15, 2000 11:38 AM To: 'JAVA400-L@midrange.com' Subject: Having Trouble with using a AS400 access class within a Servlet. Hi all, I am trying to Read a Stream File and Display the Data on a browser. For this to happen I create a AS400 object and then read the data from the StreamFile. It creates the HTML header,But never displays the data from the Stream File. Any suggestions appreciated. Thank you Naveen Dass public class DspStreamFile extends HttpServlet { Connection conn = null; public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException { res.setContentType("text/html"); PrintWriter out = res.getWriter(); out.println("<html><TITLE>Display Stream File</TITLE>"); out.println("<BODY><FORM><PRE>"); try { AS400 as400 = new AS400(); //as400.connectService(AS400.DATAQUEUE); IFSFile myFile = new IFSFile(as400,"/naveen/DspSpoolFile.java"); IFSTextFileInputStream st = new IFSTextFileInputStream(as400, myFile,IFSTextFileInputStream.SHARE_ALL); out.println("<P>Dass</P>"); out.print(st.read(st.available())); } catch (AS400SecurityException ase) { out.println("Error while reading"); } catch(java.io.IOException ioe) { out.println("Error while reading"); } out.println("</PRE></FORM></BODY></HTML>"); out.close(); } } +--- | This is the JAVA/400 Mailing List! | To submit a new message, send your mail to JAVA400-L@midrange.com. | To subscribe to this list send email to JAVA400-L-SUB@midrange.com. | To unsubscribe from this list send email to JAVA400-L-UNSUB@midrange.com. | Questions should be directed to the list owner: joe@zappie.net +--- +--- | This is the JAVA/400 Mailing List! | To submit a new message, send your mail to JAVA400-L@midrange.com. | To subscribe to this list send email to JAVA400-L-SUB@midrange.com. | To unsubscribe from this list send email to JAVA400-L-UNSUB@midrange.com. | Questions should be directed to the list owner: joe@zappie.net +--- +--- | This is the JAVA/400 Mailing List! | To submit a new message, send your mail to JAVA400-L@midrange.com. | To subscribe to this list send email to JAVA400-L-SUB@midrange.com. | To unsubscribe from this list send email to JAVA400-L-UNSUB@midrange.com. | Questions should be directed to the list owner: joe@zappie.net +---
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.