× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.


  • Subject: RE: Having Trouble with using a AS400 access class within a Servl et.
  • From: "Frances Stewart" <francess@xxxxxxxxxx>
  • Date: Tue, 19 Dec 2000 08:53:36 -0600
  • Importance: Normal


Which version of WebSphere are you using?  If it is 3.0.2 or higher, you
may be having this problem because the application server runs under the
QEJBSVR user profile by default, and that profile is shipped without a
password.  You can set a password for QEJBSVR and see if that helps. I
believe the Toolbox connection requires that the user profile being used
have a password.

Frances Stewart
WebSphere Application Server for iSeries 400



"Dass, Naveen" <Naveen.Dass@ps.net>@midrange.com on 12/18/2000 11:21:50 PM

Please respond to JAVA400-L@midrange.com

Sent by:  owner-java400-l@midrange.com


To:   "'JAVA400-L@midrange.com'" <JAVA400-L@midrange.com>
cc:
Subject:  RE: Having Trouble with using a AS400 access class within a Servl
      et.



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
+---



+---
| 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 thread ...


Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

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.