Re: Opensource app server with Servlet/JSP support

2001-07-03 Thread Mattias Jiderhamn
> I am trying to teach myself how to use Servlets/JSPs and simultaneously > get a working shopping cart/order form + registration system up for a > friend. He has a linux server that currently does not do much other > than run apache. Can anyone suggest any easy to configure/easy to use, > stable

problems with a JTree in an applet

2001-07-03 Thread Pantarotto, Sio
Hi All, I am trying to create a JTree in an applet to show the file system structure of users, and I am finding it too heavy. I also face the problem that it works ok under Netscape but it does not work at all under MS explorer. I do make use of swing in my frame and I wonder if it may a problem.

Re: Opensource app server with Servlet/JSP support

2001-07-03 Thread Costas Simatos
Take a look at http://java.apache.org/jserv/index.html you'll fing the module to download and documentation concerning its installation and use. -Original Message- From: Pantarotto, Sio [mailto:[EMAIL PROTECTED]] Sent: ÔåôÜñôç, 4 Éïõëßïõ 2001 10:04 ðì To: [EMAIL PROTECTED] Subject: Re: Op

Re: Opensource app server with Servlet/JSP support

2001-07-03 Thread Pantarotto, Sio
Is JServ a separate module that supports servlets??? Where can it be found? What about documentation on how to set it up? Is there any? Siomara -Original Message- From: Costas Simatos [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 04, 2001 12:18 AM To: [EMAIL PROTECTED] Subject: Re: O

Re: Opensource app server with Servlet/JSP support

2001-07-03 Thread Costas Simatos
Just download (for free) the Apache JServ module. You may now use servlets, jsps and beans at will. -Original Message- From: Abhijit Hiremagalur [mailto:[EMAIL PROTECTED]] Sent: ÔåôÜñôç, 4 Éïõëßïõ 2001 2:37 ðì To: [EMAIL PROTECTED] Subject: Opensource app server with Servlet/JSP support

Re: Opensource app server with Servlet/JSP support

2001-07-03 Thread Milind
Hi, Try JBOSS, It's free.U can also try HP's Bluestone Appserver.It comes with a servlet container so u can use it with any cgi enabled web server.Free download is available on the net. Regards, Milind Jog - Original Message - From: Abhijit Hiremagalur <[EMAIL PROTECTED]> To: <[EMAIL PROTE

Opensource app server with Servlet/JSP support

2001-07-03 Thread Abhijit Hiremagalur
Hi All, I am quite new to this game so please excuse any silly errors that I might make in the course of this message. I am trying to teach myself how to use Servlets/JSPs and simultaneously get a working shopping cart/order form + registration system up for a friend. He has a linux server th

Re: Using Dynamo + Iplanet

2001-07-03 Thread Bryan LaPlante
Before Netscape 6 style sheet support is not very good. Here is a link to a page you can use for comparison purposes. http://css.nu/pointers/bugs.html Bryan LaPlante 816-347-8220 [EMAIL PROTECTED] http://www.netwebapps.com Web Development - Original Message - From: "Abhi Patil" <[EMAIL P

Re: Using Dynamo + Iplanet

2001-07-03 Thread Abhi Patil
Hi all cud anyone let me know how style sheets works in netscape. I'm terribly frustrated with it. Please help. Thanks in advance. Abhi -Original Message- From: Billy Gates [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 03, 2001 3:24 PM To: [EMAIL PROTECTED] Subject: Using Dynamo + Iplanet

Using Dynamo + Iplanet

2001-07-03 Thread Billy Gates
Has anyone ran into a problem using jsp under the dynamo + iplanet. Has anyone had any success stories. === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] wit

Re: call from JSP Page is repeating itself? code is included

2001-07-03 Thread Dasti, Hassan
Hello, Problem: When an html form in a JSP page is submitted to another JSP page to add phone number for a personnel the second JSP page automatically executes twice so it makes calls to Java Bean twice and I end up with two same phone numbers added in the system. Attached: personnelPhone.jsp

Resin Auto-population Bug - checkboxes and boolean values

2001-07-03 Thread Sam Brannen
Hello All, I am basically looking for verification of my findings and/or better solutions to the problem/issue I found. I ran into a nice "feature" of Resin when porting a JSP from Tomcat to Resin. A page that worked perfectly with Tomcat did not work with Resin, and it was rather difficult

Re: Templates

2001-07-03 Thread Lance Lavandowska
Here is one you missed (Velocity) http://jakarta.apache.org/velocity/differences.html Lance Lavandowska www.Brainopolis.com - Original Message - From: "Luiz Borba" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, July 03, 2001 9:11 AM Subject: Templates > Anybody knows where

Templates

2001-07-03 Thread Luiz Borba
Anybody knows where can i find reviews on template engines ? I am starting to study some (FreeMarker, TeaServlet and WebMacro) and i would like to get some tips. Luiz === To unsubscribe: mailto [EMAIL PROTECTED] with body:

Re: open frame set

2001-07-03 Thread Atilio Ranzuglia
Chandralal: You can do some tricky stuff with a form, obviously changing the target to 'top' wich is the main frame of the window. Good luck Atilio --- Bryan LaPlante <[EMAIL PROTECTED]> wrote: > I believe you will want to reload your page and send > the command to the > client side with Java

Re: Synchronising state information between 2 machines

2001-07-03 Thread Atilio Ranzuglia
Clayton: What you are trying to do is a server specific area. It depends on it and we as developers can't do anything about it. What you should do is try servers that support load balancing, I know that Oracle Application Server does. So, I think that you should continue your research through th

Re: How to use special character?

2001-07-03 Thread VoiD
Look into the common Base64 encoding/decoding classes. I know there i such a class included in Xerces & Xalan from xml.apache.org. /D - Original Message - From: "Shuja Nawaz" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, July 03, 2000 9:25 AM Subject: [JSP-INTEREST] How to use

Re: open frame set

2001-07-03 Thread Bryan LaPlante
I believe you will want to reload your page and send the command to the client side with JavaScript's parent.location.href="url.jsp?args=here" or top.location.href I think they are both synonymous. Bryan LaPlante 816-347-8220 [EMAIL PROTECTED] http://www.netwebapps.com Web Development - Orig

Re: How to use special character?

2001-07-03 Thread Arnab Nandi
Hi Shuja, Refer to the URLEncoder or URLDecoder. You will find that except 0-9, A-Z, a-z all other characters are changed to their hex value appended with a %. For eg, % is changed to %25, 25 being the two digit hex for the lower 8 bit of %. But + is changed to space. So if you want to + to be sub

open frame set

2001-07-03 Thread Chandralal Aruketty Velayudhan
hi there, hope u have a solution for this. i have a login page with 3 frmesets,from frame 2 i am submitting form to submit.jsp, there i am checking whether id & password are correct or not. If password is incorrect i am forwarding using to frame2 with a message. But if Id & Password are correct

Re: BLOBS

2001-07-03 Thread Arnab Nandi
Great piece of info - why not keep it out of the mailing list? -Original Message- From: Narasimha Vijaya [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 03, 2001 4:33 PM To: [EMAIL PROTECTED] Subject: Re: BLOBS Status Distribution July 02, 2001 12:45:55 The message r

Re: BLOBS

2001-07-03 Thread Narasimha Vijaya
Status Distribution July 02, 2001 12:45:55 The message regarding "Re: BLOBS" sent on July 02, 2001 12:45:55 was sent by Status Recipient TypeTo Native Name [EMAIL PROTECTED] Foreign Native Name [EMAIL PROTECTED]\n\n\nSMTP

Synchronising state information between 2 machines

2001-07-03 Thread Clayton Nash
Hi, We have an application that keeps state information about a user session = in an data structure on a JSP server. This is used to validate user = sessions etc. One issue I have is how would I replicate this information = to another machine in real time to support load balancing? For example,

Is there a way to access session information across virtual domain hosts?

2001-07-03 Thread Erik C. Thauvin
Does anyone know how to access session information across different virtual hosts? For example: We have a webapp that has one URL: http://www.onedomain.com/app/ Yet at some point it needs to redirect to a secure url on the same machine and still access the session variables

How to use special character?

2001-07-03 Thread Shuja Nawaz
Hi, I'm using special characters on my jsp page. When I submit the data the value of the character is changed. How should I controle the encoding? Thank you in anticipation. Form: Shuwaz. === To unsubscribe: mailto [EMA

Re: How to use special character?

2001-07-03 Thread Costas Simatos
Be sure to include the special characters you mention in the request. Put the relevant values in form fields and let the request do its job. -Original Message- From: Shuja Nawaz [mailto:[EMAIL PROTECTED]] Sent: ÄåõôÝñá, 3 Éïõëßïõ 2000 10:25 ðì To: [EMAIL PROTECTED] Subject: How to use spe