Re: JSP's failure with IE4 (IE?)

1999-05-18 Thread netrev

Hi,

The symptom Rodrigo describes is usually associated with Netscape web
servers and IE4+ browsers and usually rears its head when new plug-ins and
CGIs are installed, because that's when you are testing and most likely to
notice the problem. It has to do with a bug in Netscape Enterprise Server.
NES incorrectly performs HTTP1.1 Keep Alive. There was no patch as of 6
months ago, but the workaround is to add this line to magnus.conf -
"KeepAliveTimeout 0". This will hurt performance, but its a quick and easy
fix.

People installing servlet engines on Netscape should be aware of this
problem and be assured that it has nothing to do with the servlet engine
they are using. I also encourage servlet engine vendors to add it to their
documentation. Otherwise people will blame the servlet engine and servlets
in general for the problem.

Hope that helps,


 -Original Message-
 From: Rodrigo B. de Oliveira [mailto:[EMAIL PROTECTED]]
 Sent: Monday, May 17, 1999 11:18 AM
 Subject: Re: JSP's failure with IE4 (IE?)


 IE 5 worked fine.

 - Original Message -
 From: Nicholas Roberts [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Sábado, 15 de Maio de 1999 08:16
 Subject: JSP's failure with IE4 (IE?)


 has anyone noticed how IE4 (maybe IE5 not sure) will hang - not work -
 with JSP sites like http://www.americancentury.com/?
 
 is this the IE4 Apache bug that I read about in Apache week or is it
 some critical, fatal flaw, or another attempt by Microsoft to stifle
 rival ways of doing things??
 
 --
 Nicholas Roberts
 mailto:[EMAIL PROTECTED]
 +44 (0)181 960 8931
 Synarchy Universalis Ltd
 http://synarchy.net/
 
 --
 'In the lightless abyss, many creatures carry
 constellations of luminous organs.'
 
 Arthur. C. Clarke
 
 =
 ==
 To unsubscribe, send email to [EMAIL PROTECTED] and include
 in the body
 of the message "signoff JSP-INTEREST".  For general help, send email to
 [EMAIL PROTECTED] and include in the body of the message "help".
 


===
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".



Re: where to put properties files when using jsp1.0 reference implementation

1999-05-18 Thread Pascal Guilloteau

Your bean must be compiled, and then put them in the LIBPATH of your JSP
PROXY...
but be carefull, I'm using JRUN ( as JSP Proxy) and the LIBPATH is define in
JRUN configurations files... (If someone can tell us how to fix that...)
And I use Package to in my bean.
Can you tell us what JSP PROXY you're using...

 -Original Message-
 From: A mailing list about Java Server Pages specification and reference
 [mailto:[EMAIL PROTECTED]]On Behalf Of /servlet-interest Paula
 Lumby
 Sent: Monday, May 17, 1999 9:42 PM
 To: [EMAIL PROTECTED]
 Subject: where to put properties files when using jsp1.0 reference
 implementation


 I am developing an jsp/serlvet demo using the JSP 1.0 refernce
 implementation.
 Most things are now working but I am stuck on where to put the following:
  properties files used by servlets
  bean classes when the bean is populated with data by a
 servlet and then
 used by a jsp

 It could well be that the answer lies in setting up the
 default.cfg file, so I'd
 love some documentation. What I know so far is that .jsp and
 .html files go in
 jsp1.0\webpages. Servlets go in jsp1.0\webpages\web-inf\servlets.
 The only way I
 can pass data from a servlet to a jsp is through the session
 object, but I want
 to use the bean tags.

 Paula Lumby
 IBM VisualAge for Java/C++/RPG Services
 tel:   448-2517(T/L) 778-2517
 Room:  2G42C  2G/KB4/1150/TOR
 e-mail: [EMAIL PROTECTED]

 External Address:
 IBM Toronto Laboratory
 1150 Eglinton Avenue East
 Toronto, Ontario, Canada, M3C 1H7

 FAX:  (416) 448-4414

 ==
 =
 To unsubscribe, send email to [EMAIL PROTECTED] and include
 in the body
 of the message "signoff JSP-INTEREST".  For general help, send email to
 [EMAIL PROTECTED] and include in the body of the message "help".


===
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".



Visual JSP development

1999-05-18 Thread Sytze van Koningsveld

Hi !

Is there a webdesign environment or application server that supports
visual creation of JSP pages ? I would like to see an HTML/JSP editor
that allows drag-and-drop for beans, servlets, making event-connections
and the like (like Visual Age for Java 2.0 has)

Also : many legacy code on the webserver is written in Perl. Does
someone know of a Perl-to-Java parser ?

Kind regards,

Sytze.

Sytze van Koningsveld - software developer

IC Group BV
mailto:[EMAIL PROTECTED]
Rivium Quadrant 81
NL-2909 LC Capelle a/d IJssel
PO Box 4254
NL-3006 AG Rotterdam

http://www.icgroup.nl

===
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".



migration from ASP to JSP

1999-05-18 Thread Nimish Gupta

I have a number of ASP scripts, which I plan to move to JSP.  Are there
any documents/URLs which talk about how this can be done in the simplest
manner?

Regards
Nimish
 S/MIME Cryptographic Signature


Re: which one to use XML syntax v/s JSP syntax?

1999-05-18 Thread Kirkdorffer, Daniel

Actually the JSP syntax is

%

scriplet code

%

No comment on what the tradeoffs are - I'm just learning about XML myself.

Dan

 --
 From: Sanjay Gulabani[SMTP:[EMAIL PROTECTED]]
 Reply To: Sanjay Gulabani
 Sent: Monday, May 17, 1999 7:47 PM
 To:   [EMAIL PROTECTED]
 Subject:  which one to use XML syntax v/s JSP syntax?

 I have been playing around with JSP 1.0 reference implementation and
 JSP specification provides alternate XML syntax to JSP syntax for
 writing Java Server Pages,

 eg.  XML syntax
 jsp: scriptlet
 register.processRequest(request);
 /jsp:scriplet

 vs JSP syntax:
 %
 register.processRequest(request);
 %


 also %= in JSP versus in XML  jsp:expr /jsp:expr

 My question is which is meant to more preferable way? Are JSP engines
 going to support both (is it mandatory).
 What are the trade-offs, if any?? I prefer XML than the JSP syntax (for
 simple reason that jsp syntax is less readable to me)  What are leading
 JSP-compliant webserver vendors going to support?


 Thanks,
 Sanjay

 ==
 =
 To unsubscribe, send email to [EMAIL PROTECTED] and include in the
 body
 of the message "signoff JSP-INTEREST".  For general help, send email to
 [EMAIL PROTECTED] and include in the body of the message "help".


===
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".



Re: Visual JSP development

1999-05-18 Thread Michael Rumpf

Hi !

The only tool i know about is Homesite 4.0.1 from Allaire but the support is
very basic. It is just a simple HTML development tool which has some syntax
highlighting support for JSP.

I would be interested too, if there are some tools with better support
available or even announced.

Michael

-Original Message-
From: A mailing list about Java Server Pages specification and reference
[mailto:[EMAIL PROTECTED]]On Behalf Of Sytze van Koningsveld
Sent: Dienstag, 18. Mai 1999 14:08
To: [EMAIL PROTECTED]
Subject: Visual JSP development


Hi !

Is there a webdesign environment or application server that supports
visual creation of JSP pages ? I would like to see an HTML/JSP editor
that allows drag-and-drop for beans, servlets, making event-connections
and the like (like Visual Age for Java 2.0 has)

Also : many legacy code on the webserver is written in Perl. Does
someone know of a Perl-to-Java parser ?

Kind regards,

Sytze.

Sytze van Koningsveld - software developer

IC Group BV
mailto:[EMAIL PROTECTED]
Rivium Quadrant 81
NL-2909 LC Capelle a/d IJssel
PO Box 4254
NL-3006 AG Rotterdam

http://www.icgroup.nl

===
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".

===
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".



Re: Jsp tutorial

1999-05-18 Thread Anonymous

Hi !

I did not find a tutorial yet, but the FAQ is a good starting point for JSP:

http://www.esperanto.org.nz/jsp/jspfaq.html

Michael

-Original Message-
From: A mailing list about Java Server Pages specification and reference
[mailto:[EMAIL PROTECTED]]On Behalf Of Manomohan K Kalathil
Sent: Montag, 17. Mai 1999 19:18
To: [EMAIL PROTECTED]
Subject: Jsp tutorial


Hi ,
 Am new to the field . Would anyone direct me to a tutorial on jsp , it's
architecture and how to use it ?

Thanx

l
Mano.

===
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".

===
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".



[ANN] The WebApp Framework 0.9.3a

1999-05-18 Thread Hendrik Schreiber

Greetings!

We are proud to announce the release of version 0.9.3a of

   The WebApp Framework
   http://www.webapp.de/

and version 0.8 of StoreBuilder - a development tool for
our persistence layer.

   http://www.webapp.de/storebuilder.html

The framework provides a solid foundation for building webbased
applications with java servlet technology.
It is fully described in the recently published German book
"Java Server und Servlets" (Addison-Wesley, ISBN 3-8273-1408-9)
by Peter Rossbach and Hendrik Schreiber.

Right now it consists of five major parts:

o Persistence
 a persistence layer for
 object-relational-mapping

o jo!
 a webserver written entirely in java featuring
 Servlet API 2.1.1

o SMI (ServletMethodInvocation)
 a framework built on top of Servlet API 2.0
 for better and faster application building

o ConfigManager
 a package that makes building highly
 configurable applications easy

o ServerKit
 a package for rapid development of high performance
 multithreaded servers

The WebApp Framework 0.9.3a has been tested on:

o Win NT 4.0 with Java 2, Solid 2.2.
o Linux 2.0.36 with JDK 1.1.7v1a (with and without TYA 1.1v4), Solid
2.2.
o Solaris 2.5 with JDK 1.1.6, Solid 2.2.

You may optionally download the complete source code of this
release from our website:

  http://www.webapp.de/

Of course we are curious about what you think about The WebApp
Framework. Also we would like to know what other platforms it
runs on. Please don't hesitate to send us your comments and
questions to [EMAIL PROTECTED].

Regards,

Peter Rossbach [EMAIL PROTECTED]
and
Hendrik Schreiber [EMAIL PROTECTED]

===
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".



The Mercata site

1999-05-18 Thread Darren Gibbons

Hi all,

I was recently looking at the Mercata site (www.mercata.com) and I noticed
that all the files are being served up with .jsp extension.  While this is
no guarantee that the site is indeed using JSP, I'm guessing that it
probably is.

The site is an interesting one, worth checking out.  The big push on the
site is volume buying discounts; the more people that sign up to buy a
product, the cheaper the product.  It's backed by Microsoft's Paul Allen,
but is running the Netscape Enterprise web server.



Are any of the site developers on this list?  Anyone care to comment on the
environment chosen, challenges faced, issues solved when using JSP?


Darren.


--
Darren Gibbons[EMAIL PROTECTED]
OpenRoad Communications   ph: 604.681.0516
Internet Application Development fax: 604.681.0916
Vancouver, B.C. http://www.openroad.ca

===
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".



Which JSP to use?

1999-05-18 Thread Joe Sternlicht

Which JSP configuration is worthy of heavy volume production on
Solaris? We currently use JWS with compiled pages (jhtml) and would
like to move to JSP right now.

Which servers/servlets work best for JSP?

--
Joe Sternlicht
Director, Java Development
[EMAIL PROTECTED]
973.290.9660 voice
973.290.9661 fax
http://www.mail.com
~~
Mail.com, Inc. NJ
The Internet Messaging Company
55 Madison Ave, Suite 180
Morristown, NJ 07962
~~
Mail.com, Inc. NY
The Internet Messaging Company
11 Broadway, Suite 660
New York, NY 10004
212.425.4200 voice
212.425.3487 fax

===
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".



Re: The Mercata site

1999-05-18 Thread Joe Sternlicht

Mail.com is using JWS with compiled pages (jhtml), however, I want to
move to JSP over the next two weeks. In fact, I am seeking opinions
on the best Web Server and JSP servlet to use. Comments?

www.mail.com is also using JSP I think

 -Original Message-
 From: Darren Gibbons [SMTP:[EMAIL PROTECTED]]
 Sent: Tuesday, May 18, 1999 2:22 PM
 To:   [EMAIL PROTECTED]
 Subject:  The Mercata site

 Hi all,

 I was recently looking at the Mercata site (www.mercata.com) and I noticed
 that all the files are being served up with .jsp extension.  While this is
 no guarantee that the site is indeed using JSP, I'm guessing that it
 probably is.

 The site is an interesting one, worth checking out.  The big push on the
 site is volume buying discounts; the more people that sign up to buy a
 product, the cheaper the product.  It's backed by Microsoft's Paul Allen,
 but is running the Netscape Enterprise web server.



 Are any of the site developers on this list?  Anyone care to comment on
 the
 environment chosen, challenges faced, issues solved when using JSP?


 Darren.


 --
 Darren Gibbons[EMAIL PROTECTED]
 OpenRoad Communications   ph: 604.681.0516
 Internet Application Development fax: 604.681.0916
 Vancouver, B.C. http://www.openroad.ca

 ==
 =
 To unsubscribe, send email to [EMAIL PROTECTED] and include in the
 body
 of the message "signoff JSP-INTEREST".  For general help, send email to
 [EMAIL PROTECTED] and include in the body of the message "help".

===
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".


--
Joe Sternlicht
Director, Java Development
[EMAIL PROTECTED]
973.290.9660 voice
973.290.9661 fax
http://www.mail.com
~~
Mail.com, Inc. NJ
The Internet Messaging Company
55 Madison Ave, Suite 180
Morristown, NJ 07962
~~
Mail.com, Inc. NY
The Internet Messaging Company
11 Broadway, Suite 660
New York, NY 10004
212.425.4200 voice
212.425.3487 fax

===
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".



Re: Which JSP to use?

1999-05-18 Thread Christopher Cobb

JWS 2.0 for Solaris with JSP should be out in June.

cc

Joe Sternlicht wrote:

 Which JSP configuration is worthy of heavy volume production on
 Solaris? We currently use JWS with compiled pages (jhtml) and would
 like to move to JSP right now.

 Which servers/servlets work best for JSP?

 --
 Joe Sternlicht
 Director, Java Development
 [EMAIL PROTECTED]
 973.290.9660 voice
 973.290.9661 fax
 http://www.mail.com
 ~~
 Mail.com, Inc. NJ
 The Internet Messaging Company
 55 Madison Ave, Suite 180
 Morristown, NJ 07962
 ~~
 Mail.com, Inc. NY
 The Internet Messaging Company
 11 Broadway, Suite 660
 New York, NY 10004
 212.425.4200 voice
 212.425.3487 fax

 ===
 To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
 of the message "signoff JSP-INTEREST".  For general help, send email to
 [EMAIL PROTECTED] and include in the body of the message "help".


begin:vcard
n:Cobb;Christopher
tel;cell:703-909-7550
tel;fax:703-648-7475
tel;work:703-648-6725
x-mozilla-html:TRUE
org:Powerhouse Technologies, Inc.
adr:;;
version:2.1
email;internet:[EMAIL PROTECTED]
title:SW Architect
fn:Christopher Cobb
end:vcard



Re: Visual JSP development

1999-05-18 Thread Jeff Pennal

JSP would benefit greatly from a really good IDE. What I would like to see is
for Borland to take thier JBuilder program and combine it with a really good
HTML authoring tool like homesite (design modes are not a big deal to me), to
get some sort of Visual Interdev equivilent for JSP.

Stick in a servlet/JSP engine to run your code against and you'll have a killer
product.

Anyone from Borland on this list?

[EMAIL PROTECTED] (Mark Minnoye) wrote...
I've seen some program called drumbeat.  It schould be the best asp-ide 
I know they're also making a version for JSP.
I'll soon know more ...
-Oorspronkelijk bericht-
Van: Sytze van Koningsveld [EMAIL PROTECTED]
Aan: [EMAIL PROTECTED] [EMAIL PROTECTED]
Datum: dinsdag 18 mei 1999 13:15
Onderwerp: Visual JSP development


Hi !

Is there a webdesign environment or application server that supports
visual creation of JSP pages ? I would like to see an HTML/JSP editor
that allows drag-and-drop for beans, servlets, making event-connections
and the like (like Visual Age for Java 2.0 has)

Also : many legacy code on the webserver is written in Perl. Does
someone know of a Perl-to-Java parser ?

Kind regards,

Sytze.

Sytze van Koningsveld - software developer

IC Group BV
mailto:[EMAIL PROTECTED]
Rivium Quadrant 81
NL-2909 LC Capelle a/d IJssel
PO Box 4254
NL-3006 AG Rotterdam

http://www.icgroup.nl

===
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".


===
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".


Jeff Pennal[EMAIL PROTECTED]
Programmer   p.(604)681-0516
OpenRoad Communications

===
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".



Re: Which JSP to use?

1999-05-18 Thread Paul Colton

Give JRun a try, it includes JSP support, it's being used by many companies
like Cisco, Netscape, AOL, Macromedia, and others.

Download it from http://jrun.com

-Paul

- Original Message -
From: Joe Sternlicht [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, May 18, 1999 1:02 PM
Subject: Which JSP to use?


 Which JSP configuration is worthy of heavy volume production on
 Solaris? We currently use JWS with compiled pages (jhtml) and would
 like to move to JSP right now.

 Which servers/servlets work best for JSP?

 --
 Joe Sternlicht
 Director, Java Development
 [EMAIL PROTECTED]
 973.290.9660 voice
 973.290.9661 fax
 http://www.mail.com
 ~~
 Mail.com, Inc. NJ
 The Internet Messaging Company
 55 Madison Ave, Suite 180
 Morristown, NJ 07962
 ~~
 Mail.com, Inc. NY
 The Internet Messaging Company
 11 Broadway, Suite 660
 New York, NY 10004
 212.425.4200 voice
 212.425.3487 fax


===
 To unsubscribe, send email to [EMAIL PROTECTED] and include in the
body
 of the message "signoff JSP-INTEREST".  For general help, send email to
 [EMAIL PROTECTED] and include in the body of the message "help".

===
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".



Re: Visual JSP development

1999-05-18 Thread Paul Colton

Live Software is listening, though.

- Original Message -
From: Jeff Pennal [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, May 18, 1999 12:56 PM
Subject: Re: Visual JSP development


 JSP would benefit greatly from a really good IDE. What I would like to see
is
 for Borland to take thier JBuilder program and combine it with a really
good
 HTML authoring tool like homesite (design modes are not a big deal to me),
to
 get some sort of Visual Interdev equivilent for JSP.

 Stick in a servlet/JSP engine to run your code against and you'll have a
killer
 product.

 Anyone from Borland on this list?

 [EMAIL PROTECTED] (Mark Minnoye) wrote...
 I've seen some program called drumbeat.  It schould be the best asp-ide

 I know they're also making a version for JSP.
 I'll soon know more ...
 -Oorspronkelijk bericht-
 Van: Sytze van Koningsveld [EMAIL PROTECTED]
 Aan: [EMAIL PROTECTED] [EMAIL PROTECTED]
 Datum: dinsdag 18 mei 1999 13:15
 Onderwerp: Visual JSP development
 
 
 Hi !
 
 Is there a webdesign environment or application server that supports
 visual creation of JSP pages ? I would like to see an HTML/JSP editor
 that allows drag-and-drop for beans, servlets, making event-connections
 and the like (like Visual Age for Java 2.0 has)
 
 Also : many legacy code on the webserver is written in Perl. Does
 someone know of a Perl-to-Java parser ?
 
 Kind regards,
 
 Sytze.
 
 Sytze van Koningsveld - software developer
 
 IC Group BV
 mailto:[EMAIL PROTECTED]
 Rivium Quadrant 81
 NL-2909 LC Capelle a/d IJssel
 PO Box 4254
 NL-3006 AG Rotterdam
 
 http://www.icgroup.nl
 

==
=
 To unsubscribe, send email to [EMAIL PROTECTED] and include in the
body
 of the message "signoff JSP-INTEREST".  For general help, send email to
 [EMAIL PROTECTED] and include in the body of the message "help".
 
 

===
 To unsubscribe, send email to [EMAIL PROTECTED] and include in the
body
 of the message "signoff JSP-INTEREST".  For general help, send email to
 [EMAIL PROTECTED] and include in the body of the message "help".
 
 
 Jeff Pennal[EMAIL PROTECTED]
 Programmer   p.(604)681-0516
 OpenRoad Communications


===
 To unsubscribe, send email to [EMAIL PROTECTED] and include in the
body
 of the message "signoff JSP-INTEREST".  For general help, send email to
 [EMAIL PROTECTED] and include in the body of the message "help".


===
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".



Re: Visual JSP development

1999-05-18 Thread Thompson, Julie

Elemental Software will be releasing a visual authoring tool for JSP
soon.  Our current product, Drumbeat 2000, helps users build
database-driven ASP sites in a visual environment.  The new JSP product
will include all of the features available in our ASP product (except
COM).  Drumbeat 2000/JSP also allows users to integrate Java Beans,
Servlets, and JSP in a visual environment. The initial release of
Drumbeat 2000/JSP will be targeted at IBM's WebSphere.  After our
initial release we plan to provide support for additional JSP platforms.
For more information check out our web site at www.drumbeat.com.

Julie Thompson
Elemental Software



-Original Message-
From:   Michael Rumpf [mailto:[EMAIL PROTECTED]]
Sent:   Tuesday, May 18, 1999 10:20 AM
To: [EMAIL PROTECTED]
Subject:Re: Visual JSP development

Hi !

The only tool i know about is Homesite 4.0.1 from
Allaire but the support is
very basic. It is just a simple HTML development tool
which has some syntax
highlighting support for JSP.

I would be interested too, if there are some tools with
better support
available or even announced.

Michael

-Original Message-
From: A mailing list about Java Server Pages
specification and reference
[mailto:[EMAIL PROTECTED]]On Behalf Of Sytze van
Koningsveld
Sent: Dienstag, 18. Mai 1999 14:08
To: [EMAIL PROTECTED]
Subject: Visual JSP development


Hi !

Is there a webdesign environment or application server
that supports
visual creation of JSP pages ? I would like to see an
HTML/JSP editor
that allows drag-and-drop for beans, servlets, making
event-connections
and the like (like Visual Age for Java 2.0 has)

Also : many legacy code on the webserver is written in
Perl. Does
someone know of a Perl-to-Java parser ?

Kind regards,

Sytze.

Sytze van Koningsveld - software developer

IC Group BV
mailto:[EMAIL PROTECTED]
Rivium Quadrant 81
NL-2909 LC Capelle a/d IJssel
PO Box 4254
NL-3006 AG Rotterdam

http://www.icgroup.nl



===
To unsubscribe, send email to [EMAIL PROTECTED] and
include in the body
of the message "signoff JSP-INTEREST".  For general
help, send email to
[EMAIL PROTECTED] and include in the body of the
message "help".



===
To unsubscribe, send email to [EMAIL PROTECTED] and
include in the body
of the message "signoff JSP-INTEREST".  For general
help, send email to
[EMAIL PROTECTED] and include in the body of the
message "help".

===
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".



Out of Office AutoReply: Which JSP to use?

1999-05-18 Thread Mc Jay

Jeff McHugh is no longer with PTC, please contact Bob Blau with any questions or 
problems. His number is 914.680.8855

===
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".



Re: Newbie CORBA/Bean question.....

1999-05-18 Thread Nic Wise

Hi Michael,

This is exactly what I use CORBA and most of my beans for. Here's how I
do
it, which is my no means the best way:

On the serverside (ie, CORBA server) I have a factory object that makes
my classes for me. On the client side (web server) I have a bean which
exposes methods, and is basically a mirror (with not functionallity) of
the server-side object:

public class StateBean {
  private NewUser _newUser = null;
  private ProductList _productList = null;

  private BrockerFactory factory = null;
  private String sessionID = "";

  public StateBean() {
java.lang.String[] nothing = null;
org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init(nothing, null);
factory = BrockerFactoryHelper.bind(orb);
  }

  public void id(String session) {
sessionID = session;
  }

  public UserAccount userAccount() {
if (_userAccount == null) {
  _userAccount = factory.getUserAccount(sessionID);
}
return _userAccount;
  }

  public ProductList productList() {
if (_productList == null) {
  _productList = factory.getProductList(sessionID);
}
return _productList;
  }
...
}

(there's loads more to it, and the sessionID is the users UID for that
session, so I can clean up at the end).

Basically, when ever I need to reference an object on the server side,
I just call into this - if there is one already, it just gives it back,
otherwise, I get a new one from the other side. The StateBean itself it
just stored in the session, something like:

USEBEAN NAME="clientState" TYPE="brocker.StateBean" LIFESPAN="session"
CREATE="yes"
/USEBEAN

%
  brocker.brockerEcommerce.ProductList productList =
clientState.productList();

..//use productlist like normal

%

I dont think you can do a direct mapping thru, as you would then have to
somehow implement/inherit from your CORBA objects. I had seperate
objects for each one, but in general I found it more efficient/tidier to
do it this way.

Nic.


Michael Rumpf wrote:

 Hi !

 We have created a CORBA Document Object Model implementation in C++ which we
 use to parse XML documents very quickly. We want to keep the object (i.e. a
 parsed document) over several pages.
 What I have read so far is that we could create a bean to store the object
 reference so that we can access it frmo different pages.
 But this is not a very elegant way to do that. Is it possible to write a
 bean wrapper so that we can use the CORBA DOM object as a bean ?
 Or, what other ways do you see to keep a CORBA object over a session ?

 Any help would be highly appreciated

===
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".



Re: JSP - beans - configuration quesions

1999-05-18 Thread James Todd

cross-posting to [EMAIL PROTECTED]

hi paul -

with regards to item 1:

the default.cfg file is a means by which to configure service
options prior to startup. that other means is command line
(eg. startserver -help). the options are:

server.portthe port the http service will be
 listening on once started
server.hostnamethe server's host name
server.inet the server's ip address
server.docbase  the directory name which will be used
 to resolve the default "/" resource
server.workdir  a scratch work dir

# note: multiple tuples of the following can be added

server.webapp.foo.mapping=/bar
a named resource
server.webapp.foo.docbase=bar
the directory name which will be used
to resolve requests for the afore mentioned
mapping resource

without changing a thing, you should be able to start the server:

% startserver

and view the "home page" at:

http://localhost:8080/

if you change one or more of the afore mentioned configurations
you can adjust the url accordingly to see the results.

the remainder of your questions are better served on [EMAIL PROTECTED]
so i stop at this point.

hope this helps,

- james

/servlet-interest Paula Lumby wrote:

 I;ve asked these before, but no one replied, so I'll try again:

 These questions relate to the JSP 1.0 reference implementation downloadable from
 SUN
 1. Is there an explanation of the default .cfg file apart from the crypitc
 comments in the file?
 2. Where should I put bean classes so that I do not get Class not found
 exceptions when I try to load reference
 them in a JSP.
a) What if the bean is used just by the JSP, as are the examples provided in
 the reference implementation
b) What if hte bean is preapred in advance by a servlet that then invokes the
 JSP
 Paula Lumby
 IBM VisualAge for Java/C++/RPG Services
 tel:   448-2517(T/L) 778-2517
 Room:  2G42C  2G/KB4/1150/TOR
 e-mail: [EMAIL PROTECTED]

 External Address:
 IBM Toronto Laboratory
 1150 Eglinton Avenue East
 Toronto, Ontario, Canada, M3C 1H7

 FAX:  (416) 448-4414

 ___
 To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
 of the message "signoff SERVLET-INTEREST".

 Archives: http://archives.java.sun.com/archives/servlet-interest.html
 Resources: http://java.sun.com/products/servlet/external-resources.html
 LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

===
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".



Re: Which JSP to use?

1999-05-18 Thread Joe Sternlicht

The first beta expires at the end of June. Granted there will be
another version, but do you have any reason to believe it will be the
production version?

At 4:52 PM -0400 5/18/99, Christopher Cobb wrote:
JWS 2.0 for Solaris with JSP should be out in June.

cc

Joe Sternlicht wrote:

 Which JSP configuration is worthy of heavy volume production on
 Solaris? We currently use JWS with compiled pages (jhtml) and would
 like to move to JSP right now.

 Which servers/servlets work best for JSP?

 --
 Joe Sternlicht
 Director, Java Development
 [EMAIL PROTECTED]
 973.290.9660 voice
 973.290.9661 fax
 http://www.mail.com
 ~~
 Mail.com, Inc. NJ
 The Internet Messaging Company
 55 Madison Ave, Suite 180
 Morristown, NJ 07962
 ~~
 Mail.com, Inc. NY
 The Internet Messaging Company
 11 Broadway, Suite 660
 New York, NY 10004
 212.425.4200 voice
 212.425.3487 fax

 ===
 To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
 of the message "signoff JSP-INTEREST".  For general help, send email to
 [EMAIL PROTECTED] and include in the body of the message "help".

Content-Type: text/x-vcard; charset=us-ascii;
 name="ccobb.vcf"
Content-Transfer-Encoding: 7bit
Content-Description: Card for Christopher Cobb
Content-Disposition: attachment;
 filename="ccobb.vcf"

Attachment converted: Macintosh HD:ccobb.vcf (TEXT/R*ch) (0002DE99)


--
Joe Sternlicht
Director, Java Development
[EMAIL PROTECTED]
973.290.9660 voice
973.290.9661 fax
http://www.mail.com
~~
Mail.com, Inc. NJ
The Internet Messaging Company
55 Madison Ave, Suite 180
Morristown, NJ 07962
~~
Mail.com, Inc. NY
The Internet Messaging Company
11 Broadway, Suite 660
New York, NY 10004
212.425.4200 voice
212.425.3487 fax

===
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".



Re: Visual JSP development

1999-05-18 Thread Joe Sternlicht

IMHO, Borland is dead. But better them than Microsoft.

Apparently, Elemental Software is working on one, why not send them
your wish list. www.drumbeat.com


At 12:56 PM -0700 5/18/99, Jeff Pennal wrote:
JSP would benefit greatly from a really good IDE. What I would like to see is
for Borland to take thier JBuilder program and combine it with a really good
HTML authoring tool like homesite (design modes are not a big deal to me), to
get some sort of Visual Interdev equivilent for JSP.

Stick in a servlet/JSP engine to run your code against and you'll
have a killer
product.

Anyone from Borland on this list?

[EMAIL PROTECTED] (Mark Minnoye) wrote...
I've seen some program called drumbeat.  It schould be the best asp-ide 
I know they're also making a version for JSP.
I'll soon know more ...
-Oorspronkelijk bericht-
Van: Sytze van Koningsveld [EMAIL PROTECTED]
Aan: [EMAIL PROTECTED] [EMAIL PROTECTED]
Datum: dinsdag 18 mei 1999 13:15
Onderwerp: Visual JSP development


Hi !

Is there a webdesign environment or application server that supports
visual creation of JSP pages ? I would like to see an HTML/JSP editor
that allows drag-and-drop for beans, servlets, making event-connections
and the like (like Visual Age for Java 2.0 has)

Also : many legacy code on the webserver is written in Perl. Does
someone know of a Perl-to-Java parser ?

Kind regards,

Sytze.

Sytze van Koningsveld - software developer

IC Group BV
mailto:[EMAIL PROTECTED]
Rivium Quadrant 81
NL-2909 LC Capelle a/d IJssel
PO Box 4254
NL-3006 AG Rotterdam

http://www.icgroup.nl

===
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".


===
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".


Jeff Pennal[EMAIL PROTECTED]
Programmer   p.(604)681-0516
OpenRoad Communications

===
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".


--
Joe Sternlicht
Director, Java Development
[EMAIL PROTECTED]
973.290.9660 voice
973.290.9661 fax
917.833.6933 cell
http://www.mail.com
~~
Mail.com, Inc. NJ
The Internet Messaging Company
55 Madison Ave, Suite 180
Morristown, NJ 07962
~~
Mail.com, Inc. NY
The Internet Messaging Company
11 Broadway, Suite 660
New York, NY 10004
212.425.4200 voice
212.425.3487 fax

===
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".



Re: Visual JSP development

1999-05-18 Thread Nic Wise

 IMHO, Borland is dead. But better them than Microsoft.


OK, this could turn into a pissing match, but Borland/Inprise is very
much not dead - doing rather well, infact. JBuilder3 is just out, or RTM
anyway, and I'm told that JB2 is the most used Java tool out there.
Visibroker (their ORB) is embeded into almost everything (Netdynamics
and Netscape, to name but 2) CORBA-based. The only thing they are
missing is an EJB server, and being that the 1.0 spec is, AFAIK, a joke,
and 1.1 is about done, thats not too shocking. I wouldn't be supprised
to see something on that fairly soon. Dunno for sure tho, but they'd be
crazy not to :)

Them making a JSP tool hardly makes good sense, if they want to make
money. JBuilder integrating with someone else's, eg HomeSite, would tho
- which is exactly what I've been using for the last few months.

Nic.

===
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".