Re: Tomcat and Apache Configuration

2000-07-06 Thread Gocin.com
Port 8080 is tomcats internal webserver. Port 80 (the default port) is probably apache... you need to tell apache when to use Tomcat (read tomcat's user manuals, dev. guides, etc...) Jason B. -Original Message- From: Laiwu Luo <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] <[EMAIL PROTECTED]>

Re: Offtopic: Quick Java programming question...

2000-05-17 Thread Gocin.com
You can only cast an Object[] to a Hashtable[] if the array was originally made at a Hashtable[] (Or something to that effect, I read it in the JDC forums) To do what you want to do, add code to the following effect at the end of your method: Hastable[] hashArray = new Hashtable[stuff.size()]; s

Re: Java VM memory

2000-05-08 Thread Gocin.com
>>Hi, >> >>I am using the Tomcat server. If the tomcat server is started 64 Mb of >>memory is allocated (which seems to be default). I use an upload jsp file >>through which I will be able to upload big files (perhaps 100Mb or more). I >>changed the tomcat.bat file by adding the java -Xmx100m piec