Re: JSP on CD

2000-05-10 Thread Deniz Ersöz

Change your burning program...

- Original Message -
From: "Nestel, Frank" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, May 10, 2000 3:26 PM
Subject: JSP on CD


> Hello there,
>
> we are currently considering switching from ASP to Servlets+JSP.
> On of the reasons was that is is hard to burn (dynamic) ASP on a CD.
> There are solutions but all poor. Now we've tried to burn our JSP on
> CD in a precompiled fashion. Problem: The long names of generated
> java and class code break Joliet naming. Therefore we cannot burn
> precompiled JSPs on CD. Anyone who has found a workarround for
> that any idea?
>
> Thank you very much,
> Frank
>
> --
> COI GmbHErlanger Straße 62, D-91074 Herzogenaurach
> Phone +49 (0) 9132 82 4611, Fax +49 (0) 9132 82 2130,
> http://www.coi.de, mailto:[EMAIL PROTECTED]
>   COI - Solutions for Documents
>
>
===
> 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.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===
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.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: How to call the method in another class in the same package?

2000-05-08 Thread Deniz Ersöz

Declare the second one as static and call it like Math functions or declare
an object from the second class to call the method

===
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.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



JSP solution for sending mail...

2000-05-08 Thread Deniz Ersöz

JavaMail bean...


package mail;

import java.io.*;
import java.util.*;
import java.net.*;
import javax.servlet.*;
import javax.servlet.http.*;
import javax.mail.*;
import javax.mail.internet.*;

public class JavaMail{

 private String SMTPHost = "SMTP.ug.bcc.bilkent.edu.tr";
 String from, to, subject, text;

 public void setFrom(String name){
  from = name;
 }
 public void setTo(String name){
  to = name;
 }
 public void setSubject(String name){
  subject = name;
 }

 public void setText(String name){
  text = name;
 }

 public String send() {

  String error = "";

  try{
   Properties sysProps = System.getProperties();
   sysProps.put("mail.smtp.host",SMTPHost);
   Session session = Session.getInstance(sysProps,null);

   MimeMessage message = new MimeMessage(session);

   Address fromAddress = new InternetAddress(from);
   message.setFrom(fromAddress);

   Address[] toAddress = InternetAddress.parse(to);
   message.setRecipients(Message.RecipientType.TO,toAddress);

   message.setSubject(subject);

   message.setText(text.toString());
   Transport.send(message);
  }
  catch (AddressException e){
error = error + e.getClass() + e.getMessage() + "\n";
  }
  catch (SendFailedException e){
error = error + e.getClass() + e.getMessage() + "\n";
  }
  catch (MessagingException e){
error = error + e.getClass() + e.getMessage() + "\n";
  }

  return error;
 }
}

-
mail.html

--



carts






From:
To:
Subject:
Text:







--
mail.jsp

--






<%@ include file ="/db/mail.html" %>

<%
 String error = mail.send();
 if(error.equals(""))
%>
Successfull
<%
else
%>

<%=error%>





--

===
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.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Java Question

2000-05-05 Thread Deniz Ersöz

Hi,

I cannot run jfc applets on IE5, it can't found the classes...
Anyone got any idea?

Thank u for your help

===
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.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: How to configure Visual cafe to run the Jrun engine

2000-05-04 Thread Deniz Ersöz

Hi,

Can I also run Resin with Cafe 4?


- Original Message -
From: "Williams, Stephen" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, May 03, 2000 7:47 PM
Subject: Re: How to configure Visual cafe to run the Jrun engine


> Feel free to add my instructions to your web site.  However, please
correct
> my instructions as follows (based upon my follow-up message to Claire
Ryan):
>
> In step (2), please replace the following text as follows:
>
> Old Text:
> "Note that I converted some of the directory paths
>  to use forward slashes ("/") instead of escaped
>  backslashes ("\\") since backslashes only work on
>  Windows boxes and then only with some JVMs."
>
> New Text:
> "Note that you must convert all of the directory
>  paths to use single back slashes ("\") instead
>  of single forward slashes ("/") or escaped back
>  slashes ("\\").  For example, the directory path
>  "e:/jrun/classes" must be changed to
>  "e:\jrun\classes".  This is necessary for Visual
>  Cafe to work properly."
>
> Please let me know if you have any questions about the instructions.
>
> --
> Stephen A. Williams
> HNC Telecommunications Solutions
>
>
>
> > -Original Message-
> > From: Scott Stirling [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, May 02, 2000 7:42 PM
> > To: [EMAIL PROTECTED]
> > Subject: Re: How to configure Visual cafe to run the Jrun engine
> >
> >
> > Hey Stephen,
> >
> > These are great!
> >
> > We have instructions on our web site on how to config VC 3 and JRun
> > (courtesy of another user, actually).  Would you mind if I added your
> > instructions as an updated version for VC 4?  I would credit
> > you in the
> > Knowledge Base article.
> >
> > Scott Stirling
> > Allaire Corp.
> >
> > -Original Message-
> > From: A mailing list about Java Server Pages specification
> > and reference
> > [mailto:[EMAIL PROTECTED]]On Behalf Of Williams, Stephen
> > Sent: Tuesday, May 02, 2000 5:40 PM
> > To: [EMAIL PROTECTED]
> > Subject: Re: How to configure Visual cafe to run the Jrun engine
> >
> >
> > We have successfully configured Visual Cafe 4 Expert Edition
> > to run the JRun
> > engine (version 2.3.3 build 157).  Below are the details of
> > what we did to
> > get this working.  The instructions are long, but it's really not that
> > difficult, and it's great to be able to debug your servlets
> > and even JSPs.
> > Please let me know if you have any questions.
> >
> > Note:  Whenever you see "..." in a pathname, you'll need to put in the
> > appropriate path to the installed product (Visual Cafe or
> > JRun) on your
> > machine.  For instance, on my machine, I installed Visual
> > Cafe and JRun in
> > E:\, so I replace "..." with "E:\".
> >
> > 1.  Replaced Visual Cafe's version of jsdk.jar with the one
> > from Sun's Java
> > Servlet Development Kit 1.0.1 (JSDWK1.0.1).  I belive this
> > was necessary
> > because we are using JSP 1.0, but the jsdk.jar shipped with
> > Visual Cafe was
> > for JSP 0.92.  This file is located in:
> >
> > ...\VisualCafe\Java\lib\jsdk.jar
> >
> > 2.  Modified the classpath used by Visual Cafe's JVM's to
> > include everything
> > from the classpath used by the JRun engine.  This is necessary so that
> > Visual Cafe can find all of the classes used by the JRun
> > engine.  The JRun
> > classpath that I added can be found in the "java.classpath"
> > property in the
> > following JRun property file:
> >
> > ...\JRun\jsm-default\properties\jsm.properties
> >
> > On my machine, the JRun classpath starts with the directory
> > "e:/JRun/classes" and contains 20+ paths.  Note that I
> > converted some of the
> > directory paths to use forward slashes ("/") instead of
> > escaped backslashes
> > ("\\") since backslashes only work on Windows boxes and then
> > only with some
> > JVMs.
> >
> > This JRun classpath must be added to two classpaths in Visual Cafe:
> > "Classpath for the VM" and "Classpath for the Compiler".
> > Both of those can
> > be set under "Tools->Options->Virtual Machines".  I prepended the JRun
> > classpath to the existing ones in Visual Cafe.  You'll need to restart
> > Visual Cafe after you do this for the changes to take effect.
> >
> > 3.  In order for JSP pages to compile properly when running
> > JRun in Visual
> > Cafe, you'll need to modify the "compiler" property in the
> > jsp.properties
> > property file to contain an absolute path instead of a
> > relative one.  Note
> > that this file exists in two places, depending upon whether
> > you are running
> > the JRun engine with the JRun web server or with any other
> > web server (e.g.,
> > Apache, IIS, NES, etc.).  For safety, change the value in both copies:
> >
> > ...\JRun\jsm-default\services\jse\properties\jsp.properties
> > ...\JRun\jsm-default\services\jseweb\properties\jsp.properties
> >
> > The original value for the "compiler" property will probably
> > start with
> > "..\\bin\\jikesw.exe".  That n

Re: Import problem

2000-05-04 Thread Deniz Ersöz

Is the package in a jar file?

If so, extract it with winzip...


- Original Message -
From: "Vishwa" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, May 04, 2000 8:43 PM
Subject: Re: Import problem


> Hi,
>
> Thanks for your reply.
>
> util package is my own package, as it is not yet released like
> com.something.util, i have named it as just util.
>
> Thanks
> vishwa
>
> Ritesh Sinha wrote:
> >
> > I think you need to specify java.util.*  there.
> > like:
> >
> > <%@page import="java.util.*" %>
> > <%jsp:usebean id="props" class="PropertyFileBean" %>
> > <%jsp:setProperty name="props" property="FileName" param="df" %>
> >
> > HTH,
> > ritesh sinha
> >
> > Vishwa <[EMAIL PROTECTED]> on 05/04/2000 10:24:36 PM
> >
> > Please respond to A mailing list about Java Server Pages specification
and
> >   reference <[EMAIL PROTECTED]>
> >
> > To:   [EMAIL PROTECTED]
> > cc:(bcc: Sinha Ritesh-SWD-ITIL-UB/Itilmail)
> >
> > Subject:  Import problem
> >
> > Hello all,
> >
> > I have to import a package 'util.*' in my jsp. I have coded the import
> > like this
> >
> > <%@page import="util.*" %>
> > <%jsp:usebean id="props" class="PropertyFileBean" %>
> > <%jsp:setProperty name="props" property="FileName" param="df" %>
> >
> > But I am getting an error that the JSP engine is not able to locate the
> > package, where should i copy the package to. ?. Or how should i set the
> > classpath.
> >
> > I am using javawebserver2.0.
> >
> > Regards,
> > vishwa
> >
> >
===
> > 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.html
> >  http://www.esperanto.org.nz/jsp/jspfaq.html
> >  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
> >  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
> >
> >
===
> > 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.html
> >  http://www.esperanto.org.nz/jsp/jspfaq.html
> >  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
> >  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
>
>
===
> 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.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===
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.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: study JSP

2000-05-01 Thread Deniz Ersöz

Sites to look for:

java.sun.com
javaworld.com
jspin.com
servlets.com
weblogic.com

u need jdk1.2.2
and a server, my advice is resin1.1...

- Original Message -
From: "Tynnia" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, May 01, 2000 2:05 PM
Subject: study JSP


> Hello everyone£¬
>
> I am a greenhand of JSP and I want to study it. Is there anyone be so kind
to give me advice on how to learn it, and tell me what resources(SDK API,
Web Server and Web site etc.) I shall access/download?
>
> Thanks!
> Tynnia [EMAIL PROTECTED]
>
>
===
> 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.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===
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.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: JSP on IIS? Possible?

2000-04-28 Thread Deniz Ersöz

Thank u for sharing your ideas with me...

I installed Resin just now and it works fine...


- Original Message -
From: "Neeraj Dad" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Saturday, April 29, 2000 2:25 AM
Subject: Re: JSP on IIS? Possible?


> I too agree with this. and above all it automatically compiles the java
> classes, so when ever there is any change in code all you have to do is
> replace the source file, you need not to shutdown the server and restart
it
> again.
> Neeraj
>
> -Original Message-
> From: A mailing list about Java Server Pages specification and reference
> [mailto:[EMAIL PROTECTED]]On Behalf Of Kevin Duffey
> Sent: Friday, April 28, 2000 10:44 PM
> To: [EMAIL PROTECTED]
> Subject: Re: JSP on IIS? Possible?
>
>
> You buy it for $600 and install it. I would go with Resin personally. Its
> free to use, and like I said..if you don't need SSL, use its web server
> too..its much faster than IIS with any servlet engine. Plus, Resin gives
you
> servlet 2.2 and JSP 1.1 spec, where as JRUN is only Servlet 2.1 and JSP
1.0
> spec right now..a bit behind.
>
>
===
> 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.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
>
>
===
> 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.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===
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.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: JSP on IIS? Possible?

2000-04-28 Thread Deniz Ersöz

How can I use Jrun with IIS?


- Original Message -
From: "Kevin Duffey" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, April 28, 2000 11:01 PM
Subject: Re: JSP on IIS? Possible?


> Yes. We use JRUN here, its a DLL plugin for IIS.
>
> I have tested Resin, which is quite a bit faster and easier to work with.
> Also, if you don't need to use SSL right now..you can wait a few
> months...use Resin as your web server AND servlet/jsp engine. It works
much
> faster than IIS/JRUN or IIS/Resin.
>
> Forget the site..but do a search for Resin and you'll find it.
>
>
===
> 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.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===
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.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



A question

2000-04-28 Thread Deniz Ersöz

How can I integrate Tomcat dll's into IIS5.0?

Thank u for your help

===
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.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: JSP Server

2000-04-28 Thread Deniz Ersöz

How can I integrate Tomcat into IIS5.0?


- Original Message -
From: "Stefán Freyr Stefánsson" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, April 28, 2000 2:46 PM
Subject: Re: JSP Server


> Yes you can run JSP's on Apache (don't know about Netscape).  I'm using
> Tomcat (http://jakarta.apache.org) as the JSP engine.  This is a seperate
> JSP/Servlet engine which can be "connected" to Apache in order to manage
JSP
> pages and servlets.
>
> Hope this helps.
> Stefan
>
> -Original Message-
> From: A mailing list about Java Server Pages specification and reference
> [mailto:[EMAIL PROTECTED]]On Behalf Of Gogia Nitin
> Sent: 28. apríl 2000 11:17
> To: [EMAIL PROTECTED]
> Subject: JSP Server
>
>
> I have been running JSP's on Java Web Server.
> I want to ask whether we can run JSP's on Apache or Netscape Enterprise
> Server. If yes, do we require any plug-in for this ?
>
> Thanks in advance,
> Nitin
>
>
===
> 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.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
>
>
===
> 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.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===
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.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: Shopping Cart JSP/Servlet Package

2000-04-25 Thread Deniz Ersöz

I don't think there is one but we are doing it as a term project

- Original Message -
From: "Kathy Wargo" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, April 25, 2000 11:10 PM
Subject: Re: Shopping Cart JSP/Servlet Package


> Jon
> If you find one please let me know.
>
> --
>
> On Fri, 21 Apr 2000 21:21:19   Jon Baer wrote:
> >Does anyone know of a high-class ecommerce based JSP/Servlet package that
is available to
> >plug-in to a website?
> >
> >Thanks.
> >
> >- Jon
> >
>
>===
> >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.html
> > http://www.esperanto.org.nz/jsp/jspfaq.html
> > http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
> > http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
> >
>
>
> HotBot - Search smarter.
> http://www.hotbot.com
>
>
===
> 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.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===
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.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: A question

2000-04-25 Thread Deniz Ersöz

So, what should i use instead of JDBC-ODBC?


- Original Message -
From: "Scott Stirling" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, April 25, 2000 5:05 PM
Subject: Re: A question


> The Sun JDBC-ODBC bridge driver, which I'll bet dollars to donuts you're
using
> to connect to Access, is buggy.  It's always just a matter of time or
number of
> concurrent users until you hit a snag in it that will kill javaw.exe on
Windows.
>
> Scott Stirling
>
> - Original Message -
> From: Deniz Ersöz <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Tuesday, April 25, 2000 9:49 AM
> Subject: Re: A question
>
>
> > Yes, my database connection part is approved in a normal application,
but
> > when I execute several queries JSWDK server crashes...
> >
> > - Original Message -
> > From: "Rebecca Coleman" <[EMAIL PROTECTED]>
> > To: <[EMAIL PROTECTED]>
> > Sent: Tuesday, April 25, 2000 4:28 PM
> > Subject: Re: A question
> >
> >
> > > are you closing your connection to the db when you're finished?
> > >
> > > -Original Message-
> > > From: Deniz Ersoz [mailto:[EMAIL PROTECTED]]
> > > Sent: Tuesday, April 25, 2000 8:51 AM
> > > To: [EMAIL PROTECTED]
> > > Subject: A question
> > >
> > >
> > > When I'm accessing an Access Database JSWDK 1.01 server crashes after
> > > several queries... What vcan be the problem?
> > >
> > > Thanx for your attention.
>
>
===
> 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.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===
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.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: A question

2000-04-25 Thread Deniz Ersöz

Yes, my database connection part is approved in a normal application, but
when I execute several queries JSWDK server crashes...

- Original Message -
From: "Rebecca Coleman" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, April 25, 2000 4:28 PM
Subject: Re: A question


> are you closing your connection to the db when you're finished?
>
> -Original Message-
> From: Deniz Ersoz [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, April 25, 2000 8:51 AM
> To: [EMAIL PROTECTED]
> Subject: A question
>
>
> When I'm accessing an Access Database JSWDK 1.01 server crashes after
> several queries... What vcan be the problem?
>
> Thanx for your attention.
>
>
===
> 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.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
>
>
===
> 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.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===
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.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets