Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: pfist
  • Order by date
  1. pfist

    creating a web instance

    You don't want to put content in the webapps/ directory. I looked at my setup using 4.1.12 and I can't see any reason why you couldn't just put your application in /ROOT web application. Then your application would show up as http://hostname/ just as you want. For my application using the...
  2. pfist

    Using JDBC with Tomcat 4.0.4

    Application can't find the Oracle driver/implementation. Where did you put the oracle jar. I can't remember its name, classes.zip ? The jar file goes in /WEB-INF/lib or maybe it should be in /tomcat/common/lib regards, pfist
  3. pfist

    runaway thread in tomcat 4.0.3

    Likely, the application is keeping references to objects, such that the garbage collector never gets chance to clean up objects that are no longer in use. One place to check that occurs to me. Are you executing the Statement.close() method as well as on the ResultSet object? Leaving the...
  4. pfist

    creating a web instance

    I'm not sure what a web instance is. Do you mean a web application?? If so then in Tomcat's webapps/ directory, create a new directory which be your web application. Under this app directory you also need a /WEB-INF/web.xml. Just use a copy of web.xml file from another web application. So...
  5. pfist

    tomcat manager,admin

    The aforementioned information is at bottom of the realm howto in Tomcat documentation. http://jakarta.apache.org/tomcat/tomcat-4.1-doc/realm-howto.html
  6. pfist

    Tomcat 3.3.1 Thread Settings

    Shot-in-dark: Are you running on an older version of Linux? I seem to remember something about a 255 effective limit on either threads; or was it connections? Sorry can't be more help. Regards, pfist
  7. pfist

    Deploying new webapps in Tomcat + Apache

    For new application in Tomcat, did you remember to create a web.xml file in the /WEB-INF directory? The application needs that file with <web-app></web-app> element in order for application to be valid and be installed/enabled on Tomcat startup. Regards, pfist
  8. pfist

    tomcat manager,admin

    go to /tomcat/conf/tomcat-users.xml You need to create a manager role if it doesn't exist then create a user that has that role. <role rolename=&quot;manager&quot; /> <user username=&quot;bepepi&quot; password=&quot;mypass&quot; roles=&quot;manager&quot; /> Regards, pfist
  9. pfist

    Using tomcat with RMI

    I have been impressed with Tomcat. I expect you will find it will serve your needs in many ways. A few ideas. 1) From jakarta.apache.org you might find the Commons Httpclient useful. It provides a java API and full implementation for dealing with the http protocol. I have used it to...
  10. pfist

    Using tomcat with RMI

    Hey Abe, It is difficult to see what the important issues are with your application. Although it wasn't you primary question, I find myself wondering why you decided create a client piece using swing. ( Is it where your background is from? ) I am wondering why a web browser can't be the...
  11. pfist

    How to display a default page?

    One way to do it is to use the response.sendRedirect() method. When you log in to tomcat the first time it goes to the /ROOT/index.jsp page. I suppose that you have changed it because it is irrelevant to your production website needs. Replace /ROOT/index.jsp with another file with same name...
  12. pfist

    Jobs

    Money at this point is not your objective. The only thing you want is experience. Your next employer is probably going to be a small 2 or 3 man operation that can barely afford an extra employee. I never put my salary requirements up front. You shouldn't give any salary requirements and quite...
  13. pfist

    Jobs

    I am really impressed with your attitude and foresight. You are going to make it. As far as finances go, I take it that you are living at home? Good. Have your parents continue to pay for your food and housing, in effect subsidizied your focus on learning the skills necessary to get the...
  14. pfist

    How to grant &quot;Administrative Authority&quot;

    I am trying to get the proper authorization necessary to be able to create procedures and functions. I think that is what I need. We tried to to GRANT 'insert' on SYSPARMS and SYSPROCS tables but the grants failed. So my question is: How does one grant &quot;Administrative Authority&quot; to...
  15. pfist

    sql procedures will not compile

    (Note: this is on an AS/400 V5R1) I believe what I have here is valid syntax for a DB2 database. That is what I am trying to confirm. I look through the reference documentation and appears to say that basic programming constructs are supported, e.g. 'if then' 'for' etc. But no matter what I...
  16. pfist

    sql procedures will not compile

    I am new to DB2 and as400, but not to databases. Background is java and Oracle PL/SQL development. I created schema test2 and I am trying to compile SQL procedure below. Is there something wrong with this procedure? I am trying to create procedures in general but with no success. Machine...
  17. pfist

    WebApp: Error 404 (File: wa_request.c) Web-application not yet deploye

    I probably lack experience/knowledge on the operating system you are using. But, it would be helpful to me and to someone more knowledgeable than I, if you gave more information about things like operating system, which version of Tomcat, and what you have done to create your application etc...
  18. pfist

    http://localhost:8080/ doesn't display any page

    It may not be a problem but you probably should be using jdk 1.3. It is good that you are using NT 4.0. Using 'localhost' should work, but you can also use the hostname for your machine. From the information, it sounds like the server failed to start. Your previous postings indicate that...
  19. pfist

    Lookn into Learning JAVA

    Tomcat is a web server written in java. Tomcat 4 implements the latest 2.3 servlet specification and jsp 1.2 specification (java server pages). For more information look around jakarta.apache.org. Also go to www.java.com, and look around. There are a lot of tutorials by sun at this site...
  20. pfist

    Made a Java File.. Now what!?

    Also play with and look at the example servlets and jsp's that come with Tomcat. You will learn a lot that way. Best Regards, pfist

Part and Inventory Search

Back
Top