simple question

1999-09-24 Thread Kallur, Padmaja (GEL, MSX)
Hello jsp folks, I need some help. I have a form in which I have 10 text boxes along with a submit button. My step22.jsp works fine if I run it independently. But when I click press in my form it doesnot run step22.jsp. It says Internet Explorer cannot open the Internet site http://localhost:

Simple question

2000-01-04 Thread Attili Srinivas
Hi, Does everything inside the <% %> tags goes into the _jspService( )method ??? if not, how can we diffrentiate code(when writing JSP code) that goes into the _jspService( )method and outside the method(say I want to write another function abc()) Thanks Sri =

simple question

2001-03-01 Thread Daniel Lynn
OK, I'm looking into what JSP can do and I'm a bit confused... I always here that JSP can use all of he Java libraries, but can it do all of the AWT and Swing stuff? and how exactly does that work inside a browser also, if anyone has any suggestions on books or sites about this, it'd be much a

simple question...

2001-05-24 Thread Gilson Nascimento D Elrei
hi all, I was wondering to know if somebody have (or know where i can download) a simple sample project that use jsp/servlet/beans/xml together to ilustrate the funcionallity of the MVC model and of all actual java technologies. Nothing complicated, anything like a authenticate user login classes

Simple Question

2002-04-16 Thread Papo Napolitano
Hi! How can I do to to put inside a JSP String Variable this information <%=VarName%> I'd tried with this but i get an error: String myVar = "<%=VarName%>" ; Any idea ?? Regards, Papo === To unsubscribe: mailto [EMAIL P

JRun - Simple Question.

1999-12-02 Thread Phil Swenson
I'm a servlet newbie and am trying out JRun on IIS.  I got a simple JSP with inline Java running, but I haven't been able to get a servlet to run.  I took a simple example from a servlet book(Java Servlets by Karl Moss), copied the servlet into my www.blah.com/servlet directory.  I copied th

Re: Simple question

2000-01-04 Thread Craig R. McClanahan
Attili Srinivas wrote: > Hi, > Does everything inside the <% %> tags goes into the _jspService( )method ??? > if not, how can we diffrentiate code(when writing JSP code) that goes into the > _jspService( )method and outside the method(say I want to write another > function abc()) > Thanks >

Re: Simple question

2000-01-04 Thread John Wheeler
> Hi, > Does everything inside the <% %> tags goes into the _jspService( )method ??? > if not, how can we diffrentiate code(when writing JSP code) that goes into the > _jspService( )method and outside the method(say I want to write another > function abc()) > Thanks > Sri > You can't write a

Re: Simple question

2000-01-04 Thread Joseph B. Ottinger
On Tue, 4 Jan 2000, Attili Srinivas wrote: > Hi, > Does everything inside the <% %> tags goes into the _jspService( )method ??? > if not, how can we diffrentiate code(when writing JSP code) that goes into the > _jspService( )method and outside the method(say I want to write another > function

FW: Simple question

2000-01-04 Thread Praveen Kumar S .
to encapsulate Java logic in beans, custom tags, > or Servlets." > I agree completely with what you say about the above... > Amit Ghaste > -- > From: Craig R. McClanahan[SMTP:[EMAIL PROTECTED]] > Sent: Tuesday, January 04, 2000 10:58:30 PM > T

jsp simple question...

2000-01-13 Thread Arni Raghu
Hi, I have a simple/silly question.. I would like a jsp to display different parts of the html page depending on the way it is called...How do I call another jsp page with diferent attributes... like:: <%@include file="helloworld.jsp?showme="true%> Now the helloworld.jsp shows different

Re: simple question

2001-03-01 Thread Kyle Burke
You cannot do GUI with Servlets alone. Need an applet. -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Daniel Lynn Sent: Thursday, March 01, 2001 5:48 PM To: [EMAIL PROTECTED] Subject: simple question OK

Re: simple question

2001-03-02 Thread Martin Cooper
WT or Swing to run on the server side, then I guess you've lost me. -- Martin Cooper Tumbleweed Communications - Original Message - From: "Daniel Lynn" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 01, 2001 2:47 PM Subject: simple question >

Re: simple question

2001-03-02 Thread M. Simms
simple" for now. > -Original Message- > From: A mailing list about Java Server Pages specification and reference > [mailto:[EMAIL PROTECTED]]On Behalf Of Martin Cooper > Sent: Friday, March 02, 2001 3:38 AM > To: [EMAIL PROTECTED] > Subject: Re: simple question > &

Re: simple question...

2001-05-24 Thread Nevarez, Benjamin
] Subject: simple question... hi all, I was wondering to know if somebody have (or know where i can download) a simple sample project that use jsp/servlet/beans/xml together to ilustrate the funcionallity of the MVC model and of all actual java technologies. Nothing complicated, anything like a

simple question please

2002-02-04 Thread sufi malak
HI, I have a form, I want if this form is not processed, the fields missing change the color ( this is done using style html), but I don't know why the other fields entered have gone, here is the form : Please add a new entry, don't leave any field empty <%=request.getParameter("ipaddres

Re: Simple Question

2002-04-16 Thread David Hyne
String myVar = VarName; -Original Message- From: Papo Napolitano [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 16, 2002 1:40 PM To: [EMAIL PROTECTED] Subject: Simple Question Hi! How can I do to to put inside a JSP String Variable this information <%=VarName%> I'd trie

Re: Simple Question

2002-04-16 Thread Richard Yee
Papo, Can you provide more information on what you are trying to accomplish by doing this? There is probably another way to achieve your desired results. Regards, Richard At 05:39 PM 4/16/2002 -0300, you wrote: >Hi! > >How can I do to to put inside a JSP String Variable this information ><%=V

simple question. please urgent.

1999-09-27 Thread Kallur, Padmaja (GEL, MSX)
Hi all, Can some one point my mistake. I have been working on this for the last 24 hrs.But could not figure out how to do it. I have fir.jsp which runs fine. Hello, World <% out.println("Hello World"); %>

Simple question on include

1999-10-01 Thread Vlad
Hello, everyone! I am trying to include one jsp file in another, and I have to pass some parameters from one to another. The following does not seem to work. Is this the right way, or is there a better way. Thanks, Vlad. ===

Re: FW: Simple question

2000-01-04 Thread Craig R. McClanahan
"Praveen Kumar S ." wrote: > Craig, > > > I did not understand what you ment by "shared across all the threads..." > I was not as clear as I should have been. Basically, when you declare a variable like this: <%! private int myVariable = 0; %> you are declaring an instance variable in the

Re: jsp simple question...

2000-01-14 Thread John Wheeler
> Hi, > I have a simple/silly question.. > I would like a jsp to display different parts of the html page depending on > the way it is called...How do I call another jsp page with diferent > attributes... > > like:: > > <%@include file="helloworld.jsp?showme="true%> > This is incorrect sy

Re: jsp simple question...

2000-01-14 Thread Kevin Jones
ary 2000 20:00 To: [EMAIL PROTECTED] Subject: jsp simple question... Hi, I have a simple/silly question.. I would like a jsp to display different parts of the html page depending on the way it is called...How do I call another jsp page with diferent attributes... like:: <%@include file=&q

Simple Question in WebLogic..

2000-09-28 Thread sanjeev
Hi all, Can any one help me? I have two simple questions. 1) .By default in which port the JNDI naming service is listening in WebLogic. How we can change that port no. 2) We have a deploy tool by our own. How I can deploy my application using that proprietry deployment

Simple question 'bout session

2000-06-23 Thread Cokorda Raka Angga Jananuraga
Hi guys, Here's the short description of my problem : I have two jsp : login.jsp & service.jsp User must pass the screening which is done by login.jsp before he can access service.jsp. If user try to access service.jsp directly, he will be bounced (forwarded) to login.jsp. So, It's time to us

A very simple question

2001-12-02 Thread Compulsive Obsessive
I have a very simple question. I have a web application ready to be deployed on a TomCat server. I want to generate a single "war" file for deployment but want to save myself the effort of editing "web.xml" file manually. Q- Are there any tools (for free) which can genera

RE : simple question please

2002-02-04 Thread hafif
cation and reference [mailto:[EMAIL PROTECTED]] De la part de sufi malak Envoyé : lundi 4 février 2002 16:24 À : [EMAIL PROTECTED] Objet : simple question please HI, I have a form, I want if this form is not processed, the fields missing change the color ( this is done using style html), but I do

Re: simple question please

2002-02-04 Thread Sachin S. Khanna
ED]> Sent: Monday, February 04, 2002 9:53 PM Subject: simple question please > HI, I have a form, I want if this form is not processed, the fields missing > change the color ( this is done using style html), but I don't know why the > other fields entered have gone, here is the for

Re: simple question please

2002-02-04 Thread sufi malak
t about Java Server Pages specification and >reference <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: Re: simple question please >Date: Mon, 4 Feb 2002 23:35:04 +0530 > >Try putting quotes around like >value="<%=request.getParameter("ipaddre

Re: simple question please

2002-02-04 Thread Peter Claesson (EUS)
Try using single quote for the inner string and double quote for the outer string. Reenter IP Address /Peter -Original Message- From: sufi malak [mailto:[EMAIL PROTECTED]] Sent: Monday, February 04, 2002 10:38 AM To: [EMAIL PROTECTED] Subject: Re: simple question please No, it does

simple question about jsp

2002-10-04 Thread Veena Kulkarni
Hi, I'm trying to run a very simple jsp file which has the following code[ i have j2se 1.4 and jdee1.3 installed]: Hello! The time is now <%= new java.util.Date() %> Hello! The properties are <%= new java.System.getProperties() %> PROBLEM: I get the following error message C:\Program Files

Re: simple question. please urgent.

1999-09-27 Thread Carsten Heyl
Hi Padmaja, >Hi all, > >Can some one point my mistake. I have been working on this for the last 24 >hrs.But could not figure out how to do it. I don't see any problems in your code. I pasted it in Apache 1.3.6/jserv 1.0/gnujsp 1.0cvs and it just worked. Did replacing POST with GET change somethi

Re: simple question. please urgent.

1999-09-27 Thread Ramgopal Mudigonda
Hi Padmaja, I tried your code on Sun's RI.It works fine. It seems that you are placing your fir.jsp in the 'examples' directory. Please let me know, which server you are using. -Ram "Kallur, Padmaja (GEL, MSX)" wrote: > Hi all, > > Can some one point my mistake. I have been working on this f

Re: Simple question on include

1999-10-02 Thread Carsten Heyl
Hi Vlad! You have to put you arguments as attributed with request scope into the pageContext. See pageContext.setAttribute(). The included page can then get that objects via pageContext.getAttribute(). >Hello, everyone! > >I am trying to include one jsp file in another, and I have to pass some

Re: Simple question 'bout session

2000-06-23 Thread Robert Nicholson
--- > From: A mailing list about Java Server Pages specification and reference > [mailto:[EMAIL PROTECTED]]On Behalf Of Cokorda Raka Angga > Jananuraga > Sent: Friday, June 23, 2000 6:31 PM > To: [EMAIL PROTECTED] > Subject: Simple question 'bout session > > > Hi guys, &

Re: A very simple question

2001-12-02 Thread I Wayan Saryada
To: [EMAIL PROTECTED] Subject: A very simple question I have a very simple question. I have a web application ready to be deployed on a TomCat server. I want to generate a single "war" file for deployment but want to save myself the effort of editing "web.xml" file manually

Re: simple question about jsp

2002-10-04 Thread Amit Ghaste
System exists in java.lang package try java.lang.System -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Veena Kulkarni Sent: Friday, October 04, 2002 11:19 AM To: [EMAIL PROTECTED] Subject: simple

Re: simple question about jsp

2002-10-04 Thread Anoop Kumar V
] Subject: Re: simple question about jsp System exists in java.lang package try java.lang.System -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Veena Kulkarni Sent: Friday, October 04, 2002 11:19 AM To

Re: simple question about jsp

2002-10-04 Thread Yogiswar Vanama
Hi, Change ur code as follows: = Hello! The properties are <%= new System.getProperites() %> b'cause java.lang package is default package. U need not to give the package name. Even if you want to give you can write : java.lang.System.getProperties() I hope, u got th

Re: simple question about jsp

2002-10-05 Thread Amit Ghaste
:[EMAIL PROTECTED]]On Behalf Of Yogiswar Vanama Sent: Friday, October 04, 2002 1:07 PM To: [EMAIL PROTECTED] Subject: Re: simple question about jsp Hi, Change ur code as follows: = Hello! The properties are <%= new System.getProperites() %> b'cause java.l

A what seems like a simple question...

1999-04-12 Thread Sean Shanny
To all, Does anyone know if an included jsp file is compiled before the jsp page it was called from is compiled fully? I am looking to duplicate the functionality that we currently have with a product called XTags which allows us to use an tag which stops compilation on the current file, compil

Re: simple question (Swing, AWT with JSP)

2001-03-02 Thread christopher brown
rver-side window, the administrator could access the running application via a GUI instead of a web interface. Think about it, it's VERY useful... ;-) -Chris Brown - Original Message - From: "Martin Cooper" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Frida

Re: A what seems like a simple question...

1999-04-12 Thread Komal Sethi
I'm not sure that the spec says to do this one way or the other, but in the case of gnujsp, and i believe the .92 reference, a ssi just inline's the code of your included file. gnu appears to at least do something intelligent with import directives aggregating them to the top of your code. However