RE: URL for JavaBean tutorial

2001-11-24 Thread Reynir Hübner
try http://java.sun.com/docs/books/tutorial/ I hope you will find something usefull. regards, [EMAIL PROTECTED] -Original Message- From: Law Kim Soon [mailto:[EMAIL PROTECTED]] Sent: 24. nóvember 2001 15:22 To: [EMAIL PROTECTED] Subject: URL for JavaBean tutorial Hi all, I'm lookin

RE: Question

2001-10-25 Thread Reynir Hübner
well it can, and we are using it like that. just grab a sample of workers.properties and uriworkermap.props. from older versions of tomcat. I posted the url to the documentation on how to get AJP (mod_jk) for apache to work with tomcat 4 few days ago, and then we used the documentation for tomcat

RE: Tomcat-IIS integration

2001-10-23 Thread Reynir Hübner
hi, the only thing I can tell you to do is ... connect the AJP connectors accordingly to this document http://jakarta.apache.org/~hgomez/ajp13-tc4.0/ and then try to use the documentation for tomcat 3.3 on how to intergrate into IIS. That´s what we did, and it works. hope it helps, - reynir

RE: AJP bad read - 113

2001-10-23 Thread Reynir Hübner
C 4.0 :) It was a false exception - Henri Gomez ___[_] EMAIL : [EMAIL PROTECTED](. .) PGP KEY : 697ECEDD...oOOo..(_)..oOOo... PGP Fingerprint : 9DF8 1EA8 ED53 2F39 DC9B 904A 364F 80E6 >-Original Message- >From: Reynir Hüb

RE: Can the isapi_redirect.dll be used for Tomcat 4.0?

2001-10-22 Thread Reynir Hübner
nope. -Original Message- From: Bigelow, Mark [mailto:[EMAIL PROTECTED]] Sent: 19. október 2001 23:17 To: '[EMAIL PROTECTED]' Subject: Can the isapi_redirect.dll be used for Tomcat 4.0? If I change to point to the correct libraries in the new structure, can the old DLL be used?

RE: I'm using Tomcat, do I also need Apache

2001-10-19 Thread Reynir Hübner
We use tomcat as a servlet/jsp container inside of apache. Apache is alot faster in serving images / static content, than tomcat, but tomcat is obviously only used for executing java/jsp. We´ve done some tests... this { tomcat/standalone 201.47 tomcat/apache 296.35 }shows how many hi

RE: Will tomcat sessions work with IE6?

2001-10-02 Thread Reynir Hübner
I´ve also made few tests on this, sessions are being created both when user is logged on and not. the only thing I noticed was I could not find the cookie file that get´s created in the cookies folder of the userprofile. hope it helps -r -Original Message- From: Bavo De Ridder [mailto:

RE: servlet to jsp

2001-09-30 Thread Reynir Hübner
sorry I was going to write this into the other email ...but accidentaly clicked send... use this to forward the request.. RequestDispatcher dispatcher = getServletContext().getRequestDispatcher(ServletName); dispatcher.forward(request,response); hope it helps -r -Original Message

RE: servlet to jsp

2001-09-30 Thread Reynir Hübner
u must use the requestDispatcher to forward the request onto the JSP page from the servlet. then you can use what ever in your JSP to access what ever beans your servlet instanciates and puts into the request object. request.putAttribute() -Original Message- From: Huaxin [mailto:[EMAIL

RE: Tag Libs And Model 2

2001-09-26 Thread Reynir Hübner
I would say tags can fit perfectly into your architecture, but it dependes on what functionality the tags should deliver. What kind of tags are you thinking of using ? in short, (I dont know if this will get throug understandably), Tags can be used in many different purpose. Tags that access Da

RE: why tomcat

2001-09-11 Thread Reynir Hübner
server but it does support EJBs. Is JBoss robust and secure enough to compete with Weblogig and other app servers. Thanks Peter PS. I'm currently downloading JBoss now. - Original Message ----- From: Reynir Hübner <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday,

RE: why tomcat

2001-09-11 Thread Reynir Hübner
Tomcat is "only" a servlet/jsp container... To get EJB support you need an EJB container such as Jboss... Go to www.jboss.org and download a bundled jboss with tomcat for a simple setup and all the reading material you need. hope it helps, -r -Original Message- From: peter [mailto:[E

isapi_redirect problem (tc 3.2.3 / IIS5.0/ W2kpro)

2001-09-06 Thread Reynir Hübner
hi, I´m haveing the strangest problem. I´ve now tried to install the isapi_redirect 2 times, and I always end up with the same problem. Everything seems to be ok, I get the green arrow, I get the logfile (see below), and it almost works. I can call the tomcat with port 8080 all the time, but whe

RE: JSP and Connection Pooling

2001-08-09 Thread Reynir Hübner
I recomend you get your self something like poolman, or jdbcpool from www.bitmechanic.com because it must be better to use something like this, it has been tested and is btw free of charge to use and even distribute (bitmechanic). So I think you would be spending alot of time into doing something

image resize

2001-07-31 Thread Reynir Hübner
Hi, this is probably a bit of topic... What would be the best way to resize images with servlet ? I have .jpgs and .gifs in files (not kept in database) and I need to create new files in different sizes from those images. Is anyone willing to give me a hint (or more :) on how to do it. thanx -r

RE: where to find ODBC-JDBC Bridge for Linux/Tomcat

2001-07-28 Thread Reynir Hübner
it´s in your jdk 1.3 installation ... it´s just a standard component u dont need to install anything more, u should be albe just to use the bridge right away. But I´ve been testing the bridge with poor results, I especially had problems with preparedstatements && the keyword LIKE. I´m

Class reloading for JSP /Tomcat 4

2001-07-19 Thread Reynir Hübner
Hi, I have a problem : I have Tomcat 4 and a working MVC model. Request are handled by a servlet that starts a servlet chain wich ends with the request being routed to a JSP. The servlets in the chain instanciate beans and put them into the request object. If I change one .java-file (servle

RE: Class reloading

2001-07-19 Thread Reynir Hübner
does anyone know how this is in tomcat 4 ? thanx -r -Original Message- From: Paul Foxton [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 19, 2001 10:23 AM To: '[EMAIL PROTECTED]' Subject: RE: Class reloading AFAIK tomcat doesn't support automatic reloading of classes. You do have to

RE: JDBC in TOMCAT - LINUX - ORACLE 8.0.5

2001-07-17 Thread Reynir Hübner
I think you need to download classes11.zip (rather than classes12.zip) from http://otn.oracle.com/software/content.html get a thin client driver for oracle 8.0 put the oracle.jar into your tomcat/lib Use the thin driver... hope it helps, -Original Message- From: [EMAIL PROTECTED] [m

project tomcat 4

2001-07-17 Thread Reynir Hübner
Does anyone know when the new tomcat 4 will be finished and when a final release is scheduled ? thanx -r

how to reloads classes with out restart

2001-07-16 Thread Reynir Hübner
hi tomcat users, I´m thinking if anyone has a servlet or something in that way that reloads classes with out restarting tomcat. I´m using a servlet chaining mechanism that I wrote my self. the basic functionality is it has a starter servlet (that always gets reloaded) that reads an xml document

RE: JDBC and Pool

2001-07-12 Thread Reynir Hübner
I´m using Bitmechanics JDBC-pool,  it´s free and it´s easy to use with tomcat. http://bitmechanic.com   -hope it helps. Reynir Þór Hübner [EMAIL PROTECTED] www.hugsmidjan.is           -Original Message-From: Enrique Lopez [mailto:[EMAIL PROTECTED]]Sent: Thursday, July 12, 2001

RE: NoClassDefFoundError: javax/ejb/EJBHome

2001-06-29 Thread Reynir Hübner
you will need to have your ejbclasses in the classpath of tomcat, then u can access the classes over JNDI. have a nice day -r -Original Message- From: Verhoff, Kevin A. [mailto:[EMAIL PROTECTED]] Sent: Friday, June 29, 2001 12:54 PM To: [EMAIL PROTECTED] Subject: NoClassDefFoundError:

Servlet chaining

2001-06-19 Thread Reynir Hübner
hi everyone, Does anyone know of implementation of a good ServletChaining API (for tomcat) that´s available for download ? I know Filters will be introduced into Tomcat 4 and I look forward to working with those but untill it will be released I need something similar. thanx bye -r

RE: What are EJB

2001-06-18 Thread Reynir Hübner
What do you mean by "include EJBs in Tomcat4" ? It´s possible to use EJBs with tomcat in current verison,to do so you can download Jboss (www.jboss.org) and you have an EJB container... bye -r -Original Message- From: Luba Powell [mailto:[EMAIL PROTECTED]] Sent: Sunday, June 17, 2001

RE: Forwarding JSP and Browser Options

2001-06-15 Thread Reynir Hübner
I guess you could use something like this : function changeBrowser() { window.open(attribs) //open new window with/without desired attributes. //put focus onto new window window.close() //close the window that originated the request. } this is the normal way of dealing with new windo

RE: Need some info about jsp/jscript

2001-06-12 Thread Reynir Hübner
great, you will need to get JDBC-ODBC bridge (from java.sun.com)and odbc drivers for your database. but then again you should check if you can get JDBC drivers for your database (with out the ODBC bridge) because it´s alot faster. You can get info on how to build JSP pages from many different p

<    1   2   3   4