where can i find a free ide

2002-03-06 Thread s i m o n

where can i find a free java ide.. something like kawa.

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: GIF Modification

2002-03-06 Thread kim

you can get gif writer from
http://www.acme.com/java/software/Acme.JPM.Encoders.GifEncoder.html


- Original Message -
From: "M. Simms" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, March 07, 2002 7:14 AM
Subject: Re: GIF Modification


> WRITING GIFS. CAN'T BE HERE'S THE LATEST JAI 1.1 DOCS:
>  o GIF file handling:
>
>  GIF files are read using the JDK's internal reader. There
> is no GIF
>  writer. Due to a bug in the AWT GIF decoder, GIFs with a
> transparent
>  background will be decoded as if their background were
> black.
>
>  GIF files may not be read remotely, i.e., via
RemoteImage,
> on hosts
>  without window system access as the reader uses the AWT
> toolkit
>  which requires window system access.
>
> THERE IS NO GIF WRITER.
> JPEGS ? YES.
>
> > -Original Message-
> > From: A mailing list about Java Server Pages specification and reference
> > [mailto:[EMAIL PROTECTED]]On Behalf Of Mark Lines-Davies
> > Sent: Wednesday, March 06, 2002 6:19 AM
> > To: [EMAIL PROTECTED]
> > Subject: Re: GIF Modification
> >
> >
> > Peter
> >
> > A colleague did this sort of thing a while back. I asked him what he had
> > used. He said...
> >
> > "It was Java Advanced Imaging.
> > http://java.sun.com/products/java-media/jai/index.html
> >
> > I used about 0.1% of its capabilities - the main thing was that
> > it provided
> > a way to write images as GIFs.  Most of what I used was the
> > imaging stuff in
> > the standard Java libraries - java.awt.image etc, which has all the
stuff
> > for setting up image buffers and drawing on them."
> >
> > Hope this helps.
> >
> > Mark Lines-Davies
> >
> >
> > -Original Message-
> > From: A mailing list about Java Server Pages specification and reference
> > [mailto:[EMAIL PROTECTED]]On Behalf Of Peter Dolukhanov
> > Sent: 05 March 2002 19:30
> > To: [EMAIL PROTECTED]
> > Subject: GIF Modification
> >
> >
> > Dear All,
> >
> >
> >
> > I was wondering if there was a Java class that would (easily) allow me
> > to:
> >
> >
> >
> > i) Take an existing GIF image
> >
> > ii) Add objects (ie, circle, colour red, at position x,y)
> >
> > iii) Save or display the output
> >
> >
> >
> > Is this possible?
> >
> >
> >
> > Cheers
> >
> > Pete Dolukhanov
> >
> > ==
> > =
> > To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
> > JSP-INTEREST".
> > For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
> > DIGEST".
> > Some relevant FAQs on JSP/Servlets can be found at:
> >
> >  http://archives.java.sun.com/jsp-interest.html
> >  http://java.sun.com/products/jsp/faq.html
> >  http://www.esperanto.org.nz/jsp/jspfaq.jsp
> >  http://www.jguru.com/faq/index.jsp
> >  http://www.jspinsider.com
> >
> >
> >
> >
*
> > The information contained in this message or any of its
> > attachments may be privileged and confidential and intended
> > for the exclusive use of the addressee. If you are not the
> > addressee any disclosure, reproduction, distribution or other
> > dissemination or use of this communication is strictly prohibited
> >
*
> >
> > ==
> > =
> > To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
> > JSP-INTEREST".
> > For digest: mailto [EMAIL PROTECTED] with body: "set
> > JSP-INTEREST DIGEST".
> > Some relevant FAQs on JSP/Servlets can be found at:
> >
> >  http://archives.java.sun.com/jsp-interest.html
> >  http://java.sun.com/products/jsp/faq.html
> >  http://www.esperanto.org.nz/jsp/jspfaq.jsp
> >  http://www.jguru.com/faq/index.jsp
> >  http://www.jspinsider.com
>
>
===
> To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
> For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
DIGEST".
> Some relevant FAQs on JSP/Servlets can be found at:
>
>  http://archives.java.sun.com/jsp-interest.html
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.jsp
>  http://www.jguru.com/faq/index.jsp
>  http://www.jspinsider.com
>

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



cookie retrieval

2002-03-06 Thread Paul Wallace

Hi, a have a JSP page to setup a cookie:

cook = new Cookie("memberCookie", userid);
response.addCookie(cook);
response.sendRedirect("http://myhost/mydir/somelocation/enterDate.jsp";);

and the page to retrieve the cookies (enterDate.jsp):

Cookie cookies[] = request.getCookies();
if(cookies != null) {
for(int i = 0; i < cookies.length; i++) {
if (cookies[i].getName().equals("memberCookie"));
out.println("Welcome: " + cookies[i].getValue());
}
 }

Here's the conundrum..if the cookie is retrieved from a DIFFERENT page that
setup the cookie, the output (getValue, getName etc) returns only a session
ID ie "JSESSIONID ASFK459FH32LJAD0TLJFV93GDG". BUT, if the cookie is
retrieved from a file in the SAME directory of setup, the desired output is
obtained (plus the same JSESSIONID info that can be discarded). Surely I do
not have to setup or retrieve cookies from 2 sources/files that are in the
same directory?

Thanks for all input

Paul.

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: GIF Modification

2002-03-06 Thread M. Simms

WRITING GIFS. CAN'T BE HERE'S THE LATEST JAI 1.1 DOCS:
 o GIF file handling:

 GIF files are read using the JDK's internal reader. There
is no GIF
 writer. Due to a bug in the AWT GIF decoder, GIFs with a
transparent
 background will be decoded as if their background were
black.

 GIF files may not be read remotely, i.e., via RemoteImage,
on hosts
 without window system access as the reader uses the AWT
toolkit
 which requires window system access.

THERE IS NO GIF WRITER.
JPEGS ? YES.

> -Original Message-
> From: A mailing list about Java Server Pages specification and reference
> [mailto:[EMAIL PROTECTED]]On Behalf Of Mark Lines-Davies
> Sent: Wednesday, March 06, 2002 6:19 AM
> To: [EMAIL PROTECTED]
> Subject: Re: GIF Modification
>
>
> Peter
>
> A colleague did this sort of thing a while back. I asked him what he had
> used. He said...
>
> "It was Java Advanced Imaging.
> http://java.sun.com/products/java-media/jai/index.html
>
> I used about 0.1% of its capabilities - the main thing was that
> it provided
> a way to write images as GIFs.  Most of what I used was the
> imaging stuff in
> the standard Java libraries - java.awt.image etc, which has all the stuff
> for setting up image buffers and drawing on them."
>
> Hope this helps.
>
> Mark Lines-Davies
>
>
> -Original Message-
> From: A mailing list about Java Server Pages specification and reference
> [mailto:[EMAIL PROTECTED]]On Behalf Of Peter Dolukhanov
> Sent: 05 March 2002 19:30
> To: [EMAIL PROTECTED]
> Subject: GIF Modification
>
>
> Dear All,
>
>
>
> I was wondering if there was a Java class that would (easily) allow me
> to:
>
>
>
> i) Take an existing GIF image
>
> ii) Add objects (ie, circle, colour red, at position x,y)
>
> iii) Save or display the output
>
>
>
> Is this possible?
>
>
>
> Cheers
>
> Pete Dolukhanov
>
> ==
> =
> To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
> JSP-INTEREST".
> For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
> DIGEST".
> Some relevant FAQs on JSP/Servlets can be found at:
>
>  http://archives.java.sun.com/jsp-interest.html
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.jsp
>  http://www.jguru.com/faq/index.jsp
>  http://www.jspinsider.com
>
>
>
> *
> The information contained in this message or any of its
> attachments may be privileged and confidential and intended
> for the exclusive use of the addressee. If you are not the
> addressee any disclosure, reproduction, distribution or other
> dissemination or use of this communication is strictly prohibited
> *
>
> ==
> =
> To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
> JSP-INTEREST".
> For digest: mailto [EMAIL PROTECTED] with body: "set
> JSP-INTEREST DIGEST".
> Some relevant FAQs on JSP/Servlets can be found at:
>
>  http://archives.java.sun.com/jsp-interest.html
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.jsp
>  http://www.jguru.com/faq/index.jsp
>  http://www.jspinsider.com

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



iPlanet 6.0 App Server

2002-03-06 Thread Shahata, Ashraf

Hi all,
I'm trying to install iAS on solaris and I'm getting stuck at Enabling JSP
Versioning for iAS.. everytime I run the kregedit script at
/opt/iplanet/ias/bin, I get a segmentation fault :

SIGSEGV 11 segmentation violation
si_signo [11]: SEGV
si_errno [0]:
si_code [1]: SEGV_MAPERR [addr: 0x54d0ec64]

stackpointer=FFBECDD0

Did anyone come across this before, or any idea what the error means?
Thanks

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



[no subject]

2002-03-06 Thread Abhishek Vishwakarma

  Placed At :



Hi,

Plz, Can anybody tell me how to run a trusted signed applet in Netscape browser.
I m able to run in IE... but facing problems in Netscape.

thankx & regards,

abhishek

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: GIF Modification

2002-03-06 Thread Mark Lines-Davies

Peter

A colleague did this sort of thing a while back. I asked him what he had
used. He said...

"It was Java Advanced Imaging.
http://java.sun.com/products/java-media/jai/index.html

I used about 0.1% of its capabilities - the main thing was that it provided
a way to write images as GIFs.  Most of what I used was the imaging stuff in
the standard Java libraries - java.awt.image etc, which has all the stuff
for setting up image buffers and drawing on them."

Hope this helps.

Mark Lines-Davies


-Original Message-
From: A mailing list about Java Server Pages specification and reference
[mailto:[EMAIL PROTECTED]]On Behalf Of Peter Dolukhanov
Sent: 05 March 2002 19:30
To: [EMAIL PROTECTED]
Subject: GIF Modification


Dear All,



I was wondering if there was a Java class that would (easily) allow me
to:



i) Take an existing GIF image

ii) Add objects (ie, circle, colour red, at position x,y)

iii) Save or display the output



Is this possible?



Cheers

Pete Dolukhanov

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



*
The information contained in this message or any of its
attachments may be privileged and confidential and intended
for the exclusive use of the addressee. If you are not the
addressee any disclosure, reproduction, distribution or other
dissemination or use of this communication is strictly prohibited
*

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: jsp:include problem

2002-03-06 Thread Carlos

is not :"<=strPassportID%>"/
is yes :="<%=trPassportID%>"/
- Original Message -
From: "M. Amin" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, March 06, 2002 11:33 AM
Subject: jsp:include problem


Dear All,
 when i tried to include a jsp file as follows :


 


i got the following error message

error page to report such errors more gracefully
com.sun.jsp.compiler.ParseException:
C:\Program Files\IBM\VisualAge for Java\ide\project_resources\
IBM WebSphere Test Environment\hosts\default_host\visa\
web\passportAppointments.jsp(26,9) "Unterminated


any help will be appreciated.

=
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



jsp:include problem

2002-03-06 Thread M. Amin

Dear All,
 when i tried to include a jsp file as follows :


  


i got the following error message

error page to report such errors more gracefully 
com.sun.jsp.compiler.ParseException: 
C:\Program Files\IBM\VisualAge for Java\ide\project_resources\
IBM WebSphere Test Environment\hosts\default_host\visa\
web\passportAppointments.jsp(26,9) "Unterminated 


any help will be appreciated.

==To 
unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com