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 Mike Lewis 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: *

  1. donniea21

    Want to run servlets!!!!!

    another correction..can't seem to type today...Friday and all.. environment variables: JAVA_HOME (i.e. C:\j2sdk1.4.1_02)
  2. donniea21

    Want to run servlets!!!!!

    correction tools.jar should be in (with default setup) C:\Program Files\Apache Group\Tomcat 4.1\common\lib ignore the MIS, I'm a Programmer. I was young and foolish.
  3. donniea21

    Want to run servlets!!!!!

    I think, and I may be wrong, it's been awhile since I used tomcat (i've moved to jboss), that tools.jar is under your Tomcat_Home\lib. Did you run the exe or the zip? I thought the exe took care of all that. Assuming win2k, you should have the following envrionment vars set up...
  4. donniea21

    Want to run servlets!!!!!

    If your running windows, the easiest way is to just dl the exe http://apache.mirror.digitalspace.net/jakarta/tomcat-4/binaries/tomcat-4.1.18.exe or you can dl the zip http://apache.mirror.digitalspace.net/jakarta/tomcat-4/binaries/tomcat-4.1.18.zip and unzip it to your C: Then read the...
  5. donniea21

    Span/Div in netscape

    I have the following code in my html page: <INPUT TYPE=&quot;submit&quot; VALUE=&quot;Upload&quot; onClick=&quot;if (submenu1.style.display == 'none') submenu1.style.display = ''; else submenu1.style.display = 'none';&quot;> <span id=&quot;submenu1&quot; style=&quot;display:absolute&quot;>...
  6. donniea21

    Servlet with applet

    I am new to applets. Is it possible to run an applet from a servlet. Basically what I have is a servlet that uploads files and I want to have an applet running in a separate thread that displays the upload status. Once the upload is complete, I want to be able to kill the applet. Thanks for...
  7. donniea21

    bad file descriptor of tomcat

    You should close input/output streams when you are finished with them.
  8. donniea21

    Converting Images with JAI

    Is there a way to convert multi-page tiffs to jpeg? I have a servlet that displays images that are stored on the server. The problem is that they are in .tiff format which Java does not handle. I have created a method using the JAI API to encode the tiff as a jpeg..This works fine except for...
  9. donniea21

    How to install 'mod_jk.so'

    I believe tomcat-apache.conf is created dynamically. Have you created the workers.properties file in $TOMCAT_HOME/conf/jk. I have only worked with this on the newer versions Apache 2 and Tomcat 4.0.3 There is a good guide at http://www.galatea.com/flashguides/index Good Luck..getting tomcat...
  10. donniea21

    Tomcat 3.3.1 fails to startup on Win2000

    I would ditch this version and go get the newest one..4.0.3 or I think 4.1 is out now also. I know it doesn't answer your problem but these are better version especially for win2k.
  11. donniea21

    Show Status of upload

    I have a servlet that uploads files to the server. I want to be able to show the status or at least some sort of message until the file is done. Has anyone done anything like this? Thanks for any help.
  12. donniea21

    Call an applet from a servlet

    I need to call an applet from my servlet when a user clicks a link..I am putting the .class file in the same folder as my servlet classes. in the html that i have codebase = &quot;.&quot; code = &quot;mypackage.mypackage2.myApplet.class&quot; this is how JBuilder created it. The problem...
  13. donniea21

    AWT Frame focus with Servlet

    I have a servlet that can upload files. While the file is uploading, i have a seperate thread that simply pops up a frame that says uploading...etc. The problem Im having is that I cant get the focus to stay on the frame so it ends up sitting behind the htm page. I've tried...
  14. donniea21

    emty_BLOB() for MYSQL

    I have a servlet for uploading files to a database. I know in oracle you can insert an empty_blob() into a table. Is there a way to do this in mysql?
  15. donniea21

    Set ENCTYPE with javascipt

    Nevermind I got it..in case anyone needs it. document.formName.encoding = &quot;multipart...
  16. donniea21

    tomcat starts on bootup WIn2002 - need to stop this

    right click mycomputer --> manage --> Services and Applications --> Services --> Apache Tomcat --> double click and change startup type to manual or disabled
  17. donniea21

    Set ENCTYPE with javascipt

    Is there anyway to set the enctype of a form with javascript? I have tried document.formName.ENCTYPE = multipart.... and document.formName.ENCTYPE.value = multipart...... it just keeps the default setting.
  18. donniea21

    recompiling servlets

    You can use the manager app that comes with later versions. 4.0.3 has it for sure. I have just started using it and am having some problems with tomcat not replacing my old class files but you might have better luck. http://jakarta.apache.org/tomcat/tomcat-4.0-doc/manager-howto.html
  19. donniea21

    Tomcat Manager App

    I have tried using the /manager servlet to re-deploy my servlet opposed to restarting tomcat. I get the OK message but the directory still contains my old templates and class files.
  20. donniea21

    JSP problem when Tomcat runs as a Service

    Can you include the code you use to make your connection?

Part and Inventory Search

Back
Top