Re: SWING FWATURES IN JSP

2000-05-19 Thread Biren
Hi all, Thanks for the reply to my question. Can anyone give me codes of how to write programs using Swing Features in JSP. Like I want to show a messageBox after entering some invalid data into the user's screen. Thanks in advance. Biren Download NeoPlanet at http://www.neoplanet.com ===

Re: Why do we use combinations??

2000-05-19 Thread Vikram Dhawan
hello there u can get references of all the servers. and there positive and negative points in the Servlet Programming by O'REILLY ... thanx vikram - Original Message - From: Aggarwal, Pawan <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, May 11, 2000 4:14 PM Subject: Why

Re: The difference between "page" & "request" scopes?

2000-05-19 Thread Senaka Suriyaarachchi
Dear Young In my experience when u specified scope of your Java Bean it specify life time of your bean. if you specify scope as Page then life span until page is displayed or control is for-warded to a new page accessibility is current page only. but if u specify as Request life span until the r

How to build methods setURL and getURL in JSP?

2000-05-19 Thread Alan JSP
Hi: In general URL will not change. if the URL written in Bean it's not convinient to change the URL and recompile it. I wonder if we can build methods setURL or getURL so we can connect to URL like the method of strings in jsp page like: public void setUsername( String name ) { usernam

Re: URGENT: How I save the JSP's html output as a file?

2000-05-19 Thread Robert Nicholson
Can you use a custom tag and in the end tag write the contents of the out steam to file? ie. wrap your jsp page in custom tags. Alternatively I reckon you could chain a servlet that has the responsibility of writing the response to a file also. I think you can get out stream from the PageContext

URGENT: How I save the JSP's html output as a file?

2000-05-19 Thread Alan Ausi
Hi: I have a urgent problem. I want save the JSP's output as a html file (not by hand). I think this is a basic problem but I can not solve it. Any one can help me? using "openstream" I can get static HTML from any URL, even outside the server. but the problem is I have no method to get the

resin exception

2000-05-19 Thread Mateo Almenta Reca
Hi everybody, I think i have a problem here, does anybody known what the following exception mean? I have a huge jsp, i don't known if there is any lenght restrictions with the jsp file size??? Thanks in advance. Mateo 500 Servlet Exception java.lang.VerifyError: (class: _jsp/_webBUI/_

Re: HTTP 500 - Internal server error while running JSP in JRun

2000-05-19 Thread D Y
Most likely it's the problem with your JSP. Some exception could be thrown. You should view the logs. -- D Y --- Xizhen Wang <[EMAIL PROTECTED]> wrote: > Hi! everyone, My JRun has problem handling JSP. If I > close JRun, the > browser will tell me: > "Could not connect to JRun Connector Proxy >

Re: Developing sites with JSP and HTML

2000-05-19 Thread Andrew Purshottam
Also, could you please quietly delete my mail fwding on karna.net? It's fun to watch the activity, but probablynotgood to do so for long. Andy === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". So

Re: Developing sites with JSP and HTML

2000-05-19 Thread Shrisha Radhakrishna
U R absolutely right. Just a standard. - Original Message - From: "Bury Man" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, May 19, 2000 3:01 PM Subject: Re: Developing sites with JSP and HTML > sort of > > but why bother writing an .asp file without any asp > when you

Re: Developing sites with JSP and HTML

2000-05-19 Thread Craig R. McClanahan
Shrisha Radhakrishna wrote: > Still, better (faster) than going through a servlet engine, don't u think Not necessarily ... it depends on the implementation. Consider that the JSP page's generated servlet will often be serving the template text out of a byte array that is already in memory, so

Re: Developing sites with JSP and HTML

2000-05-19 Thread Shrisha Radhakrishna
Yes, it just *looks* for ASP code. It doesn't interpret (which is the topic of interest here, isn't it?) and then figure out that it's just static HTML. - Original Message - From: "Bury Man" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, May 19, 2000 2:42 PM Subject: Re: Devel

Re: Weblogic & JavaBeans

2000-05-19 Thread Wasetis, Ken
There is a section in the weblogic.properties file. One section for EJBs and one for servlets. The properties file is pretty well documented. It should be located in the \weblogic folder. -Original Message- From: Kaylon Daniels [mailto:[EMAIL PROTECTED]] Sent: Friday, May 19, 2000 2:51

Re: Developing sites with JSP and HTML

2000-05-19 Thread Bury Man
I guess my point was that it had to parsed. for dynamic content (at least once) >From: Shrisha Radhakrishna <[EMAIL PROTECTED]> >Reply-To: A mailing list about Java Server Pages specification and > reference <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: Re: Developing sites with JSP

Re: Developing sites with JSP and HTML

2000-05-19 Thread Bury Man
right out of the document "IIS first searches it for any ASP script. If there is none, the file is treated as a normal .HTM file and sent directly to the browser." >From: Shrisha Radhakrishna <[EMAIL PROTECTED]> >Reply-To: A mailing list about Java Server Pages specification and > referen

Re: Developing sites with JSP and HTML

2000-05-19 Thread Shrisha Radhakrishna
Still, better (faster) than going through a servlet engine, don't u think Imagine the JSP engine converting the .jsp to a .class only if scriplets are found. This is eseentially what IIS does (and, that's good). - Original Message - From: "Bury Man" <[EMAIL PROTECTED]> To: <[EMAIL PROTEC

Re: Developing sites with JSP and HTML

2000-05-19 Thread Bury Man
sort of but why bother writing an .asp file without any asp when you take a (small) performance hit because the server has to check and flag that it does not have any asp better off with HTML page ya ya? >From: Shrisha Radhakrishna <[EMAIL PROTECTED]> >Reply-To: A mailing list about Ja

The difference between "page" & "request" scopes?

2000-05-19 Thread Young LI
Hi Friends, I am a late comer to JSP. Can you explain to me what the difference is between the "page" and "request" scopes of a bean? Thanks, Young Oracle Corp. === To unsubscribe: mailto [EMAIL PROTECTED] with body: "sig

Re: Developing sites with JSP and HTML

2000-05-19 Thread Brauser Glenn
IIS 5.0 has added an initial step that examines an ASP page to see if it includes server-side scripting before sending it to the parser. If a page doesn?t include script, it?s served without the trip to the parser. Though HTML pages still process more quickly than ASP pages, with IIS 5.0, ASP page

Re: Developing sites with JSP and HTML

2000-05-19 Thread Shrisha Radhakrishna
I found it! http://msdn.microsoft.com/library/psdk/cdo/renoview_4b8n.htm - Original Message - From: "Bury Man" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, May 19, 2000 11:18 AM Subject: Re: Developing sites with JSP and HTML > interesting... > > I wonder how MS knows that

Re: Developing sites with JSP and HTML

2000-05-19 Thread Shrisha Radhakrishna
It can be as simple as a flag against each .asp file. The .asp file may be looked at once by the asp engine, and, if no dynamic content is found all subsequent requests won't go thru the asp engine. Lemme see if I can "stumble" upon the article (again). --Shrisha - Original Message - F

Re: Weblogic & JavaBeans

2000-05-19 Thread Kaylon Daniels
Does anyone know how to get the Weblogic 5.1 server to "find" Javabeans? I continue to get ClassNotFoundErrors whenever I try to load a JSP with a javabean. I am using a standard tag. I have set the java classpath using the BEA Systems online help examples. Any insight would be helpful. Kaylon

Re: Developing sites with JSP and HTML

2000-05-19 Thread Geert Van Damme
Excuse me, I believe the complete opposite is true ;-) There's no way IIS can know that a page with .asp extention has no dynamic content without interpreting it. And because ASP is really interpreting, it happens with every request! OTOH, if you create a static page and give it a .jsp extention,

Re: Handling of multiple requests for JSP and JavaBeans

2000-05-19 Thread Dave Ferguson
Roger Kjensrud wrote: > Hello, > > I'm new to the JSP and JAVA world, and I'm trying to gain an = > understanding of how different clients are handled, and potential = > dangers of having several simultaneous requests. > > I get the concept of JSPs compiled into a servlet, and that they can = > h

Job Opportunity in Hershey, PA

2000-05-19 Thread Hines, Bill
My co-worker, co-Java developer, left the company a few weeks ago to pursue an entrepreneurial venture, so we're posting this position here at Hershey Foods, in central PA. This is an awesome company (especially if you like free candy!) in an area that has the best of all worlds. It has beautiful,

Re: Developing sites with JSP and HTML

2000-05-19 Thread Bury Man
interesting... I wonder how MS knows that the .asp page has no dynamic content without interpreting it. >From: Shrisha Radhakrishna <[EMAIL PROTECTED]> >Reply-To: A mailing list about Java Server Pages specification and > reference <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: Re:

Re: Offtopic: Architecture Question

2000-05-19 Thread David Gecawich
We deployed several sites on JRun without hitting any walls. Any issues encountered turned out to be fixable application programming, db locking or threading bugs in the application that were overcome with app fixes. This was much to the clients' surprise because they assumed that a $500 produ

Re: Developing sites with JSP and HTML

2000-05-19 Thread Shrisha Radhakrishna
MS IIS 5.0 doesn't actually interpret .asp files that have no dynamic content. It's as good as plain 'ol HTML. So, there's no overhead. Not true abt. JSPs, I guess. :-(( - Original Message - From: "Steve Bang" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, May 18, 2000 5:2

FW: Unix version of 'I Love You'

2000-05-19 Thread Sam Heisz
> This is the Unix version of "I Love You" which works on the honor system. > > If you receive this mail, you should delete a bunch of GIFs, MP3s and > binaries from your home directory, then send a copy of this email to > everyone you know and then click on the following link: >

Please help

2000-05-19 Thread Munish Talwar
Hi Can any body tell me how to call child JSP from a link in the parent JSP and pass parameter along with it. I want to have a table in which user should be able to click on the first column and call the other jsp, I have to pass the value of the cell user clicks on. Please point me in right di

HTTP 500 - Internal server error while running JSP in JRun

2000-05-19 Thread Xizhen Wang
Hi! everyone, My JRun has problem handling JSP. If I close JRun, the browser will tell me: "Could not connect to JRun Connector Proxy Please contact the system administrator for this web site." But if I start JRun, the browser just tell me: "The page cannot be displayed . HTTP 500 - Internal

R: SWING FWATURES IN JSP

2000-05-19 Thread Spazzoli Raffaele
www.swinglets.com Raffaele Spazzoli Gruppo Formula S.p.A. Via Matteotti 5 40050 Villanova di Castenaso (BO)- Italy *+39-051.6002.213 - *fax+39-051.6002.222 * mailto: [EMAIL PROTECTED] -Messaggio originale- Da: lester.e.stroud [mailto:[EM

Re: Browser BACK button

2000-05-19 Thread Sajan Thomas
Please refer the archives. This problem has been discussed in great detail many a time. -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of K Ramesh Sent: Friday, May 19, 2000 7:57 PM To: [EMAIL PROTECTED] Sub

Re: Browser BACK button

2000-05-19 Thread Imran Baig
You can use hmtl meta tags pragma to restrict browser not to cache a particular page. But this tag and some other tags may not work properly due to some browser bugs. Baig K Ramesh <[EMAIL PROTECTED]> on 05/19/2000 08:26:52 PM Please respond to A mailing list about Java Server Pages speci

Re: IDE/debug environment for JSP with Java Beans in Windows

2000-05-19 Thread Jim Bailey
We use Visual Age for Java 3.02 and Resin 1.1 as an IDE including debug environment for JSPs. We don't use beans in our product but I don't see why that should be a problem. To make VAJ 3.02 work with Resin 1.1 took some work by one of our programmers but since Resin is open source that was prett

Re: SWING FWATURES IN JSP

2000-05-19 Thread lester.e.stroud
I remember running across a library several months ago that took your swing components and converted them into some html equivalent (whatever that means). My impression was that it would basically take the models of the more complex components and render it with a HTML-ized view. Does anybody r

Browser BACK button

2000-05-19 Thread K Ramesh
Hello Everybody Is there any way by which we can disable the browsers BACK button using JSP or JavaScripts? Also, Is there any way to selectively clear a segment of the History information in the browser? ie, i want to clear the history contents of a particular website that the user has browsed.

JSP Login Help

2000-05-19 Thread Pete Walsh
Hi, I'm very new to JSP and Beans. I have to create something that users will log into from a jsp page and a bean (i suppose) keeping track of who is logged into the system. (There can be multiple people at once) I think the best way would be to create an collection (like a vector) of HttpSess

Re: Offtopic: Architecture Question

2000-05-19 Thread Tom Zacios
Sanjay, We are building a b2b exchange right now on WebLogic. Send me your contact information (anyone) and I will share the performance results with you all in about a month. We are consultants on the project so I would appreciate any leads pertaining to people who need help with this after thi

Re: session objects with arrays

2000-05-19 Thread Ornelas, Gabriel (CAP, CORP)
Thanks, I really apprecite your help... -Original Message- From: Javier Cazares [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 17, 2000 7:16 PM To: [EMAIL PROTECTED] Subject: Re: session objects with arrays .The HttpSession class has all the methods you need to store/retieve ob

Re: session objects with arrays

2000-05-19 Thread Ornelas, Gabriel (CAP, CORP)
I'm going to try it out thanks for your time... Ornelas. -Original Message- From: Melli, Patrick [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 17, 2000 5:29 PM To: [EMAIL PROTECTED] Subject: Re: session objects with arrays Yes, // create the JSPTableModel JSPTableMode

Re: Client side selection

2000-05-19 Thread Aggarwal, Pawan
Title: RE: Client side selection Does that mean If I go for the reloading option then I need to go to the database table .pickup relevant towns and then refresh the page Can I do something like this!! I get country-city relationship data from the database(not much heavy in my case) when I co

Re: Client side selection

2000-05-19 Thread Veronique Dupierris
I think you should reload your page with this new param set. the first time country = all for your second list and when you reload your page with country = france :) you can then load only those cities for the second list. If you don't want to reload yur page, you should have store all information

No Subject

2000-05-19 Thread Veronique Dupierris
You wrote : instead of regards veronique Sachdeva Khem a écrit : > >From [EMAIL PROTECTED] Fri May 19 >05:36:53 2000 > Received: from scam.xcf.berkeley.edu (scam.XCF.Berkeley.EDU [128.32.43.201]) by >lgs-systems.com (8.8.5) id FAA17389; Fri, 19 May 2000 05:36:52 -0600 (MDT) > Received: (q

Re: java crawler

2000-05-19 Thread subbarao sakhamuri
use bollean function and for true or false subbu --- Bhupendra Jain <[EMAIL PROTECTED]> wrote: > Hi, > > I have simple question about JSP, java bean. > > How do I write a function in the bean associated > with > the JSP page to get the form checkbox values in the > bean automatically. > > Like fo

[TAGLIB] Emulation of JSP 0.92 LOOP tag?

2000-05-19 Thread Uwe Hanisch
Did anyone wrote a own loop tag in JSP 1.1., which emulate JSP 0.92 LOOP tag? Exists there a free version of it? This tag should be part of standard taglib library. regards, Uwe Hanisch === To unsubscribe: mailto [EMAIL PRO

Client side selection

2000-05-19 Thread Aggarwal, Pawan
Title: Client side selection Hi All, Can you people suggest me something.. I am using a servlet which displays 2 drop down boxes... If I make a selection in the first one then I need to update the filter list in the second one... For example if the first dropdown is for Country .. Now th

Mailing bean

2000-05-19 Thread Cheong Takhoe
Hi, Anyone here knows where I could get a mailing bean that allows me to send the mail as a parameter parsed in and returns a value whether the the transaction has completed or not? regards, Cheong Takhoe === To unsubscribe

Re: WebSphere 2.x and JSP - IBM ever going to support Websphere 3.x under Linux ????

2000-05-19 Thread M. Simms
Thanks for the alternative.we really need something more robust than what Jrun or Tomcat can offer. I have been amazed that with all of hoopla by IBM over Linux, but their app server support has only been for Win/NT !! Websphere 3.0 has been pretty bug ridden as well. > -Original Message

Re: SWING FWATURES IN JSP

2000-05-19 Thread Uwe Hanisch
It seems that at least all JavaScript tree build on the Folder Tree Script. The free version 2.0 is still available: http://www.geocities.com/Paris/LeftBank/2178/foldertree.html For current commercial release 4.5 see: http://classical.red.net/essence/foldertree/ Bye, Uwe ==

Re: Mailing

2000-05-19 Thread Uwe Hanisch
Som Subhra Chakraborty wrote: > > Hi All, > > I have a list of users with links associated with each. I want to send > email (with predefined subject & message body) to the user whose name is > clicked. The person who is clicking will not know anything about that the > mail is sent, i.e., no dialo

Re: basic problem

2000-05-19 Thread Uwe Hanisch
> Your username > Your Passowrd two times name attribute? Should be: Your username Your Passowrd Regards Uwe === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP

IDE/debug environment for JSP with Java Beans in Windows

2000-05-19 Thread Pedro Vicente
Hi I am trying to find a IDE/debug environment for JSP with Java Beans in Windows. I use IIS and Resin 1.1 as the JSP servlet engine. I've used InterDev to develop ASP sites and I really like its debugging capabilities. What JSP development tools can give me similar capabilities for developing J

Re: SWING FWATURES IN JSP

2000-05-19 Thread David Gowe
Yes, you can achieve a tree structure (like the windows explorer tree) using Java script in JSP. Visit the site called www.aspfree.com. It has a lot of sample code for various types of menus. Look under the "JavaScript" tab of the menu, which incedently is a Javascript menu. CHECK IT OUT!!! Da

No Subject

2000-05-19 Thread Sachdeva Khem
>From [EMAIL PROTECTED] Fri May 19 >05:36:53 2000 Received: from scam.xcf.berkeley.edu (scam.XCF.Berkeley.EDU [128.32.43.201]) by lgs-systems.com (8.8.5) id FAA17389; Fri, 19 May 2000 05:36:52 -0600 (MDT) Received: (qmail 83551 invoked by alias); 19 May 2000 11:17:36 - Mailing-List: contact

basic problem

2000-05-19 Thread Khem Chand Sachdeva
Hi All i am new to JSP programming could somebody tell me what is the problem with the above code. when the jsp is called first time it should display login page and then after that it should disllay welcom it is throwing following exception ___

Mailing

2000-05-19 Thread Som Subhra Chakraborty
Hi All, I have a list of users with links associated with each. I want to send email (with predefined subject & message body) to the user whose name is clicked. The person who is clicking will not know anything about that the mail is sent, i.e., no dialog/mail window should appear. How to procee

subscribe

2000-05-19 Thread Ashish Bhatia
Visit http://www.niit.com for eCommerce Solutions. === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at: http://java.sun.com/products/jsp/faq.htm

Re: About Jrun3.0

2000-05-19 Thread Achang Hu
www.allaire.com - Original Message - From: "ÍáÍá" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, May 15, 2000 3:11 PM Subject: About Jrun3.0 > Hello Everyone: > Who can tell me where I can download JRUN3.0, Thank you. > > > myWebSite: netjava.cn99.com (GBChinese) > > =

R: SWING FWATURES IN JSP

2000-05-19 Thread Spazzoli Raffaele
Try to have a look at www.swinglets.com you can find a framework that let you use model and events from awt and swing, while controls and view for generating html pages are provided by the framework. I find it a very attractive metaphore of porgrammin dynamic web pages, opposed to the emerging xml

Re: doPost() to doGet() via RequestDispatcher

2000-05-19 Thread Serbulent Ozturk
I think the only work around (it works ) seems to be to set some attribute in Servlet(A).doPost() like request.setAttribute("redirect", new Boolean(true) ); and retrieve it at the beginning of Servlet(B).doPost() and call Servlet(B).doGet(). Scott Evans wrote: > >In Servlet A's doPost, you ca

Re: JSP & Servlet

2000-05-19 Thread Ben Joyce
say something interesting for a change m8, .b -Original Message- From: Biren [mailto:[EMAIL PROTECTED]] Sent: None To: [EMAIL PROTECTED] Subject: Re: JSP & Servlet Download NeoPlanet at http://www.neoplanet.com ==

Re: doPost() to doGet() via RequestDispatcher

2000-05-19 Thread Chaitanya Nabar(CTS)
Do you have the same reply to everything ? :-)Thanks and warm regards from CNN alias Chaitanya N. Nabar Associate Cognizant Technology Solutions Ltd., Pune, India. Voice :- 91-20-6691960 / 1 Extn. 2232 ( Off. ) 91-20-5449280 ( Res. ) Email :- [EMAIL PROTECTED] -Original Me

Re: SWING FWATURES IN JSP

2000-05-19 Thread Petr Jiricka
You don't even need to use Javascript, just generate the current view of the tree every time in HTML. The downside is that you need to send a request to the server every time the user expands or collapses a node in the tree to do this. Petr > -Original Message- > From: Russell, Richard (

Re: SWING FWATURES IN JSP

2000-05-19 Thread Marco M
hi russel, ok thanx anyway regards marco > -Original Message- > From: EXT Russell, Richard (DEH) [mailto:[EMAIL PROTECTED]] > Sent: 19. May 2000 10:32 > To: [EMAIL PROTECTED] > Subject: Re: SWING FWATURES IN JSP > > > figure it out in HTML or JavaScript (for a dynamic tree

Re: SWING FWATURES IN JSP

2000-05-19 Thread Russell, Richard (DEH)
figure it out in HTML or JavaScript (for a dynamic tree...), and then generate it with JSP... I'm no expert in any of those three... :) rr > -Original Message- > From: Marco M [mailto:[EMAIL PROTECTED]] > Sent: Friday, May 19, 2000 4:48 PM > To: [EMAIL PROTECTED] > Subject: Re: SWING FWA

Re: SWING FWATURES IN JSP

2000-05-19 Thread Marco M
Hi Richard, yeah...i forgot about it.. so can u suggest me how to build a Tree in a JSP without using applet?? thanx in advance & br marco > -Original Message- > From: EXT Russell, Richard (DEH) [mailto:[EMAIL PROTECTED]] > Sent: 19. May 2000 9:53 > To: [EMAIL PROTECTED] >

Re: SWING FWATURES IN JSP

2000-05-19 Thread Marco M
> -Original Message- > From: EXT Russell, Richard (DEH) [mailto:[EMAIL PROTECTED]] > Sent: 19. May 2000 9:53 > To: [EMAIL PROTECTED] > Subject: Re: SWING FWATURES IN JSP > > > not possible. Think about it. JSPs serve up HTML. Have you > tried putting a > JTree in a HTML page without an app

Re: SWING FWATURES IN JSP

2000-05-19 Thread Russell, Richard (DEH)
not possible. Think about it. JSPs serve up HTML. Have you tried putting a JTree in a HTML page without an applet? Kinda hard, eh? JTree is a Java class that runs on the client and displays on the client's display. Therefore, it needs to run on the client's box, and the only two ways to do this ar

Re: JServ installation problem

2000-05-19 Thread Gogia Nitin
HAVE U GONE BERSERK ? > -Original Message- > From: Biren [SMTP:[EMAIL PROTECTED]] > Sent: None > To: [EMAIL PROTECTED] > Subject: JServ installation problem > > > > Download NeoPlanet at http://www.neoplanet.com =